mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 12:52:46 +00:00
More whitespace.
This commit is contained in:
parent
9648fbf181
commit
0d28f4d63a
1 changed files with 7 additions and 11 deletions
|
@ -109,17 +109,17 @@ GL_Common_Init_Cvars (void)
|
||||||
vid_use8bit = Cvar_Get ("vid_use8bit", "0", CVAR_ROM, NULL, "Use 8-bit "
|
vid_use8bit = Cvar_Get ("vid_use8bit", "0", CVAR_ROM, NULL, "Use 8-bit "
|
||||||
"shared palettes.");
|
"shared palettes.");
|
||||||
gl_vaelements_max = Cvar_Get ("gl_vaelements_max", "0", CVAR_ROM, NULL,
|
gl_vaelements_max = Cvar_Get ("gl_vaelements_max", "0", CVAR_ROM, NULL,
|
||||||
"limit the vertex array size for buggy "
|
"Limit the vertex array size for buggy "
|
||||||
"drivers. 0 (default) uses driver provided "
|
"drivers. 0 (default) uses driver provided "
|
||||||
"limit");
|
"limit, -1 disables use of vertex arrays.");
|
||||||
gl_multitexture = Cvar_Get ("gl_multitexture", "0", CVAR_ARCHIVE,
|
gl_multitexture = Cvar_Get ("gl_multitexture", "0", CVAR_ARCHIVE,
|
||||||
gl_multitexture_f, "Use multitexture when "
|
gl_multitexture_f, "Use multitexture when "
|
||||||
"available");
|
"available.");
|
||||||
gl_screenshot_byte_swap =
|
gl_screenshot_byte_swap =
|
||||||
Cvar_Get ("gl_screenshot_byte_swap", "0",
|
Cvar_Get ("gl_screenshot_byte_swap", "0", CVAR_NONE,
|
||||||
CVAR_NONE, gl_screenshot_byte_swap_f,
|
gl_screenshot_byte_swap_f, "Swap the bytes for gl "
|
||||||
"Swap the bytes for gl screenshots. Needed if you get "
|
"screenshots. Needed if you get screenshots with red and "
|
||||||
"screenshots with red and blue swapped.");
|
"blue swapped.");
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -137,7 +137,6 @@ CheckMultiTextureExtensions (void)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (QFGL_ExtensionPresent ("GL_ARB_multitexture")) {
|
if (QFGL_ExtensionPresent ("GL_ARB_multitexture")) {
|
||||||
|
|
||||||
int max_texture_units = 0;
|
int max_texture_units = 0;
|
||||||
|
|
||||||
qfglGetIntegerv (GL_MAX_TEXTURE_UNITS_ARB, &max_texture_units);
|
qfglGetIntegerv (GL_MAX_TEXTURE_UNITS_ARB, &max_texture_units);
|
||||||
|
@ -257,9 +256,6 @@ GL_Pre_Init (void)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
GL_Init_Common
|
|
||||||
*/
|
|
||||||
void
|
void
|
||||||
GL_Init_Common (void)
|
GL_Init_Common (void)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue