2001-02-19 21:15:25 +00:00
|
|
|
/*
|
|
|
|
vid.h
|
|
|
|
|
|
|
|
video driver defs
|
|
|
|
|
|
|
|
Copyright (C) 1996-1997 Id Software, Inc.
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2020-02-24 03:21:20 +00:00
|
|
|
#ifndef __QF_vid_h
|
|
|
|
#define __QF_vid_h
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-03-27 20:33:07 +00:00
|
|
|
#include "QF/qtypes.h"
|
2012-01-06 00:52:14 +00:00
|
|
|
#include "QF/vrect.h"
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
#define VID_CBITS 6
|
|
|
|
#define VID_GRADES (1 << VID_CBITS)
|
|
|
|
|
|
|
|
typedef struct {
|
2001-08-25 02:47:11 +00:00
|
|
|
qboolean initialized;
|
2012-02-17 07:13:56 +00:00
|
|
|
qboolean is8bit;
|
2001-08-25 02:47:11 +00:00
|
|
|
void *buffer; // invisible buffer
|
2001-04-16 09:12:21 +00:00
|
|
|
short *zbuffer;
|
|
|
|
void *surfcache;
|
2012-02-17 07:13:56 +00:00
|
|
|
byte *gammatable; // 256
|
2002-09-10 06:35:32 +00:00
|
|
|
byte *basepal; // 256 * 3
|
2002-09-10 03:51:10 +00:00
|
|
|
byte *palette; // 256 * 3
|
2001-08-25 02:47:11 +00:00
|
|
|
byte *colormap8; // 256 * VID_GRADES size
|
2001-02-19 21:15:25 +00:00
|
|
|
unsigned short *colormap16; // 256 * VID_GRADES size
|
2001-08-25 02:47:11 +00:00
|
|
|
unsigned int *colormap32; // 256 * VID_GRADES size
|
|
|
|
int fullbright; // index of first fullbright color
|
2012-10-20 16:10:00 +00:00
|
|
|
int rowbytes; // may be > width if displayed in a window
|
|
|
|
int width;
|
|
|
|
int height;
|
2009-12-23 11:21:34 +00:00
|
|
|
float aspect; // width / height -- < 1 is taller than wide
|
2001-08-25 02:47:11 +00:00
|
|
|
int numpages;
|
|
|
|
qboolean recalc_refdef; // if true, recalc vid-based stuff
|
|
|
|
qboolean cshift_changed;
|
2012-01-28 11:45:14 +00:00
|
|
|
quat_t cshift_color;
|
2001-08-25 02:47:11 +00:00
|
|
|
void *conbuffer;
|
|
|
|
int conrowbytes;
|
2012-10-20 16:10:00 +00:00
|
|
|
int conwidth;
|
|
|
|
int conheight;
|
2001-08-25 02:47:11 +00:00
|
|
|
byte *direct; // direct drawing to framebuffer, if not
|
2001-02-19 21:15:25 +00:00
|
|
|
// NULL
|
2019-07-08 04:40:29 +00:00
|
|
|
struct vid_internal_s *vid_internal;
|
2001-02-19 21:15:25 +00:00
|
|
|
} viddef_t;
|
|
|
|
|
2013-01-16 02:23:47 +00:00
|
|
|
#define viddef (*r_data->vid)
|
2012-02-14 10:47:02 +00:00
|
|
|
|
2012-02-17 07:13:56 +00:00
|
|
|
extern unsigned int d_8to24table[256]; //FIXME nq/qw uses
|
2001-04-11 07:16:34 +00:00
|
|
|
|
2001-05-24 23:49:28 +00:00
|
|
|
extern qboolean vid_gamma_avail;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
void VID_Init_Cvars (void);
|
|
|
|
|
|
|
|
// Called at startup to set up translation tables, takes 256 8 bit RGB values
|
|
|
|
// the palette data will go away after the call, so it must be copied off if
|
|
|
|
// the video driver will need it again
|
2012-02-01 10:52:13 +00:00
|
|
|
void VID_Init (byte *palette, byte *colormap);
|
2001-07-15 07:04:17 +00:00
|
|
|
void VID_SetCaption (const char *text);
|
2019-07-08 03:46:22 +00:00
|
|
|
void VID_ClearMemory (void);
|
2002-11-05 19:12:51 +00:00
|
|
|
|
2020-02-24 03:21:20 +00:00
|
|
|
#endif//__QF_vid_h
|