Index: src/renderer/r_main.c
===================================================================
--- src/renderer/r_main.c (Revision 13537)
+++ src/renderer/r_main.c (Arbeitskopie)
@@ -1019,6 +1019,13 @@
if (!Q_stricmp((const char*)qglGetString(GL_RENDERER), "gdi generic"))
Com_Error(ERR_FATAL, "No hardware acceleration detected");
#endif
+#ifdef __linux__
+ if (strstr(r_config.vendor_string, "Intel")) {
+ /* HACK: */
+ Com_Printf("Activate texture compression for Intel chips\n");
+ Cvar_Set("r_ext_texture_compression", "1");
+ }
+#endif
}
qboolean R_Init (void)