summaryrefslogtreecommitdiff
path: root/uisimulator/sdl/lcd-sdl.h
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator/sdl/lcd-sdl.h')
-rw-r--r--uisimulator/sdl/lcd-sdl.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/uisimulator/sdl/lcd-sdl.h b/uisimulator/sdl/lcd-sdl.h
index d371639a64..10c2ea74b5 100644
--- a/uisimulator/sdl/lcd-sdl.h
+++ b/uisimulator/sdl/lcd-sdl.h
@@ -27,11 +27,14 @@
27extern int display_zoom; 27extern int display_zoom;
28 28
29void sdl_update_rect(SDL_Surface *surface, int x_start, int y_start, int width, 29void sdl_update_rect(SDL_Surface *surface, int x_start, int y_start, int width,
30 int height, int max_x, int max_y, int ui_x, int ui_y, 30 int height, int max_x, int max_y,
31 Uint32 (*getpixel)(int, int)); 31 unsigned long (*getpixel)(int, int));
32
33void sdl_gui_update(SDL_Surface *surface, int x_start, int y_start, int width,
34 int height, int max_x, int max_y, int ui_x, int ui_y);
32 35
33void sdl_set_gradient(SDL_Surface *surface, SDL_Color *start, SDL_Color *end, 36void sdl_set_gradient(SDL_Surface *surface, SDL_Color *start, SDL_Color *end,
34 int steps); 37 int first, int steps);
35 38
36#endif // #ifndef __LCDSDL_H__ 39#endif // #ifndef __LCDSDL_H__
37 40