diff options
Diffstat (limited to 'src/graphics/lfb.h')
-rw-r--r-- | src/graphics/lfb.h | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/src/graphics/lfb.h b/src/graphics/lfb.h deleted file mode 100644 index a4eef2e..0000000 --- a/src/graphics/lfb.h +++ /dev/null @@ -1,28 +0,0 @@ -#ifndef GRAPHICS_LFB_H -#define GRAPHICS_LFB_H - -#define GG_MAX_X 128 -#define GG_MAX_Y 46 - -#ifndef GRAPHICS_LFB_C -extern unsigned int width, height, pitch, isrgb; /* dimensions and channel order */ -#endif - -void lfb_init(void); -void lfb_showpicture(void); - -void clear_screen(void); - -void draw_cbyte(unsigned char lx, unsigned char ly, unsigned char letter, unsigned int c); -void draw_byte(unsigned char lx, unsigned char ly, unsigned char letter); - -void draw_cletter(unsigned char lx, unsigned char ly, unsigned char letter, unsigned int c); -void draw_letter(unsigned char lx, unsigned char ly, unsigned char letter); - -void draw_cstring(unsigned int lx, unsigned int ly, char* s, unsigned int c); -void draw_string(unsigned int lx, unsigned int ly, char* s); - -void draw_chex32(unsigned int lx, unsigned int ly, unsigned long val, unsigned int c); -void draw_hex32(unsigned int lx, unsigned int ly, unsigned long val); - -#endif |