Asking the end-user to have sexual intercourse with his family is not that cool.

git-svn-id: https://svn.eduke32.com/eduke32@460 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
Plagman 2007-01-15 09:22:13 +00:00
parent 59ef78ff35
commit 581fd77c35

View file

@ -149,8 +149,8 @@ GLuint *peels; // peels identifiers
GLuint *peelfbos; // peels FBOs identifiers
GLuint peelprogram[2]; // ARBfp peeling fragment program
// Bleh
long r_detailmapping = 0;
// Detail mapping cvar
long r_detailmapping = 1;
float fogresult, ofogresult;
@ -698,7 +698,7 @@ void polymost_glinit()
if (r_detailmapping && (!glinfo.multitex))
{
OSD_Printf("Your OpenGL implementation doesn't support detail mapping. Disabling...\n");
r_depthpeeling = 0;
r_detailmapping = 0;
}
//depth peeling initialization
@ -5231,7 +5231,7 @@ static int osdcmd_polymostvars(const osdfuncparm_t *parm)
if (!glinfo.multitex)
{
OSD_Printf("Your OpenGL implementation doesn't support detail mapping.\n");
r_depthpeeling = 0;
r_detailmapping = 0;
return OSDCMD_OK;
}
r_detailmapping = (val != 0);
@ -5322,7 +5322,7 @@ void polymost_initosdfuncs(void)
OSD_RegisterFunction("r_depthpeeling","r_depthpeeling: enable/disable order-independant transparency",osdcmd_polymostvars);
OSD_RegisterFunction("r_peelscount","r_peelscount: sets the number of depth layers for depth peeling",osdcmd_polymostvars);
OSD_RegisterFunction("r_curpeel","r_curpeel: allows to display one depth layer at a time (for development purposes)",osdcmd_polymostvars);
OSD_RegisterFunction("r_detailmapping","r_detailmapping: shut your fucking face uncle fucker",osdcmd_polymostvars);
OSD_RegisterFunction("r_detailmapping","r_detailmapping: enable/disable detail-mapping",osdcmd_polymostvars);
#endif
OSD_RegisterFunction("usemodels","usemodels: enable/disable model rendering in >8-bit mode",osdcmd_polymostvars);
OSD_RegisterFunction("usehightile","usehightile: enable/disable hightile texture rendering in >8-bit mode",osdcmd_polymostvars);