2000-01-22 12:54:51 +00:00
|
|
|
/*
|
|
|
|
Copyright (C) 1996-1997 Id Software, Inc.
|
|
|
|
Copyright (C) 1999,2000 contributors of the QuakeForge project
|
|
|
|
Please see the file "AUTHORS" for a list of contributors
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2000-03-19 15:59:51 +00:00
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
2000-01-22 12:54:51 +00:00
|
|
|
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _CVARS_H
|
|
|
|
#define _CVARS_H
|
|
|
|
|
2000-02-27 07:13:32 +00:00
|
|
|
extern cvar_t *gl_flashblend;
|
|
|
|
|
|
|
|
|
|
|
|
// From r_local.h
|
|
|
|
extern cvar_t *r_draworder;
|
|
|
|
extern cvar_t *r_speeds;
|
|
|
|
extern cvar_t *r_timegraph;
|
|
|
|
extern cvar_t *r_graphheight;
|
|
|
|
extern cvar_t *r_clearcolor;
|
|
|
|
extern cvar_t *r_waterwarp;
|
|
|
|
extern cvar_t *r_fullbright;
|
|
|
|
extern cvar_t *r_drawentities;
|
|
|
|
extern cvar_t *r_aliasstats;
|
|
|
|
extern cvar_t *r_dspeeds;
|
|
|
|
extern cvar_t *r_drawflat;
|
|
|
|
extern cvar_t *r_ambient;
|
|
|
|
extern cvar_t *r_reportsurfout;
|
|
|
|
extern cvar_t *r_maxsurfs;
|
|
|
|
extern cvar_t *r_numsurfs;
|
|
|
|
extern cvar_t *r_reportedgeout;
|
|
|
|
extern cvar_t *r_maxedges;
|
|
|
|
extern cvar_t *r_numedges;
|
2000-01-27 17:06:02 +00:00
|
|
|
|
2000-02-19 15:42:13 +00:00
|
|
|
#endif /* _CVARS_H */
|