]> icculus.org git repositories - divverent/darkplaces.git/blob - vid.h
The call to alloca has been removed. This function has a quite bad reputation and...
[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 extern int cl_available;
26
27 typedef struct
28 {
29         // these are set with VID_GetWindowSize and can change from frame to frame
30         int realx;
31         int realy;
32         int realwidth;
33         int realheight;
34
35         int conwidth;
36         int conheight;
37 } viddef_t;
38
39 // global video state
40 extern viddef_t vid;
41 extern void (*vid_menudrawfn)(void);
42 extern void (*vid_menukeyfn)(int key);
43
44 extern int vid_hidden;
45 extern int vid_activewindow;
46
47 extern cvar_t vid_fullscreen;
48 extern cvar_t vid_width;
49 extern cvar_t vid_height;
50 extern cvar_t vid_bitsperpixel;
51 extern cvar_t vid_mouse;
52
53 // brand of graphics chip
54 extern const char *gl_vendor;
55 // graphics chip model and other information
56 extern const char *gl_renderer;
57 // begins with 1.0.0, 1.1.0, 1.2.0, 1.2.1, 1.3.0, 1.3.1, or 1.4.0
58 extern const char *gl_version;
59 // extensions list, space separated
60 extern const char *gl_extensions;
61 // WGL, GLX, or AGL
62 extern const char *gl_platform;
63 // another extensions list, containing platform-specific extensions that are
64 // not in the main list
65 extern const char *gl_platformextensions;
66 // name of driver library (opengl32.dll, libGL.so.1, or whatever)
67 extern char gl_driver[256];
68
69 // compatibility hacks
70 extern qboolean isG200;
71 extern qboolean isRagePro;
72
73 // LordHavoc: GLX_SGI_video_sync and WGL_EXT_swap_control
74 extern int gl_videosyncavailable;
75
76 typedef struct
77 {
78         const char *name;
79         void **funcvariable;
80 }
81 gl_extensionfunctionlist_t;
82
83 typedef struct
84 {
85         const char *name;
86         const gl_extensionfunctionlist_t *funcs;
87         int *enablevariable;
88         const char *disableparm;
89 }
90 gl_extensioninfo_t;
91
92 int GL_OpenLibrary(const char *name);
93 void GL_CloseLibrary(void);
94 void *GL_GetProcAddress(const char *name);
95 int GL_CheckExtension(const char *name, const gl_extensionfunctionlist_t *funcs, const char *disableparm, int silent);
96
97 void VID_Shared_Init(void);
98
99 void GL_Init (void);
100
101 void VID_CheckExtensions(void);
102
103 void VID_Init (void);
104 int VID_Mode(int fullscreen, int width, int height, int bpp);
105 // Called at startup
106
107 void VID_Shutdown (void);
108 // Called at shutdown
109
110 int VID_SetMode (int modenum);
111 // sets the mode; only used by the Quake engine for resetting to mode 0 (the
112 // base mode) on memory allocation failures
113
114 // sets hardware gamma correction, returns false if the device does not
115 // support gamma control
116 int VID_SetGamma (float prescale, float gamma, float scale, float base);
117
118 void VID_GetWindowSize (int *x, int *y, int *width, int *height);
119
120 void VID_Finish (void);
121
122 void VID_Restart_f(void);
123
124 void VID_Open (void);
125 void VID_Close (void);
126
127 #endif
128