]> icculus.org git repositories - divverent/darkplaces.git/blob - vid.h
fix crash when r_framedatasize increases
[divverent/darkplaces.git] / vid.h
1 /*
2 Copyright (C) 1996-1997 Id Software, Inc.
3
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12
13 See the GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18
19 */
20 // vid.h -- video driver defs
21
22 #ifndef VID_H
23 #define VID_H
24
25 #define ENGINE_ICON ( (gamemode == GAME_NEXUIZ) ? nexuiz_xpm : darkplaces_xpm )
26
27 extern int cl_available;
28
29 #define MAX_TEXTUREUNITS 16
30
31 typedef enum renderpath_e
32 {
33         RENDERPATH_GL11,
34         RENDERPATH_GL13,
35         RENDERPATH_GL20,
36 }
37 renderpath_t;
38
39 typedef struct viddef_support_s
40 {
41         qboolean amd_texture_texture4;
42         qboolean arb_depth_texture;
43         qboolean arb_fragment_shader;
44         qboolean arb_multitexture;
45         qboolean arb_occlusion_query;
46         qboolean arb_shader_objects;
47         qboolean arb_shading_language_100;
48         qboolean arb_shadow;
49         qboolean arb_texture_compression;
50         qboolean arb_texture_cube_map;
51         qboolean arb_texture_env_combine;
52         qboolean arb_texture_gather;
53         qboolean arb_texture_non_power_of_two;
54         qboolean arb_texture_rectangle;
55         qboolean arb_vertex_buffer_object;
56         qboolean arb_vertex_shader;
57         qboolean ati_separate_stencil;
58         qboolean ext_blend_minmax;
59         qboolean ext_blend_subtract;
60         qboolean ext_compiled_vertex_array;
61         qboolean ext_draw_range_elements;
62         qboolean ext_framebuffer_object;
63         qboolean ext_stencil_two_side;
64         qboolean ext_texture_3d;
65         qboolean ext_texture_edge_clamp;
66         qboolean ext_texture_filter_anisotropic;
67 }
68 viddef_support_t;
69
70 typedef struct viddef_mode_s
71 {
72         int width;
73         int height;
74         int bitsperpixel;
75         qboolean fullscreen;
76         float refreshrate;
77         qboolean userefreshrate;
78         qboolean stereobuffer;
79         int samples;
80 }
81 viddef_mode_t;
82
83 typedef struct viddef_s
84 {
85         // these are set by VID_Mode
86         viddef_mode_t mode;
87         // used in many locations in the renderer
88         int width;
89         int height;
90         int bitsperpixel;
91         qboolean fullscreen;
92         float refreshrate;
93         qboolean userefreshrate;
94         qboolean stereobuffer;
95         int samples;
96         qboolean stencil;
97
98         renderpath_t renderpath;
99
100         unsigned int texunits;
101         unsigned int teximageunits;
102         unsigned int texarrayunits;
103         unsigned int drawrangeelements_maxvertices;
104         unsigned int drawrangeelements_maxindices;
105
106         unsigned int maxtexturesize_2d;
107         unsigned int maxtexturesize_3d;
108         unsigned int maxtexturesize_cubemap;
109         unsigned int maxtexturesize_rectangle;
110         unsigned int max_anisotropy;
111
112         viddef_support_t support;
113 } viddef_t;
114
115 // global video state
116 extern viddef_t vid;
117 extern void (*vid_menudrawfn)(void);
118 extern void (*vid_menukeyfn)(int key);
119
120 extern qboolean vid_hidden;
121 extern qboolean vid_activewindow;
122 extern cvar_t vid_hardwaregammasupported;
123 extern qboolean vid_usinghwgamma;
124 extern qboolean vid_supportrefreshrate;
125
126 extern cvar_t vid_fullscreen;
127 extern cvar_t vid_width;
128 extern cvar_t vid_height;
129 extern cvar_t vid_bitsperpixel;
130 extern cvar_t vid_samples;
131 extern cvar_t vid_refreshrate;
132 extern cvar_t vid_userefreshrate;
133 extern cvar_t vid_vsync;
134 extern cvar_t vid_mouse;
135 extern cvar_t vid_grabkeyboard;
136 extern cvar_t vid_stick_mouse;
137 extern cvar_t vid_resizable;
138 extern cvar_t vid_minwidth;
139 extern cvar_t vid_minheight;
140
141 extern cvar_t gl_finish;
142
143 extern cvar_t v_gamma;
144 extern cvar_t v_contrast;
145 extern cvar_t v_brightness;
146 extern cvar_t v_color_enable;
147 extern cvar_t v_color_black_r;
148 extern cvar_t v_color_black_g;
149 extern cvar_t v_color_black_b;
150 extern cvar_t v_color_grey_r;
151 extern cvar_t v_color_grey_g;
152 extern cvar_t v_color_grey_b;
153 extern cvar_t v_color_white_r;
154 extern cvar_t v_color_white_g;
155 extern cvar_t v_color_white_b;
156 extern cvar_t v_hwgamma;
157
158 // brand of graphics chip
159 extern const char *gl_vendor;
160 // graphics chip model and other information
161 extern const char *gl_renderer;
162 // begins with 1.0.0, 1.1.0, 1.2.0, 1.2.1, 1.3.0, 1.3.1, or 1.4.0
163 extern const char *gl_version;
164 // extensions list, space separated
165 extern const char *gl_extensions;
166 // WGL, GLX, or AGL
167 extern const char *gl_platform;
168 // another extensions list, containing platform-specific extensions that are
169 // not in the main list
170 extern const char *gl_platformextensions;
171 // name of driver library (opengl32.dll, libGL.so.1, or whatever)
172 extern char gl_driver[256];
173
174 // compatibility hacks
175 extern qboolean isG200;
176 extern qboolean isRagePro;
177
178 void *GL_GetProcAddress(const char *name);
179 int GL_CheckExtension(const char *minglver_or_ext, const dllfunction_t *funcs, const char *disableparm, int silent);
180
181 void VID_Shared_Init(void);
182
183 void GL_Init (void);
184
185 void VID_CheckExtensions(void);
186
187 void VID_Init (void);
188 // Called at startup
189
190 void VID_Shutdown (void);
191 // Called at shutdown
192
193 int VID_SetMode (int modenum);
194 // sets the mode; only used by the Quake engine for resetting to mode 0 (the
195 // base mode) on memory allocation failures
196
197 qboolean VID_InitMode(viddef_mode_t *mode);
198 // allocates and opens an appropriate OpenGL context (and its window)
199
200
201 // sets hardware gamma correction, returns false if the device does not
202 // support gamma control
203 // (ONLY called by VID_UpdateGamma and VID_RestoreSystemGamma)
204 int VID_SetGamma(unsigned short *ramps, int rampsize);
205 // gets hardware gamma correction, returns false if the device does not
206 // support gamma control
207 // (ONLY called by VID_UpdateGamma and VID_RestoreSystemGamma)
208 int VID_GetGamma(unsigned short *ramps, int rampsize);
209 // makes sure ramp arrays are big enough and calls VID_GetGamma/VID_SetGamma
210 // (ONLY to be called from VID_Finish!)
211 void VID_UpdateGamma(qboolean force, int rampsize);
212 // turns off hardware gamma ramps immediately
213 // (called from various shutdown/deactivation functions)
214 void VID_RestoreSystemGamma(void);
215
216 void VID_SetMouse (qboolean fullscreengrab, qboolean relative, qboolean hidecursor);
217 void VID_Finish (void);
218
219 void VID_Restart_f(void);
220
221 void VID_Start(void);
222
223 extern unsigned int vid_gammatables_serial; // so other subsystems can poll if gamma parameters have changed; this starts with 0 and gets increased by 1 each time the gamma parameters get changed and VID_BuildGammaTables should be called again
224 extern qboolean vid_gammatables_trivial; // this is set to true if all color control values are at default setting, and it therefore would make no sense to use the gamma table
225 void VID_BuildGammaTables(unsigned short *ramps, int rampsize); // builds the current gamma tables into an array (needs 3*rampsize items)
226
227 typedef struct
228 {
229         int width, height, bpp, refreshrate;
230         int pixelheight_num, pixelheight_denom;
231 }
232 vid_mode_t;
233 size_t VID_ListModes(vid_mode_t *modes, size_t maxcount);
234 size_t VID_SortModes(vid_mode_t *modes, size_t count, qboolean usebpp, qboolean userefreshrate, qboolean useaspect);
235 #endif
236