foxygit / doom Log in
commit bacd7fff1a0cddfa17218df410e9bfb7596e94a4
Author:     Simon Howard <fraggle@gmail.com>
AuthorDate: Sat Sep 20 19:57:38 2008 +0000
Commit:     Simon Howard <fraggle@gmail.com>
CommitDate: Sat Sep 20 19:57:38 2008 +0000

    Minor v_video.h cleanups.

    Subversion-branch: /branches/raven-branch
    Subversion-revision: 1247
---
 src/v_video.h | 24 +++++++-----------------
 1 file 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
+