diff options
Diffstat (limited to 'fb-gui.h')
-rw-r--r-- | fb-gui.h | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -4,12 +4,12 @@ extern int visible; -void shadow_render(void); +void shadow_render(gfxstate *gfx); void shadow_clear_lines(int first, int last); void shadow_clear(void); void shadow_set_dirty(void); void shadow_set_palette(int fd); -void shadow_init(void); +void shadow_init(gfxstate *gfx); void shadow_fini(void); void shadow_draw_line(int x1, int x2, int y1,int y2); @@ -29,5 +29,4 @@ void shadow_draw_text_box(FT_Face face, int x, int y, int percent, void font_init(void); FT_Face font_open(char *fcname); -void fb_clear_mem(void); -void fb_clear_screen(void); +void fb_clear_screen(gfxstate *gfx); |