summaryrefslogtreecommitdiff
path: root/src/v_video.h
diff options
context:
space:
mode:
authorSimon Howard2008-10-01 19:03:51 +0000
committerSimon Howard2008-10-01 19:03:51 +0000
commitd35a4b7cf3a206a35ac57e279fb36bad9436ab0b (patch)
tree83ac66521be9ba4b6ba83c76ce8057fde045717a /src/v_video.h
parent738e91cd6052ddfd12651cd2f639888cbc64b05e (diff)
downloadchocolate-doom-d35a4b7cf3a206a35ac57e279fb36bad9436ab0b.tar.gz
chocolate-doom-d35a4b7cf3a206a35ac57e279fb36bad9436ab0b.tar.bz2
chocolate-doom-d35a4b7cf3a206a35ac57e279fb36bad9436ab0b.zip
Merge tinttable variable to common.
Subversion-branch: /branches/raven-branch Subversion-revision: 1316
Diffstat (limited to 'src/v_video.h')
-rw-r--r--src/v_video.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/v_video.h b/src/v_video.h
index 34c36f79..649e7175 100644
--- a/src/v_video.h
+++ b/src/v_video.h
@@ -46,6 +46,8 @@ extern int dirtybox[4];
extern const byte gammatable[5][256];
+extern byte *tinttable;
+
// Allocates buffer screens, call before R_Init.
void V_Init (void);
@@ -87,5 +89,10 @@ void V_RestoreBuffer(void);
void V_ScreenShot(char *format);
+// Load the lookup table for translucency calculations from the TINTTAB
+// lump.
+
+void V_LoadTintTable(void);
+
#endif