forked from createskyblue/OpenT12
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathExternDraw.h
30 lines (22 loc) · 908 Bytes
/
ExternDraw.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef ExternDraw
#define ExternDraw
#include "Type.h"
void EnterLogo(void);
void ShowBootMsg(void);
extern uint8_t DisplayFlashTick;
void Clear(void);
void Display(void);
void Draw_Utf(int x, int y, char* s);
void Blur(int sx, int sy, int ex, int ey, int f, int delay);
void Draw_Scale(int x, int y, int w, int h, int s, int v);
void Draw_Num_Bar(float i, float a, float b, int x, int y, int w, int h, int c);
void Draw_Pixel_Resize(int x, int y, int ox, int oy, int w, int h);
void Draw_Slow_Bitmap(int x, int y, const unsigned char* bitmap, unsigned char w, unsigned char h);
void Draw_Slow_Bitmap_Resize(int x, int y, uint8_t* bitmap, int w1, int h1, int w2, int h2);
void DrawStatusBar(bool color);
void DrawIntensiveComputingLine(void);
void DrawIntensiveComputing(void);
void DrawMsgBox(char* s);
void DrawHighLightText(int x, int y, char* s);
void TextEditor(char* title, char* text);
#endif