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.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/v_video.h b/src/v_video.h
index d304f8f8..033633fc 100644
--- a/src/v_video.h
+++ b/src/v_video.h
@@ -57,6 +57,8 @@ void V_CopyRect(int srcx, int srcy, byte *source,
void V_DrawPatch(int x, int y, patch_t *patch);
void V_DrawPatchFlipped(int x, int y, patch_t *patch);
+void V_DrawFuzzPatch(int x, int y, patch_t *patch);
+void V_DrawShadowedPatch(int x, int y, patch_t *patch);
void V_DrawPatchDirect(int x, int y, patch_t *patch);
@@ -66,6 +68,10 @@ void V_DrawBlock(int x, int y, int width, int height, byte *src);
void V_MarkRect(int x, int y, int width, int height);
+// Draw a raw screen lump
+
+void V_DrawRawScreen(byte *raw);
+
// Temporarily switch to using a different buffer to draw graphics, etc.
void V_UseBuffer(byte *buffer);