]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - vid.h
added variable vid_gammatables_trivial that is true if the gamma ramp is the identity...
[xonotic/darkplaces.git] / vid.h
diff --git a/vid.h b/vid.h
index 1a236640fc51049f72428494431969387ff550f2..29ab8785fb127aad24269b9aba2e453a8dba14c6 100644 (file)
--- a/vid.h
+++ b/vid.h
@@ -22,6 +22,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 #ifndef VID_H
 #define VID_H
 
+#define ENGINE_ICON ( (gamemode == GAME_NEXUIZ) ? nexuiz_xpm : darkplaces_xpm )
+
 extern int cl_available;
 
 typedef struct viddef_s
@@ -146,5 +148,8 @@ void VID_Restart_f(void);
 
 void VID_Start(void);
 
+extern unsigned int vid_gammatables_serial; // so other subsystems can poll if gamma parameters have changed; this starts with 0 and gets increased by 1 each time the gamma parameters get changed and VID_BuildGammaTables should be called again
+extern qboolean vid_gammatables_trivial; // this is set to true if all color control values are at default setting, and it therefore would make no sense to use the gamma table
+void VID_BuildGammaTables(unsigned short *ramps, int rampsize); // builds the current gamma tables into an array (needs 3*rampsize items)
 #endif