]> de.git.xonotic.org Git - xonotic/darkplaces.git/blob - vid.h
Remove all render paths except GL20/GLES2. This means no DPSOFTRAST, no DX9 support...
[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_GL20,
34         RENDERPATH_GLES2
35 }
36 renderpath_t;
37
38 typedef struct viddef_support_s
39 {
40         qboolean gl20shaders;
41         qboolean gl20shaders130; // indicates glBindFragDataLocation is available
42         int glshaderversion; // typical values: 100 110 120 130 140 ...
43         qboolean amd_texture_texture4;
44         qboolean arb_depth_texture;
45         qboolean arb_draw_buffers;
46         qboolean arb_framebuffer_object;
47         qboolean arb_multitexture;
48         qboolean arb_occlusion_query;
49         qboolean arb_query_buffer_object;
50         qboolean arb_shadow;
51         qboolean arb_texture_compression;
52         qboolean arb_texture_cube_map;
53         qboolean arb_texture_env_combine;
54         qboolean arb_texture_gather;
55         qboolean arb_texture_non_power_of_two;
56         qboolean arb_vertex_buffer_object;
57         qboolean arb_uniform_buffer_object;
58         qboolean ati_separate_stencil;
59         qboolean ext_blend_minmax;
60         qboolean ext_blend_subtract;
61         qboolean ext_blend_func_separate;
62         qboolean ext_draw_range_elements;
63         qboolean ext_framebuffer_object;
64         qboolean ext_packed_depth_stencil;
65         qboolean ext_stencil_two_side;
66         qboolean ext_texture_3d;
67         qboolean ext_texture_compression_s3tc;
68         qboolean ext_texture_edge_clamp;
69         qboolean ext_texture_filter_anisotropic;
70         qboolean ext_texture_srgb;
71         qboolean arb_texture_float;
72         qboolean arb_half_float_pixel;
73         qboolean arb_half_float_vertex;
74         qboolean arb_multisample;
75 }
76 viddef_support_t;
77
78 typedef struct viddef_mode_s
79 {
80         int width;
81         int height;
82         int bitsperpixel;
83         qboolean fullscreen;
84         float refreshrate;
85         qboolean userefreshrate;
86         qboolean stereobuffer;
87         int samples;
88 }
89 viddef_mode_t;
90
91 typedef struct viddef_s
92 {
93         // these are set by VID_Mode
94         viddef_mode_t mode;
95         // used in many locations in the renderer
96         int width;
97         int height;
98         int bitsperpixel;
99         qboolean fullscreen;
100         float refreshrate;
101         qboolean userefreshrate;
102         qboolean stereobuffer;
103         int samples;
104         qboolean stencil;
105         qboolean sRGB2D; // whether 2D rendering is sRGB corrected (based on sRGBcapable2D)
106         qboolean sRGB3D; // whether 3D rendering is sRGB corrected (based on sRGBcapable3D)
107         qboolean sRGBcapable2D; // whether 2D rendering can be sRGB corrected (renderpath)
108         qboolean sRGBcapable3D; // whether 3D rendering can be sRGB corrected (renderpath)
109
110         renderpath_t renderpath;
111         qboolean forcevbo; // some renderpaths can not operate without it
112         qboolean useinterleavedarrays; // required by some renderpaths
113         qboolean allowalphatocoverage; // indicates the GL_AlphaToCoverage function works on this renderpath and framebuffer
114
115         unsigned int texunits;
116         unsigned int teximageunits;
117         unsigned int texarrayunits;
118         unsigned int drawrangeelements_maxvertices;
119         unsigned int drawrangeelements_maxindices;
120
121         unsigned int maxtexturesize_2d;
122         unsigned int maxtexturesize_3d;
123         unsigned int maxtexturesize_cubemap;
124         unsigned int max_anisotropy;
125         unsigned int maxdrawbuffers;
126
127         viddef_support_t support;
128
129         int forcetextype; // always use GL_BGRA for D3D, always use GL_RGBA for GLES, etc
130 } viddef_t;
131
132 // global video state
133 extern viddef_t vid;
134 extern void (*vid_menudrawfn)(void);
135 extern void (*vid_menukeyfn)(int key);
136
137 #define MAXJOYAXIS 16
138 // if this is changed, the corresponding code in vid_shared.c must be updated
139 #define MAXJOYBUTTON 36
140 typedef struct vid_joystate_s
141 {
142         float axis[MAXJOYAXIS]; // -1 to +1
143         unsigned char button[MAXJOYBUTTON]; // 0 or 1
144         qboolean is360; // indicates this joystick is a Microsoft Xbox 360 Controller For Windows
145 }
146 vid_joystate_t;
147
148 extern vid_joystate_t vid_joystate;
149
150 extern cvar_t joy_index;
151 extern cvar_t joy_enable;
152 extern cvar_t joy_detected;
153 extern cvar_t joy_active;
154
155 float VID_JoyState_GetAxis(const vid_joystate_t *joystate, int axis, float sensitivity, float deadzone);
156 void VID_ApplyJoyState(vid_joystate_t *joystate);
157 void VID_BuildJoyState(vid_joystate_t *joystate);
158 void VID_Shared_BuildJoyState_Begin(vid_joystate_t *joystate);
159 void VID_Shared_BuildJoyState_Finish(vid_joystate_t *joystate);
160 int VID_Shared_SetJoystick(int index);
161 qboolean VID_JoyBlockEmulatedKeys(int keycode);
162 void VID_EnableJoystick(qboolean enable);
163
164 extern qboolean vid_hidden;
165 extern qboolean vid_activewindow;
166 extern qboolean vid_supportrefreshrate;
167
168 extern cvar_t vid_fullscreen;
169 extern cvar_t vid_width;
170 extern cvar_t vid_height;
171 extern cvar_t vid_bitsperpixel;
172 extern cvar_t vid_samples;
173 extern cvar_t vid_refreshrate;
174 extern cvar_t vid_userefreshrate;
175 extern cvar_t vid_touchscreen_density;
176 extern cvar_t vid_touchscreen_xdpi;
177 extern cvar_t vid_touchscreen_ydpi;
178 extern cvar_t vid_vsync;
179 extern cvar_t vid_mouse;
180 extern cvar_t vid_grabkeyboard;
181 extern cvar_t vid_touchscreen;
182 extern cvar_t vid_touchscreen_showkeyboard;
183 extern cvar_t vid_touchscreen_supportshowkeyboard;
184 extern cvar_t vid_stick_mouse;
185 extern cvar_t vid_resizable;
186 extern cvar_t vid_desktopfullscreen;
187 extern cvar_t vid_minwidth;
188 extern cvar_t vid_minheight;
189 extern cvar_t vid_sRGB;
190 extern cvar_t vid_sRGB_fallback;
191
192 extern cvar_t gl_finish;
193
194 extern cvar_t v_gamma;
195 extern cvar_t v_contrast;
196 extern cvar_t v_brightness;
197 extern cvar_t v_color_enable;
198 extern cvar_t v_color_black_r;
199 extern cvar_t v_color_black_g;
200 extern cvar_t v_color_black_b;
201 extern cvar_t v_color_grey_r;
202 extern cvar_t v_color_grey_g;
203 extern cvar_t v_color_grey_b;
204 extern cvar_t v_color_white_r;
205 extern cvar_t v_color_white_g;
206 extern cvar_t v_color_white_b;
207
208 // brand of graphics chip
209 extern const char *gl_vendor;
210 // graphics chip model and other information
211 extern const char *gl_renderer;
212 // begins with 1.0.0, 1.1.0, 1.2.0, 1.2.1, 1.3.0, 1.3.1, or 1.4.0
213 extern const char *gl_version;
214 // extensions list, space separated
215 extern const char *gl_extensions;
216 // WGL, GLX, or AGL
217 extern const char *gl_platform;
218 // another extensions list, containing platform-specific extensions that are
219 // not in the main list
220 extern const char *gl_platformextensions;
221 // name of driver library (opengl32.dll, libGL.so.1, or whatever)
222 extern char gl_driver[256];
223
224 void *GL_GetProcAddress(const char *name);
225 qboolean GL_CheckExtension(const char *minglver_or_ext, const dllfunction_t *funcs, const char *disableparm, int silent);
226
227 void VID_Shared_Init(void);
228
229 void GL_Init (void);
230
231 void VID_ClearExtensions(void);
232 void VID_CheckExtensions(void);
233
234 void VID_Init (void);
235 // Called at startup
236
237 void VID_Shutdown (void);
238 // Called at shutdown
239
240 int VID_SetMode (int modenum);
241 // sets the mode; only used by the Quake engine for resetting to mode 0 (the
242 // base mode) on memory allocation failures
243
244 qboolean VID_InitMode(viddef_mode_t *mode);
245 // allocates and opens an appropriate OpenGL context (and its window)
246
247
248 // updates cachegamma variables and bumps vid_gammatables_serial if anything changed
249 // (ONLY to be called from VID_Finish!)
250 void VID_UpdateGamma(void);
251
252 qboolean VID_HasScreenKeyboardSupport(void);
253 void VID_ShowKeyboard(qboolean show);
254 qboolean VID_ShowingKeyboard(void);
255
256 void VID_SetMouse (qboolean fullscreengrab, qboolean relative, qboolean hidecursor);
257 void VID_Finish (void);
258
259 void VID_Restart_f(void);
260
261 void VID_Start(void);
262 void VID_Stop(void);
263
264 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
265 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
266 void VID_BuildGammaTables(unsigned short *ramps, int rampsize); // builds the current gamma tables into an array (needs 3*rampsize items)
267 void VID_ApplyGammaToColor(const float *rgb, float *out); // applies current gamma settings to a color (0-1 range)
268
269 typedef struct
270 {
271         int width, height, bpp, refreshrate;
272         int pixelheight_num, pixelheight_denom;
273 }
274 vid_mode_t;
275 vid_mode_t *VID_GetDesktopMode(void);
276 size_t VID_ListModes(vid_mode_t *modes, size_t maxcount);
277 size_t VID_SortModes(vid_mode_t *modes, size_t count, qboolean usebpp, qboolean userefreshrate, qboolean useaspect);
278 void VID_Soft_SharedSetup(void);
279
280 #endif
281