aboutsummaryrefslogtreecommitdiffstats
path: root/code/renderer
diff options
context:
space:
mode:
Diffstat (limited to 'code/renderer')
-rw-r--r--code/renderer/tr_init.c5
-rw-r--r--code/renderer/tr_types.h3
2 files changed, 5 insertions, 3 deletions
diff --git a/code/renderer/tr_init.c b/code/renderer/tr_init.c
index b13d9d4..1b1bfc0 100644
--- a/code/renderer/tr_init.c
+++ b/code/renderer/tr_init.c
@@ -1070,6 +1070,11 @@ void R_Init( void ) {
Com_Memset( &backEnd, 0, sizeof( backEnd ) );
Com_Memset( &tess, 0, sizeof( tess ) );
+ if(sizeof(glconfig_t) != 11332)
+ {
+ ri.Error( ERR_FATAL, "Mod ABI incompatible: sizeof(glconfig_t) == %zd != 11332", sizeof(glconfig_t));
+ }
+
// Swap_Init();
if ( (int)tess.xyz & 15 ) {
diff --git a/code/renderer/tr_types.h b/code/renderer/tr_types.h
index 4ed880a..12b526e 100644
--- a/code/renderer/tr_types.h
+++ b/code/renderer/tr_types.h
@@ -200,9 +200,6 @@ typedef struct {
qboolean isFullscreen;
qboolean stereoEnabled;
qboolean smpActive; // dual processor
-
- qboolean textureFilterAnisotropic;
- int maxAnisotropy;
} glconfig_t;
// FIXME: VM should be OS agnostic .. in theory