summaryrefslogtreecommitdiff
path: root/src/v_video.h
diff options
context:
space:
mode:
authorSamuel Villareal2010-09-27 05:48:13 +0000
committerSamuel Villareal2010-09-27 05:48:13 +0000
commitfee277eb0a3bfee3000a6f2adb610ab0b274a917 (patch)
tree02fab7c5e42ba8b3422416c23a86fbe00cdc90b0 /src/v_video.h
parent2f326ebddc4f4de18909b557fa69fe74ac849e82 (diff)
downloadchocolate-doom-fee277eb0a3bfee3000a6f2adb610ab0b274a917.tar.gz
chocolate-doom-fee277eb0a3bfee3000a6f2adb610ab0b274a917.tar.bz2
chocolate-doom-fee277eb0a3bfee3000a6f2adb610ab0b274a917.zip
+ V_DrawXlaPatch added
+ xlatab lump loading handled in v_video.c + Pop up menus added in st_stuff (not completed still) Subversion-branch: /branches/strife-branch Subversion-revision: 2143
Diffstat (limited to 'src/v_video.h')
-rw-r--r--src/v_video.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/v_video.h b/src/v_video.h
index f7952eaa..01791d6c 100644
--- a/src/v_video.h
+++ b/src/v_video.h
@@ -67,7 +67,7 @@ void V_DrawPatchFlipped(int x, int y, patch_t *patch);
void V_DrawTLPatch(int x, int y, patch_t *patch);
void V_DrawAltTLPatch(int x, int y, patch_t * patch);
void V_DrawShadowedPatch(int x, int y, patch_t *patch);
-
+void V_DrawXlaPatch(int x, int y, patch_t * patch); // villsa [STRIFE]
void V_DrawPatchDirect(int x, int y, patch_t *patch);
// Draw a linear block of pixels into the view buffer.
@@ -99,5 +99,11 @@ void V_ScreenShot(char *format);
void V_LoadTintTable(void);
+// villsa [STRIFE]
+// Load the lookup table for translucency calculations from the XLATAB
+// lump.
+
+void V_LoadXlaTable(void);
+
#endif