]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - qtypes.h
Change shader permutation flags to 64bit.
[xonotic/darkplaces.git] / qtypes.h
index 57c8b5891e848c93468488a9b3a51a7882c13ebf..6c09614eff2479b53c30d24bc1d2212d0c0697da 100644 (file)
--- a/qtypes.h
+++ b/qtypes.h
@@ -35,15 +35,20 @@ typedef bool qboolean;
 #define RESTRICT
 #endif
 
+typedef long long dpint64;
+typedef unsigned long long dpuint64;
+
 // LordHavoc: upgrade the prvm to double precision for better time values
 // LordHavoc: to be enabled when bugs are worked out...
 //#define PRVM_64
 #ifdef PRVM_64
 typedef double prvm_vec_t;
 typedef long long prvm_int_t;
+typedef unsigned long long prvm_uint_t;
 #else
 typedef float prvm_vec_t;
 typedef int prvm_int_t;
+typedef unsigned int prvm_uint_t;
 #endif
 typedef prvm_vec_t prvm_vec3_t[3];