summaryrefslogtreecommitdiff
path: root/src/v_video.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/v_video.h')
-rw-r--r--src/v_video.h16
1 files changed, 6 insertions, 10 deletions
diff --git a/src/v_video.h b/src/v_video.h
index a993fd1d..5312619a 100644
--- a/src/v_video.h
+++ b/src/v_video.h
@@ -54,17 +54,11 @@ extern const byte gammatable[5][256];
// Allocates buffer screens, call before R_Init.
void V_Init (void);
+// Draw a block from the specified source screen to the screen.
-void
-V_CopyRect
-( int srcx,
- int srcy,
- int srcscrn,
- int width,
- int height,
- int destx,
- int desty,
- int destscrn );
+void V_CopyRect(int srcx, int srcy, byte *source,
+ int width, int height,
+ int destx, int desty);
void
V_DrawPatch
@@ -111,4 +105,6 @@ V_MarkRect
void V_ScreenShot(void);
+void V_RestoreBuffer(void);
+
#endif