diff options
author | Simon Howard | 2008-09-20 19:57:38 +0000 |
---|---|---|
committer | Simon Howard | 2008-09-20 19:57:38 +0000 |
commit | bacd7fff1a0cddfa17218df410e9bfb7596e94a4 (patch) | |
tree | 8d2744c29975160f7dbdfb4f7ec0d28cf2a7e418 | |
parent | 96cfb635bef9e156f1c304e7f68b4bf0eeead891 (diff) | |
download | chocolate-doom-bacd7fff1a0cddfa17218df410e9bfb7596e94a4.tar.gz chocolate-doom-bacd7fff1a0cddfa17218df410e9bfb7596e94a4.tar.bz2 chocolate-doom-bacd7fff1a0cddfa17218df410e9bfb7596e94a4.zip |
Minor v_video.h cleanups.
Subversion-branch: /branches/raven-branch
Subversion-revision: 1247
-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 + |