diff options
-rw-r--r-- | src/v_video.h | 24 |
1 files changed, 7 insertions, 17 deletions
diff --git a/src/v_video.h b/src/v_video.h index 969024c9..7efe1b36 100644 --- a/src/v_video.h +++ b/src/v_video.h @@ -79,27 +79,17 @@ V_DrawPatchDirect void V_DrawBlock(int x, int y, int width, int height, byte *src); -// Reads a linear block of pixels into the view buffer. -void -V_GetBlock -( int x, - int y, - int scrn, - int width, - int height, - byte* dest ); +void V_MarkRect(int x, int y, int width, int height); +// Temporarily switch to using a different buffer to draw graphics, etc. -void -V_MarkRect -( int x, - int y, - int width, - int height ); +void V_UseBuffer(byte *buffer); -void V_ScreenShot(void); +// Return to using the normal screen buffer to draw graphics. -void V_UseBuffer(byte *buffer); void V_RestoreBuffer(void); +void V_ScreenShot(void); + #endif + |