summaryrefslogtreecommitdiff
path: root/src/gfx.h
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2021-05-23 20:45:19 +0000
committerIan C <ianc@noddybox.co.uk>2021-05-23 20:45:19 +0000
commit15d2a8724930bfb3d87f20b286391d4133d42d98 (patch)
tree339a39d4c78c6ee78946bdf952a2bcd4a4ca84f0 /src/gfx.h
parent6c1f2fec30886e845db47c14cd284103d9f55189 (diff)
Updates for SDL2HEADmaster
Diffstat (limited to 'src/gfx.h')
-rw-r--r--src/gfx.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/gfx.h b/src/gfx.h
index d89edee..8166b2c 100644
--- a/src/gfx.h
+++ b/src/gfx.h
@@ -55,11 +55,6 @@
void GFXInit(void);
-/* Get the SDL_Surface for the screen
-*/
-SDL_Surface *GFXGetSurface(void);
-
-
/* Get the pixel value for a colour
*/
Uint32 GFXRGB(Uint8 r, Uint8 g, Uint8 b);
@@ -97,27 +92,11 @@ SDL_Event *GFXGetKey(void);
SDL_Event *GFXWaitKey(void);
-/* Lock the screen for updates
-*/
-void GFXLock(void);
-
-
-/* Unlock the screen following updates
-*/
-void GFXUnlock(void);
-
-
/*
Note that no bound checking (except for GFXPrint()) is done - it is the
callers responsibility to plot onscreen.
*/
-/* Plot a point without locking. GFXLock() and GFXUnlock() MUST surround
- calls to this
-*/
-void GFXFastPlot(int x, int y, Uint32 col);
-
-
/* Plot a point
*/
void GFXPlot(int x, int y, Uint32 col);