gl_finish - it's done

gl_ztrick - here's the hat, but no rabbit

considering that a buggy driver can make gl_ztrick into a sort of cheat if
you can stand the flicker, it's gone.  gl_finish was already a zombie Cvar
so I just removed its definition.
This commit is contained in:
Joseph Carter 2000-06-17 13:30:39 +00:00
parent 6d62a506b2
commit 32b13fb303
7 changed files with 1 additions and 33 deletions

View file

@ -524,13 +524,6 @@ Type :
Default : 1
Description :
Cvar : gl_finish
Targets :
Category :
Type :
Default : 0
Description :
Cvar : gl_flashblend
Targets :
Category :
@ -622,20 +615,6 @@ Type :
Default : 1
Description :
Cvar : gl_ztrick
Targets :
Category :
Type :
Default : 1
Description :
Cvar : gl_ztrick
Targets :
Category :
Type :
Default : 0
Description :
Cvar : host_speeds
Targets :
Category :

View file

@ -208,7 +208,6 @@ extern cvar_t *gl_keeptjunctions;
extern cvar_t *gl_reporttjunctions;
extern cvar_t *gl_flashblend;
extern cvar_t *gl_nocolors;
extern cvar_t *gl_finish;
extern int gl_lightmap_format;
extern int gl_solid_format;

View file

@ -116,7 +116,6 @@ cvar_t *gl_playermip;
cvar_t *gl_nocolors;
cvar_t *gl_keeptjunctions;
cvar_t *gl_reporttjunctions;
cvar_t *gl_finish;
cvar_t *r_skyname;

View file

@ -257,7 +257,6 @@ void R_Init (void)
gl_flashblend = Cvar_Get("gl_flashblend", "0", CVAR_NONE, "None");
gl_playermip = Cvar_Get("gl_playermip", "0", CVAR_NONE, "None");
gl_nocolors = Cvar_Get("gl_nocolors", "0", CVAR_NONE, "None");
gl_finish = Cvar_Get("gl_finish", "0", CVAR_NONE, "None");
gl_keeptjunctions = Cvar_Get("gl_keeptjunctions", "1", CVAR_NONE, "None");
gl_reporttjunctions = Cvar_Get("gl_reporttjunctions", "0", CVAR_NONE, "None");

View file

@ -70,7 +70,6 @@ unsigned char d_15to8table[65536];
static cvar_t *vid_mode;
static cvar_t *vid_redrawfull;
static cvar_t *vid_waitforrefresh;
cvar_t *gl_ztrick;
extern cvar_t *gl_triplebuffer;
#ifdef HAVE_DLOPEN
@ -506,7 +505,6 @@ void VID_Init(unsigned char *palette)
vid_redrawfull = Cvar_Get ("vid_redrawfull", "0", 0," None");
vid_waitforrefresh = Cvar_Get ("vid_waitforrefresh", "0", CVAR_ARCHIVE,
"None");
gl_ztrick = Cvar_Get ("gl_ztrick", "0", CVAR_ARCHIVE, "None");
vid.maxwarpwidth = WARP_WIDTH;
vid.maxwarpheight = WARP_HEIGHT;

View file

@ -132,8 +132,6 @@ int texture_extension_number = 1;
float gldepthmin, gldepthmax;
cvar_t *gl_ztrick;
const char *gl_vendor;
const char *gl_renderer;
const char *gl_version;
@ -479,7 +477,6 @@ void VID_Init(unsigned char *palette)
XVisualInfo *visinfo;
vid_mode = Cvar_Get ("vid_mode","0",0,"None");
gl_ztrick = Cvar_Get ("gl_ztrick","0",CVAR_ARCHIVE,"None");
vid_fullscreen = Cvar_Get ("vid_fullscreen","0",0,"None");
#ifdef HAVE_DGA
in_dga_mouseaccel = Cvar_Get("vid_dga_mouseaccel","1",CVAR_ARCHIVE,

View file

@ -119,8 +119,6 @@ HDC maindc;
glvert_t glv;
cvar_t *gl_ztrick;
HWND WINAPI InitializeWindow (HINSTANCE hInstance, int nCmdShow);
extern viddef_t vid; // global video state
@ -1589,7 +1587,6 @@ void VID_Init (unsigned char *palette)
vid_config_y = Cvar_Get("vid_config_y", "600", CVAR_ARCHIVE, "None");
vid_stretch_by_2 = Cvar_Get("vid_stretch_by_2", "1", CVAR_ARCHIVE, "None");
_windowed_mouse = Cvar_Get("_windowed_mouse", "0", CVAR_ARCHIVE, "None");
gl_ztrick = Cvar_Get("gl_ztrick", "1", CVAR_NONE, "None");
Cmd_AddCommand ("vid_nummodes", VID_NumModes_f);
Cmd_AddCommand ("vid_describecurrentmode", VID_DescribeCurrentMode_f);