bug fixes, added missing state query cases
[mesa.git] / src / mesa / main / glheader.h
1 /* $Id: glheader.h,v 1.19 2001/03/29 16:50:32 brianp Exp $ */
2
3 /*
4 * Mesa 3-D graphics library
5 * Version: 3.5
6 *
7 * Copyright (C) 1999-2001 Brian Paul All Rights Reserved.
8 *
9 * Permission is hereby granted, free of charge, to any person obtaining a
10 * copy of this software and associated documentation files (the "Software"),
11 * to deal in the Software without restriction, including without limitation
12 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
13 * and/or sell copies of the Software, and to permit persons to whom the
14 * Software is furnished to do so, subject to the following conditions:
15 *
16 * The above copyright notice and this permission notice shall be included
17 * in all copies or substantial portions of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
20 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
23 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
24 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 */
26
27
28 #ifndef GLHEADER_H
29 #define GLHEADER_H
30
31
32 /*
33 * This is the top-most include file of the Mesa sources.
34 * It includes gl.h and all system headers which are needed.
35 * Other Mesa source files should _not_ directly include any system
36 * headers. This allows Mesa to be integrated into XFree86 and
37 * allows system-dependent hacks/work-arounds to be collected in one place.
38 *
39 * If you touch this file, everything gets recompiled!
40 *
41 * This file should be included before any other header in the .c files.
42 *
43 * Put compiler/OS/assembly pragmas and macros here to avoid
44 * cluttering other source files.
45 */
46
47
48
49 #ifdef XFree86LOADER
50 #include "xf86_ansic.h"
51 #else
52 #include <assert.h>
53 #include <ctype.h>
54 /* If we can use Compaq's Fast Math Library on Alpha */
55 #if defined(__alpha__) && defined(CCPML)
56 #include <cpml.h>
57 #else
58 #include <math.h>
59 #endif
60 #include <limits.h>
61 #include <stdlib.h>
62 #include <stdio.h>
63 #include <string.h>
64 #if defined(__linux__) && defined(__i386__)
65 #include <fpu_control.h>
66 #endif
67 #endif
68 #include <float.h>
69
70
71 #ifdef HAVE_CONFIG_H
72 #include "conf.h"
73 #endif
74
75
76
77 #if defined(_WIN32) && !defined(__WIN32__) && !defined(__CYGWIN__)
78 # define __WIN32__
79 #endif
80
81 #if !defined(OPENSTEP) && (defined(__WIN32__) && !defined(__CYGWIN__))
82 # pragma warning( disable : 4068 ) /* unknown pragma */
83 # pragma warning( disable : 4710 ) /* function 'foo' not inlined */
84 # pragma warning( disable : 4711 ) /* function 'foo' selected for automatic inline expansion */
85 # pragma warning( disable : 4127 ) /* conditional expression is constant */
86 # if defined(MESA_MINWARN)
87 # pragma warning( disable : 4244 ) /* '=' : conversion from 'const double ' to 'float ', possible loss of data */
88 # pragma warning( disable : 4018 ) /* '<' : signed/unsigned mismatch */
89 # pragma warning( disable : 4305 ) /* '=' : truncation from 'const double ' to 'float ' */
90 # pragma warning( disable : 4550 ) /* 'function' undefined; assuming extern returning int */
91 # pragma warning( disable : 4761 ) /* integral size mismatch in argument; conversion supplied */
92 # endif
93 # if defined(_MSC_VER) && defined(BUILD_GL32) /* tag specify we're building mesa as a DLL */
94 # define GLAPI __declspec(dllexport)
95 # define WGLAPI __declspec(dllexport)
96 # elif defined(_MSC_VER) && defined(_DLL) /* tag specifying we're building for DLL runtime support */
97 # define GLAPI __declspec(dllimport)
98 # define WGLAPI __declspec(dllimport)
99 # else /* for use with static link lib build of Win32 edition only */
100 # define GLAPI extern
101 # define WGLAPI __declspec(dllimport)
102 # endif /* _STATIC_MESA support */
103 # define GLAPIENTRY __stdcall
104 # define GLAPIENTRYP __stdcall *
105 # define GLCALLBACK __stdcall
106 # define GLCALLBACKP __stdcall *
107 # if defined(__CYGWIN__)
108 # define GLCALLBACKPCAST *
109 # else
110 # define GLCALLBACKPCAST __stdcall *
111 # endif
112 # define GLWINAPI __stdcall
113 # define GLWINAPIV __cdecl
114 #else
115 /* non-Windows compilation */
116 # define GLAPI extern
117 # define GLAPIENTRY
118 # define GLAPIENTRYP *
119 # define GLCALLBACK
120 # define GLCALLBACKP *
121 # define GLCALLBACKPCAST *
122 # define GLWINAPI
123 # define GLWINAPIV
124 #endif /* WIN32 / CYGWIN bracket */
125
126 /* compatability guard so we don't need to change client code */
127
128 #if defined(_WIN32) && !defined(_WINDEF_) && !defined(_GNU_H_WINDOWS32_BASE) && !defined(OPENSTEP) && !defined(__CYGWIN__)
129 #if 0
130 # define CALLBACK GLCALLBACK
131 typedef void *HGLRC;
132 typedef void *HDC;
133 #endif
134 typedef int (GLAPIENTRY *PROC)();
135 typedef unsigned long COLORREF;
136 #endif
137
138
139 /* Make sure we include glext.h from gl.h */
140 #define GL_GLEXT_PROTOTYPES
141
142
143 #if defined(_WIN32) && !defined(_WINGDI_) && !defined(_GNU_H_WINDOWS32_DEFINES) && !defined(OPENSTEP)
144 # define WGL_FONT_LINES 0
145 # define WGL_FONT_POLYGONS 1
146 #ifndef _GNU_H_WINDOWS32_FUNCTIONS
147 # ifdef UNICODE
148 # define wglUseFontBitmaps wglUseFontBitmapsW
149 # define wglUseFontOutlines wglUseFontOutlinesW
150 # else
151 # define wglUseFontBitmaps wglUseFontBitmapsA
152 # define wglUseFontOutlines wglUseFontOutlinesA
153 # endif /* !UNICODE */
154 #endif /* _GNU_H_WINDOWS32_FUNCTIONS */
155 typedef struct tagLAYERPLANEDESCRIPTOR LAYERPLANEDESCRIPTOR, *PLAYERPLANEDESCRIPTOR, *LPLAYERPLANEDESCRIPTOR;
156 typedef struct _GLYPHMETRICSFLOAT GLYPHMETRICSFLOAT, *PGLYPHMETRICSFLOAT, *LPGLYPHMETRICSFLOAT;
157 typedef struct tagPIXELFORMATDESCRIPTOR PIXELFORMATDESCRIPTOR, *PPIXELFORMATDESCRIPTOR, *LPPIXELFORMATDESCRIPTOR;
158 #if !defined(GLX_USE_MESA)
159 #include <gl/mesa_wgl.h>
160 #endif
161 #endif
162
163
164 /* This is a macro on IRIX */
165 #ifdef _P
166 #undef _P
167 #endif
168
169
170
171 #include "GL/gl.h"
172 #include "GL/glext.h"
173
174
175 #ifndef CAPI
176 #define CAPI
177 #endif
178 #include <GL/internal/glcore.h>
179
180
181
182 /* Disable unreachable code warnings for Watcom C++ */
183 #ifdef __WATCOMC__
184 #pragma disable_message(201)
185 #endif
186
187
188 /* Turn off macro checking systems used by other libraries */
189 #ifdef CHECK
190 #undef CHECK
191 #endif
192
193
194 /* Create a macro so that asm functions can be linked into compilers other
195 * than GNU C
196 */
197 #ifndef _ASMAPI
198 #if !defined( __GNUC__ ) && !defined( VMS )
199 #define _ASMAPI __cdecl
200 #else
201 #define _ASMAPI
202 #endif
203 #ifdef PTR_DECL_IN_FRONT
204 #define _ASMAPIP * _ASMAPI
205 #else
206 #define _ASMAPIP _ASMAPI *
207 #endif
208 #endif
209
210 #ifdef USE_X86_ASM
211 #define _NORMAPI _ASMAPI
212 #define _NORMAPIP _ASMAPIP
213 #else
214 #define _NORMAPI
215 #define _NORMAPIP *
216 #endif
217
218
219
220 #endif /* GLHEADER_H */