diff options
| author | Ian C <ianc@noddybox.co.uk> | 2003-12-22 00:01:31 +0000 |
|---|---|---|
| committer | Ian C <ianc@noddybox.co.uk> | 2003-12-22 00:01:31 +0000 |
| commit | a500f050272a8cca97ed0bbb7f8d7156555c61a7 (patch) | |
| tree | 879d83916f2dae38e3574c4937098e40ae27bdb0 /src/gfx.h | |
| parent | 9443eab98692b668fd35fc2a7e2cfb043953dbc7 (diff) | |
Added memory menu and some devel changes
Diffstat (limited to 'src/gfx.h')
| -rw-r--r-- | src/gfx.h | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -77,6 +77,11 @@ void GFXStartFrame(void); void GFXEndFrame(int delay); +/* Set key repeat +*/ +void GFXKeyRepeat(int repeat); + + /* Suck out keyboard events. Returns NULL if no more keyboard events */ SDL_Event *GFXGetKey(void); @@ -125,6 +130,13 @@ void GFXVLine(int x, int y1, int y2, Uint32 col); void GFXPrint(int x, int y, Uint32 col, const char *format, ...); +/* As above, but draws text using the supplied background colour, rather + than transparently. +*/ +void GFXPrintPaper(int x, int y, Uint32 col, Uint32 paper, + const char *format, ...); + + #endif |
