Support ARB_texture_env_crossbar. Changes the way programs are
[mesa.git] / src / mesa / main / glheader.h
1 /**
2 * \file glheader.h
3 * Top-most include file.
4 *
5 * This is the top-most include file of the Mesa sources.
6 * It includes gl.h and all system headers which are needed.
7 * Other Mesa source files should \e not directly include any system
8 * headers. This allows Mesa to be integrated into XFree86 and
9 * allows system-dependent hacks/workarounds to be collected in one place.
10 *
11 * \note Actually, a lot of system-dependent stuff is now in imports.[ch].
12 *
13 * If you touch this file, everything gets recompiled!
14 *
15 * This file should be included before any other header in the .c files.
16 *
17 * Put compiler/OS/assembly pragmas and macros here to avoid
18 * cluttering other source files.
19 */
20
21 /*
22 * Mesa 3-D graphics library
23 * Version: 6.3
24 *
25 * Copyright (C) 1999-2005 Brian Paul All Rights Reserved.
26 *
27 * Permission is hereby granted, free of charge, to any person obtaining a
28 * copy of this software and associated documentation files (the "Software"),
29 * to deal in the Software without restriction, including without limitation
30 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
31 * and/or sell copies of the Software, and to permit persons to whom the
32 * Software is furnished to do so, subject to the following conditions:
33 *
34 * The above copyright notice and this permission notice shall be included
35 * in all copies or substantial portions of the Software.
36 *
37 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
38 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
39 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
40 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
41 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
42 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
43 */
44
45
46 #ifndef GLHEADER_H
47 #define GLHEADER_H
48
49
50 #if defined(XFree86LOADER) && defined(IN_MODULE)
51 #include "xf86_ansic.h"
52 #else
53 #include <assert.h>
54 #include <ctype.h>
55 /* If we can use Compaq's Fast Math Library on Alpha */
56 #if defined(__alpha__) && defined(CCPML)
57 #include <cpml.h>
58 #else
59 #include <math.h>
60 #endif
61 #include <limits.h>
62 #include <stdlib.h>
63 #include <stdio.h>
64 #include <string.h>
65 #if defined(__linux__) && defined(__i386__)
66 #include <fpu_control.h>
67 #endif
68 #endif
69 #include <float.h>
70 #include <stdarg.h>
71
72
73 /* This is no longer uses since we dumped autoconf/automake! */
74 #ifdef HAVE_CONFIG_H
75 #include "conf.h"
76 #endif
77
78
79 /* Get typedefs for uintptr_t and friends */
80 #if defined(_WIN32) && !defined(__WIN32__) && !defined(__CYGWIN__) && !defined(BUILD_FOR_SNAP)
81 #include <BaseTsd.h>
82 #else
83 #include <inttypes.h>
84 #endif
85
86 #if defined(_WIN32) && !defined(__WIN32__) && !defined(__CYGWIN__) && !defined(BUILD_FOR_SNAP)
87 # define __WIN32__
88 # define finite _finite
89 #endif
90
91 #if defined(__WATCOMC__)
92 # define finite _finite
93 # pragma disable_message(201) /* Disable unreachable code warnings */
94 #endif
95
96
97 #if !defined(OPENSTEP) && (defined(__WIN32__) && !defined(__CYGWIN__)) && !defined(BUILD_FOR_SNAP)
98 # if !defined(__GNUC__) /* mingw environment */
99 # pragma warning( disable : 4068 ) /* unknown pragma */
100 # pragma warning( disable : 4710 ) /* function 'foo' not inlined */
101 # pragma warning( disable : 4711 ) /* function 'foo' selected for automatic inline expansion */
102 # pragma warning( disable : 4127 ) /* conditional expression is constant */
103 # if defined(MESA_MINWARN)
104 # pragma warning( disable : 4244 ) /* '=' : conversion from 'const double ' to 'float ', possible loss of data */
105 # pragma warning( disable : 4018 ) /* '<' : signed/unsigned mismatch */
106 # pragma warning( disable : 4305 ) /* '=' : truncation from 'const double ' to 'float ' */
107 # pragma warning( disable : 4550 ) /* 'function' undefined; assuming extern returning int */
108 # pragma warning( disable : 4761 ) /* integral size mismatch in argument; conversion supplied */
109 # endif
110 # endif
111 # if (defined(_MSC_VER) || defined(__MINGW32__)) && defined(BUILD_GL32) /* tag specify we're building mesa as a DLL */
112 # define WGLAPI __declspec(dllexport)
113 # elif (defined(_MSC_VER) || defined(__MINGW32__)) && defined(_DLL) /* tag specifying we're building for DLL runtime support */
114 # define WGLAPI __declspec(dllimport)
115 # else /* for use with static link lib build of Win32 edition only */
116 # define WGLAPI __declspec(dllimport)
117 # endif /* _STATIC_MESA support */
118 #endif /* WIN32 / CYGWIN bracket */
119
120
121 #ifndef __MINGW32__
122 /* XXX why is this here?
123 * It should probaby be somewhere in src/mesa/drivers/windows/
124 */
125 /* compatibility guard so we don't need to change client code */
126 #if defined(_WIN32) && !defined(_WINDEF_) && !defined(_WINDEF_H) && !defined(_GNU_H_WINDOWS32_BASE) && !defined(OPENSTEP) && !defined(__CYGWIN__) && !defined(BUILD_FOR_SNAP)
127 typedef INT_PTR (GLAPIENTRY *PROC)();
128 typedef unsigned long COLORREF;
129 #endif
130
131
132 /* XXX why is this here?
133 * It should probaby be somewhere in src/mesa/drivers/windows/
134 */
135 #if defined(_WIN32) && !defined(_WINGDI_) && !defined(_WINGDI_H) && !defined(_GNU_H_WINDOWS32_DEFINES) && !defined(OPENSTEP) && !defined(BUILD_FOR_SNAP)
136 # define WGL_FONT_LINES 0
137 # define WGL_FONT_POLYGONS 1
138 #ifndef _GNU_H_WINDOWS32_FUNCTIONS
139 # ifdef UNICODE
140 # define wglUseFontBitmaps wglUseFontBitmapsW
141 # define wglUseFontOutlines wglUseFontOutlinesW
142 # else
143 # define wglUseFontBitmaps wglUseFontBitmapsA
144 # define wglUseFontOutlines wglUseFontOutlinesA
145 # endif /* !UNICODE */
146 #endif /* _GNU_H_WINDOWS32_FUNCTIONS */
147 typedef struct tagLAYERPLANEDESCRIPTOR LAYERPLANEDESCRIPTOR, *PLAYERPLANEDESCRIPTOR, *LPLAYERPLANEDESCRIPTOR;
148 typedef struct _GLYPHMETRICSFLOAT GLYPHMETRICSFLOAT, *PGLYPHMETRICSFLOAT, *LPGLYPHMETRICSFLOAT;
149 typedef struct tagPIXELFORMATDESCRIPTOR PIXELFORMATDESCRIPTOR, *PPIXELFORMATDESCRIPTOR, *LPPIXELFORMATDESCRIPTOR;
150 #if !defined(GLX_USE_MESA)
151 #include <GL/mesa_wgl.h>
152 #endif
153 #endif
154 #endif /* !__MINGW32__ */
155
156
157 /*
158 * Either define MESA_BIG_ENDIAN or MESA_LITTLE_ENDIAN.
159 * Do not use them unless absolutely necessary!
160 * Try to use a runtime test instead.
161 * For now, only used by some DRI hardware drivers for color/texel packing.
162 */
163 #if defined(BYTE_ORDER) && defined(BIG_ENDIAN) && BYTE_ORDER == BIG_ENDIAN
164 #if defined(__linux__)
165 #include <byteswap.h>
166 #define CPU_TO_LE32( x ) bswap_32( x )
167 #else /*__linux__*/
168 #define CPU_TO_LE32( x ) ( x ) /* fix me for non-Linux big-endian! */
169 #endif /*__linux__*/
170 #define MESA_BIG_ENDIAN 1
171 #else
172 #define CPU_TO_LE32( x ) ( x )
173 #define MESA_LITTLE_ENDIAN 1
174 #endif
175 #define LE32_TO_CPU( x ) CPU_TO_LE32( x )
176
177
178 #define GL_GLEXT_PROTOTYPES
179 #include "GL/gl.h"
180 #include "GL/glext.h"
181
182
183 #if !defined(CAPI) && defined(WIN32) && !defined(BUILD_FOR_SNAP)
184 #define CAPI _cdecl
185 #endif
186 #include <GL/internal/glcore.h>
187
188
189 /* This is a macro on IRIX */
190 #ifdef _P
191 #undef _P
192 #endif
193
194
195 /* Turn off macro checking systems used by other libraries */
196 #ifdef CHECK
197 #undef CHECK
198 #endif
199
200
201 /* Create a macro so that asm functions can be linked into compilers other
202 * than GNU C
203 */
204 #ifndef _ASMAPI
205 #if defined(WIN32) && !defined(BUILD_FOR_SNAP)/* was: !defined( __GNUC__ ) && !defined( VMS ) && !defined( __INTEL_COMPILER )*/
206 #define _ASMAPI __cdecl
207 #else
208 #define _ASMAPI
209 #endif
210 #ifdef PTR_DECL_IN_FRONT
211 #define _ASMAPIP * _ASMAPI
212 #else
213 #define _ASMAPIP _ASMAPI *
214 #endif
215 #endif
216
217 #ifdef USE_X86_ASM
218 #define _NORMAPI _ASMAPI
219 #define _NORMAPIP _ASMAPIP
220 #else
221 #define _NORMAPI
222 #define _NORMAPIP *
223 #endif
224
225
226 /* Function inlining */
227 #if defined(__GNUC__)
228 # define INLINE __inline__
229 #elif defined(__MSC__)
230 # define INLINE __inline
231 #elif defined(_MSC_VER)
232 # define INLINE __inline
233 #elif defined(__ICL)
234 # define INLINE __inline
235 #elif defined(__INTEL_COMPILER)
236 # define INLINE inline
237 #elif defined(__WATCOMC__) && (__WATCOMC__ >= 1100)
238 # define INLINE __inline
239 #else
240 # define INLINE
241 #endif
242
243
244 /* If we build the library with gcc's -fvisibility=hidden flag, we'll
245 * use the PUBLIC macro to mark functions that are to be exported.
246 *
247 * We also need to define a USED attribute, so the optimizer doesn't
248 * inline a static function that we later use in an alias. - ajax
249 */
250 #if defined(__GNUC__) && (__GNUC__ * 100 + __GNUC_MINOR__) >= 303
251 # define PUBLIC __attribute__((visibility("default")))
252 # define USED __attribute__((used))
253 #else
254 # define PUBLIC
255 # define USED
256 #endif
257
258
259 /* Some compilers don't like some of Mesa's const usage */
260 #ifdef NO_CONST
261 # define CONST
262 #else
263 # define CONST const
264 #endif
265
266
267 #if defined(BUILD_FOR_SNAP) && defined(CHECKED)
268 # define ASSERT(X) _CHECK(X)
269 #elif defined(DEBUG)
270 # define ASSERT(X) assert(X)
271 #else
272 # define ASSERT(X)
273 #endif
274
275
276 #if !defined __GNUC__ || __GNUC__ < 3
277 # define __builtin_expect(x, y) x
278 #endif
279
280
281 #include "config.h"
282
283 #endif /* GLHEADER_H */