]> git.xonotic.org Git - xonotic/darkplaces.git/blob - vid.h
reduced memory usage by around 20MB (no longer allocates interleaved
[xonotic/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         RENDERPATH_CGGL,
37         RENDERPATH_D3D9,
38         RENDERPATH_D3D10,
39         RENDERPATH_D3D11
40 }
41 renderpath_t;
42
43 typedef struct viddef_support_s
44 {
45         qboolean amd_texture_texture4;
46         qboolean arb_depth_texture;
47         qboolean arb_draw_buffers;
48         qboolean arb_fragment_shader;
49         qboolean arb_multitexture;
50         qboolean arb_occlusion_query;
51         qboolean arb_shader_objects;
52         qboolean arb_shading_language_100;
53         qboolean arb_shadow;
54         qboolean arb_texture_compression;
55         qboolean arb_texture_cube_map;
56         qboolean arb_texture_env_combine;
57         qboolean arb_texture_gather;
58         qboolean arb_texture_non_power_of_two;
59         qboolean arb_vertex_buffer_object;
60         qboolean arb_vertex_shader;
61         qboolean ati_separate_stencil;
62         qboolean ext_blend_minmax;
63         qboolean ext_blend_subtract;
64         qboolean ext_draw_range_elements;
65         qboolean ext_framebuffer_object;
66         qboolean ext_stencil_two_side;
67         qboolean ext_texture_3d;
68         qboolean ext_texture_compression_s3tc;
69         qboolean ext_texture_edge_clamp;
70         qboolean ext_texture_filter_anisotropic;
71 }
72 viddef_support_t;
73
74 typedef struct viddef_mode_s
75 {
76         int width;
77         int height;
78         int bitsperpixel;
79         qboolean fullscreen;
80         float refreshrate;
81         qboolean userefreshrate;
82         qboolean stereobuffer;
83         int samples;
84 }
85 viddef_mode_t;
86
87 typedef struct viddef_s
88 {
89         // these are set by VID_Mode
90         viddef_mode_t mode;
91         // used in many locations in the renderer
92         int width;
93         int height;
94         int bitsperpixel;
95         qboolean fullscreen;
96         float refreshrate;
97         qboolean userefreshrate;
98         qboolean stereobuffer;
99         int samples;
100         qboolean stencil;
101
102         void *cgcontext;
103
104         renderpath_t renderpath;
105         qboolean forcevbo; // some renderpaths can not operate without it
106         qboolean useinterleavedarrays; // required by some renderpaths
107
108         unsigned int texunits;
109         unsigned int teximageunits;
110         unsigned int texarrayunits;
111         unsigned int drawrangeelements_maxvertices;
112         unsigned int drawrangeelements_maxindices;
113
114         unsigned int maxtexturesize_2d;
115         unsigned int maxtexturesize_3d;
116         unsigned int maxtexturesize_cubemap;
117         unsigned int max_anisotropy;
118         unsigned int maxdrawbuffers;
119
120         viddef_support_t support;
121 } viddef_t;
122
123 // global video state
124 extern viddef_t vid;
125 extern void (*vid_menudrawfn)(void);
126 extern void (*vid_menukeyfn)(int key);
127
128 extern qboolean vid_hidden;
129 extern qboolean vid_activewindow;
130 extern cvar_t vid_hardwaregammasupported;
131 extern qboolean vid_usinghwgamma;
132 extern qboolean vid_supportrefreshrate;
133
134 extern cvar_t vid_fullscreen;
135 extern cvar_t vid_width;
136 extern cvar_t vid_height;
137 extern cvar_t vid_bitsperpixel;
138 extern cvar_t vid_samples;
139 extern cvar_t vid_refreshrate;
140 extern cvar_t vid_userefreshrate;
141 extern cvar_t vid_vsync;
142 extern cvar_t vid_mouse;
143 extern cvar_t vid_grabkeyboard;
144 extern cvar_t vid_stick_mouse;
145 extern cvar_t vid_resizable;
146 extern cvar_t vid_minwidth;
147 extern cvar_t vid_minheight;
148
149 extern cvar_t gl_finish;
150
151 extern cvar_t v_gamma;
152 extern cvar_t v_contrast;
153 extern cvar_t v_brightness;
154 extern cvar_t v_color_enable;
155 extern cvar_t v_color_black_r;
156 extern cvar_t v_color_black_g;
157 extern cvar_t v_color_black_b;
158 extern cvar_t v_color_grey_r;
159 extern cvar_t v_color_grey_g;
160 extern cvar_t v_color_grey_b;
161 extern cvar_t v_color_white_r;
162 extern cvar_t v_color_white_g;
163 extern cvar_t v_color_white_b;
164 extern cvar_t v_hwgamma;
165
166 // brand of graphics chip
167 extern const char *gl_vendor;
168 // graphics chip model and other information
169 extern const char *gl_renderer;
170 // begins with 1.0.0, 1.1.0, 1.2.0, 1.2.1, 1.3.0, 1.3.1, or 1.4.0
171 extern const char *gl_version;
172 // extensions list, space separated
173 extern const char *gl_extensions;
174 // WGL, GLX, or AGL
175 extern const char *gl_platform;
176 // another extensions list, containing platform-specific extensions that are
177 // not in the main list
178 extern const char *gl_platformextensions;
179 // name of driver library (opengl32.dll, libGL.so.1, or whatever)
180 extern char gl_driver[256];
181
182 // compatibility hacks
183 extern qboolean isG200;
184 extern qboolean isRagePro;
185
186 void *GL_GetProcAddress(const char *name);
187 qboolean GL_CheckExtension(const char *minglver_or_ext, const dllfunction_t *funcs, const char *disableparm, int silent);
188
189 void VID_Shared_Init(void);
190
191 void GL_Init (void);
192
193 void VID_ClearExtensions(void);
194 void VID_CheckExtensions(void);
195
196 void VID_Init (void);
197 // Called at startup
198
199 void VID_Shutdown (void);
200 // Called at shutdown
201
202 int VID_SetMode (int modenum);
203 // sets the mode; only used by the Quake engine for resetting to mode 0 (the
204 // base mode) on memory allocation failures
205
206 qboolean VID_InitMode(viddef_mode_t *mode);
207 // allocates and opens an appropriate OpenGL context (and its window)
208
209
210 // sets hardware gamma correction, returns false if the device does not
211 // support gamma control
212 // (ONLY called by VID_UpdateGamma and VID_RestoreSystemGamma)
213 int VID_SetGamma(unsigned short *ramps, int rampsize);
214 // gets hardware gamma correction, returns false if the device does not
215 // support gamma control
216 // (ONLY called by VID_UpdateGamma and VID_RestoreSystemGamma)
217 int VID_GetGamma(unsigned short *ramps, int rampsize);
218 // makes sure ramp arrays are big enough and calls VID_GetGamma/VID_SetGamma
219 // (ONLY to be called from VID_Finish!)
220 void VID_UpdateGamma(qboolean force, int rampsize);
221 // turns off hardware gamma ramps immediately
222 // (called from various shutdown/deactivation functions)
223 void VID_RestoreSystemGamma(void);
224
225 void VID_SetMouse (qboolean fullscreengrab, qboolean relative, qboolean hidecursor);
226 void VID_Finish (void);
227
228 void VID_Restart_f(void);
229
230 void VID_Start(void);
231
232 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
233 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
234 void VID_BuildGammaTables(unsigned short *ramps, int rampsize); // builds the current gamma tables into an array (needs 3*rampsize items)
235
236 typedef struct
237 {
238         int width, height, bpp, refreshrate;
239         int pixelheight_num, pixelheight_denom;
240 }
241 vid_mode_t;
242 size_t VID_ListModes(vid_mode_t *modes, size_t maxcount);
243 size_t VID_SortModes(vid_mode_t *modes, size_t count, qboolean usebpp, qboolean userefreshrate, qboolean useaspect);
244 #endif
245