quakeforge/libs/video/renderer/r_main.c

67 lines
1.6 KiB
C
Raw Normal View History

2001-09-28 06:26:31 +00:00
/*
#FILENAME#
#DESCRIPTION#
Copyright (C) 2001 #AUTHOR#
Author: #AUTHOR#
Date: #DATE#
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
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
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:
Free Software Foundation, Inc.
59 Temple Place - Suite 330
Boston, MA 02111-1307, USA
*/
2001-06-19 22:05:13 +00:00
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
static __attribute__ ((unused)) const char rcsid[] =
"$Id$";
2001-06-19 22:05:13 +00:00
#ifdef HAVE_STRING_H
# include <string.h>
#endif
#ifdef HAVE_STRINGS_H
# include <strings.h>
#endif
#include "QF/cvar.h"
#include "QF/qtypes.h"
#include "QF/render.h"
#include "r_cvar.h"
qboolean r_inhibit_viewmodel;
qboolean r_force_fullscreen;
2001-05-21 00:22:35 +00:00
qboolean r_paused;
double r_realtime;
double r_frametime;
entity_t *r_view_model;
2001-05-21 00:22:35 +00:00
entity_t *r_player_entity;
float r_time1;
int r_lineadj;
2001-05-23 04:05:10 +00:00
qboolean r_active;
2003-04-17 00:01:48 +00:00
#define U __attribute__ ((unused))
static U void (*const r_progs_init)(struct progs_s *) = R_Progs_Init;
#undef U
2001-08-30 18:24:19 +00:00
byte color_white[4] = { 255, 255, 255, 0 }; // alpha will be explicitly set
byte color_black[4] = { 0, 0, 0, 0 }; // alpha will be explicitly set