shithub: choc

Download patch

ref: bacd7fff1a0cddfa17218df410e9bfb7596e94a4
parent: 96cfb635bef9e156f1c304e7f68b4bf0eeead891
author: Simon Howard <[email protected]>
date: Sat Sep 20 15:57:38 EDT 2008

Minor v_video.h cleanups.

Subversion-branch: /branches/raven-branch
Subversion-revision: 1247

--- a/src/v_video.h
+++ b/src/v_video.h
@@ -79,27 +79,17 @@
 
 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
+