diff options
author | Ian C <ianc@noddybox.co.uk> | 2021-05-23 20:58:26 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2021-05-23 20:58:26 +0000 |
commit | a4614438629c66914a6b8ee9696fe85eb5f4c4b0 (patch) | |
tree | cf8c7f82d1683cefd0c3b9aba6760913d3baa43b /src/gfx.h | |
parent | 52d944a701d685ae8a91fe2f38485c4c61827d88 (diff) |
Diffstat (limited to 'src/gfx.h')
-rw-r--r-- | src/gfx.h | 16 |
1 files changed, 0 insertions, 16 deletions
@@ -97,27 +97,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); |