annotate include/SDL_opengl.h @ 5227:c66b2a778b7e

Try to create an OpenGL ES 2.0 context on Android and successfully fall back to OpenGL ES 1.1 if that fails.
author Sam Lantinga <slouken@libsdl.org>
date Mon, 07 Feb 2011 17:44:07 -0800
parents c2539ff054c8
children b530ef003506
rev   line source
214
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
1 /*
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
2 SDL - Simple DirectMedia Layer
3697
f7b03b6838cb Fixed bug #926
Sam Lantinga <slouken@libsdl.org>
parents: 3569
diff changeset
3 Copyright (C) 1997-2010 Sam Lantinga
214
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
4
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
5 This library is free software; you can redistribute it and/or
1312
c9b51268668f Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents: 1205
diff changeset
6 modify it under the terms of the GNU Lesser General Public
214
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
7 License as published by the Free Software Foundation; either
1312
c9b51268668f Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents: 1205
diff changeset
8 version 2.1 of the License, or (at your option) any later version.
214
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
9
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
10 This library is distributed in the hope that it will be useful,
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1312
c9b51268668f Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents: 1205
diff changeset
13 Lesser General Public License for more details.
c9b51268668f Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents: 1205
diff changeset
14
c9b51268668f Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents: 1205
diff changeset
15 You should have received a copy of the GNU Lesser General Public
c9b51268668f Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents: 1205
diff changeset
16 License along with this library; if not, write to the Free Software
c9b51268668f Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents: 1205
diff changeset
17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
214
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
18
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
19 Sam Lantinga
251
b8688cfdc232 Updated the headers with the correct e-mail address
Sam Lantinga <slouken@libsdl.org>
parents: 242
diff changeset
20 slouken@libsdl.org
214
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
21 */
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
22
3407
d3baf5ac4e37 Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents: 3241
diff changeset
23 /**
d3baf5ac4e37 Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents: 3241
diff changeset
24 * \file SDL_opengl.h
d3baf5ac4e37 Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents: 3241
diff changeset
25 *
d3baf5ac4e37 Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents: 3241
diff changeset
26 * This is a simple file to encapsulate the OpenGL API headers.
d3baf5ac4e37 Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents: 3241
diff changeset
27 */
214
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
28
3241
08c5964f2a34 Fixed a few issues compiling with Mac OS X 10.6
Sam Lantinga <slouken@libsdl.org>
parents: 3240
diff changeset
29 #ifndef _SDL_opengl_h
08c5964f2a34 Fixed a few issues compiling with Mac OS X 10.6
Sam Lantinga <slouken@libsdl.org>
parents: 3240
diff changeset
30 #define _SDL_opengl_h
08c5964f2a34 Fixed a few issues compiling with Mac OS X 10.6
Sam Lantinga <slouken@libsdl.org>
parents: 3240
diff changeset
31
1402
d910939febfa Use consistent identifiers for the various platforms we support.
Sam Lantinga <slouken@libsdl.org>
parents: 1312
diff changeset
32 #include "SDL_config.h"
d910939febfa Use consistent identifiers for the various platforms we support.
Sam Lantinga <slouken@libsdl.org>
parents: 1312
diff changeset
33
5088
c2539ff054c8 Fixed compiling on Windows Mobile SDK 5.0 with Visual Studio 2008
Sam Lantinga <slouken@libsdl.org>
parents: 5062
diff changeset
34 #ifdef __WIN32__
214
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
35 #define WIN32_LEAN_AND_MEAN
725
9ee05fe728df *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents: 600
diff changeset
36 #ifndef NOMINMAX
1895
c121d94672cb SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents: 1619
diff changeset
37 #define NOMINMAX /* Don't defined min() and max() */
725
9ee05fe728df *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents: 600
diff changeset
38 #endif
214
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
39 #include <windows.h>
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
40 #endif
4922
ba79f17d68c1 Don't conflict with glext.h if it's already been included
Sam Lantinga <slouken@libsdl.org>
parents: 4634
diff changeset
41 #ifdef __glext_h_
ba79f17d68c1 Don't conflict with glext.h if it's already been included
Sam Lantinga <slouken@libsdl.org>
parents: 4634
diff changeset
42 /* Someone has already included glext.h */
ba79f17d68c1 Don't conflict with glext.h if it's already been included
Sam Lantinga <slouken@libsdl.org>
parents: 4634
diff changeset
43 #define NO_SDL_GLEXT
ba79f17d68c1 Don't conflict with glext.h if it's already been included
Sam Lantinga <slouken@libsdl.org>
parents: 4634
diff changeset
44 #endif
932
66761191fc11 Use the canonical glext.h on MacOS X as well (#define NO_SDL_GLEXT if you don't want this)
Sam Lantinga <slouken@libsdl.org>
parents: 843
diff changeset
45 #ifndef NO_SDL_GLEXT
1895
c121d94672cb SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents: 1619
diff changeset
46 #define __glext_h_ /* Don't let gl.h include glext.h */
932
66761191fc11 Use the canonical glext.h on MacOS X as well (#define NO_SDL_GLEXT if you don't want this)
Sam Lantinga <slouken@libsdl.org>
parents: 843
diff changeset
47 #endif
1424
7a610f25c12f Updated MacOS Classic MPW build
Sam Lantinga <slouken@libsdl.org>
parents: 1402
diff changeset
48 #if defined(__MACOSX__)
1895
c121d94672cb SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents: 1619
diff changeset
49 #include <OpenGL/gl.h> /* Header File For The OpenGL Library */
3241
08c5964f2a34 Fixed a few issues compiling with Mac OS X 10.6
Sam Lantinga <slouken@libsdl.org>
parents: 3240
diff changeset
50 #define __X_GL_H
214
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
51 #else
1895
c121d94672cb SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents: 1619
diff changeset
52 #include <GL/gl.h> /* Header File For The OpenGL Library */
932
66761191fc11 Use the canonical glext.h on MacOS X as well (#define NO_SDL_GLEXT if you don't want this)
Sam Lantinga <slouken@libsdl.org>
parents: 843
diff changeset
53 #endif
214
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
54 #ifndef NO_SDL_GLEXT
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
55 #undef __glext_h_
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
56 #endif
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
57
3407
d3baf5ac4e37 Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents: 3241
diff changeset
58 /**
d3baf5ac4e37 Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents: 3241
diff changeset
59 * \file SDL_opengl.h
d3baf5ac4e37 Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents: 3241
diff changeset
60 *
d3baf5ac4e37 Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents: 3241
diff changeset
61 * This file is included because glext.h is not available on some systems.
d3baf5ac4e37 Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents: 3241
diff changeset
62 * If you don't want this version included, simply define ::NO_SDL_GLEXT.
d3baf5ac4e37 Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents: 3241
diff changeset
63 *
d3baf5ac4e37 Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents: 3241
diff changeset
64 * The latest version is available from:
d3baf5ac4e37 Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents: 3241
diff changeset
65 * http://www.opengl.org/registry/
214
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
66 */
3407
d3baf5ac4e37 Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents: 3241
diff changeset
67
d3baf5ac4e37 Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents: 3241
diff changeset
68 /**
d3baf5ac4e37 Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents: 3241
diff changeset
69 * \def NO_SDL_GLEXT
d3baf5ac4e37 Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents: 3241
diff changeset
70 *
d3baf5ac4e37 Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents: 3241
diff changeset
71 * Define this if you have your own version of glext.h and want to disable the
d3baf5ac4e37 Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents: 3241
diff changeset
72 * version included in SDL_opengl.h.
d3baf5ac4e37 Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents: 3241
diff changeset
73 */
d3baf5ac4e37 Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents: 3241
diff changeset
74
1895
c121d94672cb SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents: 1619
diff changeset
75 #if !defined(NO_SDL_GLEXT) && !defined(GL_GLEXT_LEGACY)
c121d94672cb SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents: 1619
diff changeset
76 /* *INDENT-OFF* */
c121d94672cb SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents: 1619
diff changeset
77 #ifndef __glext_h_
214
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
78 #define __glext_h_
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
79
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
80 #ifdef __cplusplus
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
81 extern "C" {
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
82 #endif
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
83
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
84 /*
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
85 ** Copyright (c) 2007-2010 The Khronos Group Inc.
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
86 **
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
87 ** Permission is hereby granted, free of charge, to any person obtaining a
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
88 ** copy of this software and/or associated documentation files (the
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
89 ** "Materials"), to deal in the Materials without restriction, including
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
90 ** without limitation the rights to use, copy, modify, merge, publish,
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
91 ** distribute, sublicense, and/or sell copies of the Materials, and to
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
92 ** permit persons to whom the Materials are furnished to do so, subject to
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
93 ** the following conditions:
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
94 **
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
95 ** The above copyright notice and this permission notice shall be included
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
96 ** in all copies or substantial portions of the Materials.
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
97 **
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
98 ** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
99 ** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
100 ** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
101 ** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
102 ** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
103 ** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
104 ** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
105 */
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
106
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
107 /* Header file version number, required by OpenGL ABI for Linux */
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
108 /* glext.h last updated $Date: 2010-08-03 01:30:25 -0700 (Tue, 03 Aug 2010) $ */
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
109 /* Current version at http://www.opengl.org/registry/ */
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
110 #define GL_GLEXT_VERSION 64
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
111 /* Function declaration macros - to move into glplatform.h */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
112
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
113 #if defined(_WIN32) && !defined(APIENTRY) && !defined(__CYGWIN__) && !defined(__SCITECH_SNAP__)
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
114 #define WIN32_LEAN_AND_MEAN 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
115 #include <windows.h>
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
116 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
117
214
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
118 #ifndef APIENTRY
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
119 #define APIENTRY
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
120 #endif
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
121 #ifndef APIENTRYP
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
122 #define APIENTRYP APIENTRY *
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
123 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
124 #ifndef GLAPI
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
125 #define GLAPI extern
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
126 #endif
214
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
127
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
128 /*************************************************************/
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
129
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
130 #ifndef GL_VERSION_1_2
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
131 #define GL_UNSIGNED_BYTE_3_3_2 0x8032
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
132 #define GL_UNSIGNED_SHORT_4_4_4_4 0x8033
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
133 #define GL_UNSIGNED_SHORT_5_5_5_1 0x8034
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
134 #define GL_UNSIGNED_INT_8_8_8_8 0x8035
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
135 #define GL_UNSIGNED_INT_10_10_10_2 0x8036
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
136 #define GL_TEXTURE_BINDING_3D 0x806A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
137 #define GL_PACK_SKIP_IMAGES 0x806B
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
138 #define GL_PACK_IMAGE_HEIGHT 0x806C
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
139 #define GL_UNPACK_SKIP_IMAGES 0x806D
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
140 #define GL_UNPACK_IMAGE_HEIGHT 0x806E
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
141 #define GL_TEXTURE_3D 0x806F
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
142 #define GL_PROXY_TEXTURE_3D 0x8070
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
143 #define GL_TEXTURE_DEPTH 0x8071
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
144 #define GL_TEXTURE_WRAP_R 0x8072
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
145 #define GL_MAX_3D_TEXTURE_SIZE 0x8073
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
146 #define GL_UNSIGNED_BYTE_2_3_3_REV 0x8362
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
147 #define GL_UNSIGNED_SHORT_5_6_5 0x8363
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
148 #define GL_UNSIGNED_SHORT_5_6_5_REV 0x8364
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
149 #define GL_UNSIGNED_SHORT_4_4_4_4_REV 0x8365
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
150 #define GL_UNSIGNED_SHORT_1_5_5_5_REV 0x8366
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
151 #define GL_UNSIGNED_INT_8_8_8_8_REV 0x8367
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
152 #define GL_UNSIGNED_INT_2_10_10_10_REV 0x8368
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
153 #define GL_BGR 0x80E0
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
154 #define GL_BGRA 0x80E1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
155 #define GL_MAX_ELEMENTS_VERTICES 0x80E8
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
156 #define GL_MAX_ELEMENTS_INDICES 0x80E9
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
157 #define GL_CLAMP_TO_EDGE 0x812F
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
158 #define GL_TEXTURE_MIN_LOD 0x813A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
159 #define GL_TEXTURE_MAX_LOD 0x813B
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
160 #define GL_TEXTURE_BASE_LEVEL 0x813C
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
161 #define GL_TEXTURE_MAX_LEVEL 0x813D
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
162 #define GL_SMOOTH_POINT_SIZE_RANGE 0x0B12
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
163 #define GL_SMOOTH_POINT_SIZE_GRANULARITY 0x0B13
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
164 #define GL_SMOOTH_LINE_WIDTH_RANGE 0x0B22
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
165 #define GL_SMOOTH_LINE_WIDTH_GRANULARITY 0x0B23
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
166 #define GL_ALIASED_LINE_WIDTH_RANGE 0x846E
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
167 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
168
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
169 #ifndef GL_VERSION_1_2_DEPRECATED
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
170 #define GL_RESCALE_NORMAL 0x803A
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
171 #define GL_LIGHT_MODEL_COLOR_CONTROL 0x81F8
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
172 #define GL_SINGLE_COLOR 0x81F9
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
173 #define GL_SEPARATE_SPECULAR_COLOR 0x81FA
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
174 #define GL_ALIASED_POINT_SIZE_RANGE 0x846D
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
175 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
176
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
177 #ifndef GL_ARB_imaging
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
178 #define GL_CONSTANT_COLOR 0x8001
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
179 #define GL_ONE_MINUS_CONSTANT_COLOR 0x8002
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
180 #define GL_CONSTANT_ALPHA 0x8003
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
181 #define GL_ONE_MINUS_CONSTANT_ALPHA 0x8004
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
182 #define GL_BLEND_COLOR 0x8005
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
183 #define GL_FUNC_ADD 0x8006
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
184 #define GL_MIN 0x8007
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
185 #define GL_MAX 0x8008
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
186 #define GL_BLEND_EQUATION 0x8009
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
187 #define GL_FUNC_SUBTRACT 0x800A
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
188 #define GL_FUNC_REVERSE_SUBTRACT 0x800B
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
189 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
190
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
191 #ifndef GL_ARB_imaging_DEPRECATED
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
192 #define GL_CONVOLUTION_1D 0x8010
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
193 #define GL_CONVOLUTION_2D 0x8011
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
194 #define GL_SEPARABLE_2D 0x8012
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
195 #define GL_CONVOLUTION_BORDER_MODE 0x8013
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
196 #define GL_CONVOLUTION_FILTER_SCALE 0x8014
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
197 #define GL_CONVOLUTION_FILTER_BIAS 0x8015
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
198 #define GL_REDUCE 0x8016
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
199 #define GL_CONVOLUTION_FORMAT 0x8017
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
200 #define GL_CONVOLUTION_WIDTH 0x8018
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
201 #define GL_CONVOLUTION_HEIGHT 0x8019
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
202 #define GL_MAX_CONVOLUTION_WIDTH 0x801A
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
203 #define GL_MAX_CONVOLUTION_HEIGHT 0x801B
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
204 #define GL_POST_CONVOLUTION_RED_SCALE 0x801C
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
205 #define GL_POST_CONVOLUTION_GREEN_SCALE 0x801D
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
206 #define GL_POST_CONVOLUTION_BLUE_SCALE 0x801E
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
207 #define GL_POST_CONVOLUTION_ALPHA_SCALE 0x801F
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
208 #define GL_POST_CONVOLUTION_RED_BIAS 0x8020
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
209 #define GL_POST_CONVOLUTION_GREEN_BIAS 0x8021
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
210 #define GL_POST_CONVOLUTION_BLUE_BIAS 0x8022
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
211 #define GL_POST_CONVOLUTION_ALPHA_BIAS 0x8023
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
212 #define GL_HISTOGRAM 0x8024
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
213 #define GL_PROXY_HISTOGRAM 0x8025
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
214 #define GL_HISTOGRAM_WIDTH 0x8026
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
215 #define GL_HISTOGRAM_FORMAT 0x8027
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
216 #define GL_HISTOGRAM_RED_SIZE 0x8028
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
217 #define GL_HISTOGRAM_GREEN_SIZE 0x8029
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
218 #define GL_HISTOGRAM_BLUE_SIZE 0x802A
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
219 #define GL_HISTOGRAM_ALPHA_SIZE 0x802B
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
220 #define GL_HISTOGRAM_LUMINANCE_SIZE 0x802C
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
221 #define GL_HISTOGRAM_SINK 0x802D
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
222 #define GL_MINMAX 0x802E
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
223 #define GL_MINMAX_FORMAT 0x802F
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
224 #define GL_MINMAX_SINK 0x8030
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
225 #define GL_TABLE_TOO_LARGE 0x8031
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
226 #define GL_COLOR_MATRIX 0x80B1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
227 #define GL_COLOR_MATRIX_STACK_DEPTH 0x80B2
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
228 #define GL_MAX_COLOR_MATRIX_STACK_DEPTH 0x80B3
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
229 #define GL_POST_COLOR_MATRIX_RED_SCALE 0x80B4
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
230 #define GL_POST_COLOR_MATRIX_GREEN_SCALE 0x80B5
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
231 #define GL_POST_COLOR_MATRIX_BLUE_SCALE 0x80B6
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
232 #define GL_POST_COLOR_MATRIX_ALPHA_SCALE 0x80B7
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
233 #define GL_POST_COLOR_MATRIX_RED_BIAS 0x80B8
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
234 #define GL_POST_COLOR_MATRIX_GREEN_BIAS 0x80B9
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
235 #define GL_POST_COLOR_MATRIX_BLUE_BIAS 0x80BA
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
236 #define GL_POST_COLOR_MATRIX_ALPHA_BIAS 0x80BB
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
237 #define GL_COLOR_TABLE 0x80D0
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
238 #define GL_POST_CONVOLUTION_COLOR_TABLE 0x80D1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
239 #define GL_POST_COLOR_MATRIX_COLOR_TABLE 0x80D2
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
240 #define GL_PROXY_COLOR_TABLE 0x80D3
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
241 #define GL_PROXY_POST_CONVOLUTION_COLOR_TABLE 0x80D4
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
242 #define GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE 0x80D5
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
243 #define GL_COLOR_TABLE_SCALE 0x80D6
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
244 #define GL_COLOR_TABLE_BIAS 0x80D7
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
245 #define GL_COLOR_TABLE_FORMAT 0x80D8
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
246 #define GL_COLOR_TABLE_WIDTH 0x80D9
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
247 #define GL_COLOR_TABLE_RED_SIZE 0x80DA
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
248 #define GL_COLOR_TABLE_GREEN_SIZE 0x80DB
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
249 #define GL_COLOR_TABLE_BLUE_SIZE 0x80DC
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
250 #define GL_COLOR_TABLE_ALPHA_SIZE 0x80DD
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
251 #define GL_COLOR_TABLE_LUMINANCE_SIZE 0x80DE
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
252 #define GL_COLOR_TABLE_INTENSITY_SIZE 0x80DF
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
253 #define GL_CONSTANT_BORDER 0x8151
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
254 #define GL_REPLICATE_BORDER 0x8153
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
255 #define GL_CONVOLUTION_BORDER_COLOR 0x8154
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
256 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
257
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
258 #ifndef GL_VERSION_1_3
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
259 #define GL_TEXTURE0 0x84C0
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
260 #define GL_TEXTURE1 0x84C1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
261 #define GL_TEXTURE2 0x84C2
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
262 #define GL_TEXTURE3 0x84C3
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
263 #define GL_TEXTURE4 0x84C4
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
264 #define GL_TEXTURE5 0x84C5
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
265 #define GL_TEXTURE6 0x84C6
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
266 #define GL_TEXTURE7 0x84C7
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
267 #define GL_TEXTURE8 0x84C8
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
268 #define GL_TEXTURE9 0x84C9
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
269 #define GL_TEXTURE10 0x84CA
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
270 #define GL_TEXTURE11 0x84CB
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
271 #define GL_TEXTURE12 0x84CC
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
272 #define GL_TEXTURE13 0x84CD
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
273 #define GL_TEXTURE14 0x84CE
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
274 #define GL_TEXTURE15 0x84CF
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
275 #define GL_TEXTURE16 0x84D0
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
276 #define GL_TEXTURE17 0x84D1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
277 #define GL_TEXTURE18 0x84D2
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
278 #define GL_TEXTURE19 0x84D3
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
279 #define GL_TEXTURE20 0x84D4
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
280 #define GL_TEXTURE21 0x84D5
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
281 #define GL_TEXTURE22 0x84D6
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
282 #define GL_TEXTURE23 0x84D7
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
283 #define GL_TEXTURE24 0x84D8
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
284 #define GL_TEXTURE25 0x84D9
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
285 #define GL_TEXTURE26 0x84DA
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
286 #define GL_TEXTURE27 0x84DB
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
287 #define GL_TEXTURE28 0x84DC
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
288 #define GL_TEXTURE29 0x84DD
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
289 #define GL_TEXTURE30 0x84DE
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
290 #define GL_TEXTURE31 0x84DF
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
291 #define GL_ACTIVE_TEXTURE 0x84E0
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
292 #define GL_MULTISAMPLE 0x809D
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
293 #define GL_SAMPLE_ALPHA_TO_COVERAGE 0x809E
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
294 #define GL_SAMPLE_ALPHA_TO_ONE 0x809F
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
295 #define GL_SAMPLE_COVERAGE 0x80A0
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
296 #define GL_SAMPLE_BUFFERS 0x80A8
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
297 #define GL_SAMPLES 0x80A9
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
298 #define GL_SAMPLE_COVERAGE_VALUE 0x80AA
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
299 #define GL_SAMPLE_COVERAGE_INVERT 0x80AB
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
300 #define GL_TEXTURE_CUBE_MAP 0x8513
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
301 #define GL_TEXTURE_BINDING_CUBE_MAP 0x8514
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
302 #define GL_TEXTURE_CUBE_MAP_POSITIVE_X 0x8515
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
303 #define GL_TEXTURE_CUBE_MAP_NEGATIVE_X 0x8516
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
304 #define GL_TEXTURE_CUBE_MAP_POSITIVE_Y 0x8517
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
305 #define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y 0x8518
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
306 #define GL_TEXTURE_CUBE_MAP_POSITIVE_Z 0x8519
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
307 #define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z 0x851A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
308 #define GL_PROXY_TEXTURE_CUBE_MAP 0x851B
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
309 #define GL_MAX_CUBE_MAP_TEXTURE_SIZE 0x851C
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
310 #define GL_COMPRESSED_RGB 0x84ED
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
311 #define GL_COMPRESSED_RGBA 0x84EE
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
312 #define GL_TEXTURE_COMPRESSION_HINT 0x84EF
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
313 #define GL_TEXTURE_COMPRESSED_IMAGE_SIZE 0x86A0
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
314 #define GL_TEXTURE_COMPRESSED 0x86A1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
315 #define GL_NUM_COMPRESSED_TEXTURE_FORMATS 0x86A2
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
316 #define GL_COMPRESSED_TEXTURE_FORMATS 0x86A3
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
317 #define GL_CLAMP_TO_BORDER 0x812D
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
318 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
319
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
320 #ifndef GL_VERSION_1_3_DEPRECATED
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
321 #define GL_CLIENT_ACTIVE_TEXTURE 0x84E1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
322 #define GL_MAX_TEXTURE_UNITS 0x84E2
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
323 #define GL_TRANSPOSE_MODELVIEW_MATRIX 0x84E3
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
324 #define GL_TRANSPOSE_PROJECTION_MATRIX 0x84E4
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
325 #define GL_TRANSPOSE_TEXTURE_MATRIX 0x84E5
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
326 #define GL_TRANSPOSE_COLOR_MATRIX 0x84E6
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
327 #define GL_MULTISAMPLE_BIT 0x20000000
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
328 #define GL_NORMAL_MAP 0x8511
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
329 #define GL_REFLECTION_MAP 0x8512
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
330 #define GL_COMPRESSED_ALPHA 0x84E9
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
331 #define GL_COMPRESSED_LUMINANCE 0x84EA
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
332 #define GL_COMPRESSED_LUMINANCE_ALPHA 0x84EB
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
333 #define GL_COMPRESSED_INTENSITY 0x84EC
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
334 #define GL_COMBINE 0x8570
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
335 #define GL_COMBINE_RGB 0x8571
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
336 #define GL_COMBINE_ALPHA 0x8572
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
337 #define GL_SOURCE0_RGB 0x8580
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
338 #define GL_SOURCE1_RGB 0x8581
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
339 #define GL_SOURCE2_RGB 0x8582
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
340 #define GL_SOURCE0_ALPHA 0x8588
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
341 #define GL_SOURCE1_ALPHA 0x8589
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
342 #define GL_SOURCE2_ALPHA 0x858A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
343 #define GL_OPERAND0_RGB 0x8590
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
344 #define GL_OPERAND1_RGB 0x8591
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
345 #define GL_OPERAND2_RGB 0x8592
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
346 #define GL_OPERAND0_ALPHA 0x8598
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
347 #define GL_OPERAND1_ALPHA 0x8599
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
348 #define GL_OPERAND2_ALPHA 0x859A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
349 #define GL_RGB_SCALE 0x8573
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
350 #define GL_ADD_SIGNED 0x8574
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
351 #define GL_INTERPOLATE 0x8575
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
352 #define GL_SUBTRACT 0x84E7
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
353 #define GL_CONSTANT 0x8576
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
354 #define GL_PRIMARY_COLOR 0x8577
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
355 #define GL_PREVIOUS 0x8578
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
356 #define GL_DOT3_RGB 0x86AE
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
357 #define GL_DOT3_RGBA 0x86AF
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
358 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
359
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
360 #ifndef GL_VERSION_1_4
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
361 #define GL_BLEND_DST_RGB 0x80C8
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
362 #define GL_BLEND_SRC_RGB 0x80C9
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
363 #define GL_BLEND_DST_ALPHA 0x80CA
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
364 #define GL_BLEND_SRC_ALPHA 0x80CB
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
365 #define GL_POINT_FADE_THRESHOLD_SIZE 0x8128
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
366 #define GL_DEPTH_COMPONENT16 0x81A5
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
367 #define GL_DEPTH_COMPONENT24 0x81A6
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
368 #define GL_DEPTH_COMPONENT32 0x81A7
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
369 #define GL_MIRRORED_REPEAT 0x8370
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
370 #define GL_MAX_TEXTURE_LOD_BIAS 0x84FD
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
371 #define GL_TEXTURE_LOD_BIAS 0x8501
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
372 #define GL_INCR_WRAP 0x8507
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
373 #define GL_DECR_WRAP 0x8508
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
374 #define GL_TEXTURE_DEPTH_SIZE 0x884A
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
375 #define GL_TEXTURE_COMPARE_MODE 0x884C
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
376 #define GL_TEXTURE_COMPARE_FUNC 0x884D
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
377 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
378
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
379 #ifndef GL_VERSION_1_4_DEPRECATED
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
380 #define GL_POINT_SIZE_MIN 0x8126
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
381 #define GL_POINT_SIZE_MAX 0x8127
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
382 #define GL_POINT_DISTANCE_ATTENUATION 0x8129
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
383 #define GL_GENERATE_MIPMAP 0x8191
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
384 #define GL_GENERATE_MIPMAP_HINT 0x8192
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
385 #define GL_FOG_COORDINATE_SOURCE 0x8450
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
386 #define GL_FOG_COORDINATE 0x8451
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
387 #define GL_FRAGMENT_DEPTH 0x8452
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
388 #define GL_CURRENT_FOG_COORDINATE 0x8453
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
389 #define GL_FOG_COORDINATE_ARRAY_TYPE 0x8454
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
390 #define GL_FOG_COORDINATE_ARRAY_STRIDE 0x8455
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
391 #define GL_FOG_COORDINATE_ARRAY_POINTER 0x8456
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
392 #define GL_FOG_COORDINATE_ARRAY 0x8457
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
393 #define GL_COLOR_SUM 0x8458
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
394 #define GL_CURRENT_SECONDARY_COLOR 0x8459
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
395 #define GL_SECONDARY_COLOR_ARRAY_SIZE 0x845A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
396 #define GL_SECONDARY_COLOR_ARRAY_TYPE 0x845B
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
397 #define GL_SECONDARY_COLOR_ARRAY_STRIDE 0x845C
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
398 #define GL_SECONDARY_COLOR_ARRAY_POINTER 0x845D
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
399 #define GL_SECONDARY_COLOR_ARRAY 0x845E
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
400 #define GL_TEXTURE_FILTER_CONTROL 0x8500
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
401 #define GL_DEPTH_TEXTURE_MODE 0x884B
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
402 #define GL_COMPARE_R_TO_TEXTURE 0x884E
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
403 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
404
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
405 #ifndef GL_VERSION_1_5
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
406 #define GL_BUFFER_SIZE 0x8764
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
407 #define GL_BUFFER_USAGE 0x8765
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
408 #define GL_QUERY_COUNTER_BITS 0x8864
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
409 #define GL_CURRENT_QUERY 0x8865
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
410 #define GL_QUERY_RESULT 0x8866
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
411 #define GL_QUERY_RESULT_AVAILABLE 0x8867
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
412 #define GL_ARRAY_BUFFER 0x8892
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
413 #define GL_ELEMENT_ARRAY_BUFFER 0x8893
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
414 #define GL_ARRAY_BUFFER_BINDING 0x8894
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
415 #define GL_ELEMENT_ARRAY_BUFFER_BINDING 0x8895
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
416 #define GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING 0x889F
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
417 #define GL_READ_ONLY 0x88B8
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
418 #define GL_WRITE_ONLY 0x88B9
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
419 #define GL_READ_WRITE 0x88BA
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
420 #define GL_BUFFER_ACCESS 0x88BB
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
421 #define GL_BUFFER_MAPPED 0x88BC
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
422 #define GL_BUFFER_MAP_POINTER 0x88BD
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
423 #define GL_STREAM_DRAW 0x88E0
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
424 #define GL_STREAM_READ 0x88E1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
425 #define GL_STREAM_COPY 0x88E2
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
426 #define GL_STATIC_DRAW 0x88E4
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
427 #define GL_STATIC_READ 0x88E5
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
428 #define GL_STATIC_COPY 0x88E6
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
429 #define GL_DYNAMIC_DRAW 0x88E8
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
430 #define GL_DYNAMIC_READ 0x88E9
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
431 #define GL_DYNAMIC_COPY 0x88EA
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
432 #define GL_SAMPLES_PASSED 0x8914
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
433 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
434
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
435 #ifndef GL_VERSION_1_5_DEPRECATED
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
436 #define GL_VERTEX_ARRAY_BUFFER_BINDING 0x8896
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
437 #define GL_NORMAL_ARRAY_BUFFER_BINDING 0x8897
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
438 #define GL_COLOR_ARRAY_BUFFER_BINDING 0x8898
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
439 #define GL_INDEX_ARRAY_BUFFER_BINDING 0x8899
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
440 #define GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING 0x889A
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
441 #define GL_EDGE_FLAG_ARRAY_BUFFER_BINDING 0x889B
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
442 #define GL_SECONDARY_COLOR_ARRAY_BUFFER_BINDING 0x889C
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
443 #define GL_FOG_COORDINATE_ARRAY_BUFFER_BINDING 0x889D
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
444 #define GL_WEIGHT_ARRAY_BUFFER_BINDING 0x889E
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
445 #define GL_FOG_COORD_SRC 0x8450
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
446 #define GL_FOG_COORD 0x8451
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
447 #define GL_CURRENT_FOG_COORD 0x8453
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
448 #define GL_FOG_COORD_ARRAY_TYPE 0x8454
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
449 #define GL_FOG_COORD_ARRAY_STRIDE 0x8455
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
450 #define GL_FOG_COORD_ARRAY_POINTER 0x8456
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
451 #define GL_FOG_COORD_ARRAY 0x8457
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
452 #define GL_FOG_COORD_ARRAY_BUFFER_BINDING 0x889D
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
453 #define GL_SRC0_RGB 0x8580
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
454 #define GL_SRC1_RGB 0x8581
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
455 #define GL_SRC2_RGB 0x8582
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
456 #define GL_SRC0_ALPHA 0x8588
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
457 #define GL_SRC1_ALPHA 0x8589
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
458 #define GL_SRC2_ALPHA 0x858A
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
459 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
460
1205
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
461 #ifndef GL_VERSION_2_0
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
462 #define GL_BLEND_EQUATION_RGB 0x8009
1205
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
463 #define GL_VERTEX_ATTRIB_ARRAY_ENABLED 0x8622
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
464 #define GL_VERTEX_ATTRIB_ARRAY_SIZE 0x8623
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
465 #define GL_VERTEX_ATTRIB_ARRAY_STRIDE 0x8624
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
466 #define GL_VERTEX_ATTRIB_ARRAY_TYPE 0x8625
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
467 #define GL_CURRENT_VERTEX_ATTRIB 0x8626
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
468 #define GL_VERTEX_PROGRAM_POINT_SIZE 0x8642
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
469 #define GL_VERTEX_ATTRIB_ARRAY_POINTER 0x8645
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
470 #define GL_STENCIL_BACK_FUNC 0x8800
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
471 #define GL_STENCIL_BACK_FAIL 0x8801
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
472 #define GL_STENCIL_BACK_PASS_DEPTH_FAIL 0x8802
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
473 #define GL_STENCIL_BACK_PASS_DEPTH_PASS 0x8803
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
474 #define GL_MAX_DRAW_BUFFERS 0x8824
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
475 #define GL_DRAW_BUFFER0 0x8825
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
476 #define GL_DRAW_BUFFER1 0x8826
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
477 #define GL_DRAW_BUFFER2 0x8827
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
478 #define GL_DRAW_BUFFER3 0x8828
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
479 #define GL_DRAW_BUFFER4 0x8829
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
480 #define GL_DRAW_BUFFER5 0x882A
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
481 #define GL_DRAW_BUFFER6 0x882B
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
482 #define GL_DRAW_BUFFER7 0x882C
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
483 #define GL_DRAW_BUFFER8 0x882D
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
484 #define GL_DRAW_BUFFER9 0x882E
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
485 #define GL_DRAW_BUFFER10 0x882F
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
486 #define GL_DRAW_BUFFER11 0x8830
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
487 #define GL_DRAW_BUFFER12 0x8831
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
488 #define GL_DRAW_BUFFER13 0x8832
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
489 #define GL_DRAW_BUFFER14 0x8833
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
490 #define GL_DRAW_BUFFER15 0x8834
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
491 #define GL_BLEND_EQUATION_ALPHA 0x883D
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
492 #define GL_MAX_VERTEX_ATTRIBS 0x8869
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
493 #define GL_VERTEX_ATTRIB_ARRAY_NORMALIZED 0x886A
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
494 #define GL_MAX_TEXTURE_IMAGE_UNITS 0x8872
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
495 #define GL_FRAGMENT_SHADER 0x8B30
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
496 #define GL_VERTEX_SHADER 0x8B31
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
497 #define GL_MAX_FRAGMENT_UNIFORM_COMPONENTS 0x8B49
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
498 #define GL_MAX_VERTEX_UNIFORM_COMPONENTS 0x8B4A
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
499 #define GL_MAX_VARYING_FLOATS 0x8B4B
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
500 #define GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS 0x8B4C
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
501 #define GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS 0x8B4D
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
502 #define GL_SHADER_TYPE 0x8B4F
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
503 #define GL_FLOAT_VEC2 0x8B50
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
504 #define GL_FLOAT_VEC3 0x8B51
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
505 #define GL_FLOAT_VEC4 0x8B52
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
506 #define GL_INT_VEC2 0x8B53
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
507 #define GL_INT_VEC3 0x8B54
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
508 #define GL_INT_VEC4 0x8B55
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
509 #define GL_BOOL 0x8B56
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
510 #define GL_BOOL_VEC2 0x8B57
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
511 #define GL_BOOL_VEC3 0x8B58
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
512 #define GL_BOOL_VEC4 0x8B59
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
513 #define GL_FLOAT_MAT2 0x8B5A
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
514 #define GL_FLOAT_MAT3 0x8B5B
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
515 #define GL_FLOAT_MAT4 0x8B5C
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
516 #define GL_SAMPLER_1D 0x8B5D
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
517 #define GL_SAMPLER_2D 0x8B5E
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
518 #define GL_SAMPLER_3D 0x8B5F
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
519 #define GL_SAMPLER_CUBE 0x8B60
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
520 #define GL_SAMPLER_1D_SHADOW 0x8B61
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
521 #define GL_SAMPLER_2D_SHADOW 0x8B62
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
522 #define GL_DELETE_STATUS 0x8B80
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
523 #define GL_COMPILE_STATUS 0x8B81
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
524 #define GL_LINK_STATUS 0x8B82
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
525 #define GL_VALIDATE_STATUS 0x8B83
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
526 #define GL_INFO_LOG_LENGTH 0x8B84
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
527 #define GL_ATTACHED_SHADERS 0x8B85
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
528 #define GL_ACTIVE_UNIFORMS 0x8B86
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
529 #define GL_ACTIVE_UNIFORM_MAX_LENGTH 0x8B87
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
530 #define GL_SHADER_SOURCE_LENGTH 0x8B88
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
531 #define GL_ACTIVE_ATTRIBUTES 0x8B89
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
532 #define GL_ACTIVE_ATTRIBUTE_MAX_LENGTH 0x8B8A
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
533 #define GL_FRAGMENT_SHADER_DERIVATIVE_HINT 0x8B8B
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
534 #define GL_SHADING_LANGUAGE_VERSION 0x8B8C
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
535 #define GL_CURRENT_PROGRAM 0x8B8D
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
536 #define GL_POINT_SPRITE_COORD_ORIGIN 0x8CA0
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
537 #define GL_LOWER_LEFT 0x8CA1
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
538 #define GL_UPPER_LEFT 0x8CA2
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
539 #define GL_STENCIL_BACK_REF 0x8CA3
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
540 #define GL_STENCIL_BACK_VALUE_MASK 0x8CA4
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
541 #define GL_STENCIL_BACK_WRITEMASK 0x8CA5
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
542 #endif
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
543
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
544 #ifndef GL_VERSION_2_0_DEPRECATED
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
545 #define GL_VERTEX_PROGRAM_TWO_SIDE 0x8643
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
546 #define GL_POINT_SPRITE 0x8861
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
547 #define GL_COORD_REPLACE 0x8862
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
548 #define GL_MAX_TEXTURE_COORDS 0x8871
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
549 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
550
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
551 #ifndef GL_VERSION_2_1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
552 #define GL_PIXEL_PACK_BUFFER 0x88EB
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
553 #define GL_PIXEL_UNPACK_BUFFER 0x88EC
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
554 #define GL_PIXEL_PACK_BUFFER_BINDING 0x88ED
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
555 #define GL_PIXEL_UNPACK_BUFFER_BINDING 0x88EF
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
556 #define GL_FLOAT_MAT2x3 0x8B65
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
557 #define GL_FLOAT_MAT2x4 0x8B66
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
558 #define GL_FLOAT_MAT3x2 0x8B67
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
559 #define GL_FLOAT_MAT3x4 0x8B68
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
560 #define GL_FLOAT_MAT4x2 0x8B69
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
561 #define GL_FLOAT_MAT4x3 0x8B6A
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
562 #define GL_SRGB 0x8C40
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
563 #define GL_SRGB8 0x8C41
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
564 #define GL_SRGB_ALPHA 0x8C42
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
565 #define GL_SRGB8_ALPHA8 0x8C43
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
566 #define GL_COMPRESSED_SRGB 0x8C48
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
567 #define GL_COMPRESSED_SRGB_ALPHA 0x8C49
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
568 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
569
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
570 #ifndef GL_VERSION_2_1_DEPRECATED
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
571 #define GL_CURRENT_RASTER_SECONDARY_COLOR 0x845F
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
572 #define GL_SLUMINANCE_ALPHA 0x8C44
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
573 #define GL_SLUMINANCE8_ALPHA8 0x8C45
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
574 #define GL_SLUMINANCE 0x8C46
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
575 #define GL_SLUMINANCE8 0x8C47
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
576 #define GL_COMPRESSED_SLUMINANCE 0x8C4A
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
577 #define GL_COMPRESSED_SLUMINANCE_ALPHA 0x8C4B
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
578 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
579
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
580 #ifndef GL_VERSION_3_0
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
581 #define GL_COMPARE_REF_TO_TEXTURE 0x884E
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
582 #define GL_CLIP_DISTANCE0 0x3000
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
583 #define GL_CLIP_DISTANCE1 0x3001
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
584 #define GL_CLIP_DISTANCE2 0x3002
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
585 #define GL_CLIP_DISTANCE3 0x3003
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
586 #define GL_CLIP_DISTANCE4 0x3004
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
587 #define GL_CLIP_DISTANCE5 0x3005
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
588 #define GL_CLIP_DISTANCE6 0x3006
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
589 #define GL_CLIP_DISTANCE7 0x3007
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
590 #define GL_MAX_CLIP_DISTANCES 0x0D32
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
591 #define GL_MAJOR_VERSION 0x821B
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
592 #define GL_MINOR_VERSION 0x821C
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
593 #define GL_NUM_EXTENSIONS 0x821D
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
594 #define GL_CONTEXT_FLAGS 0x821E
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
595 #define GL_DEPTH_BUFFER 0x8223
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
596 #define GL_STENCIL_BUFFER 0x8224
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
597 #define GL_COMPRESSED_RED 0x8225
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
598 #define GL_COMPRESSED_RG 0x8226
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
599 #define GL_CONTEXT_FLAG_FORWARD_COMPATIBLE_BIT 0x0001
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
600 #define GL_RGBA32F 0x8814
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
601 #define GL_RGB32F 0x8815
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
602 #define GL_RGBA16F 0x881A
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
603 #define GL_RGB16F 0x881B
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
604 #define GL_VERTEX_ATTRIB_ARRAY_INTEGER 0x88FD
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
605 #define GL_MAX_ARRAY_TEXTURE_LAYERS 0x88FF
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
606 #define GL_MIN_PROGRAM_TEXEL_OFFSET 0x8904
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
607 #define GL_MAX_PROGRAM_TEXEL_OFFSET 0x8905
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
608 #define GL_CLAMP_READ_COLOR 0x891C
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
609 #define GL_FIXED_ONLY 0x891D
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
610 #define GL_MAX_VARYING_COMPONENTS 0x8B4B
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
611 #define GL_TEXTURE_1D_ARRAY 0x8C18
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
612 #define GL_PROXY_TEXTURE_1D_ARRAY 0x8C19
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
613 #define GL_TEXTURE_2D_ARRAY 0x8C1A
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
614 #define GL_PROXY_TEXTURE_2D_ARRAY 0x8C1B
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
615 #define GL_TEXTURE_BINDING_1D_ARRAY 0x8C1C
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
616 #define GL_TEXTURE_BINDING_2D_ARRAY 0x8C1D
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
617 #define GL_R11F_G11F_B10F 0x8C3A
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
618 #define GL_UNSIGNED_INT_10F_11F_11F_REV 0x8C3B
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
619 #define GL_RGB9_E5 0x8C3D
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
620 #define GL_UNSIGNED_INT_5_9_9_9_REV 0x8C3E
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
621 #define GL_TEXTURE_SHARED_SIZE 0x8C3F
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
622 #define GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH 0x8C76
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
623 #define GL_TRANSFORM_FEEDBACK_BUFFER_MODE 0x8C7F
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
624 #define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS 0x8C80
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
625 #define GL_TRANSFORM_FEEDBACK_VARYINGS 0x8C83
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
626 #define GL_TRANSFORM_FEEDBACK_BUFFER_START 0x8C84
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
627 #define GL_TRANSFORM_FEEDBACK_BUFFER_SIZE 0x8C85
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
628 #define GL_PRIMITIVES_GENERATED 0x8C87
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
629 #define GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN 0x8C88
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
630 #define GL_RASTERIZER_DISCARD 0x8C89
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
631 #define GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS 0x8C8A
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
632 #define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS 0x8C8B
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
633 #define GL_INTERLEAVED_ATTRIBS 0x8C8C
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
634 #define GL_SEPARATE_ATTRIBS 0x8C8D
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
635 #define GL_TRANSFORM_FEEDBACK_BUFFER 0x8C8E
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
636 #define GL_TRANSFORM_FEEDBACK_BUFFER_BINDING 0x8C8F
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
637 #define GL_RGBA32UI 0x8D70
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
638 #define GL_RGB32UI 0x8D71
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
639 #define GL_RGBA16UI 0x8D76
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
640 #define GL_RGB16UI 0x8D77
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
641 #define GL_RGBA8UI 0x8D7C
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
642 #define GL_RGB8UI 0x8D7D
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
643 #define GL_RGBA32I 0x8D82
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
644 #define GL_RGB32I 0x8D83
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
645 #define GL_RGBA16I 0x8D88
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
646 #define GL_RGB16I 0x8D89
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
647 #define GL_RGBA8I 0x8D8E
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
648 #define GL_RGB8I 0x8D8F
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
649 #define GL_RED_INTEGER 0x8D94
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
650 #define GL_GREEN_INTEGER 0x8D95
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
651 #define GL_BLUE_INTEGER 0x8D96
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
652 #define GL_RGB_INTEGER 0x8D98
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
653 #define GL_RGBA_INTEGER 0x8D99
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
654 #define GL_BGR_INTEGER 0x8D9A
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
655 #define GL_BGRA_INTEGER 0x8D9B
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
656 #define GL_SAMPLER_1D_ARRAY 0x8DC0
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
657 #define GL_SAMPLER_2D_ARRAY 0x8DC1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
658 #define GL_SAMPLER_1D_ARRAY_SHADOW 0x8DC3
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
659 #define GL_SAMPLER_2D_ARRAY_SHADOW 0x8DC4
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
660 #define GL_SAMPLER_CUBE_SHADOW 0x8DC5
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
661 #define GL_UNSIGNED_INT_VEC2 0x8DC6
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
662 #define GL_UNSIGNED_INT_VEC3 0x8DC7
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
663 #define GL_UNSIGNED_INT_VEC4 0x8DC8
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
664 #define GL_INT_SAMPLER_1D 0x8DC9
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
665 #define GL_INT_SAMPLER_2D 0x8DCA
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
666 #define GL_INT_SAMPLER_3D 0x8DCB
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
667 #define GL_INT_SAMPLER_CUBE 0x8DCC
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
668 #define GL_INT_SAMPLER_1D_ARRAY 0x8DCE
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
669 #define GL_INT_SAMPLER_2D_ARRAY 0x8DCF
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
670 #define GL_UNSIGNED_INT_SAMPLER_1D 0x8DD1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
671 #define GL_UNSIGNED_INT_SAMPLER_2D 0x8DD2
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
672 #define GL_UNSIGNED_INT_SAMPLER_3D 0x8DD3
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
673 #define GL_UNSIGNED_INT_SAMPLER_CUBE 0x8DD4
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
674 #define GL_UNSIGNED_INT_SAMPLER_1D_ARRAY 0x8DD6
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
675 #define GL_UNSIGNED_INT_SAMPLER_2D_ARRAY 0x8DD7
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
676 #define GL_QUERY_WAIT 0x8E13
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
677 #define GL_QUERY_NO_WAIT 0x8E14
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
678 #define GL_QUERY_BY_REGION_WAIT 0x8E15
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
679 #define GL_QUERY_BY_REGION_NO_WAIT 0x8E16
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
680 #define GL_BUFFER_ACCESS_FLAGS 0x911F
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
681 #define GL_BUFFER_MAP_LENGTH 0x9120
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
682 #define GL_BUFFER_MAP_OFFSET 0x9121
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
683 /* Reuse tokens from ARB_depth_buffer_float */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
684 /* reuse GL_DEPTH_COMPONENT32F */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
685 /* reuse GL_DEPTH32F_STENCIL8 */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
686 /* reuse GL_FLOAT_32_UNSIGNED_INT_24_8_REV */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
687 /* Reuse tokens from ARB_framebuffer_object */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
688 /* reuse GL_INVALID_FRAMEBUFFER_OPERATION */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
689 /* reuse GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
690 /* reuse GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
691 /* reuse GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
692 /* reuse GL_FRAMEBUFFER_ATTACHMENT_GREEN_SIZE */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
693 /* reuse GL_FRAMEBUFFER_ATTACHMENT_BLUE_SIZE */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
694 /* reuse GL_FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
695 /* reuse GL_FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
696 /* reuse GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
697 /* reuse GL_FRAMEBUFFER_DEFAULT */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
698 /* reuse GL_FRAMEBUFFER_UNDEFINED */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
699 /* reuse GL_DEPTH_STENCIL_ATTACHMENT */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
700 /* reuse GL_INDEX */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
701 /* reuse GL_MAX_RENDERBUFFER_SIZE */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
702 /* reuse GL_DEPTH_STENCIL */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
703 /* reuse GL_UNSIGNED_INT_24_8 */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
704 /* reuse GL_DEPTH24_STENCIL8 */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
705 /* reuse GL_TEXTURE_STENCIL_SIZE */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
706 /* reuse GL_TEXTURE_RED_TYPE */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
707 /* reuse GL_TEXTURE_GREEN_TYPE */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
708 /* reuse GL_TEXTURE_BLUE_TYPE */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
709 /* reuse GL_TEXTURE_ALPHA_TYPE */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
710 /* reuse GL_TEXTURE_DEPTH_TYPE */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
711 /* reuse GL_UNSIGNED_NORMALIZED */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
712 /* reuse GL_FRAMEBUFFER_BINDING */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
713 /* reuse GL_DRAW_FRAMEBUFFER_BINDING */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
714 /* reuse GL_RENDERBUFFER_BINDING */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
715 /* reuse GL_READ_FRAMEBUFFER */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
716 /* reuse GL_DRAW_FRAMEBUFFER */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
717 /* reuse GL_READ_FRAMEBUFFER_BINDING */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
718 /* reuse GL_RENDERBUFFER_SAMPLES */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
719 /* reuse GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
720 /* reuse GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
721 /* reuse GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
722 /* reuse GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
723 /* reuse GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
724 /* reuse GL_FRAMEBUFFER_COMPLETE */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
725 /* reuse GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
726 /* reuse GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
727 /* reuse GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
728 /* reuse GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
729 /* reuse GL_FRAMEBUFFER_UNSUPPORTED */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
730 /* reuse GL_MAX_COLOR_ATTACHMENTS */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
731 /* reuse GL_COLOR_ATTACHMENT0 */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
732 /* reuse GL_COLOR_ATTACHMENT1 */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
733 /* reuse GL_COLOR_ATTACHMENT2 */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
734 /* reuse GL_COLOR_ATTACHMENT3 */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
735 /* reuse GL_COLOR_ATTACHMENT4 */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
736 /* reuse GL_COLOR_ATTACHMENT5 */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
737 /* reuse GL_COLOR_ATTACHMENT6 */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
738 /* reuse GL_COLOR_ATTACHMENT7 */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
739 /* reuse GL_COLOR_ATTACHMENT8 */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
740 /* reuse GL_COLOR_ATTACHMENT9 */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
741 /* reuse GL_COLOR_ATTACHMENT10 */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
742 /* reuse GL_COLOR_ATTACHMENT11 */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
743 /* reuse GL_COLOR_ATTACHMENT12 */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
744 /* reuse GL_COLOR_ATTACHMENT13 */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
745 /* reuse GL_COLOR_ATTACHMENT14 */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
746 /* reuse GL_COLOR_ATTACHMENT15 */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
747 /* reuse GL_DEPTH_ATTACHMENT */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
748 /* reuse GL_STENCIL_ATTACHMENT */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
749 /* reuse GL_FRAMEBUFFER */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
750 /* reuse GL_RENDERBUFFER */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
751 /* reuse GL_RENDERBUFFER_WIDTH */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
752 /* reuse GL_RENDERBUFFER_HEIGHT */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
753 /* reuse GL_RENDERBUFFER_INTERNAL_FORMAT */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
754 /* reuse GL_STENCIL_INDEX1 */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
755 /* reuse GL_STENCIL_INDEX4 */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
756 /* reuse GL_STENCIL_INDEX8 */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
757 /* reuse GL_STENCIL_INDEX16 */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
758 /* reuse GL_RENDERBUFFER_RED_SIZE */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
759 /* reuse GL_RENDERBUFFER_GREEN_SIZE */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
760 /* reuse GL_RENDERBUFFER_BLUE_SIZE */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
761 /* reuse GL_RENDERBUFFER_ALPHA_SIZE */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
762 /* reuse GL_RENDERBUFFER_DEPTH_SIZE */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
763 /* reuse GL_RENDERBUFFER_STENCIL_SIZE */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
764 /* reuse GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
765 /* reuse GL_MAX_SAMPLES */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
766 /* Reuse tokens from ARB_framebuffer_sRGB */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
767 /* reuse GL_FRAMEBUFFER_SRGB */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
768 /* Reuse tokens from ARB_half_float_vertex */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
769 /* reuse GL_HALF_FLOAT */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
770 /* Reuse tokens from ARB_map_buffer_range */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
771 /* reuse GL_MAP_READ_BIT */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
772 /* reuse GL_MAP_WRITE_BIT */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
773 /* reuse GL_MAP_INVALIDATE_RANGE_BIT */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
774 /* reuse GL_MAP_INVALIDATE_BUFFER_BIT */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
775 /* reuse GL_MAP_FLUSH_EXPLICIT_BIT */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
776 /* reuse GL_MAP_UNSYNCHRONIZED_BIT */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
777 /* Reuse tokens from ARB_texture_compression_rgtc */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
778 /* reuse GL_COMPRESSED_RED_RGTC1 */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
779 /* reuse GL_COMPRESSED_SIGNED_RED_RGTC1 */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
780 /* reuse GL_COMPRESSED_RG_RGTC2 */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
781 /* reuse GL_COMPRESSED_SIGNED_RG_RGTC2 */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
782 /* Reuse tokens from ARB_texture_rg */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
783 /* reuse GL_RG */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
784 /* reuse GL_RG_INTEGER */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
785 /* reuse GL_R8 */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
786 /* reuse GL_R16 */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
787 /* reuse GL_RG8 */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
788 /* reuse GL_RG16 */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
789 /* reuse GL_R16F */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
790 /* reuse GL_R32F */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
791 /* reuse GL_RG16F */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
792 /* reuse GL_RG32F */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
793 /* reuse GL_R8I */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
794 /* reuse GL_R8UI */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
795 /* reuse GL_R16I */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
796 /* reuse GL_R16UI */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
797 /* reuse GL_R32I */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
798 /* reuse GL_R32UI */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
799 /* reuse GL_RG8I */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
800 /* reuse GL_RG8UI */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
801 /* reuse GL_RG16I */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
802 /* reuse GL_RG16UI */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
803 /* reuse GL_RG32I */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
804 /* reuse GL_RG32UI */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
805 /* Reuse tokens from ARB_vertex_array_object */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
806 /* reuse GL_VERTEX_ARRAY_BINDING */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
807 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
808
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
809 #ifndef GL_VERSION_3_0_DEPRECATED
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
810 #define GL_CLAMP_VERTEX_COLOR 0x891A
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
811 #define GL_CLAMP_FRAGMENT_COLOR 0x891B
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
812 #define GL_ALPHA_INTEGER 0x8D97
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
813 /* Reuse tokens from ARB_framebuffer_object */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
814 /* reuse GL_TEXTURE_LUMINANCE_TYPE */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
815 /* reuse GL_TEXTURE_INTENSITY_TYPE */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
816 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
817
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
818 #ifndef GL_VERSION_3_1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
819 #define GL_SAMPLER_2D_RECT 0x8B63
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
820 #define GL_SAMPLER_2D_RECT_SHADOW 0x8B64
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
821 #define GL_SAMPLER_BUFFER 0x8DC2
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
822 #define GL_INT_SAMPLER_2D_RECT 0x8DCD
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
823 #define GL_INT_SAMPLER_BUFFER 0x8DD0
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
824 #define GL_UNSIGNED_INT_SAMPLER_2D_RECT 0x8DD5
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
825 #define GL_UNSIGNED_INT_SAMPLER_BUFFER 0x8DD8
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
826 #define GL_TEXTURE_BUFFER 0x8C2A
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
827 #define GL_MAX_TEXTURE_BUFFER_SIZE 0x8C2B
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
828 #define GL_TEXTURE_BINDING_BUFFER 0x8C2C
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
829 #define GL_TEXTURE_BUFFER_DATA_STORE_BINDING 0x8C2D
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
830 #define GL_TEXTURE_BUFFER_FORMAT 0x8C2E
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
831 #define GL_TEXTURE_RECTANGLE 0x84F5
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
832 #define GL_TEXTURE_BINDING_RECTANGLE 0x84F6
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
833 #define GL_PROXY_TEXTURE_RECTANGLE 0x84F7
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
834 #define GL_MAX_RECTANGLE_TEXTURE_SIZE 0x84F8
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
835 #define GL_RED_SNORM 0x8F90
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
836 #define GL_RG_SNORM 0x8F91
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
837 #define GL_RGB_SNORM 0x8F92
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
838 #define GL_RGBA_SNORM 0x8F93
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
839 #define GL_R8_SNORM 0x8F94
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
840 #define GL_RG8_SNORM 0x8F95
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
841 #define GL_RGB8_SNORM 0x8F96
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
842 #define GL_RGBA8_SNORM 0x8F97
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
843 #define GL_R16_SNORM 0x8F98
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
844 #define GL_RG16_SNORM 0x8F99
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
845 #define GL_RGB16_SNORM 0x8F9A
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
846 #define GL_RGBA16_SNORM 0x8F9B
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
847 #define GL_SIGNED_NORMALIZED 0x8F9C
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
848 #define GL_PRIMITIVE_RESTART 0x8F9D
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
849 #define GL_PRIMITIVE_RESTART_INDEX 0x8F9E
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
850 /* Reuse tokens from ARB_copy_buffer */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
851 /* reuse GL_COPY_READ_BUFFER */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
852 /* reuse GL_COPY_WRITE_BUFFER */
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
853 /* Reuse tokens from ARB_draw_instanced (none) */
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
854 /* Reuse tokens from ARB_uniform_buffer_object */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
855 /* reuse GL_UNIFORM_BUFFER */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
856 /* reuse GL_UNIFORM_BUFFER_BINDING */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
857 /* reuse GL_UNIFORM_BUFFER_START */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
858 /* reuse GL_UNIFORM_BUFFER_SIZE */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
859 /* reuse GL_MAX_VERTEX_UNIFORM_BLOCKS */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
860 /* reuse GL_MAX_FRAGMENT_UNIFORM_BLOCKS */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
861 /* reuse GL_MAX_COMBINED_UNIFORM_BLOCKS */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
862 /* reuse GL_MAX_UNIFORM_BUFFER_BINDINGS */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
863 /* reuse GL_MAX_UNIFORM_BLOCK_SIZE */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
864 /* reuse GL_MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
865 /* reuse GL_MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
866 /* reuse GL_UNIFORM_BUFFER_OFFSET_ALIGNMENT */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
867 /* reuse GL_ACTIVE_UNIFORM_BLOCK_MAX_NAME_LENGTH */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
868 /* reuse GL_ACTIVE_UNIFORM_BLOCKS */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
869 /* reuse GL_UNIFORM_TYPE */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
870 /* reuse GL_UNIFORM_SIZE */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
871 /* reuse GL_UNIFORM_NAME_LENGTH */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
872 /* reuse GL_UNIFORM_BLOCK_INDEX */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
873 /* reuse GL_UNIFORM_OFFSET */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
874 /* reuse GL_UNIFORM_ARRAY_STRIDE */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
875 /* reuse GL_UNIFORM_MATRIX_STRIDE */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
876 /* reuse GL_UNIFORM_IS_ROW_MAJOR */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
877 /* reuse GL_UNIFORM_BLOCK_BINDING */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
878 /* reuse GL_UNIFORM_BLOCK_DATA_SIZE */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
879 /* reuse GL_UNIFORM_BLOCK_NAME_LENGTH */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
880 /* reuse GL_UNIFORM_BLOCK_ACTIVE_UNIFORMS */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
881 /* reuse GL_UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
882 /* reuse GL_UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
883 /* reuse GL_UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
884 /* reuse GL_INVALID_INDEX */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
885 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
886
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
887 #ifndef GL_VERSION_3_2
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
888 #define GL_CONTEXT_CORE_PROFILE_BIT 0x00000001
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
889 #define GL_CONTEXT_COMPATIBILITY_PROFILE_BIT 0x00000002
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
890 #define GL_LINES_ADJACENCY 0x000A
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
891 #define GL_LINE_STRIP_ADJACENCY 0x000B
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
892 #define GL_TRIANGLES_ADJACENCY 0x000C
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
893 #define GL_TRIANGLE_STRIP_ADJACENCY 0x000D
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
894 #define GL_PROGRAM_POINT_SIZE 0x8642
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
895 #define GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS 0x8C29
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
896 #define GL_FRAMEBUFFER_ATTACHMENT_LAYERED 0x8DA7
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
897 #define GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS 0x8DA8
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
898 #define GL_GEOMETRY_SHADER 0x8DD9
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
899 #define GL_GEOMETRY_VERTICES_OUT 0x8916
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
900 #define GL_GEOMETRY_INPUT_TYPE 0x8917
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
901 #define GL_GEOMETRY_OUTPUT_TYPE 0x8918
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
902 #define GL_MAX_GEOMETRY_UNIFORM_COMPONENTS 0x8DDF
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
903 #define GL_MAX_GEOMETRY_OUTPUT_VERTICES 0x8DE0
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
904 #define GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS 0x8DE1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
905 #define GL_MAX_VERTEX_OUTPUT_COMPONENTS 0x9122
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
906 #define GL_MAX_GEOMETRY_INPUT_COMPONENTS 0x9123
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
907 #define GL_MAX_GEOMETRY_OUTPUT_COMPONENTS 0x9124
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
908 #define GL_MAX_FRAGMENT_INPUT_COMPONENTS 0x9125
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
909 #define GL_CONTEXT_PROFILE_MASK 0x9126
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
910 /* reuse GL_MAX_VARYING_COMPONENTS */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
911 /* reuse GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
912 /* Reuse tokens from ARB_depth_clamp */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
913 /* reuse GL_DEPTH_CLAMP */
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
914 /* Reuse tokens from ARB_draw_elements_base_vertex (none) */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
915 /* Reuse tokens from ARB_fragment_coord_conventions (none) */
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
916 /* Reuse tokens from ARB_provoking_vertex */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
917 /* reuse GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
918 /* reuse GL_FIRST_VERTEX_CONVENTION */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
919 /* reuse GL_LAST_VERTEX_CONVENTION */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
920 /* reuse GL_PROVOKING_VERTEX */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
921 /* Reuse tokens from ARB_seamless_cube_map */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
922 /* reuse GL_TEXTURE_CUBE_MAP_SEAMLESS */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
923 /* Reuse tokens from ARB_sync */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
924 /* reuse GL_MAX_SERVER_WAIT_TIMEOUT */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
925 /* reuse GL_OBJECT_TYPE */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
926 /* reuse GL_SYNC_CONDITION */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
927 /* reuse GL_SYNC_STATUS */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
928 /* reuse GL_SYNC_FLAGS */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
929 /* reuse GL_SYNC_FENCE */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
930 /* reuse GL_SYNC_GPU_COMMANDS_COMPLETE */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
931 /* reuse GL_UNSIGNALED */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
932 /* reuse GL_SIGNALED */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
933 /* reuse GL_ALREADY_SIGNALED */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
934 /* reuse GL_TIMEOUT_EXPIRED */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
935 /* reuse GL_CONDITION_SATISFIED */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
936 /* reuse GL_WAIT_FAILED */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
937 /* reuse GL_TIMEOUT_IGNORED */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
938 /* reuse GL_SYNC_FLUSH_COMMANDS_BIT */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
939 /* reuse GL_TIMEOUT_IGNORED */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
940 /* Reuse tokens from ARB_texture_multisample */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
941 /* reuse GL_SAMPLE_POSITION */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
942 /* reuse GL_SAMPLE_MASK */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
943 /* reuse GL_SAMPLE_MASK_VALUE */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
944 /* reuse GL_MAX_SAMPLE_MASK_WORDS */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
945 /* reuse GL_TEXTURE_2D_MULTISAMPLE */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
946 /* reuse GL_PROXY_TEXTURE_2D_MULTISAMPLE */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
947 /* reuse GL_TEXTURE_2D_MULTISAMPLE_ARRAY */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
948 /* reuse GL_PROXY_TEXTURE_2D_MULTISAMPLE_ARRAY */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
949 /* reuse GL_TEXTURE_BINDING_2D_MULTISAMPLE */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
950 /* reuse GL_TEXTURE_BINDING_2D_MULTISAMPLE_ARRAY */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
951 /* reuse GL_TEXTURE_SAMPLES */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
952 /* reuse GL_TEXTURE_FIXED_SAMPLE_LOCATIONS */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
953 /* reuse GL_SAMPLER_2D_MULTISAMPLE */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
954 /* reuse GL_INT_SAMPLER_2D_MULTISAMPLE */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
955 /* reuse GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
956 /* reuse GL_SAMPLER_2D_MULTISAMPLE_ARRAY */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
957 /* reuse GL_INT_SAMPLER_2D_MULTISAMPLE_ARRAY */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
958 /* reuse GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE_ARRAY */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
959 /* reuse GL_MAX_COLOR_TEXTURE_SAMPLES */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
960 /* reuse GL_MAX_DEPTH_TEXTURE_SAMPLES */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
961 /* reuse GL_MAX_INTEGER_SAMPLES */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
962 /* Don't need to reuse tokens from ARB_vertex_array_bgra since they're already in 1.2 core */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
963 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
964
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
965 #ifndef GL_VERSION_3_3
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
966 #define GL_VERTEX_ATTRIB_ARRAY_DIVISOR 0x88FE
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
967 /* Reuse tokens from ARB_blend_func_extended */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
968 /* reuse GL_SRC1_COLOR */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
969 /* reuse GL_ONE_MINUS_SRC1_COLOR */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
970 /* reuse GL_ONE_MINUS_SRC1_ALPHA */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
971 /* reuse GL_MAX_DUAL_SOURCE_DRAW_BUFFERS */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
972 /* Reuse tokens from ARB_explicit_attrib_location (none) */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
973 /* Reuse tokens from ARB_occlusion_query2 */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
974 /* reuse GL_ANY_SAMPLES_PASSED */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
975 /* Reuse tokens from ARB_sampler_objects */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
976 /* reuse GL_SAMPLER_BINDING */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
977 /* Reuse tokens from ARB_shader_bit_encoding (none) */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
978 /* Reuse tokens from ARB_texture_rgb10_a2ui */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
979 /* reuse GL_RGB10_A2UI */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
980 /* Reuse tokens from ARB_texture_swizzle */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
981 /* reuse GL_TEXTURE_SWIZZLE_R */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
982 /* reuse GL_TEXTURE_SWIZZLE_G */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
983 /* reuse GL_TEXTURE_SWIZZLE_B */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
984 /* reuse GL_TEXTURE_SWIZZLE_A */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
985 /* reuse GL_TEXTURE_SWIZZLE_RGBA */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
986 /* Reuse tokens from ARB_timer_query */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
987 /* reuse GL_TIME_ELAPSED */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
988 /* reuse GL_TIMESTAMP */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
989 /* Reuse tokens from ARB_vertex_type_2_10_10_10_rev */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
990 /* reuse GL_INT_2_10_10_10_REV */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
991 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
992
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
993 #ifndef GL_VERSION_4_0
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
994 #define GL_SAMPLE_SHADING 0x8C36
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
995 #define GL_MIN_SAMPLE_SHADING_VALUE 0x8C37
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
996 #define GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET 0x8E5E
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
997 #define GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET 0x8E5F
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
998 #define GL_TEXTURE_CUBE_MAP_ARRAY 0x9009
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
999 #define GL_TEXTURE_BINDING_CUBE_MAP_ARRAY 0x900A
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1000 #define GL_PROXY_TEXTURE_CUBE_MAP_ARRAY 0x900B
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1001 #define GL_SAMPLER_CUBE_MAP_ARRAY 0x900C
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1002 #define GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW 0x900D
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1003 #define GL_INT_SAMPLER_CUBE_MAP_ARRAY 0x900E
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1004 #define GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY 0x900F
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1005 /* Reuse tokens from ARB_texture_query_lod (none) */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1006 /* Reuse tokens from ARB_draw_buffers_blend (none) */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1007 /* Reuse tokens from ARB_draw_indirect */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1008 /* reuse GL_DRAW_INDIRECT_BUFFER */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1009 /* reuse GL_DRAW_INDIRECT_BUFFER_BINDING */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1010 /* Reuse tokens from ARB_gpu_shader5 */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1011 /* reuse GL_GEOMETRY_SHADER_INVOCATIONS */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1012 /* reuse GL_MAX_GEOMETRY_SHADER_INVOCATIONS */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1013 /* reuse GL_MIN_FRAGMENT_INTERPOLATION_OFFSET */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1014 /* reuse GL_MAX_FRAGMENT_INTERPOLATION_OFFSET */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1015 /* reuse GL_FRAGMENT_INTERPOLATION_OFFSET_BITS */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1016 /* reuse GL_MAX_VERTEX_STREAMS */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1017 /* Reuse tokens from ARB_gpu_shader_fp64 */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1018 /* reuse GL_DOUBLE_VEC2 */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1019 /* reuse GL_DOUBLE_VEC3 */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1020 /* reuse GL_DOUBLE_VEC4 */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1021 /* reuse GL_DOUBLE_MAT2 */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1022 /* reuse GL_DOUBLE_MAT3 */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1023 /* reuse GL_DOUBLE_MAT4 */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1024 /* reuse GL_DOUBLE_MAT2x3 */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1025 /* reuse GL_DOUBLE_MAT2x4 */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1026 /* reuse GL_DOUBLE_MAT3x2 */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1027 /* reuse GL_DOUBLE_MAT3x4 */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1028 /* reuse GL_DOUBLE_MAT4x2 */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1029 /* reuse GL_DOUBLE_MAT4x3 */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1030 /* Reuse tokens from ARB_shader_subroutine */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1031 /* reuse GL_ACTIVE_SUBROUTINES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1032 /* reuse GL_ACTIVE_SUBROUTINE_UNIFORMS */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1033 /* reuse GL_ACTIVE_SUBROUTINE_UNIFORM_LOCATIONS */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1034 /* reuse GL_ACTIVE_SUBROUTINE_MAX_LENGTH */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1035 /* reuse GL_ACTIVE_SUBROUTINE_UNIFORM_MAX_LENGTH */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1036 /* reuse GL_MAX_SUBROUTINES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1037 /* reuse GL_MAX_SUBROUTINE_UNIFORM_LOCATIONS */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1038 /* reuse GL_NUM_COMPATIBLE_SUBROUTINES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1039 /* reuse GL_COMPATIBLE_SUBROUTINES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1040 /* Reuse tokens from ARB_tessellation_shader */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1041 /* reuse GL_PATCHES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1042 /* reuse GL_PATCH_VERTICES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1043 /* reuse GL_PATCH_DEFAULT_INNER_LEVEL */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1044 /* reuse GL_PATCH_DEFAULT_OUTER_LEVEL */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1045 /* reuse GL_TESS_CONTROL_OUTPUT_VERTICES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1046 /* reuse GL_TESS_GEN_MODE */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1047 /* reuse GL_TESS_GEN_SPACING */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1048 /* reuse GL_TESS_GEN_VERTEX_ORDER */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1049 /* reuse GL_TESS_GEN_POINT_MODE */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1050 /* reuse GL_ISOLINES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1051 /* reuse GL_FRACTIONAL_ODD */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1052 /* reuse GL_FRACTIONAL_EVEN */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1053 /* reuse GL_MAX_PATCH_VERTICES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1054 /* reuse GL_MAX_TESS_GEN_LEVEL */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1055 /* reuse GL_MAX_TESS_CONTROL_UNIFORM_COMPONENTS */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1056 /* reuse GL_MAX_TESS_EVALUATION_UNIFORM_COMPONENTS */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1057 /* reuse GL_MAX_TESS_CONTROL_TEXTURE_IMAGE_UNITS */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1058 /* reuse GL_MAX_TESS_EVALUATION_TEXTURE_IMAGE_UNITS */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1059 /* reuse GL_MAX_TESS_CONTROL_OUTPUT_COMPONENTS */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1060 /* reuse GL_MAX_TESS_PATCH_COMPONENTS */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1061 /* reuse GL_MAX_TESS_CONTROL_TOTAL_OUTPUT_COMPONENTS */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1062 /* reuse GL_MAX_TESS_EVALUATION_OUTPUT_COMPONENTS */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1063 /* reuse GL_MAX_TESS_CONTROL_UNIFORM_BLOCKS */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1064 /* reuse GL_MAX_TESS_EVALUATION_UNIFORM_BLOCKS */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1065 /* reuse GL_MAX_TESS_CONTROL_INPUT_COMPONENTS */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1066 /* reuse GL_MAX_TESS_EVALUATION_INPUT_COMPONENTS */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1067 /* reuse GL_MAX_COMBINED_TESS_CONTROL_UNIFORM_COMPONENTS */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1068 /* reuse GL_MAX_COMBINED_TESS_EVALUATION_UNIFORM_COMPONENTS */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1069 /* reuse GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_CONTROL_SHADER */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1070 /* reuse GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_EVALUATION_SHADER */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1071 /* reuse GL_TESS_EVALUATION_SHADER */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1072 /* reuse GL_TESS_CONTROL_SHADER */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1073 /* Reuse tokens from ARB_texture_buffer_object_rgb32 (none) */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1074 /* Reuse tokens from ARB_transform_feedback2 */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1075 /* reuse GL_TRANSFORM_FEEDBACK */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1076 /* reuse GL_TRANSFORM_FEEDBACK_BUFFER_PAUSED */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1077 /* reuse GL_TRANSFORM_FEEDBACK_BUFFER_ACTIVE */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1078 /* reuse GL_TRANSFORM_FEEDBACK_BINDING */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1079 /* Reuse tokens from ARB_transform_feedback3 */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1080 /* reuse GL_MAX_TRANSFORM_FEEDBACK_BUFFERS */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1081 /* reuse GL_MAX_VERTEX_STREAMS */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1082 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1083
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1084 #ifndef GL_VERSION_4_1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1085 /* Reuse tokens from ARB_ES2_compatibility */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1086 /* reuse GL_FIXED */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1087 /* reuse GL_IMPLEMENTATION_COLOR_READ_TYPE */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1088 /* reuse GL_IMPLEMENTATION_COLOR_READ_FORMAT */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1089 /* reuse GL_LOW_FLOAT */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1090 /* reuse GL_MEDIUM_FLOAT */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1091 /* reuse GL_HIGH_FLOAT */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1092 /* reuse GL_LOW_INT */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1093 /* reuse GL_MEDIUM_INT */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1094 /* reuse GL_HIGH_INT */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1095 /* reuse GL_SHADER_COMPILER */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1096 /* reuse GL_NUM_SHADER_BINARY_FORMATS */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1097 /* reuse GL_MAX_VERTEX_UNIFORM_VECTORS */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1098 /* reuse GL_MAX_VARYING_VECTORS */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1099 /* reuse GL_MAX_FRAGMENT_UNIFORM_VECTORS */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1100 /* Reuse tokens from ARB_get_program_binary */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1101 /* reuse GL_PROGRAM_BINARY_RETRIEVABLE_HINT */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1102 /* reuse GL_PROGRAM_BINARY_LENGTH */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1103 /* reuse GL_NUM_PROGRAM_BINARY_FORMATS */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1104 /* reuse GL_PROGRAM_BINARY_FORMATS */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1105 /* Reuse tokens from ARB_separate_shader_objects */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1106 /* reuse GL_VERTEX_SHADER_BIT */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1107 /* reuse GL_FRAGMENT_SHADER_BIT */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1108 /* reuse GL_GEOMETRY_SHADER_BIT */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1109 /* reuse GL_TESS_CONTROL_SHADER_BIT */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1110 /* reuse GL_TESS_EVALUATION_SHADER_BIT */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1111 /* reuse GL_ALL_SHADER_BITS */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1112 /* reuse GL_PROGRAM_SEPARABLE */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1113 /* reuse GL_ACTIVE_PROGRAM */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1114 /* reuse GL_PROGRAM_PIPELINE_BINDING */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1115 /* Reuse tokens from ARB_shader_precision (none) */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1116 /* Reuse tokens from ARB_vertex_attrib_64bit - all are in GL 3.0 and 4.0 already */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1117 /* Reuse tokens from ARB_viewport_array - some are in GL 1.1 and ARB_provoking_vertex already */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1118 /* reuse GL_MAX_VIEWPORTS */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1119 /* reuse GL_VIEWPORT_SUBPIXEL_BITS */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1120 /* reuse GL_VIEWPORT_BOUNDS_RANGE */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1121 /* reuse GL_LAYER_PROVOKING_VERTEX */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1122 /* reuse GL_VIEWPORT_INDEX_PROVOKING_VERTEX */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1123 /* reuse GL_UNDEFINED_VERTEX */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1124 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1125
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1126 #ifndef GL_ARB_multitexture
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1127 #define GL_TEXTURE0_ARB 0x84C0
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1128 #define GL_TEXTURE1_ARB 0x84C1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1129 #define GL_TEXTURE2_ARB 0x84C2
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1130 #define GL_TEXTURE3_ARB 0x84C3
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1131 #define GL_TEXTURE4_ARB 0x84C4
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1132 #define GL_TEXTURE5_ARB 0x84C5
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1133 #define GL_TEXTURE6_ARB 0x84C6
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1134 #define GL_TEXTURE7_ARB 0x84C7
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1135 #define GL_TEXTURE8_ARB 0x84C8
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1136 #define GL_TEXTURE9_ARB 0x84C9
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1137 #define GL_TEXTURE10_ARB 0x84CA
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1138 #define GL_TEXTURE11_ARB 0x84CB
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1139 #define GL_TEXTURE12_ARB 0x84CC
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1140 #define GL_TEXTURE13_ARB 0x84CD
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1141 #define GL_TEXTURE14_ARB 0x84CE
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1142 #define GL_TEXTURE15_ARB 0x84CF
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1143 #define GL_TEXTURE16_ARB 0x84D0
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1144 #define GL_TEXTURE17_ARB 0x84D1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1145 #define GL_TEXTURE18_ARB 0x84D2
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1146 #define GL_TEXTURE19_ARB 0x84D3
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1147 #define GL_TEXTURE20_ARB 0x84D4
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1148 #define GL_TEXTURE21_ARB 0x84D5
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1149 #define GL_TEXTURE22_ARB 0x84D6
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1150 #define GL_TEXTURE23_ARB 0x84D7
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1151 #define GL_TEXTURE24_ARB 0x84D8
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1152 #define GL_TEXTURE25_ARB 0x84D9
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1153 #define GL_TEXTURE26_ARB 0x84DA
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1154 #define GL_TEXTURE27_ARB 0x84DB
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1155 #define GL_TEXTURE28_ARB 0x84DC
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1156 #define GL_TEXTURE29_ARB 0x84DD
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1157 #define GL_TEXTURE30_ARB 0x84DE
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1158 #define GL_TEXTURE31_ARB 0x84DF
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1159 #define GL_ACTIVE_TEXTURE_ARB 0x84E0
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1160 #define GL_CLIENT_ACTIVE_TEXTURE_ARB 0x84E1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1161 #define GL_MAX_TEXTURE_UNITS_ARB 0x84E2
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1162 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1163
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1164 #ifndef GL_ARB_transpose_matrix
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1165 #define GL_TRANSPOSE_MODELVIEW_MATRIX_ARB 0x84E3
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1166 #define GL_TRANSPOSE_PROJECTION_MATRIX_ARB 0x84E4
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1167 #define GL_TRANSPOSE_TEXTURE_MATRIX_ARB 0x84E5
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1168 #define GL_TRANSPOSE_COLOR_MATRIX_ARB 0x84E6
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1169 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1170
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1171 #ifndef GL_ARB_multisample
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1172 #define GL_MULTISAMPLE_ARB 0x809D
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1173 #define GL_SAMPLE_ALPHA_TO_COVERAGE_ARB 0x809E
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1174 #define GL_SAMPLE_ALPHA_TO_ONE_ARB 0x809F
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1175 #define GL_SAMPLE_COVERAGE_ARB 0x80A0
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1176 #define GL_SAMPLE_BUFFERS_ARB 0x80A8
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1177 #define GL_SAMPLES_ARB 0x80A9
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1178 #define GL_SAMPLE_COVERAGE_VALUE_ARB 0x80AA
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1179 #define GL_SAMPLE_COVERAGE_INVERT_ARB 0x80AB
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1180 #define GL_MULTISAMPLE_BIT_ARB 0x20000000
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1181 #endif
214
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
1182
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1183 #ifndef GL_ARB_texture_env_add
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1184 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1185
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1186 #ifndef GL_ARB_texture_cube_map
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1187 #define GL_NORMAL_MAP_ARB 0x8511
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1188 #define GL_REFLECTION_MAP_ARB 0x8512
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1189 #define GL_TEXTURE_CUBE_MAP_ARB 0x8513
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1190 #define GL_TEXTURE_BINDING_CUBE_MAP_ARB 0x8514
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1191 #define GL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB 0x8515
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1192 #define GL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB 0x8516
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1193 #define GL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB 0x8517
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1194 #define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB 0x8518
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1195 #define GL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB 0x8519
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1196 #define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB 0x851A
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1197 #define GL_PROXY_TEXTURE_CUBE_MAP_ARB 0x851B
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1198 #define GL_MAX_CUBE_MAP_TEXTURE_SIZE_ARB 0x851C
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1199 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1200
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1201 #ifndef GL_ARB_texture_compression
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1202 #define GL_COMPRESSED_ALPHA_ARB 0x84E9
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1203 #define GL_COMPRESSED_LUMINANCE_ARB 0x84EA
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1204 #define GL_COMPRESSED_LUMINANCE_ALPHA_ARB 0x84EB
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1205 #define GL_COMPRESSED_INTENSITY_ARB 0x84EC
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1206 #define GL_COMPRESSED_RGB_ARB 0x84ED
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1207 #define GL_COMPRESSED_RGBA_ARB 0x84EE
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1208 #define GL_TEXTURE_COMPRESSION_HINT_ARB 0x84EF
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1209 #define GL_TEXTURE_COMPRESSED_IMAGE_SIZE_ARB 0x86A0
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1210 #define GL_TEXTURE_COMPRESSED_ARB 0x86A1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1211 #define GL_NUM_COMPRESSED_TEXTURE_FORMATS_ARB 0x86A2
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1212 #define GL_COMPRESSED_TEXTURE_FORMATS_ARB 0x86A3
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1213 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
1214
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1215 #ifndef GL_ARB_texture_border_clamp
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1216 #define GL_CLAMP_TO_BORDER_ARB 0x812D
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1217 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1218
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1219 #ifndef GL_ARB_point_parameters
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1220 #define GL_POINT_SIZE_MIN_ARB 0x8126
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1221 #define GL_POINT_SIZE_MAX_ARB 0x8127
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1222 #define GL_POINT_FADE_THRESHOLD_SIZE_ARB 0x8128
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1223 #define GL_POINT_DISTANCE_ATTENUATION_ARB 0x8129
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1224 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1225
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1226 #ifndef GL_ARB_vertex_blend
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1227 #define GL_MAX_VERTEX_UNITS_ARB 0x86A4
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1228 #define GL_ACTIVE_VERTEX_UNITS_ARB 0x86A5
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1229 #define GL_WEIGHT_SUM_UNITY_ARB 0x86A6
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1230 #define GL_VERTEX_BLEND_ARB 0x86A7
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1231 #define GL_CURRENT_WEIGHT_ARB 0x86A8
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1232 #define GL_WEIGHT_ARRAY_TYPE_ARB 0x86A9
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1233 #define GL_WEIGHT_ARRAY_STRIDE_ARB 0x86AA
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1234 #define GL_WEIGHT_ARRAY_SIZE_ARB 0x86AB
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1235 #define GL_WEIGHT_ARRAY_POINTER_ARB 0x86AC
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1236 #define GL_WEIGHT_ARRAY_ARB 0x86AD
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1237 #define GL_MODELVIEW0_ARB 0x1700
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1238 #define GL_MODELVIEW1_ARB 0x850A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1239 #define GL_MODELVIEW2_ARB 0x8722
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1240 #define GL_MODELVIEW3_ARB 0x8723
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1241 #define GL_MODELVIEW4_ARB 0x8724
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1242 #define GL_MODELVIEW5_ARB 0x8725
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1243 #define GL_MODELVIEW6_ARB 0x8726
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1244 #define GL_MODELVIEW7_ARB 0x8727
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1245 #define GL_MODELVIEW8_ARB 0x8728
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1246 #define GL_MODELVIEW9_ARB 0x8729
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1247 #define GL_MODELVIEW10_ARB 0x872A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1248 #define GL_MODELVIEW11_ARB 0x872B
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1249 #define GL_MODELVIEW12_ARB 0x872C
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1250 #define GL_MODELVIEW13_ARB 0x872D
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1251 #define GL_MODELVIEW14_ARB 0x872E
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1252 #define GL_MODELVIEW15_ARB 0x872F
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1253 #define GL_MODELVIEW16_ARB 0x8730
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1254 #define GL_MODELVIEW17_ARB 0x8731
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1255 #define GL_MODELVIEW18_ARB 0x8732
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1256 #define GL_MODELVIEW19_ARB 0x8733
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1257 #define GL_MODELVIEW20_ARB 0x8734
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1258 #define GL_MODELVIEW21_ARB 0x8735
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1259 #define GL_MODELVIEW22_ARB 0x8736
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1260 #define GL_MODELVIEW23_ARB 0x8737
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1261 #define GL_MODELVIEW24_ARB 0x8738
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1262 #define GL_MODELVIEW25_ARB 0x8739
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1263 #define GL_MODELVIEW26_ARB 0x873A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1264 #define GL_MODELVIEW27_ARB 0x873B
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1265 #define GL_MODELVIEW28_ARB 0x873C
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1266 #define GL_MODELVIEW29_ARB 0x873D
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1267 #define GL_MODELVIEW30_ARB 0x873E
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1268 #define GL_MODELVIEW31_ARB 0x873F
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1269 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1270
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1271 #ifndef GL_ARB_matrix_palette
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1272 #define GL_MATRIX_PALETTE_ARB 0x8840
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1273 #define GL_MAX_MATRIX_PALETTE_STACK_DEPTH_ARB 0x8841
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1274 #define GL_MAX_PALETTE_MATRICES_ARB 0x8842
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1275 #define GL_CURRENT_PALETTE_MATRIX_ARB 0x8843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1276 #define GL_MATRIX_INDEX_ARRAY_ARB 0x8844
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1277 #define GL_CURRENT_MATRIX_INDEX_ARB 0x8845
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1278 #define GL_MATRIX_INDEX_ARRAY_SIZE_ARB 0x8846
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1279 #define GL_MATRIX_INDEX_ARRAY_TYPE_ARB 0x8847
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1280 #define GL_MATRIX_INDEX_ARRAY_STRIDE_ARB 0x8848
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1281 #define GL_MATRIX_INDEX_ARRAY_POINTER_ARB 0x8849
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1282 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1283
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1284 #ifndef GL_ARB_texture_env_combine
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1285 #define GL_COMBINE_ARB 0x8570
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1286 #define GL_COMBINE_RGB_ARB 0x8571
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1287 #define GL_COMBINE_ALPHA_ARB 0x8572
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1288 #define GL_SOURCE0_RGB_ARB 0x8580
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1289 #define GL_SOURCE1_RGB_ARB 0x8581
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1290 #define GL_SOURCE2_RGB_ARB 0x8582
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1291 #define GL_SOURCE0_ALPHA_ARB 0x8588
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1292 #define GL_SOURCE1_ALPHA_ARB 0x8589
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1293 #define GL_SOURCE2_ALPHA_ARB 0x858A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1294 #define GL_OPERAND0_RGB_ARB 0x8590
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1295 #define GL_OPERAND1_RGB_ARB 0x8591
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1296 #define GL_OPERAND2_RGB_ARB 0x8592
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1297 #define GL_OPERAND0_ALPHA_ARB 0x8598
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1298 #define GL_OPERAND1_ALPHA_ARB 0x8599
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1299 #define GL_OPERAND2_ALPHA_ARB 0x859A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1300 #define GL_RGB_SCALE_ARB 0x8573
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1301 #define GL_ADD_SIGNED_ARB 0x8574
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1302 #define GL_INTERPOLATE_ARB 0x8575
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1303 #define GL_SUBTRACT_ARB 0x84E7
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1304 #define GL_CONSTANT_ARB 0x8576
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1305 #define GL_PRIMARY_COLOR_ARB 0x8577
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1306 #define GL_PREVIOUS_ARB 0x8578
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1307 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1308
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1309 #ifndef GL_ARB_texture_env_crossbar
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1310 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1311
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1312 #ifndef GL_ARB_texture_env_dot3
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1313 #define GL_DOT3_RGB_ARB 0x86AE
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1314 #define GL_DOT3_RGBA_ARB 0x86AF
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1315 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1316
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1317 #ifndef GL_ARB_texture_mirrored_repeat
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1318 #define GL_MIRRORED_REPEAT_ARB 0x8370
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1319 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1320
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1321 #ifndef GL_ARB_depth_texture
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1322 #define GL_DEPTH_COMPONENT16_ARB 0x81A5
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1323 #define GL_DEPTH_COMPONENT24_ARB 0x81A6
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1324 #define GL_DEPTH_COMPONENT32_ARB 0x81A7
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1325 #define GL_TEXTURE_DEPTH_SIZE_ARB 0x884A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1326 #define GL_DEPTH_TEXTURE_MODE_ARB 0x884B
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1327 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1328
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1329 #ifndef GL_ARB_shadow
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1330 #define GL_TEXTURE_COMPARE_MODE_ARB 0x884C
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1331 #define GL_TEXTURE_COMPARE_FUNC_ARB 0x884D
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1332 #define GL_COMPARE_R_TO_TEXTURE_ARB 0x884E
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1333 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1334
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1335 #ifndef GL_ARB_shadow_ambient
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1336 #define GL_TEXTURE_COMPARE_FAIL_VALUE_ARB 0x80BF
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1337 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1338
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1339 #ifndef GL_ARB_window_pos
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1340 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1341
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1342 #ifndef GL_ARB_vertex_program
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1343 #define GL_COLOR_SUM_ARB 0x8458
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1344 #define GL_VERTEX_PROGRAM_ARB 0x8620
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1345 #define GL_VERTEX_ATTRIB_ARRAY_ENABLED_ARB 0x8622
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1346 #define GL_VERTEX_ATTRIB_ARRAY_SIZE_ARB 0x8623
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1347 #define GL_VERTEX_ATTRIB_ARRAY_STRIDE_ARB 0x8624
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1348 #define GL_VERTEX_ATTRIB_ARRAY_TYPE_ARB 0x8625
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1349 #define GL_CURRENT_VERTEX_ATTRIB_ARB 0x8626
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1350 #define GL_PROGRAM_LENGTH_ARB 0x8627
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1351 #define GL_PROGRAM_STRING_ARB 0x8628
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1352 #define GL_MAX_PROGRAM_MATRIX_STACK_DEPTH_ARB 0x862E
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1353 #define GL_MAX_PROGRAM_MATRICES_ARB 0x862F
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1354 #define GL_CURRENT_MATRIX_STACK_DEPTH_ARB 0x8640
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1355 #define GL_CURRENT_MATRIX_ARB 0x8641
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1356 #define GL_VERTEX_PROGRAM_POINT_SIZE_ARB 0x8642
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1357 #define GL_VERTEX_PROGRAM_TWO_SIDE_ARB 0x8643
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1358 #define GL_VERTEX_ATTRIB_ARRAY_POINTER_ARB 0x8645
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1359 #define GL_PROGRAM_ERROR_POSITION_ARB 0x864B
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1360 #define GL_PROGRAM_BINDING_ARB 0x8677
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1361 #define GL_MAX_VERTEX_ATTRIBS_ARB 0x8869
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1362 #define GL_VERTEX_ATTRIB_ARRAY_NORMALIZED_ARB 0x886A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1363 #define GL_PROGRAM_ERROR_STRING_ARB 0x8874
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1364 #define GL_PROGRAM_FORMAT_ASCII_ARB 0x8875
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1365 #define GL_PROGRAM_FORMAT_ARB 0x8876
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1366 #define GL_PROGRAM_INSTRUCTIONS_ARB 0x88A0
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1367 #define GL_MAX_PROGRAM_INSTRUCTIONS_ARB 0x88A1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1368 #define GL_PROGRAM_NATIVE_INSTRUCTIONS_ARB 0x88A2
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1369 #define GL_MAX_PROGRAM_NATIVE_INSTRUCTIONS_ARB 0x88A3
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1370 #define GL_PROGRAM_TEMPORARIES_ARB 0x88A4
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1371 #define GL_MAX_PROGRAM_TEMPORARIES_ARB 0x88A5
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1372 #define GL_PROGRAM_NATIVE_TEMPORARIES_ARB 0x88A6
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1373 #define GL_MAX_PROGRAM_NATIVE_TEMPORARIES_ARB 0x88A7
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1374 #define GL_PROGRAM_PARAMETERS_ARB 0x88A8
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1375 #define GL_MAX_PROGRAM_PARAMETERS_ARB 0x88A9
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1376 #define GL_PROGRAM_NATIVE_PARAMETERS_ARB 0x88AA
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1377 #define GL_MAX_PROGRAM_NATIVE_PARAMETERS_ARB 0x88AB
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1378 #define GL_PROGRAM_ATTRIBS_ARB 0x88AC
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1379 #define GL_MAX_PROGRAM_ATTRIBS_ARB 0x88AD
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1380 #define GL_PROGRAM_NATIVE_ATTRIBS_ARB 0x88AE
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1381 #define GL_MAX_PROGRAM_NATIVE_ATTRIBS_ARB 0x88AF
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1382 #define GL_PROGRAM_ADDRESS_REGISTERS_ARB 0x88B0
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1383 #define GL_MAX_PROGRAM_ADDRESS_REGISTERS_ARB 0x88B1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1384 #define GL_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB 0x88B2
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1385 #define GL_MAX_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB 0x88B3
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1386 #define GL_MAX_PROGRAM_LOCAL_PARAMETERS_ARB 0x88B4
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1387 #define GL_MAX_PROGRAM_ENV_PARAMETERS_ARB 0x88B5
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1388 #define GL_PROGRAM_UNDER_NATIVE_LIMITS_ARB 0x88B6
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1389 #define GL_TRANSPOSE_CURRENT_MATRIX_ARB 0x88B7
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1390 #define GL_MATRIX0_ARB 0x88C0
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1391 #define GL_MATRIX1_ARB 0x88C1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1392 #define GL_MATRIX2_ARB 0x88C2
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1393 #define GL_MATRIX3_ARB 0x88C3
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1394 #define GL_MATRIX4_ARB 0x88C4
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1395 #define GL_MATRIX5_ARB 0x88C5
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1396 #define GL_MATRIX6_ARB 0x88C6
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1397 #define GL_MATRIX7_ARB 0x88C7
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1398 #define GL_MATRIX8_ARB 0x88C8
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1399 #define GL_MATRIX9_ARB 0x88C9
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1400 #define GL_MATRIX10_ARB 0x88CA
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1401 #define GL_MATRIX11_ARB 0x88CB
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1402 #define GL_MATRIX12_ARB 0x88CC
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1403 #define GL_MATRIX13_ARB 0x88CD
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1404 #define GL_MATRIX14_ARB 0x88CE
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1405 #define GL_MATRIX15_ARB 0x88CF
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1406 #define GL_MATRIX16_ARB 0x88D0
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1407 #define GL_MATRIX17_ARB 0x88D1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1408 #define GL_MATRIX18_ARB 0x88D2
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1409 #define GL_MATRIX19_ARB 0x88D3
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1410 #define GL_MATRIX20_ARB 0x88D4
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1411 #define GL_MATRIX21_ARB 0x88D5
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1412 #define GL_MATRIX22_ARB 0x88D6
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1413 #define GL_MATRIX23_ARB 0x88D7
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1414 #define GL_MATRIX24_ARB 0x88D8
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1415 #define GL_MATRIX25_ARB 0x88D9
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1416 #define GL_MATRIX26_ARB 0x88DA
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1417 #define GL_MATRIX27_ARB 0x88DB
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1418 #define GL_MATRIX28_ARB 0x88DC
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1419 #define GL_MATRIX29_ARB 0x88DD
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1420 #define GL_MATRIX30_ARB 0x88DE
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1421 #define GL_MATRIX31_ARB 0x88DF
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1422 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1423
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1424 #ifndef GL_ARB_fragment_program
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1425 #define GL_FRAGMENT_PROGRAM_ARB 0x8804
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1426 #define GL_PROGRAM_ALU_INSTRUCTIONS_ARB 0x8805
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1427 #define GL_PROGRAM_TEX_INSTRUCTIONS_ARB 0x8806
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1428 #define GL_PROGRAM_TEX_INDIRECTIONS_ARB 0x8807
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1429 #define GL_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB 0x8808
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1430 #define GL_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB 0x8809
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1431 #define GL_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB 0x880A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1432 #define GL_MAX_PROGRAM_ALU_INSTRUCTIONS_ARB 0x880B
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1433 #define GL_MAX_PROGRAM_TEX_INSTRUCTIONS_ARB 0x880C
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1434 #define GL_MAX_PROGRAM_TEX_INDIRECTIONS_ARB 0x880D
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1435 #define GL_MAX_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB 0x880E
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1436 #define GL_MAX_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB 0x880F
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1437 #define GL_MAX_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB 0x8810
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1438 #define GL_MAX_TEXTURE_COORDS_ARB 0x8871
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1439 #define GL_MAX_TEXTURE_IMAGE_UNITS_ARB 0x8872
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1440 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1441
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1442 #ifndef GL_ARB_vertex_buffer_object
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1443 #define GL_BUFFER_SIZE_ARB 0x8764
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1444 #define GL_BUFFER_USAGE_ARB 0x8765
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1445 #define GL_ARRAY_BUFFER_ARB 0x8892
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1446 #define GL_ELEMENT_ARRAY_BUFFER_ARB 0x8893
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1447 #define GL_ARRAY_BUFFER_BINDING_ARB 0x8894
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1448 #define GL_ELEMENT_ARRAY_BUFFER_BINDING_ARB 0x8895
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1449 #define GL_VERTEX_ARRAY_BUFFER_BINDING_ARB 0x8896
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1450 #define GL_NORMAL_ARRAY_BUFFER_BINDING_ARB 0x8897
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1451 #define GL_COLOR_ARRAY_BUFFER_BINDING_ARB 0x8898
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1452 #define GL_INDEX_ARRAY_BUFFER_BINDING_ARB 0x8899
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1453 #define GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING_ARB 0x889A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1454 #define GL_EDGE_FLAG_ARRAY_BUFFER_BINDING_ARB 0x889B
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1455 #define GL_SECONDARY_COLOR_ARRAY_BUFFER_BINDING_ARB 0x889C
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1456 #define GL_FOG_COORDINATE_ARRAY_BUFFER_BINDING_ARB 0x889D
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1457 #define GL_WEIGHT_ARRAY_BUFFER_BINDING_ARB 0x889E
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1458 #define GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING_ARB 0x889F
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1459 #define GL_READ_ONLY_ARB 0x88B8
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1460 #define GL_WRITE_ONLY_ARB 0x88B9
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1461 #define GL_READ_WRITE_ARB 0x88BA
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1462 #define GL_BUFFER_ACCESS_ARB 0x88BB
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1463 #define GL_BUFFER_MAPPED_ARB 0x88BC
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1464 #define GL_BUFFER_MAP_POINTER_ARB 0x88BD
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1465 #define GL_STREAM_DRAW_ARB 0x88E0
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1466 #define GL_STREAM_READ_ARB 0x88E1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1467 #define GL_STREAM_COPY_ARB 0x88E2
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1468 #define GL_STATIC_DRAW_ARB 0x88E4
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1469 #define GL_STATIC_READ_ARB 0x88E5
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1470 #define GL_STATIC_COPY_ARB 0x88E6
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1471 #define GL_DYNAMIC_DRAW_ARB 0x88E8
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1472 #define GL_DYNAMIC_READ_ARB 0x88E9
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1473 #define GL_DYNAMIC_COPY_ARB 0x88EA
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1474 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1475
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1476 #ifndef GL_ARB_occlusion_query
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1477 #define GL_QUERY_COUNTER_BITS_ARB 0x8864
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1478 #define GL_CURRENT_QUERY_ARB 0x8865
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1479 #define GL_QUERY_RESULT_ARB 0x8866
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1480 #define GL_QUERY_RESULT_AVAILABLE_ARB 0x8867
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1481 #define GL_SAMPLES_PASSED_ARB 0x8914
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1482 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1483
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1484 #ifndef GL_ARB_shader_objects
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1485 #define GL_PROGRAM_OBJECT_ARB 0x8B40
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1486 #define GL_SHADER_OBJECT_ARB 0x8B48
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1487 #define GL_OBJECT_TYPE_ARB 0x8B4E
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1488 #define GL_OBJECT_SUBTYPE_ARB 0x8B4F
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1489 #define GL_FLOAT_VEC2_ARB 0x8B50
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1490 #define GL_FLOAT_VEC3_ARB 0x8B51
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1491 #define GL_FLOAT_VEC4_ARB 0x8B52
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1492 #define GL_INT_VEC2_ARB 0x8B53
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1493 #define GL_INT_VEC3_ARB 0x8B54
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1494 #define GL_INT_VEC4_ARB 0x8B55
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1495 #define GL_BOOL_ARB 0x8B56
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1496 #define GL_BOOL_VEC2_ARB 0x8B57
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1497 #define GL_BOOL_VEC3_ARB 0x8B58
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1498 #define GL_BOOL_VEC4_ARB 0x8B59
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1499 #define GL_FLOAT_MAT2_ARB 0x8B5A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1500 #define GL_FLOAT_MAT3_ARB 0x8B5B
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1501 #define GL_FLOAT_MAT4_ARB 0x8B5C
1205
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1502 #define GL_SAMPLER_1D_ARB 0x8B5D
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1503 #define GL_SAMPLER_2D_ARB 0x8B5E
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1504 #define GL_SAMPLER_3D_ARB 0x8B5F
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1505 #define GL_SAMPLER_CUBE_ARB 0x8B60
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1506 #define GL_SAMPLER_1D_SHADOW_ARB 0x8B61
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1507 #define GL_SAMPLER_2D_SHADOW_ARB 0x8B62
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1508 #define GL_SAMPLER_2D_RECT_ARB 0x8B63
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1509 #define GL_SAMPLER_2D_RECT_SHADOW_ARB 0x8B64
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1510 #define GL_OBJECT_DELETE_STATUS_ARB 0x8B80
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1511 #define GL_OBJECT_COMPILE_STATUS_ARB 0x8B81
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1512 #define GL_OBJECT_LINK_STATUS_ARB 0x8B82
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1513 #define GL_OBJECT_VALIDATE_STATUS_ARB 0x8B83
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1514 #define GL_OBJECT_INFO_LOG_LENGTH_ARB 0x8B84
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1515 #define GL_OBJECT_ATTACHED_OBJECTS_ARB 0x8B85
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1516 #define GL_OBJECT_ACTIVE_UNIFORMS_ARB 0x8B86
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1517 #define GL_OBJECT_ACTIVE_UNIFORM_MAX_LENGTH_ARB 0x8B87
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1518 #define GL_OBJECT_SHADER_SOURCE_LENGTH_ARB 0x8B88
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1519 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1520
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1521 #ifndef GL_ARB_vertex_shader
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1522 #define GL_VERTEX_SHADER_ARB 0x8B31
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1523 #define GL_MAX_VERTEX_UNIFORM_COMPONENTS_ARB 0x8B4A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1524 #define GL_MAX_VARYING_FLOATS_ARB 0x8B4B
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1525 #define GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS_ARB 0x8B4C
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1526 #define GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS_ARB 0x8B4D
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1527 #define GL_OBJECT_ACTIVE_ATTRIBUTES_ARB 0x8B89
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1528 #define GL_OBJECT_ACTIVE_ATTRIBUTE_MAX_LENGTH_ARB 0x8B8A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1529 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1530
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1531 #ifndef GL_ARB_fragment_shader
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1532 #define GL_FRAGMENT_SHADER_ARB 0x8B30
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1533 #define GL_MAX_FRAGMENT_UNIFORM_COMPONENTS_ARB 0x8B49
1205
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1534 #define GL_FRAGMENT_SHADER_DERIVATIVE_HINT_ARB 0x8B8B
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1535 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1536
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1537 #ifndef GL_ARB_shading_language_100
1205
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1538 #define GL_SHADING_LANGUAGE_VERSION_ARB 0x8B8C
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1539 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1540
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1541 #ifndef GL_ARB_texture_non_power_of_two
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1542 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1543
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1544 #ifndef GL_ARB_point_sprite
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1545 #define GL_POINT_SPRITE_ARB 0x8861
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1546 #define GL_COORD_REPLACE_ARB 0x8862
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1547 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
1548
1205
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1549 #ifndef GL_ARB_fragment_program_shadow
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1550 #endif
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1551
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1552 #ifndef GL_ARB_draw_buffers
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1553 #define GL_MAX_DRAW_BUFFERS_ARB 0x8824
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1554 #define GL_DRAW_BUFFER0_ARB 0x8825
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1555 #define GL_DRAW_BUFFER1_ARB 0x8826
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1556 #define GL_DRAW_BUFFER2_ARB 0x8827
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1557 #define GL_DRAW_BUFFER3_ARB 0x8828
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1558 #define GL_DRAW_BUFFER4_ARB 0x8829
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1559 #define GL_DRAW_BUFFER5_ARB 0x882A
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1560 #define GL_DRAW_BUFFER6_ARB 0x882B
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1561 #define GL_DRAW_BUFFER7_ARB 0x882C
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1562 #define GL_DRAW_BUFFER8_ARB 0x882D
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1563 #define GL_DRAW_BUFFER9_ARB 0x882E
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1564 #define GL_DRAW_BUFFER10_ARB 0x882F
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1565 #define GL_DRAW_BUFFER11_ARB 0x8830
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1566 #define GL_DRAW_BUFFER12_ARB 0x8831
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1567 #define GL_DRAW_BUFFER13_ARB 0x8832
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1568 #define GL_DRAW_BUFFER14_ARB 0x8833
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1569 #define GL_DRAW_BUFFER15_ARB 0x8834
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1570 #endif
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1571
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1572 #ifndef GL_ARB_texture_rectangle
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1573 #define GL_TEXTURE_RECTANGLE_ARB 0x84F5
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1574 #define GL_TEXTURE_BINDING_RECTANGLE_ARB 0x84F6
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1575 #define GL_PROXY_TEXTURE_RECTANGLE_ARB 0x84F7
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1576 #define GL_MAX_RECTANGLE_TEXTURE_SIZE_ARB 0x84F8
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1577 #endif
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1578
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1579 #ifndef GL_ARB_color_buffer_float
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1580 #define GL_RGBA_FLOAT_MODE_ARB 0x8820
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1581 #define GL_CLAMP_VERTEX_COLOR_ARB 0x891A
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1582 #define GL_CLAMP_FRAGMENT_COLOR_ARB 0x891B
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1583 #define GL_CLAMP_READ_COLOR_ARB 0x891C
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1584 #define GL_FIXED_ONLY_ARB 0x891D
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1585 #endif
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1586
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1587 #ifndef GL_ARB_half_float_pixel
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1588 #define GL_HALF_FLOAT_ARB 0x140B
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1589 #endif
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1590
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1591 #ifndef GL_ARB_texture_float
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1592 #define GL_TEXTURE_RED_TYPE_ARB 0x8C10
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1593 #define GL_TEXTURE_GREEN_TYPE_ARB 0x8C11
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1594 #define GL_TEXTURE_BLUE_TYPE_ARB 0x8C12
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1595 #define GL_TEXTURE_ALPHA_TYPE_ARB 0x8C13
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1596 #define GL_TEXTURE_LUMINANCE_TYPE_ARB 0x8C14
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1597 #define GL_TEXTURE_INTENSITY_TYPE_ARB 0x8C15
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1598 #define GL_TEXTURE_DEPTH_TYPE_ARB 0x8C16
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1599 #define GL_UNSIGNED_NORMALIZED_ARB 0x8C17
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1600 #define GL_RGBA32F_ARB 0x8814
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1601 #define GL_RGB32F_ARB 0x8815
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1602 #define GL_ALPHA32F_ARB 0x8816
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1603 #define GL_INTENSITY32F_ARB 0x8817
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1604 #define GL_LUMINANCE32F_ARB 0x8818
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1605 #define GL_LUMINANCE_ALPHA32F_ARB 0x8819
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1606 #define GL_RGBA16F_ARB 0x881A
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1607 #define GL_RGB16F_ARB 0x881B
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1608 #define GL_ALPHA16F_ARB 0x881C
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1609 #define GL_INTENSITY16F_ARB 0x881D
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1610 #define GL_LUMINANCE16F_ARB 0x881E
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1611 #define GL_LUMINANCE_ALPHA16F_ARB 0x881F
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1612 #endif
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1613
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1614 #ifndef GL_ARB_pixel_buffer_object
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1615 #define GL_PIXEL_PACK_BUFFER_ARB 0x88EB
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1616 #define GL_PIXEL_UNPACK_BUFFER_ARB 0x88EC
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1617 #define GL_PIXEL_PACK_BUFFER_BINDING_ARB 0x88ED
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1618 #define GL_PIXEL_UNPACK_BUFFER_BINDING_ARB 0x88EF
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1619 #endif
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
1620
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1621 #ifndef GL_ARB_depth_buffer_float
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1622 #define GL_DEPTH_COMPONENT32F 0x8CAC
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1623 #define GL_DEPTH32F_STENCIL8 0x8CAD
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1624 #define GL_FLOAT_32_UNSIGNED_INT_24_8_REV 0x8DAD
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1625 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1626
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1627 #ifndef GL_ARB_draw_instanced
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1628 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1629
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1630 #ifndef GL_ARB_framebuffer_object
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1631 #define GL_INVALID_FRAMEBUFFER_OPERATION 0x0506
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1632 #define GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING 0x8210
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1633 #define GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE 0x8211
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1634 #define GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE 0x8212
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1635 #define GL_FRAMEBUFFER_ATTACHMENT_GREEN_SIZE 0x8213
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1636 #define GL_FRAMEBUFFER_ATTACHMENT_BLUE_SIZE 0x8214
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1637 #define GL_FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE 0x8215
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1638 #define GL_FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE 0x8216
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1639 #define GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE 0x8217
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1640 #define GL_FRAMEBUFFER_DEFAULT 0x8218
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1641 #define GL_FRAMEBUFFER_UNDEFINED 0x8219
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1642 #define GL_DEPTH_STENCIL_ATTACHMENT 0x821A
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1643 #define GL_MAX_RENDERBUFFER_SIZE 0x84E8
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1644 #define GL_DEPTH_STENCIL 0x84F9
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1645 #define GL_UNSIGNED_INT_24_8 0x84FA
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1646 #define GL_DEPTH24_STENCIL8 0x88F0
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1647 #define GL_TEXTURE_STENCIL_SIZE 0x88F1
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1648 #define GL_TEXTURE_RED_TYPE 0x8C10
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1649 #define GL_TEXTURE_GREEN_TYPE 0x8C11
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1650 #define GL_TEXTURE_BLUE_TYPE 0x8C12
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1651 #define GL_TEXTURE_ALPHA_TYPE 0x8C13
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1652 #define GL_TEXTURE_DEPTH_TYPE 0x8C16
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1653 #define GL_UNSIGNED_NORMALIZED 0x8C17
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1654 #define GL_FRAMEBUFFER_BINDING 0x8CA6
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1655 #define GL_DRAW_FRAMEBUFFER_BINDING GL_FRAMEBUFFER_BINDING
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1656 #define GL_RENDERBUFFER_BINDING 0x8CA7
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1657 #define GL_READ_FRAMEBUFFER 0x8CA8
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1658 #define GL_DRAW_FRAMEBUFFER 0x8CA9
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1659 #define GL_READ_FRAMEBUFFER_BINDING 0x8CAA
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1660 #define GL_RENDERBUFFER_SAMPLES 0x8CAB
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1661 #define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE 0x8CD0
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1662 #define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME 0x8CD1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1663 #define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL 0x8CD2
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1664 #define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE 0x8CD3
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1665 #define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER 0x8CD4
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1666 #define GL_FRAMEBUFFER_COMPLETE 0x8CD5
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1667 #define GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT 0x8CD6
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1668 #define GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT 0x8CD7
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1669 #define GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER 0x8CDB
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1670 #define GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER 0x8CDC
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1671 #define GL_FRAMEBUFFER_UNSUPPORTED 0x8CDD
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1672 #define GL_MAX_COLOR_ATTACHMENTS 0x8CDF
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1673 #define GL_COLOR_ATTACHMENT0 0x8CE0
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1674 #define GL_COLOR_ATTACHMENT1 0x8CE1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1675 #define GL_COLOR_ATTACHMENT2 0x8CE2
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1676 #define GL_COLOR_ATTACHMENT3 0x8CE3
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1677 #define GL_COLOR_ATTACHMENT4 0x8CE4
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1678 #define GL_COLOR_ATTACHMENT5 0x8CE5
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1679 #define GL_COLOR_ATTACHMENT6 0x8CE6
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1680 #define GL_COLOR_ATTACHMENT7 0x8CE7
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1681 #define GL_COLOR_ATTACHMENT8 0x8CE8
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1682 #define GL_COLOR_ATTACHMENT9 0x8CE9
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1683 #define GL_COLOR_ATTACHMENT10 0x8CEA
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1684 #define GL_COLOR_ATTACHMENT11 0x8CEB
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1685 #define GL_COLOR_ATTACHMENT12 0x8CEC
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1686 #define GL_COLOR_ATTACHMENT13 0x8CED
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1687 #define GL_COLOR_ATTACHMENT14 0x8CEE
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1688 #define GL_COLOR_ATTACHMENT15 0x8CEF
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1689 #define GL_DEPTH_ATTACHMENT 0x8D00
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1690 #define GL_STENCIL_ATTACHMENT 0x8D20
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1691 #define GL_FRAMEBUFFER 0x8D40
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1692 #define GL_RENDERBUFFER 0x8D41
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1693 #define GL_RENDERBUFFER_WIDTH 0x8D42
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1694 #define GL_RENDERBUFFER_HEIGHT 0x8D43
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1695 #define GL_RENDERBUFFER_INTERNAL_FORMAT 0x8D44
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1696 #define GL_STENCIL_INDEX1 0x8D46
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1697 #define GL_STENCIL_INDEX4 0x8D47
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1698 #define GL_STENCIL_INDEX8 0x8D48
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1699 #define GL_STENCIL_INDEX16 0x8D49
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1700 #define GL_RENDERBUFFER_RED_SIZE 0x8D50
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1701 #define GL_RENDERBUFFER_GREEN_SIZE 0x8D51
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1702 #define GL_RENDERBUFFER_BLUE_SIZE 0x8D52
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1703 #define GL_RENDERBUFFER_ALPHA_SIZE 0x8D53
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1704 #define GL_RENDERBUFFER_DEPTH_SIZE 0x8D54
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1705 #define GL_RENDERBUFFER_STENCIL_SIZE 0x8D55
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1706 #define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE 0x8D56
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1707 #define GL_MAX_SAMPLES 0x8D57
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1708 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1709
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1710 #ifndef GL_ARB_framebuffer_object_DEPRECATED
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1711 #define GL_INDEX 0x8222
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1712 #define GL_TEXTURE_LUMINANCE_TYPE 0x8C14
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1713 #define GL_TEXTURE_INTENSITY_TYPE 0x8C15
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1714 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1715
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1716 #ifndef GL_ARB_framebuffer_sRGB
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1717 #define GL_FRAMEBUFFER_SRGB 0x8DB9
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1718 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1719
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1720 #ifndef GL_ARB_geometry_shader4
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1721 #define GL_LINES_ADJACENCY_ARB 0x000A
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1722 #define GL_LINE_STRIP_ADJACENCY_ARB 0x000B
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1723 #define GL_TRIANGLES_ADJACENCY_ARB 0x000C
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1724 #define GL_TRIANGLE_STRIP_ADJACENCY_ARB 0x000D
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1725 #define GL_PROGRAM_POINT_SIZE_ARB 0x8642
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1726 #define GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_ARB 0x8C29
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1727 #define GL_FRAMEBUFFER_ATTACHMENT_LAYERED_ARB 0x8DA7
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1728 #define GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_ARB 0x8DA8
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1729 #define GL_FRAMEBUFFER_INCOMPLETE_LAYER_COUNT_ARB 0x8DA9
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1730 #define GL_GEOMETRY_SHADER_ARB 0x8DD9
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1731 #define GL_GEOMETRY_VERTICES_OUT_ARB 0x8DDA
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1732 #define GL_GEOMETRY_INPUT_TYPE_ARB 0x8DDB
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1733 #define GL_GEOMETRY_OUTPUT_TYPE_ARB 0x8DDC
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1734 #define GL_MAX_GEOMETRY_VARYING_COMPONENTS_ARB 0x8DDD
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1735 #define GL_MAX_VERTEX_VARYING_COMPONENTS_ARB 0x8DDE
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1736 #define GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_ARB 0x8DDF
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1737 #define GL_MAX_GEOMETRY_OUTPUT_VERTICES_ARB 0x8DE0
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1738 #define GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_ARB 0x8DE1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1739 /* reuse GL_MAX_VARYING_COMPONENTS */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1740 /* reuse GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1741 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1742
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1743 #ifndef GL_ARB_half_float_vertex
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1744 #define GL_HALF_FLOAT 0x140B
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1745 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1746
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1747 #ifndef GL_ARB_instanced_arrays
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1748 #define GL_VERTEX_ATTRIB_ARRAY_DIVISOR_ARB 0x88FE
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1749 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1750
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1751 #ifndef GL_ARB_map_buffer_range
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1752 #define GL_MAP_READ_BIT 0x0001
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1753 #define GL_MAP_WRITE_BIT 0x0002
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1754 #define GL_MAP_INVALIDATE_RANGE_BIT 0x0004
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1755 #define GL_MAP_INVALIDATE_BUFFER_BIT 0x0008
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1756 #define GL_MAP_FLUSH_EXPLICIT_BIT 0x0010
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1757 #define GL_MAP_UNSYNCHRONIZED_BIT 0x0020
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1758 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1759
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1760 #ifndef GL_ARB_texture_buffer_object
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1761 #define GL_TEXTURE_BUFFER_ARB 0x8C2A
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1762 #define GL_MAX_TEXTURE_BUFFER_SIZE_ARB 0x8C2B
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1763 #define GL_TEXTURE_BINDING_BUFFER_ARB 0x8C2C
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1764 #define GL_TEXTURE_BUFFER_DATA_STORE_BINDING_ARB 0x8C2D
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1765 #define GL_TEXTURE_BUFFER_FORMAT_ARB 0x8C2E
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1766 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1767
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1768 #ifndef GL_ARB_texture_compression_rgtc
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1769 #define GL_COMPRESSED_RED_RGTC1 0x8DBB
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1770 #define GL_COMPRESSED_SIGNED_RED_RGTC1 0x8DBC
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1771 #define GL_COMPRESSED_RG_RGTC2 0x8DBD
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1772 #define GL_COMPRESSED_SIGNED_RG_RGTC2 0x8DBE
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1773 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1774
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1775 #ifndef GL_ARB_texture_rg
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1776 #define GL_RG 0x8227
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1777 #define GL_RG_INTEGER 0x8228
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1778 #define GL_R8 0x8229
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1779 #define GL_R16 0x822A
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1780 #define GL_RG8 0x822B
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1781 #define GL_RG16 0x822C
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1782 #define GL_R16F 0x822D
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1783 #define GL_R32F 0x822E
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1784 #define GL_RG16F 0x822F
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1785 #define GL_RG32F 0x8230
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1786 #define GL_R8I 0x8231
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1787 #define GL_R8UI 0x8232
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1788 #define GL_R16I 0x8233
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1789 #define GL_R16UI 0x8234
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1790 #define GL_R32I 0x8235
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1791 #define GL_R32UI 0x8236
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1792 #define GL_RG8I 0x8237
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1793 #define GL_RG8UI 0x8238
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1794 #define GL_RG16I 0x8239
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1795 #define GL_RG16UI 0x823A
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1796 #define GL_RG32I 0x823B
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1797 #define GL_RG32UI 0x823C
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1798 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1799
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1800 #ifndef GL_ARB_vertex_array_object
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1801 #define GL_VERTEX_ARRAY_BINDING 0x85B5
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1802 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
1803
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1804 #ifndef GL_ARB_uniform_buffer_object
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1805 #define GL_UNIFORM_BUFFER 0x8A11
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1806 #define GL_UNIFORM_BUFFER_BINDING 0x8A28
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1807 #define GL_UNIFORM_BUFFER_START 0x8A29
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1808 #define GL_UNIFORM_BUFFER_SIZE 0x8A2A
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1809 #define GL_MAX_VERTEX_UNIFORM_BLOCKS 0x8A2B
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1810 #define GL_MAX_GEOMETRY_UNIFORM_BLOCKS 0x8A2C
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1811 #define GL_MAX_FRAGMENT_UNIFORM_BLOCKS 0x8A2D
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1812 #define GL_MAX_COMBINED_UNIFORM_BLOCKS 0x8A2E
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1813 #define GL_MAX_UNIFORM_BUFFER_BINDINGS 0x8A2F
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1814 #define GL_MAX_UNIFORM_BLOCK_SIZE 0x8A30
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1815 #define GL_MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS 0x8A31
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1816 #define GL_MAX_COMBINED_GEOMETRY_UNIFORM_COMPONENTS 0x8A32
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1817 #define GL_MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS 0x8A33
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1818 #define GL_UNIFORM_BUFFER_OFFSET_ALIGNMENT 0x8A34
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1819 #define GL_ACTIVE_UNIFORM_BLOCK_MAX_NAME_LENGTH 0x8A35
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1820 #define GL_ACTIVE_UNIFORM_BLOCKS 0x8A36
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1821 #define GL_UNIFORM_TYPE 0x8A37
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1822 #define GL_UNIFORM_SIZE 0x8A38
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1823 #define GL_UNIFORM_NAME_LENGTH 0x8A39
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1824 #define GL_UNIFORM_BLOCK_INDEX 0x8A3A
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1825 #define GL_UNIFORM_OFFSET 0x8A3B
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1826 #define GL_UNIFORM_ARRAY_STRIDE 0x8A3C
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1827 #define GL_UNIFORM_MATRIX_STRIDE 0x8A3D
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1828 #define GL_UNIFORM_IS_ROW_MAJOR 0x8A3E
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1829 #define GL_UNIFORM_BLOCK_BINDING 0x8A3F
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1830 #define GL_UNIFORM_BLOCK_DATA_SIZE 0x8A40
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1831 #define GL_UNIFORM_BLOCK_NAME_LENGTH 0x8A41
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1832 #define GL_UNIFORM_BLOCK_ACTIVE_UNIFORMS 0x8A42
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1833 #define GL_UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES 0x8A43
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1834 #define GL_UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER 0x8A44
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1835 #define GL_UNIFORM_BLOCK_REFERENCED_BY_GEOMETRY_SHADER 0x8A45
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1836 #define GL_UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER 0x8A46
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1837 #define GL_INVALID_INDEX 0xFFFFFFFFu
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1838 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1839
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1840 #ifndef GL_ARB_compatibility
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1841 /* ARB_compatibility just defines tokens from core 3.0 */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1842 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1843
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1844 #ifndef GL_ARB_copy_buffer
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1845 #define GL_COPY_READ_BUFFER 0x8F36
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1846 #define GL_COPY_WRITE_BUFFER 0x8F37
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1847 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1848
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1849 #ifndef GL_ARB_shader_texture_lod
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1850 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1851
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1852 #ifndef GL_ARB_depth_clamp
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1853 #define GL_DEPTH_CLAMP 0x864F
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1854 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1855
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1856 #ifndef GL_ARB_draw_elements_base_vertex
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1857 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1858
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1859 #ifndef GL_ARB_fragment_coord_conventions
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1860 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1861
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1862 #ifndef GL_ARB_provoking_vertex
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1863 #define GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION 0x8E4C
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1864 #define GL_FIRST_VERTEX_CONVENTION 0x8E4D
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1865 #define GL_LAST_VERTEX_CONVENTION 0x8E4E
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1866 #define GL_PROVOKING_VERTEX 0x8E4F
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1867 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1868
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1869 #ifndef GL_ARB_seamless_cube_map
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1870 #define GL_TEXTURE_CUBE_MAP_SEAMLESS 0x884F
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1871 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1872
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1873 #ifndef GL_ARB_sync
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1874 #define GL_MAX_SERVER_WAIT_TIMEOUT 0x9111
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1875 #define GL_OBJECT_TYPE 0x9112
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1876 #define GL_SYNC_CONDITION 0x9113
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1877 #define GL_SYNC_STATUS 0x9114
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1878 #define GL_SYNC_FLAGS 0x9115
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1879 #define GL_SYNC_FENCE 0x9116
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1880 #define GL_SYNC_GPU_COMMANDS_COMPLETE 0x9117
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1881 #define GL_UNSIGNALED 0x9118
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1882 #define GL_SIGNALED 0x9119
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1883 #define GL_ALREADY_SIGNALED 0x911A
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1884 #define GL_TIMEOUT_EXPIRED 0x911B
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1885 #define GL_CONDITION_SATISFIED 0x911C
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1886 #define GL_WAIT_FAILED 0x911D
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1887 #define GL_SYNC_FLUSH_COMMANDS_BIT 0x00000001
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1888 #define GL_TIMEOUT_IGNORED 0xFFFFFFFFFFFFFFFFull
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1889 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1890
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1891 #ifndef GL_ARB_texture_multisample
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1892 #define GL_SAMPLE_POSITION 0x8E50
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1893 #define GL_SAMPLE_MASK 0x8E51
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1894 #define GL_SAMPLE_MASK_VALUE 0x8E52
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1895 #define GL_MAX_SAMPLE_MASK_WORDS 0x8E59
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1896 #define GL_TEXTURE_2D_MULTISAMPLE 0x9100
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1897 #define GL_PROXY_TEXTURE_2D_MULTISAMPLE 0x9101
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1898 #define GL_TEXTURE_2D_MULTISAMPLE_ARRAY 0x9102
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1899 #define GL_PROXY_TEXTURE_2D_MULTISAMPLE_ARRAY 0x9103
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1900 #define GL_TEXTURE_BINDING_2D_MULTISAMPLE 0x9104
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1901 #define GL_TEXTURE_BINDING_2D_MULTISAMPLE_ARRAY 0x9105
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1902 #define GL_TEXTURE_SAMPLES 0x9106
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1903 #define GL_TEXTURE_FIXED_SAMPLE_LOCATIONS 0x9107
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1904 #define GL_SAMPLER_2D_MULTISAMPLE 0x9108
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1905 #define GL_INT_SAMPLER_2D_MULTISAMPLE 0x9109
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1906 #define GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE 0x910A
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1907 #define GL_SAMPLER_2D_MULTISAMPLE_ARRAY 0x910B
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1908 #define GL_INT_SAMPLER_2D_MULTISAMPLE_ARRAY 0x910C
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1909 #define GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE_ARRAY 0x910D
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1910 #define GL_MAX_COLOR_TEXTURE_SAMPLES 0x910E
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1911 #define GL_MAX_DEPTH_TEXTURE_SAMPLES 0x910F
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1912 #define GL_MAX_INTEGER_SAMPLES 0x9110
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1913 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1914
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1915 #ifndef GL_ARB_vertex_array_bgra
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1916 /* reuse GL_BGRA */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1917 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1918
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1919 #ifndef GL_ARB_draw_buffers_blend
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1920 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1921
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1922 #ifndef GL_ARB_sample_shading
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1923 #define GL_SAMPLE_SHADING_ARB 0x8C36
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1924 #define GL_MIN_SAMPLE_SHADING_VALUE_ARB 0x8C37
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1925 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1926
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1927 #ifndef GL_ARB_texture_cube_map_array
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1928 #define GL_TEXTURE_CUBE_MAP_ARRAY_ARB 0x9009
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1929 #define GL_TEXTURE_BINDING_CUBE_MAP_ARRAY_ARB 0x900A
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1930 #define GL_PROXY_TEXTURE_CUBE_MAP_ARRAY_ARB 0x900B
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1931 #define GL_SAMPLER_CUBE_MAP_ARRAY_ARB 0x900C
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1932 #define GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW_ARB 0x900D
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1933 #define GL_INT_SAMPLER_CUBE_MAP_ARRAY_ARB 0x900E
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1934 #define GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY_ARB 0x900F
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1935 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1936
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1937 #ifndef GL_ARB_texture_gather
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1938 #define GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET_ARB 0x8E5E
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1939 #define GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET_ARB 0x8E5F
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1940 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1941
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1942 #ifndef GL_ARB_texture_query_lod
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1943 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
1944
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1945 #ifndef GL_ARB_shading_language_include
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1946 #define GL_SHADER_INCLUDE_ARB 0x8DAE
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1947 #define GL_NAMED_STRING_LENGTH_ARB 0x8DE9
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1948 #define GL_NAMED_STRING_TYPE_ARB 0x8DEA
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1949 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1950
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1951 #ifndef GL_ARB_texture_compression_bptc
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1952 #define GL_COMPRESSED_RGBA_BPTC_UNORM_ARB 0x8E8C
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1953 #define GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM_ARB 0x8E8D
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1954 #define GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT_ARB 0x8E8E
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1955 #define GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT_ARB 0x8E8F
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1956 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1957
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1958 #ifndef GL_ARB_blend_func_extended
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1959 #define GL_SRC1_COLOR 0x88F9
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1960 /* reuse GL_SRC1_ALPHA */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1961 #define GL_ONE_MINUS_SRC1_COLOR 0x88FA
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1962 #define GL_ONE_MINUS_SRC1_ALPHA 0x88FB
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1963 #define GL_MAX_DUAL_SOURCE_DRAW_BUFFERS 0x88FC
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1964 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1965
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1966 #ifndef GL_ARB_explicit_attrib_location
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1967 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1968
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1969 #ifndef GL_ARB_occlusion_query2
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1970 #define GL_ANY_SAMPLES_PASSED 0x8C2F
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1971 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1972
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1973 #ifndef GL_ARB_sampler_objects
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1974 #define GL_SAMPLER_BINDING 0x8919
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1975 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1976
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1977 #ifndef GL_ARB_shader_bit_encoding
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1978 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1979
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1980 #ifndef GL_ARB_texture_rgb10_a2ui
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1981 #define GL_RGB10_A2UI 0x906F
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1982 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1983
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1984 #ifndef GL_ARB_texture_swizzle
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1985 #define GL_TEXTURE_SWIZZLE_R 0x8E42
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1986 #define GL_TEXTURE_SWIZZLE_G 0x8E43
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1987 #define GL_TEXTURE_SWIZZLE_B 0x8E44
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1988 #define GL_TEXTURE_SWIZZLE_A 0x8E45
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1989 #define GL_TEXTURE_SWIZZLE_RGBA 0x8E46
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1990 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1991
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1992 #ifndef GL_ARB_timer_query
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1993 #define GL_TIME_ELAPSED 0x88BF
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1994 #define GL_TIMESTAMP 0x8E28
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1995 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1996
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1997 #ifndef GL_ARB_vertex_type_2_10_10_10_rev
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1998 /* reuse GL_UNSIGNED_INT_2_10_10_10_REV */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
1999 #define GL_INT_2_10_10_10_REV 0x8D9F
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2000 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2001
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2002 #ifndef GL_ARB_draw_indirect
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2003 #define GL_DRAW_INDIRECT_BUFFER 0x8F3F
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2004 #define GL_DRAW_INDIRECT_BUFFER_BINDING 0x8F43
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2005 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2006
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2007 #ifndef GL_ARB_gpu_shader5
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2008 #define GL_GEOMETRY_SHADER_INVOCATIONS 0x887F
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2009 #define GL_MAX_GEOMETRY_SHADER_INVOCATIONS 0x8E5A
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2010 #define GL_MIN_FRAGMENT_INTERPOLATION_OFFSET 0x8E5B
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2011 #define GL_MAX_FRAGMENT_INTERPOLATION_OFFSET 0x8E5C
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2012 #define GL_FRAGMENT_INTERPOLATION_OFFSET_BITS 0x8E5D
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2013 /* reuse GL_MAX_VERTEX_STREAMS */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2014 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2015
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2016 #ifndef GL_ARB_gpu_shader_fp64
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2017 /* reuse GL_DOUBLE */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2018 #define GL_DOUBLE_VEC2 0x8FFC
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2019 #define GL_DOUBLE_VEC3 0x8FFD
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2020 #define GL_DOUBLE_VEC4 0x8FFE
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2021 #define GL_DOUBLE_MAT2 0x8F46
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2022 #define GL_DOUBLE_MAT3 0x8F47
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2023 #define GL_DOUBLE_MAT4 0x8F48
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2024 #define GL_DOUBLE_MAT2x3 0x8F49
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2025 #define GL_DOUBLE_MAT2x4 0x8F4A
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2026 #define GL_DOUBLE_MAT3x2 0x8F4B
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2027 #define GL_DOUBLE_MAT3x4 0x8F4C
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2028 #define GL_DOUBLE_MAT4x2 0x8F4D
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2029 #define GL_DOUBLE_MAT4x3 0x8F4E
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2030 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2031
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2032 #ifndef GL_ARB_shader_subroutine
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2033 #define GL_ACTIVE_SUBROUTINES 0x8DE5
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2034 #define GL_ACTIVE_SUBROUTINE_UNIFORMS 0x8DE6
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2035 #define GL_ACTIVE_SUBROUTINE_UNIFORM_LOCATIONS 0x8E47
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2036 #define GL_ACTIVE_SUBROUTINE_MAX_LENGTH 0x8E48
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2037 #define GL_ACTIVE_SUBROUTINE_UNIFORM_MAX_LENGTH 0x8E49
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2038 #define GL_MAX_SUBROUTINES 0x8DE7
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2039 #define GL_MAX_SUBROUTINE_UNIFORM_LOCATIONS 0x8DE8
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2040 #define GL_NUM_COMPATIBLE_SUBROUTINES 0x8E4A
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2041 #define GL_COMPATIBLE_SUBROUTINES 0x8E4B
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2042 /* reuse GL_UNIFORM_SIZE */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2043 /* reuse GL_UNIFORM_NAME_LENGTH */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2044 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2045
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2046 #ifndef GL_ARB_tessellation_shader
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2047 #define GL_PATCHES 0x000E
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2048 #define GL_PATCH_VERTICES 0x8E72
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2049 #define GL_PATCH_DEFAULT_INNER_LEVEL 0x8E73
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2050 #define GL_PATCH_DEFAULT_OUTER_LEVEL 0x8E74
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2051 #define GL_TESS_CONTROL_OUTPUT_VERTICES 0x8E75
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2052 #define GL_TESS_GEN_MODE 0x8E76
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2053 #define GL_TESS_GEN_SPACING 0x8E77
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2054 #define GL_TESS_GEN_VERTEX_ORDER 0x8E78
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2055 #define GL_TESS_GEN_POINT_MODE 0x8E79
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2056 /* reuse GL_TRIANGLES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2057 /* reuse GL_QUADS */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2058 #define GL_ISOLINES 0x8E7A
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2059 /* reuse GL_EQUAL */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2060 #define GL_FRACTIONAL_ODD 0x8E7B
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2061 #define GL_FRACTIONAL_EVEN 0x8E7C
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2062 /* reuse GL_CCW */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2063 /* reuse GL_CW */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2064 #define GL_MAX_PATCH_VERTICES 0x8E7D
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2065 #define GL_MAX_TESS_GEN_LEVEL 0x8E7E
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2066 #define GL_MAX_TESS_CONTROL_UNIFORM_COMPONENTS 0x8E7F
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2067 #define GL_MAX_TESS_EVALUATION_UNIFORM_COMPONENTS 0x8E80
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2068 #define GL_MAX_TESS_CONTROL_TEXTURE_IMAGE_UNITS 0x8E81
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2069 #define GL_MAX_TESS_EVALUATION_TEXTURE_IMAGE_UNITS 0x8E82
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2070 #define GL_MAX_TESS_CONTROL_OUTPUT_COMPONENTS 0x8E83
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2071 #define GL_MAX_TESS_PATCH_COMPONENTS 0x8E84
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2072 #define GL_MAX_TESS_CONTROL_TOTAL_OUTPUT_COMPONENTS 0x8E85
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2073 #define GL_MAX_TESS_EVALUATION_OUTPUT_COMPONENTS 0x8E86
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2074 #define GL_MAX_TESS_CONTROL_UNIFORM_BLOCKS 0x8E89
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2075 #define GL_MAX_TESS_EVALUATION_UNIFORM_BLOCKS 0x8E8A
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2076 #define GL_MAX_TESS_CONTROL_INPUT_COMPONENTS 0x886C
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2077 #define GL_MAX_TESS_EVALUATION_INPUT_COMPONENTS 0x886D
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2078 #define GL_MAX_COMBINED_TESS_CONTROL_UNIFORM_COMPONENTS 0x8E1E
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2079 #define GL_MAX_COMBINED_TESS_EVALUATION_UNIFORM_COMPONENTS 0x8E1F
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2080 #define GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_CONTROL_SHADER 0x84F0
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2081 #define GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_EVALUATION_SHADER 0x84F1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2082 #define GL_TESS_EVALUATION_SHADER 0x8E87
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2083 #define GL_TESS_CONTROL_SHADER 0x8E88
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2084 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2085
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2086 #ifndef GL_ARB_texture_buffer_object_rgb32
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2087 /* reuse GL_RGB32F */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2088 /* reuse GL_RGB32UI */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2089 /* reuse GL_RGB32I */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2090 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2091
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2092 #ifndef GL_ARB_transform_feedback2
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2093 #define GL_TRANSFORM_FEEDBACK 0x8E22
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2094 #define GL_TRANSFORM_FEEDBACK_BUFFER_PAUSED 0x8E23
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2095 #define GL_TRANSFORM_FEEDBACK_BUFFER_ACTIVE 0x8E24
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2096 #define GL_TRANSFORM_FEEDBACK_BINDING 0x8E25
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2097 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2098
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2099 #ifndef GL_ARB_transform_feedback3
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2100 #define GL_MAX_TRANSFORM_FEEDBACK_BUFFERS 0x8E70
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2101 #define GL_MAX_VERTEX_STREAMS 0x8E71
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2102 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2103
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2104 #ifndef GL_ARB_ES2_compatibility
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2105 #define GL_FIXED 0x140C
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2106 #define GL_IMPLEMENTATION_COLOR_READ_TYPE 0x8B9A
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2107 #define GL_IMPLEMENTATION_COLOR_READ_FORMAT 0x8B9B
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2108 #define GL_LOW_FLOAT 0x8DF0
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2109 #define GL_MEDIUM_FLOAT 0x8DF1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2110 #define GL_HIGH_FLOAT 0x8DF2
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2111 #define GL_LOW_INT 0x8DF3
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2112 #define GL_MEDIUM_INT 0x8DF4
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2113 #define GL_HIGH_INT 0x8DF5
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2114 #define GL_SHADER_COMPILER 0x8DFA
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2115 #define GL_NUM_SHADER_BINARY_FORMATS 0x8DF9
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2116 #define GL_MAX_VERTEX_UNIFORM_VECTORS 0x8DFB
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2117 #define GL_MAX_VARYING_VECTORS 0x8DFC
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2118 #define GL_MAX_FRAGMENT_UNIFORM_VECTORS 0x8DFD
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2119 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2120
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2121 #ifndef GL_ARB_get_program_binary
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2122 #define GL_PROGRAM_BINARY_RETRIEVABLE_HINT 0x8257
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2123 #define GL_PROGRAM_BINARY_LENGTH 0x8741
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2124 #define GL_NUM_PROGRAM_BINARY_FORMATS 0x87FE
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2125 #define GL_PROGRAM_BINARY_FORMATS 0x87FF
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2126 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2127
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2128 #ifndef GL_ARB_separate_shader_objects
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2129 #define GL_VERTEX_SHADER_BIT 0x00000001
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2130 #define GL_FRAGMENT_SHADER_BIT 0x00000002
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2131 #define GL_GEOMETRY_SHADER_BIT 0x00000004
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2132 #define GL_TESS_CONTROL_SHADER_BIT 0x00000008
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2133 #define GL_TESS_EVALUATION_SHADER_BIT 0x00000010
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2134 #define GL_ALL_SHADER_BITS 0xFFFFFFFF
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2135 #define GL_PROGRAM_SEPARABLE 0x8258
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2136 #define GL_ACTIVE_PROGRAM 0x8259
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2137 #define GL_PROGRAM_PIPELINE_BINDING 0x825A
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2138 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2139
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2140 #ifndef GL_ARB_shader_precision
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2141 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2142
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2143 #ifndef GL_ARB_vertex_attrib_64bit
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2144 /* reuse GL_RGB32I */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2145 /* reuse GL_DOUBLE_VEC2 */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2146 /* reuse GL_DOUBLE_VEC3 */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2147 /* reuse GL_DOUBLE_VEC4 */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2148 /* reuse GL_DOUBLE_MAT2 */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2149 /* reuse GL_DOUBLE_MAT3 */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2150 /* reuse GL_DOUBLE_MAT4 */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2151 /* reuse GL_DOUBLE_MAT2x3 */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2152 /* reuse GL_DOUBLE_MAT2x4 */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2153 /* reuse GL_DOUBLE_MAT3x2 */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2154 /* reuse GL_DOUBLE_MAT3x4 */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2155 /* reuse GL_DOUBLE_MAT4x2 */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2156 /* reuse GL_DOUBLE_MAT4x3 */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2157 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2158
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2159 #ifndef GL_ARB_viewport_array
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2160 /* reuse GL_SCISSOR_BOX */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2161 /* reuse GL_VIEWPORT */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2162 /* reuse GL_DEPTH_RANGE */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2163 /* reuse GL_SCISSOR_TEST */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2164 #define GL_MAX_VIEWPORTS 0x825B
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2165 #define GL_VIEWPORT_SUBPIXEL_BITS 0x825C
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2166 #define GL_VIEWPORT_BOUNDS_RANGE 0x825D
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2167 #define GL_LAYER_PROVOKING_VERTEX 0x825E
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2168 #define GL_VIEWPORT_INDEX_PROVOKING_VERTEX 0x825F
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2169 #define GL_UNDEFINED_VERTEX 0x8260
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2170 /* reuse GL_FIRST_VERTEX_CONVENTION */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2171 /* reuse GL_LAST_VERTEX_CONVENTION */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2172 /* reuse GL_PROVOKING_VERTEX */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2173 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2174
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2175 #ifndef GL_ARB_cl_event
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2176 #define GL_SYNC_CL_EVENT_ARB 0x8240
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2177 #define GL_SYNC_CL_EVENT_COMPLETE_ARB 0x8241
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2178 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2179
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2180 #ifndef GL_ARB_debug_output
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2181 #define GL_DEBUG_OUTPUT_SYNCHRONOUS_ARB 0x8242
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2182 #define GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH_ARB 0x8243
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2183 #define GL_DEBUG_CALLBACK_FUNCTION_ARB 0x8244
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2184 #define GL_DEBUG_CALLBACK_USER_PARAM_ARB 0x8245
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2185 #define GL_DEBUG_SOURCE_API_ARB 0x8246
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2186 #define GL_DEBUG_SOURCE_WINDOW_SYSTEM_ARB 0x8247
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2187 #define GL_DEBUG_SOURCE_SHADER_COMPILER_ARB 0x8248
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2188 #define GL_DEBUG_SOURCE_THIRD_PARTY_ARB 0x8249
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2189 #define GL_DEBUG_SOURCE_APPLICATION_ARB 0x824A
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2190 #define GL_DEBUG_SOURCE_OTHER_ARB 0x824B
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2191 #define GL_DEBUG_TYPE_ERROR_ARB 0x824C
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2192 #define GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR_ARB 0x824D
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2193 #define GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR_ARB 0x824E
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2194 #define GL_DEBUG_TYPE_PORTABILITY_ARB 0x824F
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2195 #define GL_DEBUG_TYPE_PERFORMANCE_ARB 0x8250
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2196 #define GL_DEBUG_TYPE_OTHER_ARB 0x8251
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2197 #define GL_MAX_DEBUG_MESSAGE_LENGTH_ARB 0x9143
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2198 #define GL_MAX_DEBUG_LOGGED_MESSAGES_ARB 0x9144
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2199 #define GL_DEBUG_LOGGED_MESSAGES_ARB 0x9145
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2200 #define GL_DEBUG_SEVERITY_HIGH_ARB 0x9146
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2201 #define GL_DEBUG_SEVERITY_MEDIUM_ARB 0x9147
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2202 #define GL_DEBUG_SEVERITY_LOW_ARB 0x9148
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2203 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2204
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2205 #ifndef GL_ARB_robustness
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2206 /* reuse GL_NO_ERROR */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2207 #define GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT_ARB 0x00000004
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2208 #define GL_LOSE_CONTEXT_ON_RESET_ARB 0x8252
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2209 #define GL_GUILTY_CONTEXT_RESET_ARB 0x8253
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2210 #define GL_INNOCENT_CONTEXT_RESET_ARB 0x8254
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2211 #define GL_UNKNOWN_CONTEXT_RESET_ARB 0x8255
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2212 #define GL_RESET_NOTIFICATION_STRATEGY_ARB 0x8256
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2213 #define GL_NO_RESET_NOTIFICATION_ARB 0x8261
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2214 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2215
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2216 #ifndef GL_ARB_shader_stencil_export
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2217 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
2218
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2219 #ifndef GL_EXT_abgr
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2220 #define GL_ABGR_EXT 0x8000
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2221 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2222
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2223 #ifndef GL_EXT_blend_color
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2224 #define GL_CONSTANT_COLOR_EXT 0x8001
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2225 #define GL_ONE_MINUS_CONSTANT_COLOR_EXT 0x8002
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2226 #define GL_CONSTANT_ALPHA_EXT 0x8003
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2227 #define GL_ONE_MINUS_CONSTANT_ALPHA_EXT 0x8004
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2228 #define GL_BLEND_COLOR_EXT 0x8005
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2229 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2230
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2231 #ifndef GL_EXT_polygon_offset
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2232 #define GL_POLYGON_OFFSET_EXT 0x8037
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2233 #define GL_POLYGON_OFFSET_FACTOR_EXT 0x8038
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2234 #define GL_POLYGON_OFFSET_BIAS_EXT 0x8039
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2235 #endif
214
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
2236
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2237 #ifndef GL_EXT_texture
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2238 #define GL_ALPHA4_EXT 0x803B
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2239 #define GL_ALPHA8_EXT 0x803C
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2240 #define GL_ALPHA12_EXT 0x803D
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2241 #define GL_ALPHA16_EXT 0x803E
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2242 #define GL_LUMINANCE4_EXT 0x803F
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2243 #define GL_LUMINANCE8_EXT 0x8040
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2244 #define GL_LUMINANCE12_EXT 0x8041
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2245 #define GL_LUMINANCE16_EXT 0x8042
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2246 #define GL_LUMINANCE4_ALPHA4_EXT 0x8043
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2247 #define GL_LUMINANCE6_ALPHA2_EXT 0x8044
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2248 #define GL_LUMINANCE8_ALPHA8_EXT 0x8045
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2249 #define GL_LUMINANCE12_ALPHA4_EXT 0x8046
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2250 #define GL_LUMINANCE12_ALPHA12_EXT 0x8047
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2251 #define GL_LUMINANCE16_ALPHA16_EXT 0x8048
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2252 #define GL_INTENSITY_EXT 0x8049
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2253 #define GL_INTENSITY4_EXT 0x804A
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2254 #define GL_INTENSITY8_EXT 0x804B
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2255 #define GL_INTENSITY12_EXT 0x804C
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2256 #define GL_INTENSITY16_EXT 0x804D
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2257 #define GL_RGB2_EXT 0x804E
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2258 #define GL_RGB4_EXT 0x804F
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2259 #define GL_RGB5_EXT 0x8050
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2260 #define GL_RGB8_EXT 0x8051
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2261 #define GL_RGB10_EXT 0x8052
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2262 #define GL_RGB12_EXT 0x8053
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2263 #define GL_RGB16_EXT 0x8054
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2264 #define GL_RGBA2_EXT 0x8055
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2265 #define GL_RGBA4_EXT 0x8056
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2266 #define GL_RGB5_A1_EXT 0x8057
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2267 #define GL_RGBA8_EXT 0x8058
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2268 #define GL_RGB10_A2_EXT 0x8059
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2269 #define GL_RGBA12_EXT 0x805A
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2270 #define GL_RGBA16_EXT 0x805B
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2271 #define GL_TEXTURE_RED_SIZE_EXT 0x805C
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2272 #define GL_TEXTURE_GREEN_SIZE_EXT 0x805D
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2273 #define GL_TEXTURE_BLUE_SIZE_EXT 0x805E
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2274 #define GL_TEXTURE_ALPHA_SIZE_EXT 0x805F
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2275 #define GL_TEXTURE_LUMINANCE_SIZE_EXT 0x8060
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2276 #define GL_TEXTURE_INTENSITY_SIZE_EXT 0x8061
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2277 #define GL_REPLACE_EXT 0x8062
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2278 #define GL_PROXY_TEXTURE_1D_EXT 0x8063
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2279 #define GL_PROXY_TEXTURE_2D_EXT 0x8064
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2280 #define GL_TEXTURE_TOO_LARGE_EXT 0x8065
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2281 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2282
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2283 #ifndef GL_EXT_texture3D
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2284 #define GL_PACK_SKIP_IMAGES_EXT 0x806B
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2285 #define GL_PACK_IMAGE_HEIGHT_EXT 0x806C
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2286 #define GL_UNPACK_SKIP_IMAGES_EXT 0x806D
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2287 #define GL_UNPACK_IMAGE_HEIGHT_EXT 0x806E
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2288 #define GL_TEXTURE_3D_EXT 0x806F
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2289 #define GL_PROXY_TEXTURE_3D_EXT 0x8070
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2290 #define GL_TEXTURE_DEPTH_EXT 0x8071
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2291 #define GL_TEXTURE_WRAP_R_EXT 0x8072
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2292 #define GL_MAX_3D_TEXTURE_SIZE_EXT 0x8073
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2293 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2294
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2295 #ifndef GL_SGIS_texture_filter4
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2296 #define GL_FILTER4_SGIS 0x8146
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2297 #define GL_TEXTURE_FILTER4_SIZE_SGIS 0x8147
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2298 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2299
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2300 #ifndef GL_EXT_subtexture
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2301 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2302
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2303 #ifndef GL_EXT_copy_texture
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2304 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2305
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2306 #ifndef GL_EXT_histogram
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2307 #define GL_HISTOGRAM_EXT 0x8024
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2308 #define GL_PROXY_HISTOGRAM_EXT 0x8025
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2309 #define GL_HISTOGRAM_WIDTH_EXT 0x8026
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2310 #define GL_HISTOGRAM_FORMAT_EXT 0x8027
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2311 #define GL_HISTOGRAM_RED_SIZE_EXT 0x8028
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2312 #define GL_HISTOGRAM_GREEN_SIZE_EXT 0x8029
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2313 #define GL_HISTOGRAM_BLUE_SIZE_EXT 0x802A
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2314 #define GL_HISTOGRAM_ALPHA_SIZE_EXT 0x802B
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2315 #define GL_HISTOGRAM_LUMINANCE_SIZE_EXT 0x802C
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2316 #define GL_HISTOGRAM_SINK_EXT 0x802D
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2317 #define GL_MINMAX_EXT 0x802E
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2318 #define GL_MINMAX_FORMAT_EXT 0x802F
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2319 #define GL_MINMAX_SINK_EXT 0x8030
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2320 #define GL_TABLE_TOO_LARGE_EXT 0x8031
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2321 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2322
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2323 #ifndef GL_EXT_convolution
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2324 #define GL_CONVOLUTION_1D_EXT 0x8010
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2325 #define GL_CONVOLUTION_2D_EXT 0x8011
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2326 #define GL_SEPARABLE_2D_EXT 0x8012
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2327 #define GL_CONVOLUTION_BORDER_MODE_EXT 0x8013
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2328 #define GL_CONVOLUTION_FILTER_SCALE_EXT 0x8014
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2329 #define GL_CONVOLUTION_FILTER_BIAS_EXT 0x8015
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2330 #define GL_REDUCE_EXT 0x8016
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2331 #define GL_CONVOLUTION_FORMAT_EXT 0x8017
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2332 #define GL_CONVOLUTION_WIDTH_EXT 0x8018
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2333 #define GL_CONVOLUTION_HEIGHT_EXT 0x8019
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2334 #define GL_MAX_CONVOLUTION_WIDTH_EXT 0x801A
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2335 #define GL_MAX_CONVOLUTION_HEIGHT_EXT 0x801B
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2336 #define GL_POST_CONVOLUTION_RED_SCALE_EXT 0x801C
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2337 #define GL_POST_CONVOLUTION_GREEN_SCALE_EXT 0x801D
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2338 #define GL_POST_CONVOLUTION_BLUE_SCALE_EXT 0x801E
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2339 #define GL_POST_CONVOLUTION_ALPHA_SCALE_EXT 0x801F
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2340 #define GL_POST_CONVOLUTION_RED_BIAS_EXT 0x8020
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2341 #define GL_POST_CONVOLUTION_GREEN_BIAS_EXT 0x8021
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2342 #define GL_POST_CONVOLUTION_BLUE_BIAS_EXT 0x8022
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2343 #define GL_POST_CONVOLUTION_ALPHA_BIAS_EXT 0x8023
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2344 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2345
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2346 #ifndef GL_SGI_color_matrix
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2347 #define GL_COLOR_MATRIX_SGI 0x80B1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2348 #define GL_COLOR_MATRIX_STACK_DEPTH_SGI 0x80B2
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2349 #define GL_MAX_COLOR_MATRIX_STACK_DEPTH_SGI 0x80B3
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2350 #define GL_POST_COLOR_MATRIX_RED_SCALE_SGI 0x80B4
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2351 #define GL_POST_COLOR_MATRIX_GREEN_SCALE_SGI 0x80B5
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2352 #define GL_POST_COLOR_MATRIX_BLUE_SCALE_SGI 0x80B6
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2353 #define GL_POST_COLOR_MATRIX_ALPHA_SCALE_SGI 0x80B7
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2354 #define GL_POST_COLOR_MATRIX_RED_BIAS_SGI 0x80B8
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2355 #define GL_POST_COLOR_MATRIX_GREEN_BIAS_SGI 0x80B9
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2356 #define GL_POST_COLOR_MATRIX_BLUE_BIAS_SGI 0x80BA
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2357 #define GL_POST_COLOR_MATRIX_ALPHA_BIAS_SGI 0x80BB
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2358 #endif
214
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
2359
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2360 #ifndef GL_SGI_color_table
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2361 #define GL_COLOR_TABLE_SGI 0x80D0
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2362 #define GL_POST_CONVOLUTION_COLOR_TABLE_SGI 0x80D1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2363 #define GL_POST_COLOR_MATRIX_COLOR_TABLE_SGI 0x80D2
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2364 #define GL_PROXY_COLOR_TABLE_SGI 0x80D3
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2365 #define GL_PROXY_POST_CONVOLUTION_COLOR_TABLE_SGI 0x80D4
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2366 #define GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE_SGI 0x80D5
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2367 #define GL_COLOR_TABLE_SCALE_SGI 0x80D6
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2368 #define GL_COLOR_TABLE_BIAS_SGI 0x80D7
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2369 #define GL_COLOR_TABLE_FORMAT_SGI 0x80D8
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2370 #define GL_COLOR_TABLE_WIDTH_SGI 0x80D9
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2371 #define GL_COLOR_TABLE_RED_SIZE_SGI 0x80DA
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2372 #define GL_COLOR_TABLE_GREEN_SIZE_SGI 0x80DB
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2373 #define GL_COLOR_TABLE_BLUE_SIZE_SGI 0x80DC
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2374 #define GL_COLOR_TABLE_ALPHA_SIZE_SGI 0x80DD
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2375 #define GL_COLOR_TABLE_LUMINANCE_SIZE_SGI 0x80DE
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2376 #define GL_COLOR_TABLE_INTENSITY_SIZE_SGI 0x80DF
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2377 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2378
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2379 #ifndef GL_SGIS_pixel_texture
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2380 #define GL_PIXEL_TEXTURE_SGIS 0x8353
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2381 #define GL_PIXEL_FRAGMENT_RGB_SOURCE_SGIS 0x8354
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2382 #define GL_PIXEL_FRAGMENT_ALPHA_SOURCE_SGIS 0x8355
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2383 #define GL_PIXEL_GROUP_COLOR_SGIS 0x8356
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2384 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2385
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2386 #ifndef GL_SGIX_pixel_texture
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2387 #define GL_PIXEL_TEX_GEN_SGIX 0x8139
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2388 #define GL_PIXEL_TEX_GEN_MODE_SGIX 0x832B
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2389 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2390
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2391 #ifndef GL_SGIS_texture4D
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2392 #define GL_PACK_SKIP_VOLUMES_SGIS 0x8130
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2393 #define GL_PACK_IMAGE_DEPTH_SGIS 0x8131
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2394 #define GL_UNPACK_SKIP_VOLUMES_SGIS 0x8132
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2395 #define GL_UNPACK_IMAGE_DEPTH_SGIS 0x8133
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2396 #define GL_TEXTURE_4D_SGIS 0x8134
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2397 #define GL_PROXY_TEXTURE_4D_SGIS 0x8135
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2398 #define GL_TEXTURE_4DSIZE_SGIS 0x8136
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2399 #define GL_TEXTURE_WRAP_Q_SGIS 0x8137
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2400 #define GL_MAX_4D_TEXTURE_SIZE_SGIS 0x8138
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2401 #define GL_TEXTURE_4D_BINDING_SGIS 0x814F
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2402 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2403
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2404 #ifndef GL_SGI_texture_color_table
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2405 #define GL_TEXTURE_COLOR_TABLE_SGI 0x80BC
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2406 #define GL_PROXY_TEXTURE_COLOR_TABLE_SGI 0x80BD
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2407 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2408
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2409 #ifndef GL_EXT_cmyka
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2410 #define GL_CMYK_EXT 0x800C
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2411 #define GL_CMYKA_EXT 0x800D
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2412 #define GL_PACK_CMYK_HINT_EXT 0x800E
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2413 #define GL_UNPACK_CMYK_HINT_EXT 0x800F
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2414 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2415
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2416 #ifndef GL_EXT_texture_object
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2417 #define GL_TEXTURE_PRIORITY_EXT 0x8066
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2418 #define GL_TEXTURE_RESIDENT_EXT 0x8067
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2419 #define GL_TEXTURE_1D_BINDING_EXT 0x8068
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2420 #define GL_TEXTURE_2D_BINDING_EXT 0x8069
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2421 #define GL_TEXTURE_3D_BINDING_EXT 0x806A
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2422 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2423
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2424 #ifndef GL_SGIS_detail_texture
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2425 #define GL_DETAIL_TEXTURE_2D_SGIS 0x8095
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2426 #define GL_DETAIL_TEXTURE_2D_BINDING_SGIS 0x8096
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2427 #define GL_LINEAR_DETAIL_SGIS 0x8097
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2428 #define GL_LINEAR_DETAIL_ALPHA_SGIS 0x8098
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2429 #define GL_LINEAR_DETAIL_COLOR_SGIS 0x8099
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2430 #define GL_DETAIL_TEXTURE_LEVEL_SGIS 0x809A
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2431 #define GL_DETAIL_TEXTURE_MODE_SGIS 0x809B
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2432 #define GL_DETAIL_TEXTURE_FUNC_POINTS_SGIS 0x809C
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2433 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2434
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2435 #ifndef GL_SGIS_sharpen_texture
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2436 #define GL_LINEAR_SHARPEN_SGIS 0x80AD
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2437 #define GL_LINEAR_SHARPEN_ALPHA_SGIS 0x80AE
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2438 #define GL_LINEAR_SHARPEN_COLOR_SGIS 0x80AF
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2439 #define GL_SHARPEN_TEXTURE_FUNC_POINTS_SGIS 0x80B0
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2440 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2441
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2442 #ifndef GL_EXT_packed_pixels
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2443 #define GL_UNSIGNED_BYTE_3_3_2_EXT 0x8032
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2444 #define GL_UNSIGNED_SHORT_4_4_4_4_EXT 0x8033
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2445 #define GL_UNSIGNED_SHORT_5_5_5_1_EXT 0x8034
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2446 #define GL_UNSIGNED_INT_8_8_8_8_EXT 0x8035
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2447 #define GL_UNSIGNED_INT_10_10_10_2_EXT 0x8036
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2448 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2449
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2450 #ifndef GL_SGIS_texture_lod
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2451 #define GL_TEXTURE_MIN_LOD_SGIS 0x813A
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2452 #define GL_TEXTURE_MAX_LOD_SGIS 0x813B
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2453 #define GL_TEXTURE_BASE_LEVEL_SGIS 0x813C
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2454 #define GL_TEXTURE_MAX_LEVEL_SGIS 0x813D
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2455 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2456
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2457 #ifndef GL_SGIS_multisample
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2458 #define GL_MULTISAMPLE_SGIS 0x809D
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2459 #define GL_SAMPLE_ALPHA_TO_MASK_SGIS 0x809E
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2460 #define GL_SAMPLE_ALPHA_TO_ONE_SGIS 0x809F
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2461 #define GL_SAMPLE_MASK_SGIS 0x80A0
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2462 #define GL_1PASS_SGIS 0x80A1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2463 #define GL_2PASS_0_SGIS 0x80A2
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2464 #define GL_2PASS_1_SGIS 0x80A3
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2465 #define GL_4PASS_0_SGIS 0x80A4
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2466 #define GL_4PASS_1_SGIS 0x80A5
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2467 #define GL_4PASS_2_SGIS 0x80A6
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2468 #define GL_4PASS_3_SGIS 0x80A7
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2469 #define GL_SAMPLE_BUFFERS_SGIS 0x80A8
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2470 #define GL_SAMPLES_SGIS 0x80A9
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2471 #define GL_SAMPLE_MASK_VALUE_SGIS 0x80AA
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2472 #define GL_SAMPLE_MASK_INVERT_SGIS 0x80AB
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2473 #define GL_SAMPLE_PATTERN_SGIS 0x80AC
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2474 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2475
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2476 #ifndef GL_EXT_rescale_normal
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2477 #define GL_RESCALE_NORMAL_EXT 0x803A
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2478 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2479
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2480 #ifndef GL_EXT_vertex_array
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2481 #define GL_VERTEX_ARRAY_EXT 0x8074
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2482 #define GL_NORMAL_ARRAY_EXT 0x8075
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2483 #define GL_COLOR_ARRAY_EXT 0x8076
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2484 #define GL_INDEX_ARRAY_EXT 0x8077
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2485 #define GL_TEXTURE_COORD_ARRAY_EXT 0x8078
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2486 #define GL_EDGE_FLAG_ARRAY_EXT 0x8079
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2487 #define GL_VERTEX_ARRAY_SIZE_EXT 0x807A
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2488 #define GL_VERTEX_ARRAY_TYPE_EXT 0x807B
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2489 #define GL_VERTEX_ARRAY_STRIDE_EXT 0x807C
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2490 #define GL_VERTEX_ARRAY_COUNT_EXT 0x807D
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2491 #define GL_NORMAL_ARRAY_TYPE_EXT 0x807E
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2492 #define GL_NORMAL_ARRAY_STRIDE_EXT 0x807F
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2493 #define GL_NORMAL_ARRAY_COUNT_EXT 0x8080
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2494 #define GL_COLOR_ARRAY_SIZE_EXT 0x8081
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2495 #define GL_COLOR_ARRAY_TYPE_EXT 0x8082
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2496 #define GL_COLOR_ARRAY_STRIDE_EXT 0x8083
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2497 #define GL_COLOR_ARRAY_COUNT_EXT 0x8084
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2498 #define GL_INDEX_ARRAY_TYPE_EXT 0x8085
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2499 #define GL_INDEX_ARRAY_STRIDE_EXT 0x8086
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2500 #define GL_INDEX_ARRAY_COUNT_EXT 0x8087
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2501 #define GL_TEXTURE_COORD_ARRAY_SIZE_EXT 0x8088
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2502 #define GL_TEXTURE_COORD_ARRAY_TYPE_EXT 0x8089
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2503 #define GL_TEXTURE_COORD_ARRAY_STRIDE_EXT 0x808A
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2504 #define GL_TEXTURE_COORD_ARRAY_COUNT_EXT 0x808B
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2505 #define GL_EDGE_FLAG_ARRAY_STRIDE_EXT 0x808C
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2506 #define GL_EDGE_FLAG_ARRAY_COUNT_EXT 0x808D
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2507 #define GL_VERTEX_ARRAY_POINTER_EXT 0x808E
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2508 #define GL_NORMAL_ARRAY_POINTER_EXT 0x808F
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2509 #define GL_COLOR_ARRAY_POINTER_EXT 0x8090
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2510 #define GL_INDEX_ARRAY_POINTER_EXT 0x8091
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2511 #define GL_TEXTURE_COORD_ARRAY_POINTER_EXT 0x8092
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2512 #define GL_EDGE_FLAG_ARRAY_POINTER_EXT 0x8093
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2513 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2514
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2515 #ifndef GL_EXT_misc_attribute
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2516 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2517
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2518 #ifndef GL_SGIS_generate_mipmap
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2519 #define GL_GENERATE_MIPMAP_SGIS 0x8191
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2520 #define GL_GENERATE_MIPMAP_HINT_SGIS 0x8192
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2521 #endif
214
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
2522
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2523 #ifndef GL_SGIX_clipmap
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2524 #define GL_LINEAR_CLIPMAP_LINEAR_SGIX 0x8170
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2525 #define GL_TEXTURE_CLIPMAP_CENTER_SGIX 0x8171
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2526 #define GL_TEXTURE_CLIPMAP_FRAME_SGIX 0x8172
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2527 #define GL_TEXTURE_CLIPMAP_OFFSET_SGIX 0x8173
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2528 #define GL_TEXTURE_CLIPMAP_VIRTUAL_DEPTH_SGIX 0x8174
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2529 #define GL_TEXTURE_CLIPMAP_LOD_OFFSET_SGIX 0x8175
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2530 #define GL_TEXTURE_CLIPMAP_DEPTH_SGIX 0x8176
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2531 #define GL_MAX_CLIPMAP_DEPTH_SGIX 0x8177
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2532 #define GL_MAX_CLIPMAP_VIRTUAL_DEPTH_SGIX 0x8178
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2533 #define GL_NEAREST_CLIPMAP_NEAREST_SGIX 0x844D
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2534 #define GL_NEAREST_CLIPMAP_LINEAR_SGIX 0x844E
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2535 #define GL_LINEAR_CLIPMAP_NEAREST_SGIX 0x844F
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2536 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2537
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2538 #ifndef GL_SGIX_shadow
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2539 #define GL_TEXTURE_COMPARE_SGIX 0x819A
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2540 #define GL_TEXTURE_COMPARE_OPERATOR_SGIX 0x819B
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2541 #define GL_TEXTURE_LEQUAL_R_SGIX 0x819C
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2542 #define GL_TEXTURE_GEQUAL_R_SGIX 0x819D
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2543 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2544
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2545 #ifndef GL_SGIS_texture_edge_clamp
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2546 #define GL_CLAMP_TO_EDGE_SGIS 0x812F
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2547 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2548
1205
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
2549 #ifndef GL_SGIS_texture_border_clamp
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
2550 #define GL_CLAMP_TO_BORDER_SGIS 0x812D
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
2551 #endif
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
2552
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2553 #ifndef GL_EXT_blend_minmax
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2554 #define GL_FUNC_ADD_EXT 0x8006
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2555 #define GL_MIN_EXT 0x8007
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2556 #define GL_MAX_EXT 0x8008
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2557 #define GL_BLEND_EQUATION_EXT 0x8009
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2558 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2559
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2560 #ifndef GL_EXT_blend_subtract
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2561 #define GL_FUNC_SUBTRACT_EXT 0x800A
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2562 #define GL_FUNC_REVERSE_SUBTRACT_EXT 0x800B
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2563 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2564
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2565 #ifndef GL_EXT_blend_logic_op
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2566 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2567
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2568 #ifndef GL_SGIX_interlace
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2569 #define GL_INTERLACE_SGIX 0x8094
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2570 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2571
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2572 #ifndef GL_SGIX_pixel_tiles
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2573 #define GL_PIXEL_TILE_BEST_ALIGNMENT_SGIX 0x813E
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2574 #define GL_PIXEL_TILE_CACHE_INCREMENT_SGIX 0x813F
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2575 #define GL_PIXEL_TILE_WIDTH_SGIX 0x8140
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2576 #define GL_PIXEL_TILE_HEIGHT_SGIX 0x8141
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2577 #define GL_PIXEL_TILE_GRID_WIDTH_SGIX 0x8142
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2578 #define GL_PIXEL_TILE_GRID_HEIGHT_SGIX 0x8143
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2579 #define GL_PIXEL_TILE_GRID_DEPTH_SGIX 0x8144
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2580 #define GL_PIXEL_TILE_CACHE_SIZE_SGIX 0x8145
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2581 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2582
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2583 #ifndef GL_SGIS_texture_select
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2584 #define GL_DUAL_ALPHA4_SGIS 0x8110
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2585 #define GL_DUAL_ALPHA8_SGIS 0x8111
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2586 #define GL_DUAL_ALPHA12_SGIS 0x8112
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2587 #define GL_DUAL_ALPHA16_SGIS 0x8113
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2588 #define GL_DUAL_LUMINANCE4_SGIS 0x8114
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2589 #define GL_DUAL_LUMINANCE8_SGIS 0x8115
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2590 #define GL_DUAL_LUMINANCE12_SGIS 0x8116
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2591 #define GL_DUAL_LUMINANCE16_SGIS 0x8117
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2592 #define GL_DUAL_INTENSITY4_SGIS 0x8118
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2593 #define GL_DUAL_INTENSITY8_SGIS 0x8119
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2594 #define GL_DUAL_INTENSITY12_SGIS 0x811A
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2595 #define GL_DUAL_INTENSITY16_SGIS 0x811B
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2596 #define GL_DUAL_LUMINANCE_ALPHA4_SGIS 0x811C
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2597 #define GL_DUAL_LUMINANCE_ALPHA8_SGIS 0x811D
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2598 #define GL_QUAD_ALPHA4_SGIS 0x811E
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2599 #define GL_QUAD_ALPHA8_SGIS 0x811F
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2600 #define GL_QUAD_LUMINANCE4_SGIS 0x8120
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2601 #define GL_QUAD_LUMINANCE8_SGIS 0x8121
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2602 #define GL_QUAD_INTENSITY4_SGIS 0x8122
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2603 #define GL_QUAD_INTENSITY8_SGIS 0x8123
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2604 #define GL_DUAL_TEXTURE_SELECT_SGIS 0x8124
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2605 #define GL_QUAD_TEXTURE_SELECT_SGIS 0x8125
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2606 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2607
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2608 #ifndef GL_SGIX_sprite
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2609 #define GL_SPRITE_SGIX 0x8148
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2610 #define GL_SPRITE_MODE_SGIX 0x8149
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2611 #define GL_SPRITE_AXIS_SGIX 0x814A
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2612 #define GL_SPRITE_TRANSLATION_SGIX 0x814B
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2613 #define GL_SPRITE_AXIAL_SGIX 0x814C
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2614 #define GL_SPRITE_OBJECT_ALIGNED_SGIX 0x814D
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2615 #define GL_SPRITE_EYE_ALIGNED_SGIX 0x814E
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2616 #endif
214
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
2617
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2618 #ifndef GL_SGIX_texture_multi_buffer
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2619 #define GL_TEXTURE_MULTI_BUFFER_HINT_SGIX 0x812E
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2620 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2621
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2622 #ifndef GL_EXT_point_parameters
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2623 #define GL_POINT_SIZE_MIN_EXT 0x8126
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2624 #define GL_POINT_SIZE_MAX_EXT 0x8127
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2625 #define GL_POINT_FADE_THRESHOLD_SIZE_EXT 0x8128
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2626 #define GL_DISTANCE_ATTENUATION_EXT 0x8129
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2627 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2628
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2629 #ifndef GL_SGIS_point_parameters
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2630 #define GL_POINT_SIZE_MIN_SGIS 0x8126
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2631 #define GL_POINT_SIZE_MAX_SGIS 0x8127
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2632 #define GL_POINT_FADE_THRESHOLD_SIZE_SGIS 0x8128
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2633 #define GL_DISTANCE_ATTENUATION_SGIS 0x8129
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2634 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2635
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2636 #ifndef GL_SGIX_instruments
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2637 #define GL_INSTRUMENT_BUFFER_POINTER_SGIX 0x8180
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2638 #define GL_INSTRUMENT_MEASUREMENTS_SGIX 0x8181
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2639 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2640
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2641 #ifndef GL_SGIX_texture_scale_bias
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2642 #define GL_POST_TEXTURE_FILTER_BIAS_SGIX 0x8179
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2643 #define GL_POST_TEXTURE_FILTER_SCALE_SGIX 0x817A
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2644 #define GL_POST_TEXTURE_FILTER_BIAS_RANGE_SGIX 0x817B
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2645 #define GL_POST_TEXTURE_FILTER_SCALE_RANGE_SGIX 0x817C
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2646 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2647
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2648 #ifndef GL_SGIX_framezoom
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2649 #define GL_FRAMEZOOM_SGIX 0x818B
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2650 #define GL_FRAMEZOOM_FACTOR_SGIX 0x818C
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2651 #define GL_MAX_FRAMEZOOM_FACTOR_SGIX 0x818D
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2652 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2653
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2654 #ifndef GL_SGIX_tag_sample_buffer
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2655 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2656
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2657 #ifndef GL_FfdMaskSGIX
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2658 #define GL_TEXTURE_DEFORMATION_BIT_SGIX 0x00000001
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2659 #define GL_GEOMETRY_DEFORMATION_BIT_SGIX 0x00000002
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2660 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2661
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2662 #ifndef GL_SGIX_polynomial_ffd
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2663 #define GL_GEOMETRY_DEFORMATION_SGIX 0x8194
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2664 #define GL_TEXTURE_DEFORMATION_SGIX 0x8195
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2665 #define GL_DEFORMATIONS_MASK_SGIX 0x8196
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2666 #define GL_MAX_DEFORMATION_ORDER_SGIX 0x8197
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2667 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2668
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2669 #ifndef GL_SGIX_reference_plane
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2670 #define GL_REFERENCE_PLANE_SGIX 0x817D
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2671 #define GL_REFERENCE_PLANE_EQUATION_SGIX 0x817E
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2672 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2673
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2674 #ifndef GL_SGIX_flush_raster
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2675 #endif
214
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
2676
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2677 #ifndef GL_SGIX_depth_texture
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2678 #define GL_DEPTH_COMPONENT16_SGIX 0x81A5
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2679 #define GL_DEPTH_COMPONENT24_SGIX 0x81A6
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2680 #define GL_DEPTH_COMPONENT32_SGIX 0x81A7
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2681 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2682
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2683 #ifndef GL_SGIS_fog_function
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2684 #define GL_FOG_FUNC_SGIS 0x812A
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2685 #define GL_FOG_FUNC_POINTS_SGIS 0x812B
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2686 #define GL_MAX_FOG_FUNC_POINTS_SGIS 0x812C
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2687 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2688
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2689 #ifndef GL_SGIX_fog_offset
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2690 #define GL_FOG_OFFSET_SGIX 0x8198
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2691 #define GL_FOG_OFFSET_VALUE_SGIX 0x8199
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2692 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2693
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2694 #ifndef GL_HP_image_transform
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2695 #define GL_IMAGE_SCALE_X_HP 0x8155
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2696 #define GL_IMAGE_SCALE_Y_HP 0x8156
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2697 #define GL_IMAGE_TRANSLATE_X_HP 0x8157
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2698 #define GL_IMAGE_TRANSLATE_Y_HP 0x8158
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2699 #define GL_IMAGE_ROTATE_ANGLE_HP 0x8159
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2700 #define GL_IMAGE_ROTATE_ORIGIN_X_HP 0x815A
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2701 #define GL_IMAGE_ROTATE_ORIGIN_Y_HP 0x815B
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2702 #define GL_IMAGE_MAG_FILTER_HP 0x815C
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2703 #define GL_IMAGE_MIN_FILTER_HP 0x815D
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2704 #define GL_IMAGE_CUBIC_WEIGHT_HP 0x815E
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2705 #define GL_CUBIC_HP 0x815F
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2706 #define GL_AVERAGE_HP 0x8160
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2707 #define GL_IMAGE_TRANSFORM_2D_HP 0x8161
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2708 #define GL_POST_IMAGE_TRANSFORM_COLOR_TABLE_HP 0x8162
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2709 #define GL_PROXY_POST_IMAGE_TRANSFORM_COLOR_TABLE_HP 0x8163
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2710 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2711
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2712 #ifndef GL_HP_convolution_border_modes
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2713 #define GL_IGNORE_BORDER_HP 0x8150
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2714 #define GL_CONSTANT_BORDER_HP 0x8151
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2715 #define GL_REPLICATE_BORDER_HP 0x8153
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2716 #define GL_CONVOLUTION_BORDER_COLOR_HP 0x8154
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2717 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2718
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2719 #ifndef GL_INGR_palette_buffer
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2720 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2721
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2722 #ifndef GL_SGIX_texture_add_env
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2723 #define GL_TEXTURE_ENV_BIAS_SGIX 0x80BE
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2724 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2725
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2726 #ifndef GL_EXT_color_subtable
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2727 #endif
214
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
2728
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2729 #ifndef GL_PGI_vertex_hints
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2730 #define GL_VERTEX_DATA_HINT_PGI 0x1A22A
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2731 #define GL_VERTEX_CONSISTENT_HINT_PGI 0x1A22B
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2732 #define GL_MATERIAL_SIDE_HINT_PGI 0x1A22C
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2733 #define GL_MAX_VERTEX_HINT_PGI 0x1A22D
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2734 #define GL_COLOR3_BIT_PGI 0x00010000
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2735 #define GL_COLOR4_BIT_PGI 0x00020000
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2736 #define GL_EDGEFLAG_BIT_PGI 0x00040000
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2737 #define GL_INDEX_BIT_PGI 0x00080000
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2738 #define GL_MAT_AMBIENT_BIT_PGI 0x00100000
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2739 #define GL_MAT_AMBIENT_AND_DIFFUSE_BIT_PGI 0x00200000
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2740 #define GL_MAT_DIFFUSE_BIT_PGI 0x00400000
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2741 #define GL_MAT_EMISSION_BIT_PGI 0x00800000
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2742 #define GL_MAT_COLOR_INDEXES_BIT_PGI 0x01000000
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2743 #define GL_MAT_SHININESS_BIT_PGI 0x02000000
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2744 #define GL_MAT_SPECULAR_BIT_PGI 0x04000000
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2745 #define GL_NORMAL_BIT_PGI 0x08000000
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2746 #define GL_TEXCOORD1_BIT_PGI 0x10000000
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2747 #define GL_TEXCOORD2_BIT_PGI 0x20000000
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2748 #define GL_TEXCOORD3_BIT_PGI 0x40000000
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2749 #define GL_TEXCOORD4_BIT_PGI 0x80000000
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2750 #define GL_VERTEX23_BIT_PGI 0x00000004
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2751 #define GL_VERTEX4_BIT_PGI 0x00000008
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2752 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2753
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2754 #ifndef GL_PGI_misc_hints
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2755 #define GL_PREFER_DOUBLEBUFFER_HINT_PGI 0x1A1F8
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2756 #define GL_CONSERVE_MEMORY_HINT_PGI 0x1A1FD
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2757 #define GL_RECLAIM_MEMORY_HINT_PGI 0x1A1FE
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2758 #define GL_NATIVE_GRAPHICS_HANDLE_PGI 0x1A202
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2759 #define GL_NATIVE_GRAPHICS_BEGIN_HINT_PGI 0x1A203
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2760 #define GL_NATIVE_GRAPHICS_END_HINT_PGI 0x1A204
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2761 #define GL_ALWAYS_FAST_HINT_PGI 0x1A20C
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2762 #define GL_ALWAYS_SOFT_HINT_PGI 0x1A20D
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2763 #define GL_ALLOW_DRAW_OBJ_HINT_PGI 0x1A20E
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2764 #define GL_ALLOW_DRAW_WIN_HINT_PGI 0x1A20F
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2765 #define GL_ALLOW_DRAW_FRG_HINT_PGI 0x1A210
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2766 #define GL_ALLOW_DRAW_MEM_HINT_PGI 0x1A211
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2767 #define GL_STRICT_DEPTHFUNC_HINT_PGI 0x1A216
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2768 #define GL_STRICT_LIGHTING_HINT_PGI 0x1A217
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2769 #define GL_STRICT_SCISSOR_HINT_PGI 0x1A218
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2770 #define GL_FULL_STIPPLE_HINT_PGI 0x1A219
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2771 #define GL_CLIP_NEAR_HINT_PGI 0x1A220
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2772 #define GL_CLIP_FAR_HINT_PGI 0x1A221
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2773 #define GL_WIDE_LINE_HINT_PGI 0x1A222
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2774 #define GL_BACK_NORMALS_HINT_PGI 0x1A223
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2775 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2776
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2777 #ifndef GL_EXT_paletted_texture
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2778 #define GL_COLOR_INDEX1_EXT 0x80E2
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2779 #define GL_COLOR_INDEX2_EXT 0x80E3
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2780 #define GL_COLOR_INDEX4_EXT 0x80E4
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2781 #define GL_COLOR_INDEX8_EXT 0x80E5
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2782 #define GL_COLOR_INDEX12_EXT 0x80E6
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2783 #define GL_COLOR_INDEX16_EXT 0x80E7
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2784 #define GL_TEXTURE_INDEX_SIZE_EXT 0x80ED
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2785 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2786
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2787 #ifndef GL_EXT_clip_volume_hint
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2788 #define GL_CLIP_VOLUME_CLIPPING_HINT_EXT 0x80F0
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2789 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2790
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2791 #ifndef GL_SGIX_list_priority
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2792 #define GL_LIST_PRIORITY_SGIX 0x8182
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2793 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2794
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2795 #ifndef GL_SGIX_ir_instrument1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2796 #define GL_IR_INSTRUMENT1_SGIX 0x817F
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2797 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2798
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2799 #ifndef GL_SGIX_calligraphic_fragment
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2800 #define GL_CALLIGRAPHIC_FRAGMENT_SGIX 0x8183
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2801 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2802
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2803 #ifndef GL_SGIX_texture_lod_bias
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2804 #define GL_TEXTURE_LOD_BIAS_S_SGIX 0x818E
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2805 #define GL_TEXTURE_LOD_BIAS_T_SGIX 0x818F
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2806 #define GL_TEXTURE_LOD_BIAS_R_SGIX 0x8190
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2807 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2808
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2809 #ifndef GL_SGIX_shadow_ambient
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2810 #define GL_SHADOW_AMBIENT_SGIX 0x80BF
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2811 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2812
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2813 #ifndef GL_EXT_index_texture
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2814 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2815
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2816 #ifndef GL_EXT_index_material
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2817 #define GL_INDEX_MATERIAL_EXT 0x81B8
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2818 #define GL_INDEX_MATERIAL_PARAMETER_EXT 0x81B9
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2819 #define GL_INDEX_MATERIAL_FACE_EXT 0x81BA
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2820 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2821
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2822 #ifndef GL_EXT_index_func
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2823 #define GL_INDEX_TEST_EXT 0x81B5
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2824 #define GL_INDEX_TEST_FUNC_EXT 0x81B6
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2825 #define GL_INDEX_TEST_REF_EXT 0x81B7
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2826 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2827
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2828 #ifndef GL_EXT_index_array_formats
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2829 #define GL_IUI_V2F_EXT 0x81AD
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2830 #define GL_IUI_V3F_EXT 0x81AE
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2831 #define GL_IUI_N3F_V2F_EXT 0x81AF
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2832 #define GL_IUI_N3F_V3F_EXT 0x81B0
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2833 #define GL_T2F_IUI_V2F_EXT 0x81B1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2834 #define GL_T2F_IUI_V3F_EXT 0x81B2
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2835 #define GL_T2F_IUI_N3F_V2F_EXT 0x81B3
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2836 #define GL_T2F_IUI_N3F_V3F_EXT 0x81B4
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2837 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2838
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2839 #ifndef GL_EXT_compiled_vertex_array
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2840 #define GL_ARRAY_ELEMENT_LOCK_FIRST_EXT 0x81A8
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2841 #define GL_ARRAY_ELEMENT_LOCK_COUNT_EXT 0x81A9
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2842 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2843
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2844 #ifndef GL_EXT_cull_vertex
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2845 #define GL_CULL_VERTEX_EXT 0x81AA
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2846 #define GL_CULL_VERTEX_EYE_POSITION_EXT 0x81AB
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2847 #define GL_CULL_VERTEX_OBJECT_POSITION_EXT 0x81AC
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2848 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2849
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2850 #ifndef GL_SGIX_ycrcb
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2851 #define GL_YCRCB_422_SGIX 0x81BB
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2852 #define GL_YCRCB_444_SGIX 0x81BC
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2853 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2854
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2855 #ifndef GL_SGIX_fragment_lighting
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2856 #define GL_FRAGMENT_LIGHTING_SGIX 0x8400
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2857 #define GL_FRAGMENT_COLOR_MATERIAL_SGIX 0x8401
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2858 #define GL_FRAGMENT_COLOR_MATERIAL_FACE_SGIX 0x8402
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2859 #define GL_FRAGMENT_COLOR_MATERIAL_PARAMETER_SGIX 0x8403
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2860 #define GL_MAX_FRAGMENT_LIGHTS_SGIX 0x8404
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2861 #define GL_MAX_ACTIVE_LIGHTS_SGIX 0x8405
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2862 #define GL_CURRENT_RASTER_NORMAL_SGIX 0x8406
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2863 #define GL_LIGHT_ENV_MODE_SGIX 0x8407
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2864 #define GL_FRAGMENT_LIGHT_MODEL_LOCAL_VIEWER_SGIX 0x8408
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2865 #define GL_FRAGMENT_LIGHT_MODEL_TWO_SIDE_SGIX 0x8409
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2866 #define GL_FRAGMENT_LIGHT_MODEL_AMBIENT_SGIX 0x840A
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2867 #define GL_FRAGMENT_LIGHT_MODEL_NORMAL_INTERPOLATION_SGIX 0x840B
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2868 #define GL_FRAGMENT_LIGHT0_SGIX 0x840C
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2869 #define GL_FRAGMENT_LIGHT1_SGIX 0x840D
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2870 #define GL_FRAGMENT_LIGHT2_SGIX 0x840E
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2871 #define GL_FRAGMENT_LIGHT3_SGIX 0x840F
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2872 #define GL_FRAGMENT_LIGHT4_SGIX 0x8410
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2873 #define GL_FRAGMENT_LIGHT5_SGIX 0x8411
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2874 #define GL_FRAGMENT_LIGHT6_SGIX 0x8412
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2875 #define GL_FRAGMENT_LIGHT7_SGIX 0x8413
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2876 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2877
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2878 #ifndef GL_IBM_rasterpos_clip
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2879 #define GL_RASTER_POSITION_UNCLIPPED_IBM 0x19262
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2880 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2881
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2882 #ifndef GL_HP_texture_lighting
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2883 #define GL_TEXTURE_LIGHTING_MODE_HP 0x8167
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2884 #define GL_TEXTURE_POST_SPECULAR_HP 0x8168
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2885 #define GL_TEXTURE_PRE_SPECULAR_HP 0x8169
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2886 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2887
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2888 #ifndef GL_EXT_draw_range_elements
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2889 #define GL_MAX_ELEMENTS_VERTICES_EXT 0x80E8
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2890 #define GL_MAX_ELEMENTS_INDICES_EXT 0x80E9
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2891 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2892
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2893 #ifndef GL_WIN_phong_shading
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2894 #define GL_PHONG_WIN 0x80EA
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2895 #define GL_PHONG_HINT_WIN 0x80EB
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2896 #endif
214
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
2897
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2898 #ifndef GL_WIN_specular_fog
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2899 #define GL_FOG_SPECULAR_TEXTURE_WIN 0x80EC
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2900 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2901
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2902 #ifndef GL_EXT_light_texture
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2903 #define GL_FRAGMENT_MATERIAL_EXT 0x8349
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2904 #define GL_FRAGMENT_NORMAL_EXT 0x834A
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2905 #define GL_FRAGMENT_COLOR_EXT 0x834C
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2906 #define GL_ATTENUATION_EXT 0x834D
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2907 #define GL_SHADOW_ATTENUATION_EXT 0x834E
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2908 #define GL_TEXTURE_APPLICATION_MODE_EXT 0x834F
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2909 #define GL_TEXTURE_LIGHT_EXT 0x8350
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2910 #define GL_TEXTURE_MATERIAL_FACE_EXT 0x8351
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2911 #define GL_TEXTURE_MATERIAL_PARAMETER_EXT 0x8352
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2912 /* reuse GL_FRAGMENT_DEPTH_EXT */
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2913 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2914
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2915 #ifndef GL_SGIX_blend_alpha_minmax
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2916 #define GL_ALPHA_MIN_SGIX 0x8320
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2917 #define GL_ALPHA_MAX_SGIX 0x8321
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2918 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2919
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2920 #ifndef GL_SGIX_impact_pixel_texture
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2921 #define GL_PIXEL_TEX_GEN_Q_CEILING_SGIX 0x8184
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2922 #define GL_PIXEL_TEX_GEN_Q_ROUND_SGIX 0x8185
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2923 #define GL_PIXEL_TEX_GEN_Q_FLOOR_SGIX 0x8186
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2924 #define GL_PIXEL_TEX_GEN_ALPHA_REPLACE_SGIX 0x8187
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2925 #define GL_PIXEL_TEX_GEN_ALPHA_NO_REPLACE_SGIX 0x8188
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2926 #define GL_PIXEL_TEX_GEN_ALPHA_LS_SGIX 0x8189
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2927 #define GL_PIXEL_TEX_GEN_ALPHA_MS_SGIX 0x818A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2928 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2929
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2930 #ifndef GL_EXT_bgra
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2931 #define GL_BGR_EXT 0x80E0
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2932 #define GL_BGRA_EXT 0x80E1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2933 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2934
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2935 #ifndef GL_SGIX_async
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2936 #define GL_ASYNC_MARKER_SGIX 0x8329
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2937 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2938
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2939 #ifndef GL_SGIX_async_pixel
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2940 #define GL_ASYNC_TEX_IMAGE_SGIX 0x835C
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2941 #define GL_ASYNC_DRAW_PIXELS_SGIX 0x835D
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2942 #define GL_ASYNC_READ_PIXELS_SGIX 0x835E
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2943 #define GL_MAX_ASYNC_TEX_IMAGE_SGIX 0x835F
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2944 #define GL_MAX_ASYNC_DRAW_PIXELS_SGIX 0x8360
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2945 #define GL_MAX_ASYNC_READ_PIXELS_SGIX 0x8361
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2946 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2947
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2948 #ifndef GL_SGIX_async_histogram
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2949 #define GL_ASYNC_HISTOGRAM_SGIX 0x832C
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2950 #define GL_MAX_ASYNC_HISTOGRAM_SGIX 0x832D
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2951 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
2952
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2953 #ifndef GL_INTEL_texture_scissor
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2954 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2955
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2956 #ifndef GL_INTEL_parallel_arrays
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2957 #define GL_PARALLEL_ARRAYS_INTEL 0x83F4
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2958 #define GL_VERTEX_ARRAY_PARALLEL_POINTERS_INTEL 0x83F5
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2959 #define GL_NORMAL_ARRAY_PARALLEL_POINTERS_INTEL 0x83F6
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2960 #define GL_COLOR_ARRAY_PARALLEL_POINTERS_INTEL 0x83F7
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2961 #define GL_TEXTURE_COORD_ARRAY_PARALLEL_POINTERS_INTEL 0x83F8
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2962 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2963
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2964 #ifndef GL_HP_occlusion_test
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2965 #define GL_OCCLUSION_TEST_HP 0x8165
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2966 #define GL_OCCLUSION_TEST_RESULT_HP 0x8166
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2967 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2968
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2969 #ifndef GL_EXT_pixel_transform
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2970 #define GL_PIXEL_TRANSFORM_2D_EXT 0x8330
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2971 #define GL_PIXEL_MAG_FILTER_EXT 0x8331
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2972 #define GL_PIXEL_MIN_FILTER_EXT 0x8332
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2973 #define GL_PIXEL_CUBIC_WEIGHT_EXT 0x8333
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2974 #define GL_CUBIC_EXT 0x8334
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2975 #define GL_AVERAGE_EXT 0x8335
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2976 #define GL_PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT 0x8336
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2977 #define GL_MAX_PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT 0x8337
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2978 #define GL_PIXEL_TRANSFORM_2D_MATRIX_EXT 0x8338
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2979 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2980
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2981 #ifndef GL_EXT_pixel_transform_color_table
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2982 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2983
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2984 #ifndef GL_EXT_shared_texture_palette
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2985 #define GL_SHARED_TEXTURE_PALETTE_EXT 0x81FB
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2986 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2987
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2988 #ifndef GL_EXT_separate_specular_color
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2989 #define GL_LIGHT_MODEL_COLOR_CONTROL_EXT 0x81F8
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2990 #define GL_SINGLE_COLOR_EXT 0x81F9
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2991 #define GL_SEPARATE_SPECULAR_COLOR_EXT 0x81FA
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2992 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2993
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2994 #ifndef GL_EXT_secondary_color
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2995 #define GL_COLOR_SUM_EXT 0x8458
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2996 #define GL_CURRENT_SECONDARY_COLOR_EXT 0x8459
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2997 #define GL_SECONDARY_COLOR_ARRAY_SIZE_EXT 0x845A
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2998 #define GL_SECONDARY_COLOR_ARRAY_TYPE_EXT 0x845B
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
2999 #define GL_SECONDARY_COLOR_ARRAY_STRIDE_EXT 0x845C
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3000 #define GL_SECONDARY_COLOR_ARRAY_POINTER_EXT 0x845D
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3001 #define GL_SECONDARY_COLOR_ARRAY_EXT 0x845E
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3002 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3003
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3004 #ifndef GL_EXT_texture_perturb_normal
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3005 #define GL_PERTURB_EXT 0x85AE
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3006 #define GL_TEXTURE_NORMAL_EXT 0x85AF
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3007 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3008
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3009 #ifndef GL_EXT_multi_draw_arrays
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3010 #endif
214
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
3011
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3012 #ifndef GL_EXT_fog_coord
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3013 #define GL_FOG_COORDINATE_SOURCE_EXT 0x8450
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3014 #define GL_FOG_COORDINATE_EXT 0x8451
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3015 #define GL_FRAGMENT_DEPTH_EXT 0x8452
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3016 #define GL_CURRENT_FOG_COORDINATE_EXT 0x8453
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3017 #define GL_FOG_COORDINATE_ARRAY_TYPE_EXT 0x8454
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3018 #define GL_FOG_COORDINATE_ARRAY_STRIDE_EXT 0x8455
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3019 #define GL_FOG_COORDINATE_ARRAY_POINTER_EXT 0x8456
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3020 #define GL_FOG_COORDINATE_ARRAY_EXT 0x8457
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3021 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3022
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3023 #ifndef GL_REND_screen_coordinates
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3024 #define GL_SCREEN_COORDINATES_REND 0x8490
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3025 #define GL_INVERTED_SCREEN_W_REND 0x8491
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3026 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3027
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3028 #ifndef GL_EXT_coordinate_frame
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3029 #define GL_TANGENT_ARRAY_EXT 0x8439
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3030 #define GL_BINORMAL_ARRAY_EXT 0x843A
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3031 #define GL_CURRENT_TANGENT_EXT 0x843B
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3032 #define GL_CURRENT_BINORMAL_EXT 0x843C
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3033 #define GL_TANGENT_ARRAY_TYPE_EXT 0x843E
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3034 #define GL_TANGENT_ARRAY_STRIDE_EXT 0x843F
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3035 #define GL_BINORMAL_ARRAY_TYPE_EXT 0x8440
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3036 #define GL_BINORMAL_ARRAY_STRIDE_EXT 0x8441
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3037 #define GL_TANGENT_ARRAY_POINTER_EXT 0x8442
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3038 #define GL_BINORMAL_ARRAY_POINTER_EXT 0x8443
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3039 #define GL_MAP1_TANGENT_EXT 0x8444
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3040 #define GL_MAP2_TANGENT_EXT 0x8445
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3041 #define GL_MAP1_BINORMAL_EXT 0x8446
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3042 #define GL_MAP2_BINORMAL_EXT 0x8447
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3043 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3044
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3045 #ifndef GL_EXT_texture_env_combine
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3046 #define GL_COMBINE_EXT 0x8570
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3047 #define GL_COMBINE_RGB_EXT 0x8571
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3048 #define GL_COMBINE_ALPHA_EXT 0x8572
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3049 #define GL_RGB_SCALE_EXT 0x8573
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3050 #define GL_ADD_SIGNED_EXT 0x8574
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3051 #define GL_INTERPOLATE_EXT 0x8575
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3052 #define GL_CONSTANT_EXT 0x8576
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3053 #define GL_PRIMARY_COLOR_EXT 0x8577
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3054 #define GL_PREVIOUS_EXT 0x8578
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3055 #define GL_SOURCE0_RGB_EXT 0x8580
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3056 #define GL_SOURCE1_RGB_EXT 0x8581
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3057 #define GL_SOURCE2_RGB_EXT 0x8582
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3058 #define GL_SOURCE0_ALPHA_EXT 0x8588
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3059 #define GL_SOURCE1_ALPHA_EXT 0x8589
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3060 #define GL_SOURCE2_ALPHA_EXT 0x858A
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3061 #define GL_OPERAND0_RGB_EXT 0x8590
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3062 #define GL_OPERAND1_RGB_EXT 0x8591
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3063 #define GL_OPERAND2_RGB_EXT 0x8592
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3064 #define GL_OPERAND0_ALPHA_EXT 0x8598
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3065 #define GL_OPERAND1_ALPHA_EXT 0x8599
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3066 #define GL_OPERAND2_ALPHA_EXT 0x859A
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3067 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3068
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3069 #ifndef GL_APPLE_specular_vector
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3070 #define GL_LIGHT_MODEL_SPECULAR_VECTOR_APPLE 0x85B0
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3071 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3072
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3073 #ifndef GL_APPLE_transform_hint
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3074 #define GL_TRANSFORM_HINT_APPLE 0x85B1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3075 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3076
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3077 #ifndef GL_SGIX_fog_scale
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3078 #define GL_FOG_SCALE_SGIX 0x81FC
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3079 #define GL_FOG_SCALE_VALUE_SGIX 0x81FD
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3080 #endif
214
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
3081
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3082 #ifndef GL_SUNX_constant_data
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3083 #define GL_UNPACK_CONSTANT_DATA_SUNX 0x81D5
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3084 #define GL_TEXTURE_CONSTANT_DATA_SUNX 0x81D6
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3085 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3086
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3087 #ifndef GL_SUN_global_alpha
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3088 #define GL_GLOBAL_ALPHA_SUN 0x81D9
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3089 #define GL_GLOBAL_ALPHA_FACTOR_SUN 0x81DA
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3090 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3091
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3092 #ifndef GL_SUN_triangle_list
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3093 #define GL_RESTART_SUN 0x0001
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3094 #define GL_REPLACE_MIDDLE_SUN 0x0002
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3095 #define GL_REPLACE_OLDEST_SUN 0x0003
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3096 #define GL_TRIANGLE_LIST_SUN 0x81D7
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3097 #define GL_REPLACEMENT_CODE_SUN 0x81D8
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3098 #define GL_REPLACEMENT_CODE_ARRAY_SUN 0x85C0
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3099 #define GL_REPLACEMENT_CODE_ARRAY_TYPE_SUN 0x85C1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3100 #define GL_REPLACEMENT_CODE_ARRAY_STRIDE_SUN 0x85C2
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3101 #define GL_REPLACEMENT_CODE_ARRAY_POINTER_SUN 0x85C3
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3102 #define GL_R1UI_V3F_SUN 0x85C4
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3103 #define GL_R1UI_C4UB_V3F_SUN 0x85C5
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3104 #define GL_R1UI_C3F_V3F_SUN 0x85C6
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3105 #define GL_R1UI_N3F_V3F_SUN 0x85C7
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3106 #define GL_R1UI_C4F_N3F_V3F_SUN 0x85C8
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3107 #define GL_R1UI_T2F_V3F_SUN 0x85C9
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3108 #define GL_R1UI_T2F_N3F_V3F_SUN 0x85CA
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3109 #define GL_R1UI_T2F_C4F_N3F_V3F_SUN 0x85CB
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3110 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3111
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3112 #ifndef GL_SUN_vertex
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3113 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3114
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3115 #ifndef GL_EXT_blend_func_separate
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3116 #define GL_BLEND_DST_RGB_EXT 0x80C8
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3117 #define GL_BLEND_SRC_RGB_EXT 0x80C9
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3118 #define GL_BLEND_DST_ALPHA_EXT 0x80CA
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3119 #define GL_BLEND_SRC_ALPHA_EXT 0x80CB
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3120 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3121
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3122 #ifndef GL_INGR_color_clamp
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3123 #define GL_RED_MIN_CLAMP_INGR 0x8560
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3124 #define GL_GREEN_MIN_CLAMP_INGR 0x8561
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3125 #define GL_BLUE_MIN_CLAMP_INGR 0x8562
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3126 #define GL_ALPHA_MIN_CLAMP_INGR 0x8563
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3127 #define GL_RED_MAX_CLAMP_INGR 0x8564
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3128 #define GL_GREEN_MAX_CLAMP_INGR 0x8565
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3129 #define GL_BLUE_MAX_CLAMP_INGR 0x8566
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3130 #define GL_ALPHA_MAX_CLAMP_INGR 0x8567
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3131 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3132
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3133 #ifndef GL_INGR_interlace_read
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3134 #define GL_INTERLACE_READ_INGR 0x8568
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3135 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3136
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3137 #ifndef GL_EXT_stencil_wrap
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3138 #define GL_INCR_WRAP_EXT 0x8507
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3139 #define GL_DECR_WRAP_EXT 0x8508
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3140 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3141
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3142 #ifndef GL_EXT_422_pixels
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3143 #define GL_422_EXT 0x80CC
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3144 #define GL_422_REV_EXT 0x80CD
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3145 #define GL_422_AVERAGE_EXT 0x80CE
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3146 #define GL_422_REV_AVERAGE_EXT 0x80CF
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3147 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3148
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3149 #ifndef GL_NV_texgen_reflection
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3150 #define GL_NORMAL_MAP_NV 0x8511
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3151 #define GL_REFLECTION_MAP_NV 0x8512
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3152 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3153
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3154 #ifndef GL_EXT_texture_cube_map
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3155 #define GL_NORMAL_MAP_EXT 0x8511
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3156 #define GL_REFLECTION_MAP_EXT 0x8512
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3157 #define GL_TEXTURE_CUBE_MAP_EXT 0x8513
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3158 #define GL_TEXTURE_BINDING_CUBE_MAP_EXT 0x8514
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3159 #define GL_TEXTURE_CUBE_MAP_POSITIVE_X_EXT 0x8515
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3160 #define GL_TEXTURE_CUBE_MAP_NEGATIVE_X_EXT 0x8516
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3161 #define GL_TEXTURE_CUBE_MAP_POSITIVE_Y_EXT 0x8517
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3162 #define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_EXT 0x8518
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3163 #define GL_TEXTURE_CUBE_MAP_POSITIVE_Z_EXT 0x8519
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3164 #define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_EXT 0x851A
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3165 #define GL_PROXY_TEXTURE_CUBE_MAP_EXT 0x851B
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3166 #define GL_MAX_CUBE_MAP_TEXTURE_SIZE_EXT 0x851C
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3167 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3168
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3169 #ifndef GL_SUN_convolution_border_modes
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3170 #define GL_WRAP_BORDER_SUN 0x81D4
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3171 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3172
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3173 #ifndef GL_EXT_texture_env_add
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3174 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3175
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3176 #ifndef GL_EXT_texture_lod_bias
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3177 #define GL_MAX_TEXTURE_LOD_BIAS_EXT 0x84FD
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3178 #define GL_TEXTURE_FILTER_CONTROL_EXT 0x8500
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3179 #define GL_TEXTURE_LOD_BIAS_EXT 0x8501
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3180 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3181
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3182 #ifndef GL_EXT_texture_filter_anisotropic
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3183 #define GL_TEXTURE_MAX_ANISOTROPY_EXT 0x84FE
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3184 #define GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT 0x84FF
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3185 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3186
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3187 #ifndef GL_EXT_vertex_weighting
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3188 #define GL_MODELVIEW0_STACK_DEPTH_EXT GL_MODELVIEW_STACK_DEPTH
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3189 #define GL_MODELVIEW1_STACK_DEPTH_EXT 0x8502
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3190 #define GL_MODELVIEW0_MATRIX_EXT GL_MODELVIEW_MATRIX
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3191 #define GL_MODELVIEW1_MATRIX_EXT 0x8506
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3192 #define GL_VERTEX_WEIGHTING_EXT 0x8509
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3193 #define GL_MODELVIEW0_EXT GL_MODELVIEW
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3194 #define GL_MODELVIEW1_EXT 0x850A
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3195 #define GL_CURRENT_VERTEX_WEIGHT_EXT 0x850B
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3196 #define GL_VERTEX_WEIGHT_ARRAY_EXT 0x850C
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3197 #define GL_VERTEX_WEIGHT_ARRAY_SIZE_EXT 0x850D
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3198 #define GL_VERTEX_WEIGHT_ARRAY_TYPE_EXT 0x850E
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3199 #define GL_VERTEX_WEIGHT_ARRAY_STRIDE_EXT 0x850F
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3200 #define GL_VERTEX_WEIGHT_ARRAY_POINTER_EXT 0x8510
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3201 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3202
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3203 #ifndef GL_NV_light_max_exponent
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3204 #define GL_MAX_SHININESS_NV 0x8504
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3205 #define GL_MAX_SPOT_EXPONENT_NV 0x8505
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3206 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3207
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3208 #ifndef GL_NV_vertex_array_range
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3209 #define GL_VERTEX_ARRAY_RANGE_NV 0x851D
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3210 #define GL_VERTEX_ARRAY_RANGE_LENGTH_NV 0x851E
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3211 #define GL_VERTEX_ARRAY_RANGE_VALID_NV 0x851F
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3212 #define GL_MAX_VERTEX_ARRAY_RANGE_ELEMENT_NV 0x8520
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3213 #define GL_VERTEX_ARRAY_RANGE_POINTER_NV 0x8521
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3214 #endif
214
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
3215
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3216 #ifndef GL_NV_register_combiners
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3217 #define GL_REGISTER_COMBINERS_NV 0x8522
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3218 #define GL_VARIABLE_A_NV 0x8523
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3219 #define GL_VARIABLE_B_NV 0x8524
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3220 #define GL_VARIABLE_C_NV 0x8525
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3221 #define GL_VARIABLE_D_NV 0x8526
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3222 #define GL_VARIABLE_E_NV 0x8527
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3223 #define GL_VARIABLE_F_NV 0x8528
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3224 #define GL_VARIABLE_G_NV 0x8529
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3225 #define GL_CONSTANT_COLOR0_NV 0x852A
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3226 #define GL_CONSTANT_COLOR1_NV 0x852B
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3227 #define GL_PRIMARY_COLOR_NV 0x852C
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3228 #define GL_SECONDARY_COLOR_NV 0x852D
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3229 #define GL_SPARE0_NV 0x852E
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3230 #define GL_SPARE1_NV 0x852F
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3231 #define GL_DISCARD_NV 0x8530
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3232 #define GL_E_TIMES_F_NV 0x8531
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3233 #define GL_SPARE0_PLUS_SECONDARY_COLOR_NV 0x8532
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3234 #define GL_UNSIGNED_IDENTITY_NV 0x8536
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3235 #define GL_UNSIGNED_INVERT_NV 0x8537
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3236 #define GL_EXPAND_NORMAL_NV 0x8538
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3237 #define GL_EXPAND_NEGATE_NV 0x8539
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3238 #define GL_HALF_BIAS_NORMAL_NV 0x853A
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3239 #define GL_HALF_BIAS_NEGATE_NV 0x853B
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3240 #define GL_SIGNED_IDENTITY_NV 0x853C
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3241 #define GL_SIGNED_NEGATE_NV 0x853D
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3242 #define GL_SCALE_BY_TWO_NV 0x853E
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3243 #define GL_SCALE_BY_FOUR_NV 0x853F
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3244 #define GL_SCALE_BY_ONE_HALF_NV 0x8540
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3245 #define GL_BIAS_BY_NEGATIVE_ONE_HALF_NV 0x8541
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3246 #define GL_COMBINER_INPUT_NV 0x8542
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3247 #define GL_COMBINER_MAPPING_NV 0x8543
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3248 #define GL_COMBINER_COMPONENT_USAGE_NV 0x8544
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3249 #define GL_COMBINER_AB_DOT_PRODUCT_NV 0x8545
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3250 #define GL_COMBINER_CD_DOT_PRODUCT_NV 0x8546
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3251 #define GL_COMBINER_MUX_SUM_NV 0x8547
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3252 #define GL_COMBINER_SCALE_NV 0x8548
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3253 #define GL_COMBINER_BIAS_NV 0x8549
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3254 #define GL_COMBINER_AB_OUTPUT_NV 0x854A
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3255 #define GL_COMBINER_CD_OUTPUT_NV 0x854B
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3256 #define GL_COMBINER_SUM_OUTPUT_NV 0x854C
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3257 #define GL_MAX_GENERAL_COMBINERS_NV 0x854D
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3258 #define GL_NUM_GENERAL_COMBINERS_NV 0x854E
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3259 #define GL_COLOR_SUM_CLAMP_NV 0x854F
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3260 #define GL_COMBINER0_NV 0x8550
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3261 #define GL_COMBINER1_NV 0x8551
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3262 #define GL_COMBINER2_NV 0x8552
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3263 #define GL_COMBINER3_NV 0x8553
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3264 #define GL_COMBINER4_NV 0x8554
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3265 #define GL_COMBINER5_NV 0x8555
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3266 #define GL_COMBINER6_NV 0x8556
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3267 #define GL_COMBINER7_NV 0x8557
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3268 /* reuse GL_TEXTURE0_ARB */
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3269 /* reuse GL_TEXTURE1_ARB */
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3270 /* reuse GL_ZERO */
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3271 /* reuse GL_NONE */
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3272 /* reuse GL_FOG */
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3273 #endif
214
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
3274
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3275 #ifndef GL_NV_fog_distance
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3276 #define GL_FOG_DISTANCE_MODE_NV 0x855A
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3277 #define GL_EYE_RADIAL_NV 0x855B
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3278 #define GL_EYE_PLANE_ABSOLUTE_NV 0x855C
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3279 /* reuse GL_EYE_PLANE */
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3280 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3281
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3282 #ifndef GL_NV_texgen_emboss
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3283 #define GL_EMBOSS_LIGHT_NV 0x855D
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3284 #define GL_EMBOSS_CONSTANT_NV 0x855E
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3285 #define GL_EMBOSS_MAP_NV 0x855F
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3286 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3287
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3288 #ifndef GL_NV_blend_square
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3289 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3290
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3291 #ifndef GL_NV_texture_env_combine4
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3292 #define GL_COMBINE4_NV 0x8503
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3293 #define GL_SOURCE3_RGB_NV 0x8583
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3294 #define GL_SOURCE3_ALPHA_NV 0x858B
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3295 #define GL_OPERAND3_RGB_NV 0x8593
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3296 #define GL_OPERAND3_ALPHA_NV 0x859B
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3297 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3298
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3299 #ifndef GL_MESA_resize_buffers
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3300 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3301
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3302 #ifndef GL_MESA_window_pos
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3303 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3304
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3305 #ifndef GL_EXT_texture_compression_s3tc
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3306 #define GL_COMPRESSED_RGB_S3TC_DXT1_EXT 0x83F0
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3307 #define GL_COMPRESSED_RGBA_S3TC_DXT1_EXT 0x83F1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3308 #define GL_COMPRESSED_RGBA_S3TC_DXT3_EXT 0x83F2
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3309 #define GL_COMPRESSED_RGBA_S3TC_DXT5_EXT 0x83F3
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3310 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3311
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3312 #ifndef GL_IBM_cull_vertex
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3313 #define GL_CULL_VERTEX_IBM 103050
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3314 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3315
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3316 #ifndef GL_IBM_multimode_draw_arrays
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3317 #endif
214
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
3318
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3319 #ifndef GL_IBM_vertex_array_lists
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3320 #define GL_VERTEX_ARRAY_LIST_IBM 103070
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3321 #define GL_NORMAL_ARRAY_LIST_IBM 103071
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3322 #define GL_COLOR_ARRAY_LIST_IBM 103072
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3323 #define GL_INDEX_ARRAY_LIST_IBM 103073
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3324 #define GL_TEXTURE_COORD_ARRAY_LIST_IBM 103074
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3325 #define GL_EDGE_FLAG_ARRAY_LIST_IBM 103075
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3326 #define GL_FOG_COORDINATE_ARRAY_LIST_IBM 103076
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3327 #define GL_SECONDARY_COLOR_ARRAY_LIST_IBM 103077
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3328 #define GL_VERTEX_ARRAY_LIST_STRIDE_IBM 103080
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3329 #define GL_NORMAL_ARRAY_LIST_STRIDE_IBM 103081
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3330 #define GL_COLOR_ARRAY_LIST_STRIDE_IBM 103082
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3331 #define GL_INDEX_ARRAY_LIST_STRIDE_IBM 103083
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3332 #define GL_TEXTURE_COORD_ARRAY_LIST_STRIDE_IBM 103084
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3333 #define GL_EDGE_FLAG_ARRAY_LIST_STRIDE_IBM 103085
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3334 #define GL_FOG_COORDINATE_ARRAY_LIST_STRIDE_IBM 103086
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3335 #define GL_SECONDARY_COLOR_ARRAY_LIST_STRIDE_IBM 103087
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3336 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3337
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3338 #ifndef GL_SGIX_subsample
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3339 #define GL_PACK_SUBSAMPLE_RATE_SGIX 0x85A0
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3340 #define GL_UNPACK_SUBSAMPLE_RATE_SGIX 0x85A1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3341 #define GL_PIXEL_SUBSAMPLE_4444_SGIX 0x85A2
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3342 #define GL_PIXEL_SUBSAMPLE_2424_SGIX 0x85A3
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3343 #define GL_PIXEL_SUBSAMPLE_4242_SGIX 0x85A4
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3344 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3345
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3346 #ifndef GL_SGIX_ycrcb_subsample
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3347 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3348
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3349 #ifndef GL_SGIX_ycrcba
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3350 #define GL_YCRCB_SGIX 0x8318
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3351 #define GL_YCRCBA_SGIX 0x8319
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3352 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3353
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3354 #ifndef GL_SGI_depth_pass_instrument
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3355 #define GL_DEPTH_PASS_INSTRUMENT_SGIX 0x8310
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3356 #define GL_DEPTH_PASS_INSTRUMENT_COUNTERS_SGIX 0x8311
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3357 #define GL_DEPTH_PASS_INSTRUMENT_MAX_SGIX 0x8312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3358 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3359
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3360 #ifndef GL_3DFX_texture_compression_FXT1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3361 #define GL_COMPRESSED_RGB_FXT1_3DFX 0x86B0
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3362 #define GL_COMPRESSED_RGBA_FXT1_3DFX 0x86B1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3363 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3364
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3365 #ifndef GL_3DFX_multisample
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3366 #define GL_MULTISAMPLE_3DFX 0x86B2
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3367 #define GL_SAMPLE_BUFFERS_3DFX 0x86B3
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3368 #define GL_SAMPLES_3DFX 0x86B4
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3369 #define GL_MULTISAMPLE_BIT_3DFX 0x20000000
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3370 #endif
214
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
3371
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3372 #ifndef GL_3DFX_tbuffer
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3373 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3374
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3375 #ifndef GL_EXT_multisample
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3376 #define GL_MULTISAMPLE_EXT 0x809D
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3377 #define GL_SAMPLE_ALPHA_TO_MASK_EXT 0x809E
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3378 #define GL_SAMPLE_ALPHA_TO_ONE_EXT 0x809F
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3379 #define GL_SAMPLE_MASK_EXT 0x80A0
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3380 #define GL_1PASS_EXT 0x80A1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3381 #define GL_2PASS_0_EXT 0x80A2
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3382 #define GL_2PASS_1_EXT 0x80A3
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3383 #define GL_4PASS_0_EXT 0x80A4
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3384 #define GL_4PASS_1_EXT 0x80A5
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3385 #define GL_4PASS_2_EXT 0x80A6
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3386 #define GL_4PASS_3_EXT 0x80A7
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3387 #define GL_SAMPLE_BUFFERS_EXT 0x80A8
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3388 #define GL_SAMPLES_EXT 0x80A9
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3389 #define GL_SAMPLE_MASK_VALUE_EXT 0x80AA
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3390 #define GL_SAMPLE_MASK_INVERT_EXT 0x80AB
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3391 #define GL_SAMPLE_PATTERN_EXT 0x80AC
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3392 #define GL_MULTISAMPLE_BIT_EXT 0x20000000
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3393 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3394
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3395 #ifndef GL_SGIX_vertex_preclip
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3396 #define GL_VERTEX_PRECLIP_SGIX 0x83EE
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3397 #define GL_VERTEX_PRECLIP_HINT_SGIX 0x83EF
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3398 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3399
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3400 #ifndef GL_SGIX_convolution_accuracy
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3401 #define GL_CONVOLUTION_HINT_SGIX 0x8316
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3402 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3403
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3404 #ifndef GL_SGIX_resample
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3405 #define GL_PACK_RESAMPLE_SGIX 0x842C
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3406 #define GL_UNPACK_RESAMPLE_SGIX 0x842D
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3407 #define GL_RESAMPLE_REPLICATE_SGIX 0x842E
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3408 #define GL_RESAMPLE_ZERO_FILL_SGIX 0x842F
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3409 #define GL_RESAMPLE_DECIMATE_SGIX 0x8430
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3410 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3411
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3412 #ifndef GL_SGIS_point_line_texgen
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3413 #define GL_EYE_DISTANCE_TO_POINT_SGIS 0x81F0
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3414 #define GL_OBJECT_DISTANCE_TO_POINT_SGIS 0x81F1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3415 #define GL_EYE_DISTANCE_TO_LINE_SGIS 0x81F2
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3416 #define GL_OBJECT_DISTANCE_TO_LINE_SGIS 0x81F3
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3417 #define GL_EYE_POINT_SGIS 0x81F4
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3418 #define GL_OBJECT_POINT_SGIS 0x81F5
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3419 #define GL_EYE_LINE_SGIS 0x81F6
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3420 #define GL_OBJECT_LINE_SGIS 0x81F7
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3421 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3422
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3423 #ifndef GL_SGIS_texture_color_mask
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3424 #define GL_TEXTURE_COLOR_WRITEMASK_SGIS 0x81EF
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3425 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
3426
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3427 #ifndef GL_EXT_texture_env_dot3
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3428 #define GL_DOT3_RGB_EXT 0x8740
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3429 #define GL_DOT3_RGBA_EXT 0x8741
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3430 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3431
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3432 #ifndef GL_ATI_texture_mirror_once
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3433 #define GL_MIRROR_CLAMP_ATI 0x8742
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3434 #define GL_MIRROR_CLAMP_TO_EDGE_ATI 0x8743
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3435 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3436
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3437 #ifndef GL_NV_fence
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3438 #define GL_ALL_COMPLETED_NV 0x84F2
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3439 #define GL_FENCE_STATUS_NV 0x84F3
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3440 #define GL_FENCE_CONDITION_NV 0x84F4
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3441 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3442
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3443 #ifndef GL_IBM_texture_mirrored_repeat
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3444 #define GL_MIRRORED_REPEAT_IBM 0x8370
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3445 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3446
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3447 #ifndef GL_NV_evaluators
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3448 #define GL_EVAL_2D_NV 0x86C0
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3449 #define GL_EVAL_TRIANGULAR_2D_NV 0x86C1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3450 #define GL_MAP_TESSELLATION_NV 0x86C2
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3451 #define GL_MAP_ATTRIB_U_ORDER_NV 0x86C3
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3452 #define GL_MAP_ATTRIB_V_ORDER_NV 0x86C4
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3453 #define GL_EVAL_FRACTIONAL_TESSELLATION_NV 0x86C5
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3454 #define GL_EVAL_VERTEX_ATTRIB0_NV 0x86C6
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3455 #define GL_EVAL_VERTEX_ATTRIB1_NV 0x86C7
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3456 #define GL_EVAL_VERTEX_ATTRIB2_NV 0x86C8
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3457 #define GL_EVAL_VERTEX_ATTRIB3_NV 0x86C9
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3458 #define GL_EVAL_VERTEX_ATTRIB4_NV 0x86CA
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3459 #define GL_EVAL_VERTEX_ATTRIB5_NV 0x86CB
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3460 #define GL_EVAL_VERTEX_ATTRIB6_NV 0x86CC
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3461 #define GL_EVAL_VERTEX_ATTRIB7_NV 0x86CD
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3462 #define GL_EVAL_VERTEX_ATTRIB8_NV 0x86CE
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3463 #define GL_EVAL_VERTEX_ATTRIB9_NV 0x86CF
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3464 #define GL_EVAL_VERTEX_ATTRIB10_NV 0x86D0
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3465 #define GL_EVAL_VERTEX_ATTRIB11_NV 0x86D1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3466 #define GL_EVAL_VERTEX_ATTRIB12_NV 0x86D2
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3467 #define GL_EVAL_VERTEX_ATTRIB13_NV 0x86D3
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3468 #define GL_EVAL_VERTEX_ATTRIB14_NV 0x86D4
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3469 #define GL_EVAL_VERTEX_ATTRIB15_NV 0x86D5
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3470 #define GL_MAX_MAP_TESSELLATION_NV 0x86D6
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3471 #define GL_MAX_RATIONAL_EVAL_ORDER_NV 0x86D7
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3472 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3473
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3474 #ifndef GL_NV_packed_depth_stencil
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3475 #define GL_DEPTH_STENCIL_NV 0x84F9
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3476 #define GL_UNSIGNED_INT_24_8_NV 0x84FA
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3477 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3478
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3479 #ifndef GL_NV_register_combiners2
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3480 #define GL_PER_STAGE_CONSTANTS_NV 0x8535
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3481 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3482
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3483 #ifndef GL_NV_texture_compression_vtc
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3484 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3485
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3486 #ifndef GL_NV_texture_rectangle
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3487 #define GL_TEXTURE_RECTANGLE_NV 0x84F5
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3488 #define GL_TEXTURE_BINDING_RECTANGLE_NV 0x84F6
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3489 #define GL_PROXY_TEXTURE_RECTANGLE_NV 0x84F7
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3490 #define GL_MAX_RECTANGLE_TEXTURE_SIZE_NV 0x84F8
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3491 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3492
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3493 #ifndef GL_NV_texture_shader
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3494 #define GL_OFFSET_TEXTURE_RECTANGLE_NV 0x864C
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3495 #define GL_OFFSET_TEXTURE_RECTANGLE_SCALE_NV 0x864D
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3496 #define GL_DOT_PRODUCT_TEXTURE_RECTANGLE_NV 0x864E
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3497 #define GL_RGBA_UNSIGNED_DOT_PRODUCT_MAPPING_NV 0x86D9
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3498 #define GL_UNSIGNED_INT_S8_S8_8_8_NV 0x86DA
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3499 #define GL_UNSIGNED_INT_8_8_S8_S8_REV_NV 0x86DB
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3500 #define GL_DSDT_MAG_INTENSITY_NV 0x86DC
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3501 #define GL_SHADER_CONSISTENT_NV 0x86DD
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3502 #define GL_TEXTURE_SHADER_NV 0x86DE
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3503 #define GL_SHADER_OPERATION_NV 0x86DF
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3504 #define GL_CULL_MODES_NV 0x86E0
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3505 #define GL_OFFSET_TEXTURE_MATRIX_NV 0x86E1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3506 #define GL_OFFSET_TEXTURE_SCALE_NV 0x86E2
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3507 #define GL_OFFSET_TEXTURE_BIAS_NV 0x86E3
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3508 #define GL_OFFSET_TEXTURE_2D_MATRIX_NV GL_OFFSET_TEXTURE_MATRIX_NV
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3509 #define GL_OFFSET_TEXTURE_2D_SCALE_NV GL_OFFSET_TEXTURE_SCALE_NV
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3510 #define GL_OFFSET_TEXTURE_2D_BIAS_NV GL_OFFSET_TEXTURE_BIAS_NV
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3511 #define GL_PREVIOUS_TEXTURE_INPUT_NV 0x86E4
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3512 #define GL_CONST_EYE_NV 0x86E5
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3513 #define GL_PASS_THROUGH_NV 0x86E6
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3514 #define GL_CULL_FRAGMENT_NV 0x86E7
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3515 #define GL_OFFSET_TEXTURE_2D_NV 0x86E8
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3516 #define GL_DEPENDENT_AR_TEXTURE_2D_NV 0x86E9
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3517 #define GL_DEPENDENT_GB_TEXTURE_2D_NV 0x86EA
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3518 #define GL_DOT_PRODUCT_NV 0x86EC
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3519 #define GL_DOT_PRODUCT_DEPTH_REPLACE_NV 0x86ED
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3520 #define GL_DOT_PRODUCT_TEXTURE_2D_NV 0x86EE
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3521 #define GL_DOT_PRODUCT_TEXTURE_CUBE_MAP_NV 0x86F0
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3522 #define GL_DOT_PRODUCT_DIFFUSE_CUBE_MAP_NV 0x86F1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3523 #define GL_DOT_PRODUCT_REFLECT_CUBE_MAP_NV 0x86F2
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3524 #define GL_DOT_PRODUCT_CONST_EYE_REFLECT_CUBE_MAP_NV 0x86F3
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3525 #define GL_HILO_NV 0x86F4
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3526 #define GL_DSDT_NV 0x86F5
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3527 #define GL_DSDT_MAG_NV 0x86F6
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3528 #define GL_DSDT_MAG_VIB_NV 0x86F7
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3529 #define GL_HILO16_NV 0x86F8
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3530 #define GL_SIGNED_HILO_NV 0x86F9
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3531 #define GL_SIGNED_HILO16_NV 0x86FA
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3532 #define GL_SIGNED_RGBA_NV 0x86FB
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3533 #define GL_SIGNED_RGBA8_NV 0x86FC
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3534 #define GL_SIGNED_RGB_NV 0x86FE
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3535 #define GL_SIGNED_RGB8_NV 0x86FF
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3536 #define GL_SIGNED_LUMINANCE_NV 0x8701
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3537 #define GL_SIGNED_LUMINANCE8_NV 0x8702
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3538 #define GL_SIGNED_LUMINANCE_ALPHA_NV 0x8703
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3539 #define GL_SIGNED_LUMINANCE8_ALPHA8_NV 0x8704
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3540 #define GL_SIGNED_ALPHA_NV 0x8705
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3541 #define GL_SIGNED_ALPHA8_NV 0x8706
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3542 #define GL_SIGNED_INTENSITY_NV 0x8707
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3543 #define GL_SIGNED_INTENSITY8_NV 0x8708
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3544 #define GL_DSDT8_NV 0x8709
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3545 #define GL_DSDT8_MAG8_NV 0x870A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3546 #define GL_DSDT8_MAG8_INTENSITY8_NV 0x870B
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3547 #define GL_SIGNED_RGB_UNSIGNED_ALPHA_NV 0x870C
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3548 #define GL_SIGNED_RGB8_UNSIGNED_ALPHA8_NV 0x870D
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3549 #define GL_HI_SCALE_NV 0x870E
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3550 #define GL_LO_SCALE_NV 0x870F
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3551 #define GL_DS_SCALE_NV 0x8710
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3552 #define GL_DT_SCALE_NV 0x8711
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3553 #define GL_MAGNITUDE_SCALE_NV 0x8712
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3554 #define GL_VIBRANCE_SCALE_NV 0x8713
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3555 #define GL_HI_BIAS_NV 0x8714
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3556 #define GL_LO_BIAS_NV 0x8715
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3557 #define GL_DS_BIAS_NV 0x8716
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3558 #define GL_DT_BIAS_NV 0x8717
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3559 #define GL_MAGNITUDE_BIAS_NV 0x8718
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3560 #define GL_VIBRANCE_BIAS_NV 0x8719
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3561 #define GL_TEXTURE_BORDER_VALUES_NV 0x871A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3562 #define GL_TEXTURE_HI_SIZE_NV 0x871B
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3563 #define GL_TEXTURE_LO_SIZE_NV 0x871C
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3564 #define GL_TEXTURE_DS_SIZE_NV 0x871D
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3565 #define GL_TEXTURE_DT_SIZE_NV 0x871E
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3566 #define GL_TEXTURE_MAG_SIZE_NV 0x871F
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3567 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3568
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3569 #ifndef GL_NV_texture_shader2
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3570 #define GL_DOT_PRODUCT_TEXTURE_3D_NV 0x86EF
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3571 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3572
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3573 #ifndef GL_NV_vertex_array_range2
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3574 #define GL_VERTEX_ARRAY_RANGE_WITHOUT_FLUSH_NV 0x8533
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3575 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3576
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3577 #ifndef GL_NV_vertex_program
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3578 #define GL_VERTEX_PROGRAM_NV 0x8620
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3579 #define GL_VERTEX_STATE_PROGRAM_NV 0x8621
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3580 #define GL_ATTRIB_ARRAY_SIZE_NV 0x8623
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3581 #define GL_ATTRIB_ARRAY_STRIDE_NV 0x8624
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3582 #define GL_ATTRIB_ARRAY_TYPE_NV 0x8625
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3583 #define GL_CURRENT_ATTRIB_NV 0x8626
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3584 #define GL_PROGRAM_LENGTH_NV 0x8627
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3585 #define GL_PROGRAM_STRING_NV 0x8628
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3586 #define GL_MODELVIEW_PROJECTION_NV 0x8629
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3587 #define GL_IDENTITY_NV 0x862A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3588 #define GL_INVERSE_NV 0x862B
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3589 #define GL_TRANSPOSE_NV 0x862C
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3590 #define GL_INVERSE_TRANSPOSE_NV 0x862D
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3591 #define GL_MAX_TRACK_MATRIX_STACK_DEPTH_NV 0x862E
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3592 #define GL_MAX_TRACK_MATRICES_NV 0x862F
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3593 #define GL_MATRIX0_NV 0x8630
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3594 #define GL_MATRIX1_NV 0x8631
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3595 #define GL_MATRIX2_NV 0x8632
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3596 #define GL_MATRIX3_NV 0x8633
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3597 #define GL_MATRIX4_NV 0x8634
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3598 #define GL_MATRIX5_NV 0x8635
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3599 #define GL_MATRIX6_NV 0x8636
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3600 #define GL_MATRIX7_NV 0x8637
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3601 #define GL_CURRENT_MATRIX_STACK_DEPTH_NV 0x8640
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3602 #define GL_CURRENT_MATRIX_NV 0x8641
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3603 #define GL_VERTEX_PROGRAM_POINT_SIZE_NV 0x8642
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3604 #define GL_VERTEX_PROGRAM_TWO_SIDE_NV 0x8643
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3605 #define GL_PROGRAM_PARAMETER_NV 0x8644
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3606 #define GL_ATTRIB_ARRAY_POINTER_NV 0x8645
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3607 #define GL_PROGRAM_TARGET_NV 0x8646
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3608 #define GL_PROGRAM_RESIDENT_NV 0x8647
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3609 #define GL_TRACK_MATRIX_NV 0x8648
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3610 #define GL_TRACK_MATRIX_TRANSFORM_NV 0x8649
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3611 #define GL_VERTEX_PROGRAM_BINDING_NV 0x864A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3612 #define GL_PROGRAM_ERROR_POSITION_NV 0x864B
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3613 #define GL_VERTEX_ATTRIB_ARRAY0_NV 0x8650
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3614 #define GL_VERTEX_ATTRIB_ARRAY1_NV 0x8651
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3615 #define GL_VERTEX_ATTRIB_ARRAY2_NV 0x8652
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3616 #define GL_VERTEX_ATTRIB_ARRAY3_NV 0x8653
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3617 #define GL_VERTEX_ATTRIB_ARRAY4_NV 0x8654
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3618 #define GL_VERTEX_ATTRIB_ARRAY5_NV 0x8655
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3619 #define GL_VERTEX_ATTRIB_ARRAY6_NV 0x8656
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3620 #define GL_VERTEX_ATTRIB_ARRAY7_NV 0x8657
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3621 #define GL_VERTEX_ATTRIB_ARRAY8_NV 0x8658
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3622 #define GL_VERTEX_ATTRIB_ARRAY9_NV 0x8659
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3623 #define GL_VERTEX_ATTRIB_ARRAY10_NV 0x865A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3624 #define GL_VERTEX_ATTRIB_ARRAY11_NV 0x865B
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3625 #define GL_VERTEX_ATTRIB_ARRAY12_NV 0x865C
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3626 #define GL_VERTEX_ATTRIB_ARRAY13_NV 0x865D
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3627 #define GL_VERTEX_ATTRIB_ARRAY14_NV 0x865E
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3628 #define GL_VERTEX_ATTRIB_ARRAY15_NV 0x865F
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3629 #define GL_MAP1_VERTEX_ATTRIB0_4_NV 0x8660
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3630 #define GL_MAP1_VERTEX_ATTRIB1_4_NV 0x8661
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3631 #define GL_MAP1_VERTEX_ATTRIB2_4_NV 0x8662
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3632 #define GL_MAP1_VERTEX_ATTRIB3_4_NV 0x8663
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3633 #define GL_MAP1_VERTEX_ATTRIB4_4_NV 0x8664
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3634 #define GL_MAP1_VERTEX_ATTRIB5_4_NV 0x8665
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3635 #define GL_MAP1_VERTEX_ATTRIB6_4_NV 0x8666
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3636 #define GL_MAP1_VERTEX_ATTRIB7_4_NV 0x8667
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3637 #define GL_MAP1_VERTEX_ATTRIB8_4_NV 0x8668
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3638 #define GL_MAP1_VERTEX_ATTRIB9_4_NV 0x8669
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3639 #define GL_MAP1_VERTEX_ATTRIB10_4_NV 0x866A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3640 #define GL_MAP1_VERTEX_ATTRIB11_4_NV 0x866B
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3641 #define GL_MAP1_VERTEX_ATTRIB12_4_NV 0x866C
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3642 #define GL_MAP1_VERTEX_ATTRIB13_4_NV 0x866D
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3643 #define GL_MAP1_VERTEX_ATTRIB14_4_NV 0x866E
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3644 #define GL_MAP1_VERTEX_ATTRIB15_4_NV 0x866F
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3645 #define GL_MAP2_VERTEX_ATTRIB0_4_NV 0x8670
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3646 #define GL_MAP2_VERTEX_ATTRIB1_4_NV 0x8671
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3647 #define GL_MAP2_VERTEX_ATTRIB2_4_NV 0x8672
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3648 #define GL_MAP2_VERTEX_ATTRIB3_4_NV 0x8673
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3649 #define GL_MAP2_VERTEX_ATTRIB4_4_NV 0x8674
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3650 #define GL_MAP2_VERTEX_ATTRIB5_4_NV 0x8675
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3651 #define GL_MAP2_VERTEX_ATTRIB6_4_NV 0x8676
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3652 #define GL_MAP2_VERTEX_ATTRIB7_4_NV 0x8677
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3653 #define GL_MAP2_VERTEX_ATTRIB8_4_NV 0x8678
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3654 #define GL_MAP2_VERTEX_ATTRIB9_4_NV 0x8679
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3655 #define GL_MAP2_VERTEX_ATTRIB10_4_NV 0x867A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3656 #define GL_MAP2_VERTEX_ATTRIB11_4_NV 0x867B
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3657 #define GL_MAP2_VERTEX_ATTRIB12_4_NV 0x867C
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3658 #define GL_MAP2_VERTEX_ATTRIB13_4_NV 0x867D
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3659 #define GL_MAP2_VERTEX_ATTRIB14_4_NV 0x867E
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3660 #define GL_MAP2_VERTEX_ATTRIB15_4_NV 0x867F
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3661 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3662
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3663 #ifndef GL_SGIX_texture_coordinate_clamp
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3664 #define GL_TEXTURE_MAX_CLAMP_S_SGIX 0x8369
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3665 #define GL_TEXTURE_MAX_CLAMP_T_SGIX 0x836A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3666 #define GL_TEXTURE_MAX_CLAMP_R_SGIX 0x836B
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3667 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3668
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3669 #ifndef GL_SGIX_scalebias_hint
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3670 #define GL_SCALEBIAS_HINT_SGIX 0x8322
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3671 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3672
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3673 #ifndef GL_OML_interlace
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3674 #define GL_INTERLACE_OML 0x8980
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3675 #define GL_INTERLACE_READ_OML 0x8981
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3676 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3677
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3678 #ifndef GL_OML_subsample
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3679 #define GL_FORMAT_SUBSAMPLE_24_24_OML 0x8982
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3680 #define GL_FORMAT_SUBSAMPLE_244_244_OML 0x8983
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3681 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3682
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3683 #ifndef GL_OML_resample
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3684 #define GL_PACK_RESAMPLE_OML 0x8984
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3685 #define GL_UNPACK_RESAMPLE_OML 0x8985
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3686 #define GL_RESAMPLE_REPLICATE_OML 0x8986
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3687 #define GL_RESAMPLE_ZERO_FILL_OML 0x8987
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3688 #define GL_RESAMPLE_AVERAGE_OML 0x8988
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3689 #define GL_RESAMPLE_DECIMATE_OML 0x8989
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3690 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3691
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3692 #ifndef GL_NV_copy_depth_to_color
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3693 #define GL_DEPTH_STENCIL_TO_RGBA_NV 0x886E
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3694 #define GL_DEPTH_STENCIL_TO_BGRA_NV 0x886F
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3695 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3696
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3697 #ifndef GL_ATI_envmap_bumpmap
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3698 #define GL_BUMP_ROT_MATRIX_ATI 0x8775
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3699 #define GL_BUMP_ROT_MATRIX_SIZE_ATI 0x8776
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3700 #define GL_BUMP_NUM_TEX_UNITS_ATI 0x8777
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3701 #define GL_BUMP_TEX_UNITS_ATI 0x8778
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3702 #define GL_DUDV_ATI 0x8779
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3703 #define GL_DU8DV8_ATI 0x877A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3704 #define GL_BUMP_ENVMAP_ATI 0x877B
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3705 #define GL_BUMP_TARGET_ATI 0x877C
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3706 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3707
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3708 #ifndef GL_ATI_fragment_shader
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3709 #define GL_FRAGMENT_SHADER_ATI 0x8920
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3710 #define GL_REG_0_ATI 0x8921
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3711 #define GL_REG_1_ATI 0x8922
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3712 #define GL_REG_2_ATI 0x8923
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3713 #define GL_REG_3_ATI 0x8924
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3714 #define GL_REG_4_ATI 0x8925
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3715 #define GL_REG_5_ATI 0x8926
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3716 #define GL_REG_6_ATI 0x8927
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3717 #define GL_REG_7_ATI 0x8928
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3718 #define GL_REG_8_ATI 0x8929
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3719 #define GL_REG_9_ATI 0x892A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3720 #define GL_REG_10_ATI 0x892B
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3721 #define GL_REG_11_ATI 0x892C
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3722 #define GL_REG_12_ATI 0x892D
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3723 #define GL_REG_13_ATI 0x892E
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3724 #define GL_REG_14_ATI 0x892F
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3725 #define GL_REG_15_ATI 0x8930
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3726 #define GL_REG_16_ATI 0x8931
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3727 #define GL_REG_17_ATI 0x8932
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3728 #define GL_REG_18_ATI 0x8933
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3729 #define GL_REG_19_ATI 0x8934
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3730 #define GL_REG_20_ATI 0x8935
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3731 #define GL_REG_21_ATI 0x8936
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3732 #define GL_REG_22_ATI 0x8937
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3733 #define GL_REG_23_ATI 0x8938
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3734 #define GL_REG_24_ATI 0x8939
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3735 #define GL_REG_25_ATI 0x893A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3736 #define GL_REG_26_ATI 0x893B
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3737 #define GL_REG_27_ATI 0x893C
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3738 #define GL_REG_28_ATI 0x893D
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3739 #define GL_REG_29_ATI 0x893E
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3740 #define GL_REG_30_ATI 0x893F
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3741 #define GL_REG_31_ATI 0x8940
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3742 #define GL_CON_0_ATI 0x8941
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3743 #define GL_CON_1_ATI 0x8942
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3744 #define GL_CON_2_ATI 0x8943
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3745 #define GL_CON_3_ATI 0x8944
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3746 #define GL_CON_4_ATI 0x8945
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3747 #define GL_CON_5_ATI 0x8946
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3748 #define GL_CON_6_ATI 0x8947
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3749 #define GL_CON_7_ATI 0x8948
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3750 #define GL_CON_8_ATI 0x8949
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3751 #define GL_CON_9_ATI 0x894A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3752 #define GL_CON_10_ATI 0x894B
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3753 #define GL_CON_11_ATI 0x894C
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3754 #define GL_CON_12_ATI 0x894D
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3755 #define GL_CON_13_ATI 0x894E
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3756 #define GL_CON_14_ATI 0x894F
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3757 #define GL_CON_15_ATI 0x8950
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3758 #define GL_CON_16_ATI 0x8951
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3759 #define GL_CON_17_ATI 0x8952
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3760 #define GL_CON_18_ATI 0x8953
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3761 #define GL_CON_19_ATI 0x8954
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3762 #define GL_CON_20_ATI 0x8955
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3763 #define GL_CON_21_ATI 0x8956
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3764 #define GL_CON_22_ATI 0x8957
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3765 #define GL_CON_23_ATI 0x8958
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3766 #define GL_CON_24_ATI 0x8959
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3767 #define GL_CON_25_ATI 0x895A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3768 #define GL_CON_26_ATI 0x895B
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3769 #define GL_CON_27_ATI 0x895C
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3770 #define GL_CON_28_ATI 0x895D
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3771 #define GL_CON_29_ATI 0x895E
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3772 #define GL_CON_30_ATI 0x895F
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3773 #define GL_CON_31_ATI 0x8960
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3774 #define GL_MOV_ATI 0x8961
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3775 #define GL_ADD_ATI 0x8963
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3776 #define GL_MUL_ATI 0x8964
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3777 #define GL_SUB_ATI 0x8965
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3778 #define GL_DOT3_ATI 0x8966
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3779 #define GL_DOT4_ATI 0x8967
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3780 #define GL_MAD_ATI 0x8968
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3781 #define GL_LERP_ATI 0x8969
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3782 #define GL_CND_ATI 0x896A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3783 #define GL_CND0_ATI 0x896B
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3784 #define GL_DOT2_ADD_ATI 0x896C
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3785 #define GL_SECONDARY_INTERPOLATOR_ATI 0x896D
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3786 #define GL_NUM_FRAGMENT_REGISTERS_ATI 0x896E
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3787 #define GL_NUM_FRAGMENT_CONSTANTS_ATI 0x896F
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3788 #define GL_NUM_PASSES_ATI 0x8970
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3789 #define GL_NUM_INSTRUCTIONS_PER_PASS_ATI 0x8971
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3790 #define GL_NUM_INSTRUCTIONS_TOTAL_ATI 0x8972
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3791 #define GL_NUM_INPUT_INTERPOLATOR_COMPONENTS_ATI 0x8973
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3792 #define GL_NUM_LOOPBACK_COMPONENTS_ATI 0x8974
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3793 #define GL_COLOR_ALPHA_PAIRING_ATI 0x8975
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3794 #define GL_SWIZZLE_STR_ATI 0x8976
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3795 #define GL_SWIZZLE_STQ_ATI 0x8977
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3796 #define GL_SWIZZLE_STR_DR_ATI 0x8978
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3797 #define GL_SWIZZLE_STQ_DQ_ATI 0x8979
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3798 #define GL_SWIZZLE_STRQ_ATI 0x897A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3799 #define GL_SWIZZLE_STRQ_DQ_ATI 0x897B
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3800 #define GL_RED_BIT_ATI 0x00000001
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3801 #define GL_GREEN_BIT_ATI 0x00000002
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3802 #define GL_BLUE_BIT_ATI 0x00000004
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3803 #define GL_2X_BIT_ATI 0x00000001
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3804 #define GL_4X_BIT_ATI 0x00000002
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3805 #define GL_8X_BIT_ATI 0x00000004
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3806 #define GL_HALF_BIT_ATI 0x00000008
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3807 #define GL_QUARTER_BIT_ATI 0x00000010
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3808 #define GL_EIGHTH_BIT_ATI 0x00000020
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3809 #define GL_SATURATE_BIT_ATI 0x00000040
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3810 #define GL_COMP_BIT_ATI 0x00000002
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3811 #define GL_NEGATE_BIT_ATI 0x00000004
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3812 #define GL_BIAS_BIT_ATI 0x00000008
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3813 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3814
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3815 #ifndef GL_ATI_pn_triangles
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3816 #define GL_PN_TRIANGLES_ATI 0x87F0
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3817 #define GL_MAX_PN_TRIANGLES_TESSELATION_LEVEL_ATI 0x87F1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3818 #define GL_PN_TRIANGLES_POINT_MODE_ATI 0x87F2
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3819 #define GL_PN_TRIANGLES_NORMAL_MODE_ATI 0x87F3
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3820 #define GL_PN_TRIANGLES_TESSELATION_LEVEL_ATI 0x87F4
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3821 #define GL_PN_TRIANGLES_POINT_MODE_LINEAR_ATI 0x87F5
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3822 #define GL_PN_TRIANGLES_POINT_MODE_CUBIC_ATI 0x87F6
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3823 #define GL_PN_TRIANGLES_NORMAL_MODE_LINEAR_ATI 0x87F7
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3824 #define GL_PN_TRIANGLES_NORMAL_MODE_QUADRATIC_ATI 0x87F8
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3825 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3826
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3827 #ifndef GL_ATI_vertex_array_object
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3828 #define GL_STATIC_ATI 0x8760
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3829 #define GL_DYNAMIC_ATI 0x8761
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3830 #define GL_PRESERVE_ATI 0x8762
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3831 #define GL_DISCARD_ATI 0x8763
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3832 #define GL_OBJECT_BUFFER_SIZE_ATI 0x8764
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3833 #define GL_OBJECT_BUFFER_USAGE_ATI 0x8765
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3834 #define GL_ARRAY_OBJECT_BUFFER_ATI 0x8766
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3835 #define GL_ARRAY_OBJECT_OFFSET_ATI 0x8767
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3836 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3837
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3838 #ifndef GL_EXT_vertex_shader
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3839 #define GL_VERTEX_SHADER_EXT 0x8780
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3840 #define GL_VERTEX_SHADER_BINDING_EXT 0x8781
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3841 #define GL_OP_INDEX_EXT 0x8782
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3842 #define GL_OP_NEGATE_EXT 0x8783
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3843 #define GL_OP_DOT3_EXT 0x8784
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3844 #define GL_OP_DOT4_EXT 0x8785
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3845 #define GL_OP_MUL_EXT 0x8786
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3846 #define GL_OP_ADD_EXT 0x8787
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3847 #define GL_OP_MADD_EXT 0x8788
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3848 #define GL_OP_FRAC_EXT 0x8789
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3849 #define GL_OP_MAX_EXT 0x878A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3850 #define GL_OP_MIN_EXT 0x878B
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3851 #define GL_OP_SET_GE_EXT 0x878C
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3852 #define GL_OP_SET_LT_EXT 0x878D
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3853 #define GL_OP_CLAMP_EXT 0x878E
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3854 #define GL_OP_FLOOR_EXT 0x878F
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3855 #define GL_OP_ROUND_EXT 0x8790
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3856 #define GL_OP_EXP_BASE_2_EXT 0x8791
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3857 #define GL_OP_LOG_BASE_2_EXT 0x8792
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3858 #define GL_OP_POWER_EXT 0x8793
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3859 #define GL_OP_RECIP_EXT 0x8794
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3860 #define GL_OP_RECIP_SQRT_EXT 0x8795
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3861 #define GL_OP_SUB_EXT 0x8796
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3862 #define GL_OP_CROSS_PRODUCT_EXT 0x8797
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3863 #define GL_OP_MULTIPLY_MATRIX_EXT 0x8798
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3864 #define GL_OP_MOV_EXT 0x8799
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3865 #define GL_OUTPUT_VERTEX_EXT 0x879A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3866 #define GL_OUTPUT_COLOR0_EXT 0x879B
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3867 #define GL_OUTPUT_COLOR1_EXT 0x879C
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3868 #define GL_OUTPUT_TEXTURE_COORD0_EXT 0x879D
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3869 #define GL_OUTPUT_TEXTURE_COORD1_EXT 0x879E
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3870 #define GL_OUTPUT_TEXTURE_COORD2_EXT 0x879F
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3871 #define GL_OUTPUT_TEXTURE_COORD3_EXT 0x87A0
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3872 #define GL_OUTPUT_TEXTURE_COORD4_EXT 0x87A1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3873 #define GL_OUTPUT_TEXTURE_COORD5_EXT 0x87A2
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3874 #define GL_OUTPUT_TEXTURE_COORD6_EXT 0x87A3
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3875 #define GL_OUTPUT_TEXTURE_COORD7_EXT 0x87A4
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3876 #define GL_OUTPUT_TEXTURE_COORD8_EXT 0x87A5
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3877 #define GL_OUTPUT_TEXTURE_COORD9_EXT 0x87A6
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3878 #define GL_OUTPUT_TEXTURE_COORD10_EXT 0x87A7
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3879 #define GL_OUTPUT_TEXTURE_COORD11_EXT 0x87A8
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3880 #define GL_OUTPUT_TEXTURE_COORD12_EXT 0x87A9
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3881 #define GL_OUTPUT_TEXTURE_COORD13_EXT 0x87AA
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3882 #define GL_OUTPUT_TEXTURE_COORD14_EXT 0x87AB
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3883 #define GL_OUTPUT_TEXTURE_COORD15_EXT 0x87AC
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3884 #define GL_OUTPUT_TEXTURE_COORD16_EXT 0x87AD
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3885 #define GL_OUTPUT_TEXTURE_COORD17_EXT 0x87AE
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3886 #define GL_OUTPUT_TEXTURE_COORD18_EXT 0x87AF
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3887 #define GL_OUTPUT_TEXTURE_COORD19_EXT 0x87B0
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3888 #define GL_OUTPUT_TEXTURE_COORD20_EXT 0x87B1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3889 #define GL_OUTPUT_TEXTURE_COORD21_EXT 0x87B2
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3890 #define GL_OUTPUT_TEXTURE_COORD22_EXT 0x87B3
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3891 #define GL_OUTPUT_TEXTURE_COORD23_EXT 0x87B4
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3892 #define GL_OUTPUT_TEXTURE_COORD24_EXT 0x87B5
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3893 #define GL_OUTPUT_TEXTURE_COORD25_EXT 0x87B6
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3894 #define GL_OUTPUT_TEXTURE_COORD26_EXT 0x87B7
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3895 #define GL_OUTPUT_TEXTURE_COORD27_EXT 0x87B8
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3896 #define GL_OUTPUT_TEXTURE_COORD28_EXT 0x87B9
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3897 #define GL_OUTPUT_TEXTURE_COORD29_EXT 0x87BA
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3898 #define GL_OUTPUT_TEXTURE_COORD30_EXT 0x87BB
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3899 #define GL_OUTPUT_TEXTURE_COORD31_EXT 0x87BC
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3900 #define GL_OUTPUT_FOG_EXT 0x87BD
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3901 #define GL_SCALAR_EXT 0x87BE
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3902 #define GL_VECTOR_EXT 0x87BF
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3903 #define GL_MATRIX_EXT 0x87C0
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3904 #define GL_VARIANT_EXT 0x87C1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3905 #define GL_INVARIANT_EXT 0x87C2
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3906 #define GL_LOCAL_CONSTANT_EXT 0x87C3
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3907 #define GL_LOCAL_EXT 0x87C4
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3908 #define GL_MAX_VERTEX_SHADER_INSTRUCTIONS_EXT 0x87C5
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3909 #define GL_MAX_VERTEX_SHADER_VARIANTS_EXT 0x87C6
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3910 #define GL_MAX_VERTEX_SHADER_INVARIANTS_EXT 0x87C7
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3911 #define GL_MAX_VERTEX_SHADER_LOCAL_CONSTANTS_EXT 0x87C8
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3912 #define GL_MAX_VERTEX_SHADER_LOCALS_EXT 0x87C9
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3913 #define GL_MAX_OPTIMIZED_VERTEX_SHADER_INSTRUCTIONS_EXT 0x87CA
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3914 #define GL_MAX_OPTIMIZED_VERTEX_SHADER_VARIANTS_EXT 0x87CB
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3915 #define GL_MAX_OPTIMIZED_VERTEX_SHADER_LOCAL_CONSTANTS_EXT 0x87CC
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3916 #define GL_MAX_OPTIMIZED_VERTEX_SHADER_INVARIANTS_EXT 0x87CD
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3917 #define GL_MAX_OPTIMIZED_VERTEX_SHADER_LOCALS_EXT 0x87CE
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3918 #define GL_VERTEX_SHADER_INSTRUCTIONS_EXT 0x87CF
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3919 #define GL_VERTEX_SHADER_VARIANTS_EXT 0x87D0
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3920 #define GL_VERTEX_SHADER_INVARIANTS_EXT 0x87D1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3921 #define GL_VERTEX_SHADER_LOCAL_CONSTANTS_EXT 0x87D2
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3922 #define GL_VERTEX_SHADER_LOCALS_EXT 0x87D3
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3923 #define GL_VERTEX_SHADER_OPTIMIZED_EXT 0x87D4
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3924 #define GL_X_EXT 0x87D5
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3925 #define GL_Y_EXT 0x87D6
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3926 #define GL_Z_EXT 0x87D7
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3927 #define GL_W_EXT 0x87D8
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3928 #define GL_NEGATIVE_X_EXT 0x87D9
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3929 #define GL_NEGATIVE_Y_EXT 0x87DA
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3930 #define GL_NEGATIVE_Z_EXT 0x87DB
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3931 #define GL_NEGATIVE_W_EXT 0x87DC
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3932 #define GL_ZERO_EXT 0x87DD
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3933 #define GL_ONE_EXT 0x87DE
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3934 #define GL_NEGATIVE_ONE_EXT 0x87DF
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3935 #define GL_NORMALIZED_RANGE_EXT 0x87E0
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3936 #define GL_FULL_RANGE_EXT 0x87E1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3937 #define GL_CURRENT_VERTEX_EXT 0x87E2
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3938 #define GL_MVP_MATRIX_EXT 0x87E3
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3939 #define GL_VARIANT_VALUE_EXT 0x87E4
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3940 #define GL_VARIANT_DATATYPE_EXT 0x87E5
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3941 #define GL_VARIANT_ARRAY_STRIDE_EXT 0x87E6
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3942 #define GL_VARIANT_ARRAY_TYPE_EXT 0x87E7
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3943 #define GL_VARIANT_ARRAY_EXT 0x87E8
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3944 #define GL_VARIANT_ARRAY_POINTER_EXT 0x87E9
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3945 #define GL_INVARIANT_VALUE_EXT 0x87EA
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3946 #define GL_INVARIANT_DATATYPE_EXT 0x87EB
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3947 #define GL_LOCAL_CONSTANT_VALUE_EXT 0x87EC
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3948 #define GL_LOCAL_CONSTANT_DATATYPE_EXT 0x87ED
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3949 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3950
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3951 #ifndef GL_ATI_vertex_streams
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3952 #define GL_MAX_VERTEX_STREAMS_ATI 0x876B
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3953 #define GL_VERTEX_STREAM0_ATI 0x876C
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3954 #define GL_VERTEX_STREAM1_ATI 0x876D
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3955 #define GL_VERTEX_STREAM2_ATI 0x876E
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3956 #define GL_VERTEX_STREAM3_ATI 0x876F
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3957 #define GL_VERTEX_STREAM4_ATI 0x8770
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3958 #define GL_VERTEX_STREAM5_ATI 0x8771
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3959 #define GL_VERTEX_STREAM6_ATI 0x8772
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3960 #define GL_VERTEX_STREAM7_ATI 0x8773
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3961 #define GL_VERTEX_SOURCE_ATI 0x8774
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3962 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3963
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3964 #ifndef GL_ATI_element_array
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3965 #define GL_ELEMENT_ARRAY_ATI 0x8768
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3966 #define GL_ELEMENT_ARRAY_TYPE_ATI 0x8769
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3967 #define GL_ELEMENT_ARRAY_POINTER_ATI 0x876A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3968 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3969
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3970 #ifndef GL_SUN_mesh_array
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3971 #define GL_QUAD_MESH_SUN 0x8614
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3972 #define GL_TRIANGLE_MESH_SUN 0x8615
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3973 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3974
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3975 #ifndef GL_SUN_slice_accum
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3976 #define GL_SLICE_ACCUM_SUN 0x85CC
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3977 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3978
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3979 #ifndef GL_NV_multisample_filter_hint
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3980 #define GL_MULTISAMPLE_FILTER_HINT_NV 0x8534
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3981 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3982
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3983 #ifndef GL_NV_depth_clamp
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3984 #define GL_DEPTH_CLAMP_NV 0x864F
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3985 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3986
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3987 #ifndef GL_NV_occlusion_query
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3988 #define GL_PIXEL_COUNTER_BITS_NV 0x8864
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3989 #define GL_CURRENT_OCCLUSION_QUERY_ID_NV 0x8865
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3990 #define GL_PIXEL_COUNT_NV 0x8866
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3991 #define GL_PIXEL_COUNT_AVAILABLE_NV 0x8867
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3992 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3993
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3994 #ifndef GL_NV_point_sprite
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3995 #define GL_POINT_SPRITE_NV 0x8861
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3996 #define GL_COORD_REPLACE_NV 0x8862
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3997 #define GL_POINT_SPRITE_R_MODE_NV 0x8863
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3998 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
3999
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4000 #ifndef GL_NV_texture_shader3
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4001 #define GL_OFFSET_PROJECTIVE_TEXTURE_2D_NV 0x8850
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4002 #define GL_OFFSET_PROJECTIVE_TEXTURE_2D_SCALE_NV 0x8851
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4003 #define GL_OFFSET_PROJECTIVE_TEXTURE_RECTANGLE_NV 0x8852
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4004 #define GL_OFFSET_PROJECTIVE_TEXTURE_RECTANGLE_SCALE_NV 0x8853
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4005 #define GL_OFFSET_HILO_TEXTURE_2D_NV 0x8854
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4006 #define GL_OFFSET_HILO_TEXTURE_RECTANGLE_NV 0x8855
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4007 #define GL_OFFSET_HILO_PROJECTIVE_TEXTURE_2D_NV 0x8856
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4008 #define GL_OFFSET_HILO_PROJECTIVE_TEXTURE_RECTANGLE_NV 0x8857
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4009 #define GL_DEPENDENT_HILO_TEXTURE_2D_NV 0x8858
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4010 #define GL_DEPENDENT_RGB_TEXTURE_3D_NV 0x8859
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4011 #define GL_DEPENDENT_RGB_TEXTURE_CUBE_MAP_NV 0x885A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4012 #define GL_DOT_PRODUCT_PASS_THROUGH_NV 0x885B
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4013 #define GL_DOT_PRODUCT_TEXTURE_1D_NV 0x885C
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4014 #define GL_DOT_PRODUCT_AFFINE_DEPTH_REPLACE_NV 0x885D
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4015 #define GL_HILO8_NV 0x885E
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4016 #define GL_SIGNED_HILO8_NV 0x885F
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4017 #define GL_FORCE_BLUE_TO_ONE_NV 0x8860
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4018 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4019
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4020 #ifndef GL_NV_vertex_program1_1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4021 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4022
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4023 #ifndef GL_EXT_shadow_funcs
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4024 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4025
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4026 #ifndef GL_EXT_stencil_two_side
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4027 #define GL_STENCIL_TEST_TWO_SIDE_EXT 0x8910
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4028 #define GL_ACTIVE_STENCIL_FACE_EXT 0x8911
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4029 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4030
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4031 #ifndef GL_ATI_text_fragment_shader
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4032 #define GL_TEXT_FRAGMENT_SHADER_ATI 0x8200
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4033 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4034
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4035 #ifndef GL_APPLE_client_storage
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4036 #define GL_UNPACK_CLIENT_STORAGE_APPLE 0x85B2
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4037 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4038
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4039 #ifndef GL_APPLE_element_array
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4040 #define GL_ELEMENT_ARRAY_APPLE 0x8A0C
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4041 #define GL_ELEMENT_ARRAY_TYPE_APPLE 0x8A0D
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4042 #define GL_ELEMENT_ARRAY_POINTER_APPLE 0x8A0E
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4043 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4044
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4045 #ifndef GL_APPLE_fence
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4046 #define GL_DRAW_PIXELS_APPLE 0x8A0A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4047 #define GL_FENCE_APPLE 0x8A0B
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4048 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4049
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4050 #ifndef GL_APPLE_vertex_array_object
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4051 #define GL_VERTEX_ARRAY_BINDING_APPLE 0x85B5
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4052 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4053
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4054 #ifndef GL_APPLE_vertex_array_range
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4055 #define GL_VERTEX_ARRAY_RANGE_APPLE 0x851D
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4056 #define GL_VERTEX_ARRAY_RANGE_LENGTH_APPLE 0x851E
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4057 #define GL_VERTEX_ARRAY_STORAGE_HINT_APPLE 0x851F
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4058 #define GL_VERTEX_ARRAY_RANGE_POINTER_APPLE 0x8521
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4059 #define GL_STORAGE_CLIENT_APPLE 0x85B4
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4060 #define GL_STORAGE_CACHED_APPLE 0x85BE
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4061 #define GL_STORAGE_SHARED_APPLE 0x85BF
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4062 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4063
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4064 #ifndef GL_APPLE_ycbcr_422
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4065 #define GL_YCBCR_422_APPLE 0x85B9
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4066 #define GL_UNSIGNED_SHORT_8_8_APPLE 0x85BA
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4067 #define GL_UNSIGNED_SHORT_8_8_REV_APPLE 0x85BB
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4068 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4069
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4070 #ifndef GL_S3_s3tc
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4071 #define GL_RGB_S3TC 0x83A0
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4072 #define GL_RGB4_S3TC 0x83A1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4073 #define GL_RGBA_S3TC 0x83A2
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4074 #define GL_RGBA4_S3TC 0x83A3
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4075 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4076
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4077 #ifndef GL_ATI_draw_buffers
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4078 #define GL_MAX_DRAW_BUFFERS_ATI 0x8824
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4079 #define GL_DRAW_BUFFER0_ATI 0x8825
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4080 #define GL_DRAW_BUFFER1_ATI 0x8826
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4081 #define GL_DRAW_BUFFER2_ATI 0x8827
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4082 #define GL_DRAW_BUFFER3_ATI 0x8828
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4083 #define GL_DRAW_BUFFER4_ATI 0x8829
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4084 #define GL_DRAW_BUFFER5_ATI 0x882A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4085 #define GL_DRAW_BUFFER6_ATI 0x882B
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4086 #define GL_DRAW_BUFFER7_ATI 0x882C
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4087 #define GL_DRAW_BUFFER8_ATI 0x882D
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4088 #define GL_DRAW_BUFFER9_ATI 0x882E
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4089 #define GL_DRAW_BUFFER10_ATI 0x882F
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4090 #define GL_DRAW_BUFFER11_ATI 0x8830
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4091 #define GL_DRAW_BUFFER12_ATI 0x8831
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4092 #define GL_DRAW_BUFFER13_ATI 0x8832
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4093 #define GL_DRAW_BUFFER14_ATI 0x8833
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4094 #define GL_DRAW_BUFFER15_ATI 0x8834
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4095 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4096
1205
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4097 #ifndef GL_ATI_pixel_format_float
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4098 #define GL_TYPE_RGBA_FLOAT_ATI 0x8820
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4099 #define GL_COLOR_CLEAR_UNCLAMPED_VALUE_ATI 0x8835
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4100 #endif
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4101
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4102 #ifndef GL_ATI_texture_env_combine3
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4103 #define GL_MODULATE_ADD_ATI 0x8744
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4104 #define GL_MODULATE_SIGNED_ADD_ATI 0x8745
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4105 #define GL_MODULATE_SUBTRACT_ATI 0x8746
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4106 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4107
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4108 #ifndef GL_ATI_texture_float
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4109 #define GL_RGBA_FLOAT32_ATI 0x8814
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4110 #define GL_RGB_FLOAT32_ATI 0x8815
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4111 #define GL_ALPHA_FLOAT32_ATI 0x8816
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4112 #define GL_INTENSITY_FLOAT32_ATI 0x8817
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4113 #define GL_LUMINANCE_FLOAT32_ATI 0x8818
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4114 #define GL_LUMINANCE_ALPHA_FLOAT32_ATI 0x8819
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4115 #define GL_RGBA_FLOAT16_ATI 0x881A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4116 #define GL_RGB_FLOAT16_ATI 0x881B
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4117 #define GL_ALPHA_FLOAT16_ATI 0x881C
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4118 #define GL_INTENSITY_FLOAT16_ATI 0x881D
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4119 #define GL_LUMINANCE_FLOAT16_ATI 0x881E
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4120 #define GL_LUMINANCE_ALPHA_FLOAT16_ATI 0x881F
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4121 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4122
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4123 #ifndef GL_NV_float_buffer
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4124 #define GL_FLOAT_R_NV 0x8880
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4125 #define GL_FLOAT_RG_NV 0x8881
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4126 #define GL_FLOAT_RGB_NV 0x8882
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4127 #define GL_FLOAT_RGBA_NV 0x8883
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4128 #define GL_FLOAT_R16_NV 0x8884
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4129 #define GL_FLOAT_R32_NV 0x8885
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4130 #define GL_FLOAT_RG16_NV 0x8886
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4131 #define GL_FLOAT_RG32_NV 0x8887
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4132 #define GL_FLOAT_RGB16_NV 0x8888
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4133 #define GL_FLOAT_RGB32_NV 0x8889
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4134 #define GL_FLOAT_RGBA16_NV 0x888A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4135 #define GL_FLOAT_RGBA32_NV 0x888B
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4136 #define GL_TEXTURE_FLOAT_COMPONENTS_NV 0x888C
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4137 #define GL_FLOAT_CLEAR_COLOR_VALUE_NV 0x888D
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4138 #define GL_FLOAT_RGBA_MODE_NV 0x888E
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4139 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4140
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4141 #ifndef GL_NV_fragment_program
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4142 #define GL_MAX_FRAGMENT_PROGRAM_LOCAL_PARAMETERS_NV 0x8868
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4143 #define GL_FRAGMENT_PROGRAM_NV 0x8870
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4144 #define GL_MAX_TEXTURE_COORDS_NV 0x8871
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4145 #define GL_MAX_TEXTURE_IMAGE_UNITS_NV 0x8872
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4146 #define GL_FRAGMENT_PROGRAM_BINDING_NV 0x8873
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4147 #define GL_PROGRAM_ERROR_STRING_NV 0x8874
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4148 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4149
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4150 #ifndef GL_NV_half_float
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4151 #define GL_HALF_FLOAT_NV 0x140B
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4152 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4153
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4154 #ifndef GL_NV_pixel_data_range
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4155 #define GL_WRITE_PIXEL_DATA_RANGE_NV 0x8878
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4156 #define GL_READ_PIXEL_DATA_RANGE_NV 0x8879
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4157 #define GL_WRITE_PIXEL_DATA_RANGE_LENGTH_NV 0x887A
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4158 #define GL_READ_PIXEL_DATA_RANGE_LENGTH_NV 0x887B
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4159 #define GL_WRITE_PIXEL_DATA_RANGE_POINTER_NV 0x887C
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4160 #define GL_READ_PIXEL_DATA_RANGE_POINTER_NV 0x887D
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4161 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4162
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4163 #ifndef GL_NV_primitive_restart
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4164 #define GL_PRIMITIVE_RESTART_NV 0x8558
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4165 #define GL_PRIMITIVE_RESTART_INDEX_NV 0x8559
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4166 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4167
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4168 #ifndef GL_NV_texture_expand_normal
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4169 #define GL_TEXTURE_UNSIGNED_REMAP_MODE_NV 0x888F
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4170 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4171
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4172 #ifndef GL_NV_vertex_program2
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4173 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4174
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4175 #ifndef GL_ATI_map_object_buffer
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4176 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4177
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4178 #ifndef GL_ATI_separate_stencil
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4179 #define GL_STENCIL_BACK_FUNC_ATI 0x8800
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4180 #define GL_STENCIL_BACK_FAIL_ATI 0x8801
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4181 #define GL_STENCIL_BACK_PASS_DEPTH_FAIL_ATI 0x8802
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4182 #define GL_STENCIL_BACK_PASS_DEPTH_PASS_ATI 0x8803
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4183 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4184
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4185 #ifndef GL_ATI_vertex_attrib_array_object
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4186 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4187
1205
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4188 #ifndef GL_OES_read_format
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4189 #define GL_IMPLEMENTATION_COLOR_READ_TYPE_OES 0x8B9A
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4190 #define GL_IMPLEMENTATION_COLOR_READ_FORMAT_OES 0x8B9B
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4191 #endif
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4192
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4193 #ifndef GL_EXT_depth_bounds_test
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4194 #define GL_DEPTH_BOUNDS_TEST_EXT 0x8890
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4195 #define GL_DEPTH_BOUNDS_EXT 0x8891
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4196 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4197
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4198 #ifndef GL_EXT_texture_mirror_clamp
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4199 #define GL_MIRROR_CLAMP_EXT 0x8742
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4200 #define GL_MIRROR_CLAMP_TO_EDGE_EXT 0x8743
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4201 #define GL_MIRROR_CLAMP_TO_BORDER_EXT 0x8912
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4202 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4203
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4204 #ifndef GL_EXT_blend_equation_separate
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4205 #define GL_BLEND_EQUATION_RGB_EXT 0x8009
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4206 #define GL_BLEND_EQUATION_ALPHA_EXT 0x883D
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4207 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4208
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4209 #ifndef GL_MESA_pack_invert
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4210 #define GL_PACK_INVERT_MESA 0x8758
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4211 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4212
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4213 #ifndef GL_MESA_ycbcr_texture
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4214 #define GL_UNSIGNED_SHORT_8_8_MESA 0x85BA
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4215 #define GL_UNSIGNED_SHORT_8_8_REV_MESA 0x85BB
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4216 #define GL_YCBCR_MESA 0x8757
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4217 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
4218
1205
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4219 #ifndef GL_EXT_pixel_buffer_object
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4220 #define GL_PIXEL_PACK_BUFFER_EXT 0x88EB
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4221 #define GL_PIXEL_UNPACK_BUFFER_EXT 0x88EC
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4222 #define GL_PIXEL_PACK_BUFFER_BINDING_EXT 0x88ED
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4223 #define GL_PIXEL_UNPACK_BUFFER_BINDING_EXT 0x88EF
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4224 #endif
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4225
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4226 #ifndef GL_NV_fragment_program_option
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4227 #endif
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4228
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4229 #ifndef GL_NV_fragment_program2
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4230 #define GL_MAX_PROGRAM_EXEC_INSTRUCTIONS_NV 0x88F4
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4231 #define GL_MAX_PROGRAM_CALL_DEPTH_NV 0x88F5
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4232 #define GL_MAX_PROGRAM_IF_DEPTH_NV 0x88F6
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4233 #define GL_MAX_PROGRAM_LOOP_DEPTH_NV 0x88F7
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4234 #define GL_MAX_PROGRAM_LOOP_COUNT_NV 0x88F8
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4235 #endif
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4236
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4237 #ifndef GL_NV_vertex_program2_option
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4238 /* reuse GL_MAX_PROGRAM_EXEC_INSTRUCTIONS_NV */
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4239 /* reuse GL_MAX_PROGRAM_CALL_DEPTH_NV */
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4240 #endif
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4241
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4242 #ifndef GL_NV_vertex_program3
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4243 /* reuse GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS_ARB */
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4244 #endif
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4245
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4246 #ifndef GL_EXT_framebuffer_object
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4247 #define GL_INVALID_FRAMEBUFFER_OPERATION_EXT 0x0506
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4248 #define GL_MAX_RENDERBUFFER_SIZE_EXT 0x84E8
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4249 #define GL_FRAMEBUFFER_BINDING_EXT 0x8CA6
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4250 #define GL_RENDERBUFFER_BINDING_EXT 0x8CA7
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4251 #define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE_EXT 0x8CD0
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4252 #define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME_EXT 0x8CD1
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4253 #define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL_EXT 0x8CD2
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4254 #define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE_EXT 0x8CD3
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4255 #define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_3D_ZOFFSET_EXT 0x8CD4
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4256 #define GL_FRAMEBUFFER_COMPLETE_EXT 0x8CD5
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4257 #define GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT_EXT 0x8CD6
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4258 #define GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT_EXT 0x8CD7
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4259 #define GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS_EXT 0x8CD9
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4260 #define GL_FRAMEBUFFER_INCOMPLETE_FORMATS_EXT 0x8CDA
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4261 #define GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER_EXT 0x8CDB
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4262 #define GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER_EXT 0x8CDC
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4263 #define GL_FRAMEBUFFER_UNSUPPORTED_EXT 0x8CDD
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4264 #define GL_MAX_COLOR_ATTACHMENTS_EXT 0x8CDF
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4265 #define GL_COLOR_ATTACHMENT0_EXT 0x8CE0
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4266 #define GL_COLOR_ATTACHMENT1_EXT 0x8CE1
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4267 #define GL_COLOR_ATTACHMENT2_EXT 0x8CE2
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4268 #define GL_COLOR_ATTACHMENT3_EXT 0x8CE3
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4269 #define GL_COLOR_ATTACHMENT4_EXT 0x8CE4
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4270 #define GL_COLOR_ATTACHMENT5_EXT 0x8CE5
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4271 #define GL_COLOR_ATTACHMENT6_EXT 0x8CE6
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4272 #define GL_COLOR_ATTACHMENT7_EXT 0x8CE7
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4273 #define GL_COLOR_ATTACHMENT8_EXT 0x8CE8
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4274 #define GL_COLOR_ATTACHMENT9_EXT 0x8CE9
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4275 #define GL_COLOR_ATTACHMENT10_EXT 0x8CEA
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4276 #define GL_COLOR_ATTACHMENT11_EXT 0x8CEB
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4277 #define GL_COLOR_ATTACHMENT12_EXT 0x8CEC
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4278 #define GL_COLOR_ATTACHMENT13_EXT 0x8CED
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4279 #define GL_COLOR_ATTACHMENT14_EXT 0x8CEE
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4280 #define GL_COLOR_ATTACHMENT15_EXT 0x8CEF
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4281 #define GL_DEPTH_ATTACHMENT_EXT 0x8D00
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4282 #define GL_STENCIL_ATTACHMENT_EXT 0x8D20
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4283 #define GL_FRAMEBUFFER_EXT 0x8D40
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4284 #define GL_RENDERBUFFER_EXT 0x8D41
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4285 #define GL_RENDERBUFFER_WIDTH_EXT 0x8D42
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4286 #define GL_RENDERBUFFER_HEIGHT_EXT 0x8D43
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4287 #define GL_RENDERBUFFER_INTERNAL_FORMAT_EXT 0x8D44
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4288 #define GL_STENCIL_INDEX1_EXT 0x8D46
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4289 #define GL_STENCIL_INDEX4_EXT 0x8D47
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4290 #define GL_STENCIL_INDEX8_EXT 0x8D48
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4291 #define GL_STENCIL_INDEX16_EXT 0x8D49
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4292 #define GL_RENDERBUFFER_RED_SIZE_EXT 0x8D50
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4293 #define GL_RENDERBUFFER_GREEN_SIZE_EXT 0x8D51
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4294 #define GL_RENDERBUFFER_BLUE_SIZE_EXT 0x8D52
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4295 #define GL_RENDERBUFFER_ALPHA_SIZE_EXT 0x8D53
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4296 #define GL_RENDERBUFFER_DEPTH_SIZE_EXT 0x8D54
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4297 #define GL_RENDERBUFFER_STENCIL_SIZE_EXT 0x8D55
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4298 #endif
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4299
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4300 #ifndef GL_GREMEDY_string_marker
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4301 #endif
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
4302
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4303 #ifndef GL_EXT_packed_depth_stencil
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4304 #define GL_DEPTH_STENCIL_EXT 0x84F9
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4305 #define GL_UNSIGNED_INT_24_8_EXT 0x84FA
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4306 #define GL_DEPTH24_STENCIL8_EXT 0x88F0
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4307 #define GL_TEXTURE_STENCIL_SIZE_EXT 0x88F1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4308 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4309
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4310 #ifndef GL_EXT_stencil_clear_tag
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4311 #define GL_STENCIL_TAG_BITS_EXT 0x88F2
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4312 #define GL_STENCIL_CLEAR_TAG_VALUE_EXT 0x88F3
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4313 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4314
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4315 #ifndef GL_EXT_texture_sRGB
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4316 #define GL_SRGB_EXT 0x8C40
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4317 #define GL_SRGB8_EXT 0x8C41
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4318 #define GL_SRGB_ALPHA_EXT 0x8C42
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4319 #define GL_SRGB8_ALPHA8_EXT 0x8C43
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4320 #define GL_SLUMINANCE_ALPHA_EXT 0x8C44
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4321 #define GL_SLUMINANCE8_ALPHA8_EXT 0x8C45
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4322 #define GL_SLUMINANCE_EXT 0x8C46
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4323 #define GL_SLUMINANCE8_EXT 0x8C47
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4324 #define GL_COMPRESSED_SRGB_EXT 0x8C48
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4325 #define GL_COMPRESSED_SRGB_ALPHA_EXT 0x8C49
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4326 #define GL_COMPRESSED_SLUMINANCE_EXT 0x8C4A
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4327 #define GL_COMPRESSED_SLUMINANCE_ALPHA_EXT 0x8C4B
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4328 #define GL_COMPRESSED_SRGB_S3TC_DXT1_EXT 0x8C4C
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4329 #define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT 0x8C4D
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4330 #define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT 0x8C4E
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4331 #define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT 0x8C4F
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4332 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4333
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4334 #ifndef GL_EXT_framebuffer_blit
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4335 #define GL_READ_FRAMEBUFFER_EXT 0x8CA8
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4336 #define GL_DRAW_FRAMEBUFFER_EXT 0x8CA9
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4337 #define GL_DRAW_FRAMEBUFFER_BINDING_EXT GL_FRAMEBUFFER_BINDING_EXT
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4338 #define GL_READ_FRAMEBUFFER_BINDING_EXT 0x8CAA
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4339 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4340
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4341 #ifndef GL_EXT_framebuffer_multisample
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4342 #define GL_RENDERBUFFER_SAMPLES_EXT 0x8CAB
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4343 #define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_EXT 0x8D56
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4344 #define GL_MAX_SAMPLES_EXT 0x8D57
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4345 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4346
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4347 #ifndef GL_MESAX_texture_stack
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4348 #define GL_TEXTURE_1D_STACK_MESAX 0x8759
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4349 #define GL_TEXTURE_2D_STACK_MESAX 0x875A
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4350 #define GL_PROXY_TEXTURE_1D_STACK_MESAX 0x875B
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4351 #define GL_PROXY_TEXTURE_2D_STACK_MESAX 0x875C
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4352 #define GL_TEXTURE_1D_STACK_BINDING_MESAX 0x875D
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4353 #define GL_TEXTURE_2D_STACK_BINDING_MESAX 0x875E
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4354 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4355
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4356 #ifndef GL_EXT_timer_query
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4357 #define GL_TIME_ELAPSED_EXT 0x88BF
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4358 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4359
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4360 #ifndef GL_EXT_gpu_program_parameters
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4361 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4362
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4363 #ifndef GL_APPLE_flush_buffer_range
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4364 #define GL_BUFFER_SERIALIZED_MODIFY_APPLE 0x8A12
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4365 #define GL_BUFFER_FLUSHING_UNMAP_APPLE 0x8A13
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4366 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4367
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4368 #ifndef GL_NV_gpu_program4
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4369 #define GL_MIN_PROGRAM_TEXEL_OFFSET_NV 0x8904
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4370 #define GL_MAX_PROGRAM_TEXEL_OFFSET_NV 0x8905
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4371 #define GL_PROGRAM_ATTRIB_COMPONENTS_NV 0x8906
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4372 #define GL_PROGRAM_RESULT_COMPONENTS_NV 0x8907
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4373 #define GL_MAX_PROGRAM_ATTRIB_COMPONENTS_NV 0x8908
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4374 #define GL_MAX_PROGRAM_RESULT_COMPONENTS_NV 0x8909
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4375 #define GL_MAX_PROGRAM_GENERIC_ATTRIBS_NV 0x8DA5
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4376 #define GL_MAX_PROGRAM_GENERIC_RESULTS_NV 0x8DA6
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4377 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4378
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4379 #ifndef GL_NV_geometry_program4
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4380 #define GL_LINES_ADJACENCY_EXT 0x000A
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4381 #define GL_LINE_STRIP_ADJACENCY_EXT 0x000B
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4382 #define GL_TRIANGLES_ADJACENCY_EXT 0x000C
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4383 #define GL_TRIANGLE_STRIP_ADJACENCY_EXT 0x000D
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4384 #define GL_GEOMETRY_PROGRAM_NV 0x8C26
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4385 #define GL_MAX_PROGRAM_OUTPUT_VERTICES_NV 0x8C27
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4386 #define GL_MAX_PROGRAM_TOTAL_OUTPUT_COMPONENTS_NV 0x8C28
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4387 #define GL_GEOMETRY_VERTICES_OUT_EXT 0x8DDA
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4388 #define GL_GEOMETRY_INPUT_TYPE_EXT 0x8DDB
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4389 #define GL_GEOMETRY_OUTPUT_TYPE_EXT 0x8DDC
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4390 #define GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_EXT 0x8C29
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4391 #define GL_FRAMEBUFFER_ATTACHMENT_LAYERED_EXT 0x8DA7
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4392 #define GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_EXT 0x8DA8
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4393 #define GL_FRAMEBUFFER_INCOMPLETE_LAYER_COUNT_EXT 0x8DA9
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4394 #define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER_EXT 0x8CD4
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4395 #define GL_PROGRAM_POINT_SIZE_EXT 0x8642
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4396 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4397
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4398 #ifndef GL_EXT_geometry_shader4
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4399 #define GL_GEOMETRY_SHADER_EXT 0x8DD9
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4400 /* reuse GL_GEOMETRY_VERTICES_OUT_EXT */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4401 /* reuse GL_GEOMETRY_INPUT_TYPE_EXT */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4402 /* reuse GL_GEOMETRY_OUTPUT_TYPE_EXT */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4403 /* reuse GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_EXT */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4404 #define GL_MAX_GEOMETRY_VARYING_COMPONENTS_EXT 0x8DDD
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4405 #define GL_MAX_VERTEX_VARYING_COMPONENTS_EXT 0x8DDE
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4406 #define GL_MAX_VARYING_COMPONENTS_EXT 0x8B4B
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4407 #define GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_EXT 0x8DDF
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4408 #define GL_MAX_GEOMETRY_OUTPUT_VERTICES_EXT 0x8DE0
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4409 #define GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_EXT 0x8DE1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4410 /* reuse GL_LINES_ADJACENCY_EXT */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4411 /* reuse GL_LINE_STRIP_ADJACENCY_EXT */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4412 /* reuse GL_TRIANGLES_ADJACENCY_EXT */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4413 /* reuse GL_TRIANGLE_STRIP_ADJACENCY_EXT */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4414 /* reuse GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_EXT */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4415 /* reuse GL_FRAMEBUFFER_INCOMPLETE_LAYER_COUNT_EXT */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4416 /* reuse GL_FRAMEBUFFER_ATTACHMENT_LAYERED_EXT */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4417 /* reuse GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER_EXT */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4418 /* reuse GL_PROGRAM_POINT_SIZE_EXT */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4419 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4420
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4421 #ifndef GL_NV_vertex_program4
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4422 #define GL_VERTEX_ATTRIB_ARRAY_INTEGER_NV 0x88FD
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4423 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4424
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4425 #ifndef GL_EXT_gpu_shader4
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4426 #define GL_SAMPLER_1D_ARRAY_EXT 0x8DC0
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4427 #define GL_SAMPLER_2D_ARRAY_EXT 0x8DC1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4428 #define GL_SAMPLER_BUFFER_EXT 0x8DC2
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4429 #define GL_SAMPLER_1D_ARRAY_SHADOW_EXT 0x8DC3
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4430 #define GL_SAMPLER_2D_ARRAY_SHADOW_EXT 0x8DC4
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4431 #define GL_SAMPLER_CUBE_SHADOW_EXT 0x8DC5
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4432 #define GL_UNSIGNED_INT_VEC2_EXT 0x8DC6
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4433 #define GL_UNSIGNED_INT_VEC3_EXT 0x8DC7
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4434 #define GL_UNSIGNED_INT_VEC4_EXT 0x8DC8
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4435 #define GL_INT_SAMPLER_1D_EXT 0x8DC9
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4436 #define GL_INT_SAMPLER_2D_EXT 0x8DCA
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4437 #define GL_INT_SAMPLER_3D_EXT 0x8DCB
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4438 #define GL_INT_SAMPLER_CUBE_EXT 0x8DCC
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4439 #define GL_INT_SAMPLER_2D_RECT_EXT 0x8DCD
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4440 #define GL_INT_SAMPLER_1D_ARRAY_EXT 0x8DCE
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4441 #define GL_INT_SAMPLER_2D_ARRAY_EXT 0x8DCF
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4442 #define GL_INT_SAMPLER_BUFFER_EXT 0x8DD0
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4443 #define GL_UNSIGNED_INT_SAMPLER_1D_EXT 0x8DD1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4444 #define GL_UNSIGNED_INT_SAMPLER_2D_EXT 0x8DD2
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4445 #define GL_UNSIGNED_INT_SAMPLER_3D_EXT 0x8DD3
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4446 #define GL_UNSIGNED_INT_SAMPLER_CUBE_EXT 0x8DD4
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4447 #define GL_UNSIGNED_INT_SAMPLER_2D_RECT_EXT 0x8DD5
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4448 #define GL_UNSIGNED_INT_SAMPLER_1D_ARRAY_EXT 0x8DD6
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4449 #define GL_UNSIGNED_INT_SAMPLER_2D_ARRAY_EXT 0x8DD7
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4450 #define GL_UNSIGNED_INT_SAMPLER_BUFFER_EXT 0x8DD8
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4451 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4452
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4453 #ifndef GL_EXT_draw_instanced
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4454 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4455
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4456 #ifndef GL_EXT_packed_float
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4457 #define GL_R11F_G11F_B10F_EXT 0x8C3A
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4458 #define GL_UNSIGNED_INT_10F_11F_11F_REV_EXT 0x8C3B
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4459 #define GL_RGBA_SIGNED_COMPONENTS_EXT 0x8C3C
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4460 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4461
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4462 #ifndef GL_EXT_texture_array
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4463 #define GL_TEXTURE_1D_ARRAY_EXT 0x8C18
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4464 #define GL_PROXY_TEXTURE_1D_ARRAY_EXT 0x8C19
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4465 #define GL_TEXTURE_2D_ARRAY_EXT 0x8C1A
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4466 #define GL_PROXY_TEXTURE_2D_ARRAY_EXT 0x8C1B
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4467 #define GL_TEXTURE_BINDING_1D_ARRAY_EXT 0x8C1C
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4468 #define GL_TEXTURE_BINDING_2D_ARRAY_EXT 0x8C1D
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4469 #define GL_MAX_ARRAY_TEXTURE_LAYERS_EXT 0x88FF
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4470 #define GL_COMPARE_REF_DEPTH_TO_TEXTURE_EXT 0x884E
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4471 /* reuse GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER_EXT */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4472 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4473
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4474 #ifndef GL_EXT_texture_buffer_object
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4475 #define GL_TEXTURE_BUFFER_EXT 0x8C2A
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4476 #define GL_MAX_TEXTURE_BUFFER_SIZE_EXT 0x8C2B
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4477 #define GL_TEXTURE_BINDING_BUFFER_EXT 0x8C2C
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4478 #define GL_TEXTURE_BUFFER_DATA_STORE_BINDING_EXT 0x8C2D
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4479 #define GL_TEXTURE_BUFFER_FORMAT_EXT 0x8C2E
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4480 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4481
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4482 #ifndef GL_EXT_texture_compression_latc
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4483 #define GL_COMPRESSED_LUMINANCE_LATC1_EXT 0x8C70
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4484 #define GL_COMPRESSED_SIGNED_LUMINANCE_LATC1_EXT 0x8C71
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4485 #define GL_COMPRESSED_LUMINANCE_ALPHA_LATC2_EXT 0x8C72
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4486 #define GL_COMPRESSED_SIGNED_LUMINANCE_ALPHA_LATC2_EXT 0x8C73
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4487 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4488
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4489 #ifndef GL_EXT_texture_compression_rgtc
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4490 #define GL_COMPRESSED_RED_RGTC1_EXT 0x8DBB
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4491 #define GL_COMPRESSED_SIGNED_RED_RGTC1_EXT 0x8DBC
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4492 #define GL_COMPRESSED_RED_GREEN_RGTC2_EXT 0x8DBD
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4493 #define GL_COMPRESSED_SIGNED_RED_GREEN_RGTC2_EXT 0x8DBE
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4494 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4495
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4496 #ifndef GL_EXT_texture_shared_exponent
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4497 #define GL_RGB9_E5_EXT 0x8C3D
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4498 #define GL_UNSIGNED_INT_5_9_9_9_REV_EXT 0x8C3E
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4499 #define GL_TEXTURE_SHARED_SIZE_EXT 0x8C3F
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4500 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4501
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4502 #ifndef GL_NV_depth_buffer_float
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4503 #define GL_DEPTH_COMPONENT32F_NV 0x8DAB
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4504 #define GL_DEPTH32F_STENCIL8_NV 0x8DAC
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4505 #define GL_FLOAT_32_UNSIGNED_INT_24_8_REV_NV 0x8DAD
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4506 #define GL_DEPTH_BUFFER_FLOAT_MODE_NV 0x8DAF
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4507 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4508
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4509 #ifndef GL_NV_fragment_program4
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4510 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4511
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4512 #ifndef GL_NV_framebuffer_multisample_coverage
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4513 #define GL_RENDERBUFFER_COVERAGE_SAMPLES_NV 0x8CAB
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4514 #define GL_RENDERBUFFER_COLOR_SAMPLES_NV 0x8E10
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4515 #define GL_MAX_MULTISAMPLE_COVERAGE_MODES_NV 0x8E11
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4516 #define GL_MULTISAMPLE_COVERAGE_MODES_NV 0x8E12
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4517 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4518
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4519 #ifndef GL_EXT_framebuffer_sRGB
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4520 #define GL_FRAMEBUFFER_SRGB_EXT 0x8DB9
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4521 #define GL_FRAMEBUFFER_SRGB_CAPABLE_EXT 0x8DBA
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4522 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4523
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4524 #ifndef GL_NV_geometry_shader4
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4525 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4526
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4527 #ifndef GL_NV_parameter_buffer_object
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4528 #define GL_MAX_PROGRAM_PARAMETER_BUFFER_BINDINGS_NV 0x8DA0
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4529 #define GL_MAX_PROGRAM_PARAMETER_BUFFER_SIZE_NV 0x8DA1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4530 #define GL_VERTEX_PROGRAM_PARAMETER_BUFFER_NV 0x8DA2
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4531 #define GL_GEOMETRY_PROGRAM_PARAMETER_BUFFER_NV 0x8DA3
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4532 #define GL_FRAGMENT_PROGRAM_PARAMETER_BUFFER_NV 0x8DA4
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4533 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4534
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4535 #ifndef GL_EXT_draw_buffers2
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4536 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4537
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4538 #ifndef GL_NV_transform_feedback
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4539 #define GL_BACK_PRIMARY_COLOR_NV 0x8C77
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4540 #define GL_BACK_SECONDARY_COLOR_NV 0x8C78
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4541 #define GL_TEXTURE_COORD_NV 0x8C79
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4542 #define GL_CLIP_DISTANCE_NV 0x8C7A
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4543 #define GL_VERTEX_ID_NV 0x8C7B
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4544 #define GL_PRIMITIVE_ID_NV 0x8C7C
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4545 #define GL_GENERIC_ATTRIB_NV 0x8C7D
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4546 #define GL_TRANSFORM_FEEDBACK_ATTRIBS_NV 0x8C7E
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4547 #define GL_TRANSFORM_FEEDBACK_BUFFER_MODE_NV 0x8C7F
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4548 #define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS_NV 0x8C80
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4549 #define GL_ACTIVE_VARYINGS_NV 0x8C81
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4550 #define GL_ACTIVE_VARYING_MAX_LENGTH_NV 0x8C82
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4551 #define GL_TRANSFORM_FEEDBACK_VARYINGS_NV 0x8C83
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4552 #define GL_TRANSFORM_FEEDBACK_BUFFER_START_NV 0x8C84
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4553 #define GL_TRANSFORM_FEEDBACK_BUFFER_SIZE_NV 0x8C85
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4554 #define GL_TRANSFORM_FEEDBACK_RECORD_NV 0x8C86
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4555 #define GL_PRIMITIVES_GENERATED_NV 0x8C87
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4556 #define GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN_NV 0x8C88
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4557 #define GL_RASTERIZER_DISCARD_NV 0x8C89
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4558 #define GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_ATTRIBS_NV 0x8C8A
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4559 #define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS_NV 0x8C8B
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4560 #define GL_INTERLEAVED_ATTRIBS_NV 0x8C8C
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4561 #define GL_SEPARATE_ATTRIBS_NV 0x8C8D
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4562 #define GL_TRANSFORM_FEEDBACK_BUFFER_NV 0x8C8E
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4563 #define GL_TRANSFORM_FEEDBACK_BUFFER_BINDING_NV 0x8C8F
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4564 #define GL_LAYER_NV 0x8DAA
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4565 #define GL_NEXT_BUFFER_NV -2
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4566 #define GL_SKIP_COMPONENTS4_NV -3
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4567 #define GL_SKIP_COMPONENTS3_NV -4
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4568 #define GL_SKIP_COMPONENTS2_NV -5
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4569 #define GL_SKIP_COMPONENTS1_NV -6
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4570 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4571
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4572 #ifndef GL_EXT_bindable_uniform
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4573 #define GL_MAX_VERTEX_BINDABLE_UNIFORMS_EXT 0x8DE2
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4574 #define GL_MAX_FRAGMENT_BINDABLE_UNIFORMS_EXT 0x8DE3
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4575 #define GL_MAX_GEOMETRY_BINDABLE_UNIFORMS_EXT 0x8DE4
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4576 #define GL_MAX_BINDABLE_UNIFORM_SIZE_EXT 0x8DED
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4577 #define GL_UNIFORM_BUFFER_EXT 0x8DEE
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4578 #define GL_UNIFORM_BUFFER_BINDING_EXT 0x8DEF
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4579 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4580
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4581 #ifndef GL_EXT_texture_integer
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4582 #define GL_RGBA32UI_EXT 0x8D70
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4583 #define GL_RGB32UI_EXT 0x8D71
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4584 #define GL_ALPHA32UI_EXT 0x8D72
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4585 #define GL_INTENSITY32UI_EXT 0x8D73
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4586 #define GL_LUMINANCE32UI_EXT 0x8D74
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4587 #define GL_LUMINANCE_ALPHA32UI_EXT 0x8D75
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4588 #define GL_RGBA16UI_EXT 0x8D76
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4589 #define GL_RGB16UI_EXT 0x8D77
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4590 #define GL_ALPHA16UI_EXT 0x8D78
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4591 #define GL_INTENSITY16UI_EXT 0x8D79
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4592 #define GL_LUMINANCE16UI_EXT 0x8D7A
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4593 #define GL_LUMINANCE_ALPHA16UI_EXT 0x8D7B
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4594 #define GL_RGBA8UI_EXT 0x8D7C
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4595 #define GL_RGB8UI_EXT 0x8D7D
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4596 #define GL_ALPHA8UI_EXT 0x8D7E
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4597 #define GL_INTENSITY8UI_EXT 0x8D7F
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4598 #define GL_LUMINANCE8UI_EXT 0x8D80
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4599 #define GL_LUMINANCE_ALPHA8UI_EXT 0x8D81
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4600 #define GL_RGBA32I_EXT 0x8D82
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4601 #define GL_RGB32I_EXT 0x8D83
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4602 #define GL_ALPHA32I_EXT 0x8D84
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4603 #define GL_INTENSITY32I_EXT 0x8D85
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4604 #define GL_LUMINANCE32I_EXT 0x8D86
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4605 #define GL_LUMINANCE_ALPHA32I_EXT 0x8D87
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4606 #define GL_RGBA16I_EXT 0x8D88
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4607 #define GL_RGB16I_EXT 0x8D89
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4608 #define GL_ALPHA16I_EXT 0x8D8A
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4609 #define GL_INTENSITY16I_EXT 0x8D8B
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4610 #define GL_LUMINANCE16I_EXT 0x8D8C
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4611 #define GL_LUMINANCE_ALPHA16I_EXT 0x8D8D
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4612 #define GL_RGBA8I_EXT 0x8D8E
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4613 #define GL_RGB8I_EXT 0x8D8F
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4614 #define GL_ALPHA8I_EXT 0x8D90
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4615 #define GL_INTENSITY8I_EXT 0x8D91
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4616 #define GL_LUMINANCE8I_EXT 0x8D92
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4617 #define GL_LUMINANCE_ALPHA8I_EXT 0x8D93
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4618 #define GL_RED_INTEGER_EXT 0x8D94
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4619 #define GL_GREEN_INTEGER_EXT 0x8D95
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4620 #define GL_BLUE_INTEGER_EXT 0x8D96
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4621 #define GL_ALPHA_INTEGER_EXT 0x8D97
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4622 #define GL_RGB_INTEGER_EXT 0x8D98
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4623 #define GL_RGBA_INTEGER_EXT 0x8D99
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4624 #define GL_BGR_INTEGER_EXT 0x8D9A
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4625 #define GL_BGRA_INTEGER_EXT 0x8D9B
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4626 #define GL_LUMINANCE_INTEGER_EXT 0x8D9C
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4627 #define GL_LUMINANCE_ALPHA_INTEGER_EXT 0x8D9D
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4628 #define GL_RGBA_INTEGER_MODE_EXT 0x8D9E
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4629 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4630
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4631 #ifndef GL_GREMEDY_frame_terminator
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4632 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4633
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4634 #ifndef GL_NV_conditional_render
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4635 #define GL_QUERY_WAIT_NV 0x8E13
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4636 #define GL_QUERY_NO_WAIT_NV 0x8E14
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4637 #define GL_QUERY_BY_REGION_WAIT_NV 0x8E15
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4638 #define GL_QUERY_BY_REGION_NO_WAIT_NV 0x8E16
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4639 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4640
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4641 #ifndef GL_NV_present_video
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4642 #define GL_FRAME_NV 0x8E26
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4643 #define GL_FIELDS_NV 0x8E27
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4644 #define GL_CURRENT_TIME_NV 0x8E28
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4645 #define GL_NUM_FILL_STREAMS_NV 0x8E29
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4646 #define GL_PRESENT_TIME_NV 0x8E2A
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4647 #define GL_PRESENT_DURATION_NV 0x8E2B
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4648 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4649
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4650 #ifndef GL_EXT_transform_feedback
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4651 #define GL_TRANSFORM_FEEDBACK_BUFFER_EXT 0x8C8E
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4652 #define GL_TRANSFORM_FEEDBACK_BUFFER_START_EXT 0x8C84
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4653 #define GL_TRANSFORM_FEEDBACK_BUFFER_SIZE_EXT 0x8C85
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4654 #define GL_TRANSFORM_FEEDBACK_BUFFER_BINDING_EXT 0x8C8F
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4655 #define GL_INTERLEAVED_ATTRIBS_EXT 0x8C8C
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4656 #define GL_SEPARATE_ATTRIBS_EXT 0x8C8D
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4657 #define GL_PRIMITIVES_GENERATED_EXT 0x8C87
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4658 #define GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN_EXT 0x8C88
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4659 #define GL_RASTERIZER_DISCARD_EXT 0x8C89
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4660 #define GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS_EXT 0x8C8A
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4661 #define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS_EXT 0x8C8B
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4662 #define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS_EXT 0x8C80
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4663 #define GL_TRANSFORM_FEEDBACK_VARYINGS_EXT 0x8C83
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4664 #define GL_TRANSFORM_FEEDBACK_BUFFER_MODE_EXT 0x8C7F
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4665 #define GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH_EXT 0x8C76
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4666 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4667
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4668 #ifndef GL_EXT_direct_state_access
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4669 #define GL_PROGRAM_MATRIX_EXT 0x8E2D
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4670 #define GL_TRANSPOSE_PROGRAM_MATRIX_EXT 0x8E2E
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4671 #define GL_PROGRAM_MATRIX_STACK_DEPTH_EXT 0x8E2F
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4672 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4673
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4674 #ifndef GL_EXT_vertex_array_bgra
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4675 /* reuse GL_BGRA */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4676 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4677
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4678 #ifndef GL_EXT_texture_swizzle
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4679 #define GL_TEXTURE_SWIZZLE_R_EXT 0x8E42
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4680 #define GL_TEXTURE_SWIZZLE_G_EXT 0x8E43
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4681 #define GL_TEXTURE_SWIZZLE_B_EXT 0x8E44
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4682 #define GL_TEXTURE_SWIZZLE_A_EXT 0x8E45
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4683 #define GL_TEXTURE_SWIZZLE_RGBA_EXT 0x8E46
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4684 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4685
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4686 #ifndef GL_NV_explicit_multisample
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4687 #define GL_SAMPLE_POSITION_NV 0x8E50
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4688 #define GL_SAMPLE_MASK_NV 0x8E51
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4689 #define GL_SAMPLE_MASK_VALUE_NV 0x8E52
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4690 #define GL_TEXTURE_BINDING_RENDERBUFFER_NV 0x8E53
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4691 #define GL_TEXTURE_RENDERBUFFER_DATA_STORE_BINDING_NV 0x8E54
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4692 #define GL_TEXTURE_RENDERBUFFER_NV 0x8E55
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4693 #define GL_SAMPLER_RENDERBUFFER_NV 0x8E56
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4694 #define GL_INT_SAMPLER_RENDERBUFFER_NV 0x8E57
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4695 #define GL_UNSIGNED_INT_SAMPLER_RENDERBUFFER_NV 0x8E58
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4696 #define GL_MAX_SAMPLE_MASK_WORDS_NV 0x8E59
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4697 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4698
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4699 #ifndef GL_NV_transform_feedback2
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4700 #define GL_TRANSFORM_FEEDBACK_NV 0x8E22
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4701 #define GL_TRANSFORM_FEEDBACK_BUFFER_PAUSED_NV 0x8E23
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4702 #define GL_TRANSFORM_FEEDBACK_BUFFER_ACTIVE_NV 0x8E24
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4703 #define GL_TRANSFORM_FEEDBACK_BINDING_NV 0x8E25
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4704 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
4705
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4706 #ifndef GL_ATI_meminfo
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4707 #define GL_VBO_FREE_MEMORY_ATI 0x87FB
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4708 #define GL_TEXTURE_FREE_MEMORY_ATI 0x87FC
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4709 #define GL_RENDERBUFFER_FREE_MEMORY_ATI 0x87FD
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4710 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4711
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4712 #ifndef GL_AMD_performance_monitor
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4713 #define GL_COUNTER_TYPE_AMD 0x8BC0
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4714 #define GL_COUNTER_RANGE_AMD 0x8BC1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4715 #define GL_UNSIGNED_INT64_AMD 0x8BC2
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4716 #define GL_PERCENTAGE_AMD 0x8BC3
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4717 #define GL_PERFMON_RESULT_AVAILABLE_AMD 0x8BC4
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4718 #define GL_PERFMON_RESULT_SIZE_AMD 0x8BC5
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4719 #define GL_PERFMON_RESULT_AMD 0x8BC6
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4720 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4721
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4722 #ifndef GL_AMD_texture_texture4
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4723 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4724
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4725 #ifndef GL_AMD_vertex_shader_tesselator
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4726 #define GL_SAMPLER_BUFFER_AMD 0x9001
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4727 #define GL_INT_SAMPLER_BUFFER_AMD 0x9002
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4728 #define GL_UNSIGNED_INT_SAMPLER_BUFFER_AMD 0x9003
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4729 #define GL_TESSELLATION_MODE_AMD 0x9004
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4730 #define GL_TESSELLATION_FACTOR_AMD 0x9005
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4731 #define GL_DISCRETE_AMD 0x9006
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4732 #define GL_CONTINUOUS_AMD 0x9007
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4733 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4734
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4735 #ifndef GL_EXT_provoking_vertex
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4736 #define GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION_EXT 0x8E4C
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4737 #define GL_FIRST_VERTEX_CONVENTION_EXT 0x8E4D
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4738 #define GL_LAST_VERTEX_CONVENTION_EXT 0x8E4E
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4739 #define GL_PROVOKING_VERTEX_EXT 0x8E4F
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4740 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4741
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4742 #ifndef GL_EXT_texture_snorm
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4743 #define GL_ALPHA_SNORM 0x9010
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4744 #define GL_LUMINANCE_SNORM 0x9011
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4745 #define GL_LUMINANCE_ALPHA_SNORM 0x9012
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4746 #define GL_INTENSITY_SNORM 0x9013
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4747 #define GL_ALPHA8_SNORM 0x9014
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4748 #define GL_LUMINANCE8_SNORM 0x9015
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4749 #define GL_LUMINANCE8_ALPHA8_SNORM 0x9016
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4750 #define GL_INTENSITY8_SNORM 0x9017
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4751 #define GL_ALPHA16_SNORM 0x9018
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4752 #define GL_LUMINANCE16_SNORM 0x9019
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4753 #define GL_LUMINANCE16_ALPHA16_SNORM 0x901A
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4754 #define GL_INTENSITY16_SNORM 0x901B
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4755 /* reuse GL_RED_SNORM */
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4756 /* reuse GL_RG_SNORM */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4757 /* reuse GL_RGB_SNORM */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4758 /* reuse GL_RGBA_SNORM */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4759 /* reuse GL_R8_SNORM */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4760 /* reuse GL_RG8_SNORM */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4761 /* reuse GL_RGB8_SNORM */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4762 /* reuse GL_RGBA8_SNORM */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4763 /* reuse GL_R16_SNORM */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4764 /* reuse GL_RG16_SNORM */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4765 /* reuse GL_RGB16_SNORM */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4766 /* reuse GL_RGBA16_SNORM */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4767 /* reuse GL_SIGNED_NORMALIZED */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4768 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4769
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4770 #ifndef GL_AMD_draw_buffers_blend
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4771 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4772
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4773 #ifndef GL_APPLE_texture_range
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4774 #define GL_TEXTURE_RANGE_LENGTH_APPLE 0x85B7
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4775 #define GL_TEXTURE_RANGE_POINTER_APPLE 0x85B8
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4776 #define GL_TEXTURE_STORAGE_HINT_APPLE 0x85BC
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4777 #define GL_STORAGE_PRIVATE_APPLE 0x85BD
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4778 /* reuse GL_STORAGE_CACHED_APPLE */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4779 /* reuse GL_STORAGE_SHARED_APPLE */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4780 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4781
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4782 #ifndef GL_APPLE_float_pixels
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4783 #define GL_HALF_APPLE 0x140B
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4784 #define GL_RGBA_FLOAT32_APPLE 0x8814
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4785 #define GL_RGB_FLOAT32_APPLE 0x8815
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4786 #define GL_ALPHA_FLOAT32_APPLE 0x8816
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4787 #define GL_INTENSITY_FLOAT32_APPLE 0x8817
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4788 #define GL_LUMINANCE_FLOAT32_APPLE 0x8818
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4789 #define GL_LUMINANCE_ALPHA_FLOAT32_APPLE 0x8819
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4790 #define GL_RGBA_FLOAT16_APPLE 0x881A
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4791 #define GL_RGB_FLOAT16_APPLE 0x881B
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4792 #define GL_ALPHA_FLOAT16_APPLE 0x881C
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4793 #define GL_INTENSITY_FLOAT16_APPLE 0x881D
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4794 #define GL_LUMINANCE_FLOAT16_APPLE 0x881E
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4795 #define GL_LUMINANCE_ALPHA_FLOAT16_APPLE 0x881F
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4796 #define GL_COLOR_FLOAT_APPLE 0x8A0F
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4797 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4798
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4799 #ifndef GL_APPLE_vertex_program_evaluators
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4800 #define GL_VERTEX_ATTRIB_MAP1_APPLE 0x8A00
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4801 #define GL_VERTEX_ATTRIB_MAP2_APPLE 0x8A01
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4802 #define GL_VERTEX_ATTRIB_MAP1_SIZE_APPLE 0x8A02
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4803 #define GL_VERTEX_ATTRIB_MAP1_COEFF_APPLE 0x8A03
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4804 #define GL_VERTEX_ATTRIB_MAP1_ORDER_APPLE 0x8A04
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4805 #define GL_VERTEX_ATTRIB_MAP1_DOMAIN_APPLE 0x8A05
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4806 #define GL_VERTEX_ATTRIB_MAP2_SIZE_APPLE 0x8A06
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4807 #define GL_VERTEX_ATTRIB_MAP2_COEFF_APPLE 0x8A07
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4808 #define GL_VERTEX_ATTRIB_MAP2_ORDER_APPLE 0x8A08
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4809 #define GL_VERTEX_ATTRIB_MAP2_DOMAIN_APPLE 0x8A09
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4810 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4811
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4812 #ifndef GL_APPLE_aux_depth_stencil
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4813 #define GL_AUX_DEPTH_STENCIL_APPLE 0x8A14
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4814 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4815
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4816 #ifndef GL_APPLE_object_purgeable
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4817 #define GL_BUFFER_OBJECT_APPLE 0x85B3
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4818 #define GL_RELEASED_APPLE 0x8A19
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4819 #define GL_VOLATILE_APPLE 0x8A1A
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4820 #define GL_RETAINED_APPLE 0x8A1B
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4821 #define GL_UNDEFINED_APPLE 0x8A1C
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4822 #define GL_PURGEABLE_APPLE 0x8A1D
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4823 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4824
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4825 #ifndef GL_APPLE_row_bytes
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4826 #define GL_PACK_ROW_BYTES_APPLE 0x8A15
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4827 #define GL_UNPACK_ROW_BYTES_APPLE 0x8A16
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4828 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
4829
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4830 #ifndef GL_APPLE_rgb_422
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4831 #define GL_RGB_422_APPLE 0x8A1F
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4832 /* reuse GL_UNSIGNED_SHORT_8_8_APPLE */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4833 /* reuse GL_UNSIGNED_SHORT_8_8_REV_APPLE */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4834 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4835
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4836 #ifndef GL_NV_video_capture
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4837 #define GL_VIDEO_BUFFER_NV 0x9020
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4838 #define GL_VIDEO_BUFFER_BINDING_NV 0x9021
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4839 #define GL_FIELD_UPPER_NV 0x9022
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4840 #define GL_FIELD_LOWER_NV 0x9023
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4841 #define GL_NUM_VIDEO_CAPTURE_STREAMS_NV 0x9024
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4842 #define GL_NEXT_VIDEO_CAPTURE_BUFFER_STATUS_NV 0x9025
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4843 #define GL_VIDEO_CAPTURE_TO_422_SUPPORTED_NV 0x9026
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4844 #define GL_LAST_VIDEO_CAPTURE_STATUS_NV 0x9027
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4845 #define GL_VIDEO_BUFFER_PITCH_NV 0x9028
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4846 #define GL_VIDEO_COLOR_CONVERSION_MATRIX_NV 0x9029
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4847 #define GL_VIDEO_COLOR_CONVERSION_MAX_NV 0x902A
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4848 #define GL_VIDEO_COLOR_CONVERSION_MIN_NV 0x902B
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4849 #define GL_VIDEO_COLOR_CONVERSION_OFFSET_NV 0x902C
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4850 #define GL_VIDEO_BUFFER_INTERNAL_FORMAT_NV 0x902D
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4851 #define GL_PARTIAL_SUCCESS_NV 0x902E
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4852 #define GL_SUCCESS_NV 0x902F
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4853 #define GL_FAILURE_NV 0x9030
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4854 #define GL_YCBYCR8_422_NV 0x9031
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4855 #define GL_YCBAYCR8A_4224_NV 0x9032
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4856 #define GL_Z6Y10Z6CB10Z6Y10Z6CR10_422_NV 0x9033
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4857 #define GL_Z6Y10Z6CB10Z6A10Z6Y10Z6CR10Z6A10_4224_NV 0x9034
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4858 #define GL_Z4Y12Z4CB12Z4Y12Z4CR12_422_NV 0x9035
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4859 #define GL_Z4Y12Z4CB12Z4A12Z4Y12Z4CR12Z4A12_4224_NV 0x9036
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4860 #define GL_Z4Y12Z4CB12Z4CR12_444_NV 0x9037
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4861 #define GL_VIDEO_CAPTURE_FRAME_WIDTH_NV 0x9038
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4862 #define GL_VIDEO_CAPTURE_FRAME_HEIGHT_NV 0x9039
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4863 #define GL_VIDEO_CAPTURE_FIELD_UPPER_HEIGHT_NV 0x903A
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4864 #define GL_VIDEO_CAPTURE_FIELD_LOWER_HEIGHT_NV 0x903B
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4865 #define GL_VIDEO_CAPTURE_SURFACE_ORIGIN_NV 0x903C
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4866 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4867
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4868 #ifndef GL_NV_copy_image
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4869 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4870
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4871 #ifndef GL_EXT_separate_shader_objects
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4872 #define GL_ACTIVE_PROGRAM_EXT 0x8B8D
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4873 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4874
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4875 #ifndef GL_NV_parameter_buffer_object2
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4876 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4877
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4878 #ifndef GL_NV_shader_buffer_load
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4879 #define GL_BUFFER_GPU_ADDRESS_NV 0x8F1D
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4880 #define GL_GPU_ADDRESS_NV 0x8F34
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4881 #define GL_MAX_SHADER_BUFFER_ADDRESS_NV 0x8F35
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4882 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4883
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4884 #ifndef GL_NV_vertex_buffer_unified_memory
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4885 #define GL_VERTEX_ATTRIB_ARRAY_UNIFIED_NV 0x8F1E
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4886 #define GL_ELEMENT_ARRAY_UNIFIED_NV 0x8F1F
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4887 #define GL_VERTEX_ATTRIB_ARRAY_ADDRESS_NV 0x8F20
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4888 #define GL_VERTEX_ARRAY_ADDRESS_NV 0x8F21
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4889 #define GL_NORMAL_ARRAY_ADDRESS_NV 0x8F22
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4890 #define GL_COLOR_ARRAY_ADDRESS_NV 0x8F23
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4891 #define GL_INDEX_ARRAY_ADDRESS_NV 0x8F24
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4892 #define GL_TEXTURE_COORD_ARRAY_ADDRESS_NV 0x8F25
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4893 #define GL_EDGE_FLAG_ARRAY_ADDRESS_NV 0x8F26
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4894 #define GL_SECONDARY_COLOR_ARRAY_ADDRESS_NV 0x8F27
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4895 #define GL_FOG_COORD_ARRAY_ADDRESS_NV 0x8F28
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4896 #define GL_ELEMENT_ARRAY_ADDRESS_NV 0x8F29
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4897 #define GL_VERTEX_ATTRIB_ARRAY_LENGTH_NV 0x8F2A
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4898 #define GL_VERTEX_ARRAY_LENGTH_NV 0x8F2B
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4899 #define GL_NORMAL_ARRAY_LENGTH_NV 0x8F2C
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4900 #define GL_COLOR_ARRAY_LENGTH_NV 0x8F2D
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4901 #define GL_INDEX_ARRAY_LENGTH_NV 0x8F2E
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4902 #define GL_TEXTURE_COORD_ARRAY_LENGTH_NV 0x8F2F
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4903 #define GL_EDGE_FLAG_ARRAY_LENGTH_NV 0x8F30
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4904 #define GL_SECONDARY_COLOR_ARRAY_LENGTH_NV 0x8F31
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4905 #define GL_FOG_COORD_ARRAY_LENGTH_NV 0x8F32
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4906 #define GL_ELEMENT_ARRAY_LENGTH_NV 0x8F33
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4907 #define GL_DRAW_INDIRECT_UNIFIED_NV 0x8F40
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4908 #define GL_DRAW_INDIRECT_ADDRESS_NV 0x8F41
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4909 #define GL_DRAW_INDIRECT_LENGTH_NV 0x8F42
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4910 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4911
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4912 #ifndef GL_NV_texture_barrier
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4913 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4914
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4915 #ifndef GL_AMD_shader_stencil_export
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4916 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4917
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4918 #ifndef GL_AMD_seamless_cubemap_per_texture
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4919 /* reuse GL_TEXTURE_CUBE_MAP_SEAMLESS_ARB */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4920 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4921
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4922 #ifndef GL_AMD_conservative_depth
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4923 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4924
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4925 #ifndef GL_EXT_shader_image_load_store
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4926 #define GL_MAX_IMAGE_UNITS_EXT 0x8F38
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4927 #define GL_MAX_COMBINED_IMAGE_UNITS_AND_FRAGMENT_OUTPUTS_EXT 0x8F39
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4928 #define GL_IMAGE_BINDING_NAME_EXT 0x8F3A
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4929 #define GL_IMAGE_BINDING_LEVEL_EXT 0x8F3B
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4930 #define GL_IMAGE_BINDING_LAYERED_EXT 0x8F3C
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4931 #define GL_IMAGE_BINDING_LAYER_EXT 0x8F3D
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4932 #define GL_IMAGE_BINDING_ACCESS_EXT 0x8F3E
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4933 #define GL_IMAGE_1D_EXT 0x904C
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4934 #define GL_IMAGE_2D_EXT 0x904D
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4935 #define GL_IMAGE_3D_EXT 0x904E
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4936 #define GL_IMAGE_2D_RECT_EXT 0x904F
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4937 #define GL_IMAGE_CUBE_EXT 0x9050
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4938 #define GL_IMAGE_BUFFER_EXT 0x9051
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4939 #define GL_IMAGE_1D_ARRAY_EXT 0x9052
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4940 #define GL_IMAGE_2D_ARRAY_EXT 0x9053
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4941 #define GL_IMAGE_CUBE_MAP_ARRAY_EXT 0x9054
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4942 #define GL_IMAGE_2D_MULTISAMPLE_EXT 0x9055
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4943 #define GL_IMAGE_2D_MULTISAMPLE_ARRAY_EXT 0x9056
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4944 #define GL_INT_IMAGE_1D_EXT 0x9057
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4945 #define GL_INT_IMAGE_2D_EXT 0x9058
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4946 #define GL_INT_IMAGE_3D_EXT 0x9059
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4947 #define GL_INT_IMAGE_2D_RECT_EXT 0x905A
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4948 #define GL_INT_IMAGE_CUBE_EXT 0x905B
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4949 #define GL_INT_IMAGE_BUFFER_EXT 0x905C
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4950 #define GL_INT_IMAGE_1D_ARRAY_EXT 0x905D
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4951 #define GL_INT_IMAGE_2D_ARRAY_EXT 0x905E
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4952 #define GL_INT_IMAGE_CUBE_MAP_ARRAY_EXT 0x905F
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4953 #define GL_INT_IMAGE_2D_MULTISAMPLE_EXT 0x9060
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4954 #define GL_INT_IMAGE_2D_MULTISAMPLE_ARRAY_EXT 0x9061
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4955 #define GL_UNSIGNED_INT_IMAGE_1D_EXT 0x9062
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4956 #define GL_UNSIGNED_INT_IMAGE_2D_EXT 0x9063
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4957 #define GL_UNSIGNED_INT_IMAGE_3D_EXT 0x9064
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4958 #define GL_UNSIGNED_INT_IMAGE_2D_RECT_EXT 0x9065
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4959 #define GL_UNSIGNED_INT_IMAGE_CUBE_EXT 0x9066
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4960 #define GL_UNSIGNED_INT_IMAGE_BUFFER_EXT 0x9067
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4961 #define GL_UNSIGNED_INT_IMAGE_1D_ARRAY_EXT 0x9068
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4962 #define GL_UNSIGNED_INT_IMAGE_2D_ARRAY_EXT 0x9069
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4963 #define GL_UNSIGNED_INT_IMAGE_CUBE_MAP_ARRAY_EXT 0x906A
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4964 #define GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE_EXT 0x906B
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4965 #define GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE_ARRAY_EXT 0x906C
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4966 #define GL_MAX_IMAGE_SAMPLES_EXT 0x906D
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4967 #define GL_IMAGE_BINDING_FORMAT_EXT 0x906E
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4968 #define GL_VERTEX_ATTRIB_ARRAY_BARRIER_BIT_EXT 0x00000001
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4969 #define GL_ELEMENT_ARRAY_BARRIER_BIT_EXT 0x00000002
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4970 #define GL_UNIFORM_BARRIER_BIT_EXT 0x00000004
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4971 #define GL_TEXTURE_FETCH_BARRIER_BIT_EXT 0x00000008
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4972 #define GL_SHADER_IMAGE_ACCESS_BARRIER_BIT_EXT 0x00000020
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4973 #define GL_COMMAND_BARRIER_BIT_EXT 0x00000040
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4974 #define GL_PIXEL_BUFFER_BARRIER_BIT_EXT 0x00000080
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4975 #define GL_TEXTURE_UPDATE_BARRIER_BIT_EXT 0x00000100
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4976 #define GL_BUFFER_UPDATE_BARRIER_BIT_EXT 0x00000200
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4977 #define GL_FRAMEBUFFER_BARRIER_BIT_EXT 0x00000400
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4978 #define GL_TRANSFORM_FEEDBACK_BARRIER_BIT_EXT 0x00000800
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4979 #define GL_ATOMIC_COUNTER_BARRIER_BIT_EXT 0x00001000
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4980 #define GL_ALL_BARRIER_BITS_EXT 0xFFFFFFFF
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4981 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4982
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4983 #ifndef GL_EXT_vertex_attrib_64bit
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4984 /* reuse GL_DOUBLE */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4985 #define GL_DOUBLE_VEC2_EXT 0x8FFC
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4986 #define GL_DOUBLE_VEC3_EXT 0x8FFD
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4987 #define GL_DOUBLE_VEC4_EXT 0x8FFE
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4988 #define GL_DOUBLE_MAT2_EXT 0x8F46
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4989 #define GL_DOUBLE_MAT3_EXT 0x8F47
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4990 #define GL_DOUBLE_MAT4_EXT 0x8F48
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4991 #define GL_DOUBLE_MAT2x3_EXT 0x8F49
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4992 #define GL_DOUBLE_MAT2x4_EXT 0x8F4A
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4993 #define GL_DOUBLE_MAT3x2_EXT 0x8F4B
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4994 #define GL_DOUBLE_MAT3x4_EXT 0x8F4C
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4995 #define GL_DOUBLE_MAT4x2_EXT 0x8F4D
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4996 #define GL_DOUBLE_MAT4x3_EXT 0x8F4E
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4997 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4998
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
4999 #ifndef GL_NV_gpu_program5
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5000 #define GL_MAX_GEOMETRY_PROGRAM_INVOCATIONS_NV 0x8E5A
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5001 #define GL_MIN_FRAGMENT_INTERPOLATION_OFFSET_NV 0x8E5B
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5002 #define GL_MAX_FRAGMENT_INTERPOLATION_OFFSET_NV 0x8E5C
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5003 #define GL_FRAGMENT_PROGRAM_INTERPOLATION_OFFSET_BITS_NV 0x8E5D
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5004 #define GL_MAX_PROGRAM_SUBROUTINE_PARAMETERS_NV 0x8F44
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5005 #define GL_MAX_PROGRAM_SUBROUTINE_NUM_NV 0x8F45
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5006 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5007
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5008 #ifndef GL_NV_gpu_shader5
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5009 #define GL_INT64_NV 0x140E
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5010 #define GL_UNSIGNED_INT64_NV 0x140F
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5011 #define GL_INT8_NV 0x8FE0
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5012 #define GL_INT8_VEC2_NV 0x8FE1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5013 #define GL_INT8_VEC3_NV 0x8FE2
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5014 #define GL_INT8_VEC4_NV 0x8FE3
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5015 #define GL_INT16_NV 0x8FE4
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5016 #define GL_INT16_VEC2_NV 0x8FE5
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5017 #define GL_INT16_VEC3_NV 0x8FE6
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5018 #define GL_INT16_VEC4_NV 0x8FE7
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5019 #define GL_INT64_VEC2_NV 0x8FE9
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5020 #define GL_INT64_VEC3_NV 0x8FEA
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5021 #define GL_INT64_VEC4_NV 0x8FEB
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5022 #define GL_UNSIGNED_INT8_NV 0x8FEC
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5023 #define GL_UNSIGNED_INT8_VEC2_NV 0x8FED
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5024 #define GL_UNSIGNED_INT8_VEC3_NV 0x8FEE
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5025 #define GL_UNSIGNED_INT8_VEC4_NV 0x8FEF
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5026 #define GL_UNSIGNED_INT16_NV 0x8FF0
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5027 #define GL_UNSIGNED_INT16_VEC2_NV 0x8FF1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5028 #define GL_UNSIGNED_INT16_VEC3_NV 0x8FF2
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5029 #define GL_UNSIGNED_INT16_VEC4_NV 0x8FF3
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5030 #define GL_UNSIGNED_INT64_VEC2_NV 0x8FF5
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5031 #define GL_UNSIGNED_INT64_VEC3_NV 0x8FF6
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5032 #define GL_UNSIGNED_INT64_VEC4_NV 0x8FF7
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5033 #define GL_FLOAT16_NV 0x8FF8
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5034 #define GL_FLOAT16_VEC2_NV 0x8FF9
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5035 #define GL_FLOAT16_VEC3_NV 0x8FFA
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5036 #define GL_FLOAT16_VEC4_NV 0x8FFB
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5037 /* reuse GL_PATCHES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5038 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5039
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5040 #ifndef GL_NV_shader_buffer_store
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5041 #define GL_SHADER_GLOBAL_ACCESS_BARRIER_BIT_NV 0x00000010
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5042 /* reuse GL_READ_WRITE */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5043 /* reuse GL_WRITE_ONLY */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5044 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5045
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5046 #ifndef GL_NV_tessellation_program5
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5047 #define GL_MAX_PROGRAM_PATCH_ATTRIBS_NV 0x86D8
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5048 #define GL_TESS_CONTROL_PROGRAM_NV 0x891E
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5049 #define GL_TESS_EVALUATION_PROGRAM_NV 0x891F
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5050 #define GL_TESS_CONTROL_PROGRAM_PARAMETER_BUFFER_NV 0x8C74
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5051 #define GL_TESS_EVALUATION_PROGRAM_PARAMETER_BUFFER_NV 0x8C75
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5052 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5053
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5054 #ifndef GL_NV_vertex_attrib_integer_64bit
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5055 /* reuse GL_INT64_NV */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5056 /* reuse GL_UNSIGNED_INT64_NV */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5057 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5058
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5059 #ifndef GL_NV_multisample_coverage
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5060 #define GL_COVERAGE_SAMPLES_NV 0x80A9
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5061 #define GL_COLOR_SAMPLES_NV 0x8E20
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5062 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5063
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5064 #ifndef GL_AMD_name_gen_delete
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5065 #define GL_DATA_BUFFER_AMD 0x9151
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5066 #define GL_PERFORMANCE_MONITOR_AMD 0x9152
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5067 #define GL_QUERY_OBJECT_AMD 0x9153
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5068 #define GL_VERTEX_ARRAY_OBJECT_AMD 0x9154
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5069 #define GL_SAMPLER_OBJECT_AMD 0x9155
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5070 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5071
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5072 #ifndef GL_AMD_debug_output
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5073 #define GL_MAX_DEBUG_LOGGED_MESSAGES_AMD 0x9144
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5074 #define GL_DEBUG_LOGGED_MESSAGES_AMD 0x9145
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5075 #define GL_DEBUG_SEVERITY_HIGH_AMD 0x9146
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5076 #define GL_DEBUG_SEVERITY_MEDIUM_AMD 0x9147
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5077 #define GL_DEBUG_SEVERITY_LOW_AMD 0x9148
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5078 #define GL_DEBUG_CATEGORY_API_ERROR_AMD 0x9149
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5079 #define GL_DEBUG_CATEGORY_WINDOW_SYSTEM_AMD 0x914A
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5080 #define GL_DEBUG_CATEGORY_DEPRECATION_AMD 0x914B
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5081 #define GL_DEBUG_CATEGORY_UNDEFINED_BEHAVIOR_AMD 0x914C
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5082 #define GL_DEBUG_CATEGORY_PERFORMANCE_AMD 0x914D
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5083 #define GL_DEBUG_CATEGORY_SHADER_COMPILER_AMD 0x914E
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5084 #define GL_DEBUG_CATEGORY_APPLICATION_AMD 0x914F
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5085 #define GL_DEBUG_CATEGORY_OTHER_AMD 0x9150
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5086 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5087
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5088 #ifndef GL_NV_vdpau_interop
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5089 #define GL_SURFACE_STATE_NV 0x86EB
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5090 #define GL_SURFACE_REGISTERED_NV 0x86FD
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5091 #define GL_SURFACE_MAPPED_NV 0x8700
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5092 #define GL_WRITE_DISCARD_NV 0x88BE
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5093 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5094
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5095 #ifndef GL_AMD_transform_feedback3_lines_triangles
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5096 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5097
214
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
5098
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
5099 /*************************************************************/
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
5100
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5101 #include <stddef.h>
1205
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5102 #ifndef GL_VERSION_2_0
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5103 /* GL type for program/shader text */
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5104 typedef char GLchar;
1205
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5105 #endif
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5106
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5107 #ifndef GL_VERSION_1_5
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5108 /* GL types for handling large vertex buffer objects */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5109 typedef ptrdiff_t GLintptr;
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5110 typedef ptrdiff_t GLsizeiptr;
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5111 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5112
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5113 #ifndef GL_ARB_vertex_buffer_object
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5114 /* GL types for handling large vertex buffer objects */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5115 typedef ptrdiff_t GLintptrARB;
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5116 typedef ptrdiff_t GLsizeiptrARB;
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5117 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5118
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5119 #ifndef GL_ARB_shader_objects
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5120 /* GL types for program/shader text and shader object handles */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5121 typedef char GLcharARB;
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5122 typedef unsigned int GLhandleARB;
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5123 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5124
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5125 /* GL type for "half" precision (s10e5) float data in host memory */
1205
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5126 #ifndef GL_ARB_half_float_pixel
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5127 typedef unsigned short GLhalfARB;
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5128 #endif
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5129
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5130 #ifndef GL_NV_half_float
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5131 typedef unsigned short GLhalfNV;
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5132 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5133
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5134 #ifndef GLEXT_64_TYPES_DEFINED
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5135 /* This code block is duplicated in glxext.h, so must be protected */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5136 #define GLEXT_64_TYPES_DEFINED
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5137 /* Define int32_t, int64_t, and uint64_t types for UST/MSC */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5138 /* (as used in the GL_EXT_timer_query extension). */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5139 #if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5140 #include <inttypes.h>
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5141 #elif defined(__sun__) || defined(__digital__)
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5142 #include <inttypes.h>
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5143 #if defined(__STDC__)
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5144 #if defined(__arch64__) || defined(_LP64)
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5145 typedef long int int64_t;
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5146 typedef unsigned long int uint64_t;
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5147 #else
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5148 typedef long long int int64_t;
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5149 typedef unsigned long long int uint64_t;
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5150 #endif /* __arch64__ */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5151 #endif /* __STDC__ */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5152 #elif defined( __VMS ) || defined(__sgi)
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5153 #include <inttypes.h>
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5154 #elif defined(__SCO__) || defined(__USLC__)
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5155 #include <stdint.h>
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5156 #elif defined(__UNIXOS2__) || defined(__SOL64__)
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5157 typedef long int int32_t;
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5158 typedef long long int int64_t;
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5159 typedef unsigned long long int uint64_t;
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5160 #elif defined(_WIN32) && defined(__GNUC__)
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5161 #include <stdint.h>
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5162 #elif defined(_WIN32)
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5163 typedef __int32 int32_t;
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5164 typedef __int64 int64_t;
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5165 typedef unsigned __int64 uint64_t;
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5166 #else
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5167 /* Fallback if nothing above works */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5168 #include <inttypes.h>
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5169 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5170 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5171
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5172 #ifndef GL_EXT_timer_query
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5173 typedef int64_t GLint64EXT;
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5174 typedef uint64_t GLuint64EXT;
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5175 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5176
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5177 #ifndef GL_ARB_sync
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5178 typedef int64_t GLint64;
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5179 typedef uint64_t GLuint64;
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5180 typedef struct __GLsync *GLsync;
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5181 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5182
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5183 #ifndef GL_ARB_cl_event
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5184 /* These incomplete types let us declare types compatible with OpenCL's cl_context and cl_event */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5185 struct _cl_context;
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5186 struct _cl_event;
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5187 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5188
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5189 #ifndef GL_ARB_debug_output
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5190 typedef void (APIENTRY *GLDEBUGPROCARB)(GLenum source,GLenum type,GLuint id,GLenum severity,GLsizei length,const GLchar *message,GLvoid *userParam);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5191 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5192
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5193 #ifndef GL_AMD_debug_output
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5194 typedef void (APIENTRY *GLDEBUGPROCAMD)(GLuint id,GLenum category,GLenum severity,GLsizei length,const GLchar *message,GLvoid *userParam);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5195 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5196
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5197 #ifndef GL_NV_vdpau_interop
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5198 typedef GLintptr GLvdpauSurfaceNV;
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5199 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5200
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
5201 #ifndef GL_VERSION_1_2
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
5202 #define GL_VERSION_1_2 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
5203 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5204 GLAPI void APIENTRY glBlendColor (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5205 GLAPI void APIENTRY glBlendEquation (GLenum mode);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5206 GLAPI void APIENTRY glDrawRangeElements (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5207 GLAPI void APIENTRY glTexImage3D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5208 GLAPI void APIENTRY glTexSubImage3D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5209 GLAPI void APIENTRY glCopyTexSubImage3D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height);
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5210 #endif /* GL_GLEXT_PROTOTYPES */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5211 typedef void (APIENTRYP PFNGLBLENDCOLORPROC) (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5212 typedef void (APIENTRYP PFNGLBLENDEQUATIONPROC) (GLenum mode);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5213 typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTSPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5214 typedef void (APIENTRYP PFNGLTEXIMAGE3DPROC) (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5215 typedef void (APIENTRYP PFNGLTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5216 typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5217 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5218
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5219 #ifndef GL_VERSION_1_2_DEPRECATED
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5220 #define GL_VERSION_1_2_DEPRECATED 1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5221 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5222 GLAPI void APIENTRY glColorTable (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid *table);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5223 GLAPI void APIENTRY glColorTableParameterfv (GLenum target, GLenum pname, const GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5224 GLAPI void APIENTRY glColorTableParameteriv (GLenum target, GLenum pname, const GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5225 GLAPI void APIENTRY glCopyColorTable (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5226 GLAPI void APIENTRY glGetColorTable (GLenum target, GLenum format, GLenum type, GLvoid *table);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5227 GLAPI void APIENTRY glGetColorTableParameterfv (GLenum target, GLenum pname, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5228 GLAPI void APIENTRY glGetColorTableParameteriv (GLenum target, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5229 GLAPI void APIENTRY glColorSubTable (GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const GLvoid *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5230 GLAPI void APIENTRY glCopyColorSubTable (GLenum target, GLsizei start, GLint x, GLint y, GLsizei width);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5231 GLAPI void APIENTRY glConvolutionFilter1D (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid *image);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5232 GLAPI void APIENTRY glConvolutionFilter2D (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *image);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5233 GLAPI void APIENTRY glConvolutionParameterf (GLenum target, GLenum pname, GLfloat params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5234 GLAPI void APIENTRY glConvolutionParameterfv (GLenum target, GLenum pname, const GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5235 GLAPI void APIENTRY glConvolutionParameteri (GLenum target, GLenum pname, GLint params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5236 GLAPI void APIENTRY glConvolutionParameteriv (GLenum target, GLenum pname, const GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5237 GLAPI void APIENTRY glCopyConvolutionFilter1D (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5238 GLAPI void APIENTRY glCopyConvolutionFilter2D (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5239 GLAPI void APIENTRY glGetConvolutionFilter (GLenum target, GLenum format, GLenum type, GLvoid *image);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5240 GLAPI void APIENTRY glGetConvolutionParameterfv (GLenum target, GLenum pname, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5241 GLAPI void APIENTRY glGetConvolutionParameteriv (GLenum target, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5242 GLAPI void APIENTRY glGetSeparableFilter (GLenum target, GLenum format, GLenum type, GLvoid *row, GLvoid *column, GLvoid *span);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5243 GLAPI void APIENTRY glSeparableFilter2D (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *row, const GLvoid *column);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5244 GLAPI void APIENTRY glGetHistogram (GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid *values);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5245 GLAPI void APIENTRY glGetHistogramParameterfv (GLenum target, GLenum pname, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5246 GLAPI void APIENTRY glGetHistogramParameteriv (GLenum target, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5247 GLAPI void APIENTRY glGetMinmax (GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid *values);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5248 GLAPI void APIENTRY glGetMinmaxParameterfv (GLenum target, GLenum pname, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5249 GLAPI void APIENTRY glGetMinmaxParameteriv (GLenum target, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5250 GLAPI void APIENTRY glHistogram (GLenum target, GLsizei width, GLenum internalformat, GLboolean sink);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5251 GLAPI void APIENTRY glMinmax (GLenum target, GLenum internalformat, GLboolean sink);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5252 GLAPI void APIENTRY glResetHistogram (GLenum target);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5253 GLAPI void APIENTRY glResetMinmax (GLenum target);
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5254 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5255 typedef void (APIENTRYP PFNGLCOLORTABLEPROC) (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid *table);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5256 typedef void (APIENTRYP PFNGLCOLORTABLEPARAMETERFVPROC) (GLenum target, GLenum pname, const GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5257 typedef void (APIENTRYP PFNGLCOLORTABLEPARAMETERIVPROC) (GLenum target, GLenum pname, const GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5258 typedef void (APIENTRYP PFNGLCOPYCOLORTABLEPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5259 typedef void (APIENTRYP PFNGLGETCOLORTABLEPROC) (GLenum target, GLenum format, GLenum type, GLvoid *table);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5260 typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5261 typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5262 typedef void (APIENTRYP PFNGLCOLORSUBTABLEPROC) (GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const GLvoid *data);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5263 typedef void (APIENTRYP PFNGLCOPYCOLORSUBTABLEPROC) (GLenum target, GLsizei start, GLint x, GLint y, GLsizei width);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5264 typedef void (APIENTRYP PFNGLCONVOLUTIONFILTER1DPROC) (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid *image);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5265 typedef void (APIENTRYP PFNGLCONVOLUTIONFILTER2DPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *image);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5266 typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERFPROC) (GLenum target, GLenum pname, GLfloat params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5267 typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERFVPROC) (GLenum target, GLenum pname, const GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5268 typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERIPROC) (GLenum target, GLenum pname, GLint params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5269 typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERIVPROC) (GLenum target, GLenum pname, const GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5270 typedef void (APIENTRYP PFNGLCOPYCONVOLUTIONFILTER1DPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5271 typedef void (APIENTRYP PFNGLCOPYCONVOLUTIONFILTER2DPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5272 typedef void (APIENTRYP PFNGLGETCONVOLUTIONFILTERPROC) (GLenum target, GLenum format, GLenum type, GLvoid *image);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5273 typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5274 typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5275 typedef void (APIENTRYP PFNGLGETSEPARABLEFILTERPROC) (GLenum target, GLenum format, GLenum type, GLvoid *row, GLvoid *column, GLvoid *span);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5276 typedef void (APIENTRYP PFNGLSEPARABLEFILTER2DPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *row, const GLvoid *column);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5277 typedef void (APIENTRYP PFNGLGETHISTOGRAMPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid *values);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5278 typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5279 typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5280 typedef void (APIENTRYP PFNGLGETMINMAXPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid *values);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5281 typedef void (APIENTRYP PFNGLGETMINMAXPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5282 typedef void (APIENTRYP PFNGLGETMINMAXPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5283 typedef void (APIENTRYP PFNGLHISTOGRAMPROC) (GLenum target, GLsizei width, GLenum internalformat, GLboolean sink);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5284 typedef void (APIENTRYP PFNGLMINMAXPROC) (GLenum target, GLenum internalformat, GLboolean sink);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5285 typedef void (APIENTRYP PFNGLRESETHISTOGRAMPROC) (GLenum target);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5286 typedef void (APIENTRYP PFNGLRESETMINMAXPROC) (GLenum target);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5287 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5288
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5289 #ifndef GL_VERSION_1_3
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5290 #define GL_VERSION_1_3 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5291 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5292 GLAPI void APIENTRY glActiveTexture (GLenum texture);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5293 GLAPI void APIENTRY glSampleCoverage (GLclampf value, GLboolean invert);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5294 GLAPI void APIENTRY glCompressedTexImage3D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5295 GLAPI void APIENTRY glCompressedTexImage2D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5296 GLAPI void APIENTRY glCompressedTexImage1D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5297 GLAPI void APIENTRY glCompressedTexSubImage3D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5298 GLAPI void APIENTRY glCompressedTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5299 GLAPI void APIENTRY glCompressedTexSubImage1D (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5300 GLAPI void APIENTRY glGetCompressedTexImage (GLenum target, GLint level, GLvoid *img);
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5301 #endif /* GL_GLEXT_PROTOTYPES */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5302 typedef void (APIENTRYP PFNGLACTIVETEXTUREPROC) (GLenum texture);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5303 typedef void (APIENTRYP PFNGLSAMPLECOVERAGEPROC) (GLclampf value, GLboolean invert);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5304 typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5305 typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE2DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5306 typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE1DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5307 typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5308 typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5309 typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC) (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5310 typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXIMAGEPROC) (GLenum target, GLint level, GLvoid *img);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5311 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5312
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5313 #ifndef GL_VERSION_1_3_DEPRECATED
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5314 #define GL_VERSION_1_3_DEPRECATED 1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5315 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5316 GLAPI void APIENTRY glClientActiveTexture (GLenum texture);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5317 GLAPI void APIENTRY glMultiTexCoord1d (GLenum target, GLdouble s);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5318 GLAPI void APIENTRY glMultiTexCoord1dv (GLenum target, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5319 GLAPI void APIENTRY glMultiTexCoord1f (GLenum target, GLfloat s);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5320 GLAPI void APIENTRY glMultiTexCoord1fv (GLenum target, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5321 GLAPI void APIENTRY glMultiTexCoord1i (GLenum target, GLint s);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5322 GLAPI void APIENTRY glMultiTexCoord1iv (GLenum target, const GLint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5323 GLAPI void APIENTRY glMultiTexCoord1s (GLenum target, GLshort s);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5324 GLAPI void APIENTRY glMultiTexCoord1sv (GLenum target, const GLshort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5325 GLAPI void APIENTRY glMultiTexCoord2d (GLenum target, GLdouble s, GLdouble t);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5326 GLAPI void APIENTRY glMultiTexCoord2dv (GLenum target, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5327 GLAPI void APIENTRY glMultiTexCoord2f (GLenum target, GLfloat s, GLfloat t);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5328 GLAPI void APIENTRY glMultiTexCoord2fv (GLenum target, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5329 GLAPI void APIENTRY glMultiTexCoord2i (GLenum target, GLint s, GLint t);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5330 GLAPI void APIENTRY glMultiTexCoord2iv (GLenum target, const GLint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5331 GLAPI void APIENTRY glMultiTexCoord2s (GLenum target, GLshort s, GLshort t);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5332 GLAPI void APIENTRY glMultiTexCoord2sv (GLenum target, const GLshort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5333 GLAPI void APIENTRY glMultiTexCoord3d (GLenum target, GLdouble s, GLdouble t, GLdouble r);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5334 GLAPI void APIENTRY glMultiTexCoord3dv (GLenum target, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5335 GLAPI void APIENTRY glMultiTexCoord3f (GLenum target, GLfloat s, GLfloat t, GLfloat r);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5336 GLAPI void APIENTRY glMultiTexCoord3fv (GLenum target, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5337 GLAPI void APIENTRY glMultiTexCoord3i (GLenum target, GLint s, GLint t, GLint r);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5338 GLAPI void APIENTRY glMultiTexCoord3iv (GLenum target, const GLint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5339 GLAPI void APIENTRY glMultiTexCoord3s (GLenum target, GLshort s, GLshort t, GLshort r);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5340 GLAPI void APIENTRY glMultiTexCoord3sv (GLenum target, const GLshort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5341 GLAPI void APIENTRY glMultiTexCoord4d (GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5342 GLAPI void APIENTRY glMultiTexCoord4dv (GLenum target, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5343 GLAPI void APIENTRY glMultiTexCoord4f (GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5344 GLAPI void APIENTRY glMultiTexCoord4fv (GLenum target, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5345 GLAPI void APIENTRY glMultiTexCoord4i (GLenum target, GLint s, GLint t, GLint r, GLint q);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5346 GLAPI void APIENTRY glMultiTexCoord4iv (GLenum target, const GLint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5347 GLAPI void APIENTRY glMultiTexCoord4s (GLenum target, GLshort s, GLshort t, GLshort r, GLshort q);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5348 GLAPI void APIENTRY glMultiTexCoord4sv (GLenum target, const GLshort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5349 GLAPI void APIENTRY glLoadTransposeMatrixf (const GLfloat *m);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5350 GLAPI void APIENTRY glLoadTransposeMatrixd (const GLdouble *m);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5351 GLAPI void APIENTRY glMultTransposeMatrixf (const GLfloat *m);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5352 GLAPI void APIENTRY glMultTransposeMatrixd (const GLdouble *m);
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5353 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5354 typedef void (APIENTRYP PFNGLCLIENTACTIVETEXTUREPROC) (GLenum texture);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5355 typedef void (APIENTRYP PFNGLMULTITEXCOORD1DPROC) (GLenum target, GLdouble s);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5356 typedef void (APIENTRYP PFNGLMULTITEXCOORD1DVPROC) (GLenum target, const GLdouble *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5357 typedef void (APIENTRYP PFNGLMULTITEXCOORD1FPROC) (GLenum target, GLfloat s);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5358 typedef void (APIENTRYP PFNGLMULTITEXCOORD1FVPROC) (GLenum target, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5359 typedef void (APIENTRYP PFNGLMULTITEXCOORD1IPROC) (GLenum target, GLint s);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5360 typedef void (APIENTRYP PFNGLMULTITEXCOORD1IVPROC) (GLenum target, const GLint *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5361 typedef void (APIENTRYP PFNGLMULTITEXCOORD1SPROC) (GLenum target, GLshort s);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5362 typedef void (APIENTRYP PFNGLMULTITEXCOORD1SVPROC) (GLenum target, const GLshort *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5363 typedef void (APIENTRYP PFNGLMULTITEXCOORD2DPROC) (GLenum target, GLdouble s, GLdouble t);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5364 typedef void (APIENTRYP PFNGLMULTITEXCOORD2DVPROC) (GLenum target, const GLdouble *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5365 typedef void (APIENTRYP PFNGLMULTITEXCOORD2FPROC) (GLenum target, GLfloat s, GLfloat t);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5366 typedef void (APIENTRYP PFNGLMULTITEXCOORD2FVPROC) (GLenum target, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5367 typedef void (APIENTRYP PFNGLMULTITEXCOORD2IPROC) (GLenum target, GLint s, GLint t);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5368 typedef void (APIENTRYP PFNGLMULTITEXCOORD2IVPROC) (GLenum target, const GLint *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5369 typedef void (APIENTRYP PFNGLMULTITEXCOORD2SPROC) (GLenum target, GLshort s, GLshort t);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5370 typedef void (APIENTRYP PFNGLMULTITEXCOORD2SVPROC) (GLenum target, const GLshort *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5371 typedef void (APIENTRYP PFNGLMULTITEXCOORD3DPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5372 typedef void (APIENTRYP PFNGLMULTITEXCOORD3DVPROC) (GLenum target, const GLdouble *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5373 typedef void (APIENTRYP PFNGLMULTITEXCOORD3FPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5374 typedef void (APIENTRYP PFNGLMULTITEXCOORD3FVPROC) (GLenum target, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5375 typedef void (APIENTRYP PFNGLMULTITEXCOORD3IPROC) (GLenum target, GLint s, GLint t, GLint r);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5376 typedef void (APIENTRYP PFNGLMULTITEXCOORD3IVPROC) (GLenum target, const GLint *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5377 typedef void (APIENTRYP PFNGLMULTITEXCOORD3SPROC) (GLenum target, GLshort s, GLshort t, GLshort r);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5378 typedef void (APIENTRYP PFNGLMULTITEXCOORD3SVPROC) (GLenum target, const GLshort *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5379 typedef void (APIENTRYP PFNGLMULTITEXCOORD4DPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5380 typedef void (APIENTRYP PFNGLMULTITEXCOORD4DVPROC) (GLenum target, const GLdouble *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5381 typedef void (APIENTRYP PFNGLMULTITEXCOORD4FPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5382 typedef void (APIENTRYP PFNGLMULTITEXCOORD4FVPROC) (GLenum target, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5383 typedef void (APIENTRYP PFNGLMULTITEXCOORD4IPROC) (GLenum target, GLint s, GLint t, GLint r, GLint q);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5384 typedef void (APIENTRYP PFNGLMULTITEXCOORD4IVPROC) (GLenum target, const GLint *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5385 typedef void (APIENTRYP PFNGLMULTITEXCOORD4SPROC) (GLenum target, GLshort s, GLshort t, GLshort r, GLshort q);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5386 typedef void (APIENTRYP PFNGLMULTITEXCOORD4SVPROC) (GLenum target, const GLshort *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5387 typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXFPROC) (const GLfloat *m);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5388 typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXDPROC) (const GLdouble *m);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5389 typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXFPROC) (const GLfloat *m);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5390 typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXDPROC) (const GLdouble *m);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5391 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5392
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5393 #ifndef GL_VERSION_1_4
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5394 #define GL_VERSION_1_4 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5395 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5396 GLAPI void APIENTRY glBlendFuncSeparate (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5397 GLAPI void APIENTRY glMultiDrawArrays (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5398 GLAPI void APIENTRY glMultiDrawElements (GLenum mode, const GLsizei *count, GLenum type, const GLvoid* *indices, GLsizei primcount);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5399 GLAPI void APIENTRY glPointParameterf (GLenum pname, GLfloat param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5400 GLAPI void APIENTRY glPointParameterfv (GLenum pname, const GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5401 GLAPI void APIENTRY glPointParameteri (GLenum pname, GLint param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5402 GLAPI void APIENTRY glPointParameteriv (GLenum pname, const GLint *params);
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5403 #endif /* GL_GLEXT_PROTOTYPES */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5404 typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEPROC) (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha);
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5405 typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSPROC) (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount);
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5406 typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSPROC) (GLenum mode, const GLsizei *count, GLenum type, const GLvoid* *indices, GLsizei primcount);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5407 typedef void (APIENTRYP PFNGLPOINTPARAMETERFPROC) (GLenum pname, GLfloat param);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5408 typedef void (APIENTRYP PFNGLPOINTPARAMETERFVPROC) (GLenum pname, const GLfloat *params);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5409 typedef void (APIENTRYP PFNGLPOINTPARAMETERIPROC) (GLenum pname, GLint param);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5410 typedef void (APIENTRYP PFNGLPOINTPARAMETERIVPROC) (GLenum pname, const GLint *params);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5411 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5412
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5413 #ifndef GL_VERSION_1_4_DEPRECATED
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5414 #define GL_VERSION_1_4_DEPRECATED 1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5415 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5416 GLAPI void APIENTRY glFogCoordf (GLfloat coord);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5417 GLAPI void APIENTRY glFogCoordfv (const GLfloat *coord);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5418 GLAPI void APIENTRY glFogCoordd (GLdouble coord);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5419 GLAPI void APIENTRY glFogCoorddv (const GLdouble *coord);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5420 GLAPI void APIENTRY glFogCoordPointer (GLenum type, GLsizei stride, const GLvoid *pointer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5421 GLAPI void APIENTRY glSecondaryColor3b (GLbyte red, GLbyte green, GLbyte blue);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5422 GLAPI void APIENTRY glSecondaryColor3bv (const GLbyte *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5423 GLAPI void APIENTRY glSecondaryColor3d (GLdouble red, GLdouble green, GLdouble blue);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5424 GLAPI void APIENTRY glSecondaryColor3dv (const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5425 GLAPI void APIENTRY glSecondaryColor3f (GLfloat red, GLfloat green, GLfloat blue);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5426 GLAPI void APIENTRY glSecondaryColor3fv (const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5427 GLAPI void APIENTRY glSecondaryColor3i (GLint red, GLint green, GLint blue);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5428 GLAPI void APIENTRY glSecondaryColor3iv (const GLint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5429 GLAPI void APIENTRY glSecondaryColor3s (GLshort red, GLshort green, GLshort blue);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5430 GLAPI void APIENTRY glSecondaryColor3sv (const GLshort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5431 GLAPI void APIENTRY glSecondaryColor3ub (GLubyte red, GLubyte green, GLubyte blue);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5432 GLAPI void APIENTRY glSecondaryColor3ubv (const GLubyte *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5433 GLAPI void APIENTRY glSecondaryColor3ui (GLuint red, GLuint green, GLuint blue);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5434 GLAPI void APIENTRY glSecondaryColor3uiv (const GLuint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5435 GLAPI void APIENTRY glSecondaryColor3us (GLushort red, GLushort green, GLushort blue);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5436 GLAPI void APIENTRY glSecondaryColor3usv (const GLushort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5437 GLAPI void APIENTRY glSecondaryColorPointer (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5438 GLAPI void APIENTRY glWindowPos2d (GLdouble x, GLdouble y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5439 GLAPI void APIENTRY glWindowPos2dv (const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5440 GLAPI void APIENTRY glWindowPos2f (GLfloat x, GLfloat y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5441 GLAPI void APIENTRY glWindowPos2fv (const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5442 GLAPI void APIENTRY glWindowPos2i (GLint x, GLint y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5443 GLAPI void APIENTRY glWindowPos2iv (const GLint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5444 GLAPI void APIENTRY glWindowPos2s (GLshort x, GLshort y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5445 GLAPI void APIENTRY glWindowPos2sv (const GLshort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5446 GLAPI void APIENTRY glWindowPos3d (GLdouble x, GLdouble y, GLdouble z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5447 GLAPI void APIENTRY glWindowPos3dv (const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5448 GLAPI void APIENTRY glWindowPos3f (GLfloat x, GLfloat y, GLfloat z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5449 GLAPI void APIENTRY glWindowPos3fv (const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5450 GLAPI void APIENTRY glWindowPos3i (GLint x, GLint y, GLint z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5451 GLAPI void APIENTRY glWindowPos3iv (const GLint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5452 GLAPI void APIENTRY glWindowPos3s (GLshort x, GLshort y, GLshort z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5453 GLAPI void APIENTRY glWindowPos3sv (const GLshort *v);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5454 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5455 typedef void (APIENTRYP PFNGLFOGCOORDFPROC) (GLfloat coord);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5456 typedef void (APIENTRYP PFNGLFOGCOORDFVPROC) (const GLfloat *coord);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5457 typedef void (APIENTRYP PFNGLFOGCOORDDPROC) (GLdouble coord);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5458 typedef void (APIENTRYP PFNGLFOGCOORDDVPROC) (const GLdouble *coord);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5459 typedef void (APIENTRYP PFNGLFOGCOORDPOINTERPROC) (GLenum type, GLsizei stride, const GLvoid *pointer);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5460 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3BPROC) (GLbyte red, GLbyte green, GLbyte blue);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5461 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3BVPROC) (const GLbyte *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5462 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3DPROC) (GLdouble red, GLdouble green, GLdouble blue);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5463 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3DVPROC) (const GLdouble *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5464 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3FPROC) (GLfloat red, GLfloat green, GLfloat blue);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5465 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3FVPROC) (const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5466 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3IPROC) (GLint red, GLint green, GLint blue);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5467 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3IVPROC) (const GLint *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5468 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3SPROC) (GLshort red, GLshort green, GLshort blue);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5469 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3SVPROC) (const GLshort *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5470 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UBPROC) (GLubyte red, GLubyte green, GLubyte blue);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5471 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UBVPROC) (const GLubyte *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5472 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UIPROC) (GLuint red, GLuint green, GLuint blue);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5473 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UIVPROC) (const GLuint *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5474 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3USPROC) (GLushort red, GLushort green, GLushort blue);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5475 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3USVPROC) (const GLushort *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5476 typedef void (APIENTRYP PFNGLSECONDARYCOLORPOINTERPROC) (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5477 typedef void (APIENTRYP PFNGLWINDOWPOS2DPROC) (GLdouble x, GLdouble y);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5478 typedef void (APIENTRYP PFNGLWINDOWPOS2DVPROC) (const GLdouble *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5479 typedef void (APIENTRYP PFNGLWINDOWPOS2FPROC) (GLfloat x, GLfloat y);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5480 typedef void (APIENTRYP PFNGLWINDOWPOS2FVPROC) (const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5481 typedef void (APIENTRYP PFNGLWINDOWPOS2IPROC) (GLint x, GLint y);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5482 typedef void (APIENTRYP PFNGLWINDOWPOS2IVPROC) (const GLint *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5483 typedef void (APIENTRYP PFNGLWINDOWPOS2SPROC) (GLshort x, GLshort y);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5484 typedef void (APIENTRYP PFNGLWINDOWPOS2SVPROC) (const GLshort *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5485 typedef void (APIENTRYP PFNGLWINDOWPOS3DPROC) (GLdouble x, GLdouble y, GLdouble z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5486 typedef void (APIENTRYP PFNGLWINDOWPOS3DVPROC) (const GLdouble *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5487 typedef void (APIENTRYP PFNGLWINDOWPOS3FPROC) (GLfloat x, GLfloat y, GLfloat z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5488 typedef void (APIENTRYP PFNGLWINDOWPOS3FVPROC) (const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5489 typedef void (APIENTRYP PFNGLWINDOWPOS3IPROC) (GLint x, GLint y, GLint z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5490 typedef void (APIENTRYP PFNGLWINDOWPOS3IVPROC) (const GLint *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5491 typedef void (APIENTRYP PFNGLWINDOWPOS3SPROC) (GLshort x, GLshort y, GLshort z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5492 typedef void (APIENTRYP PFNGLWINDOWPOS3SVPROC) (const GLshort *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5493 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5494
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5495 #ifndef GL_VERSION_1_5
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5496 #define GL_VERSION_1_5 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5497 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5498 GLAPI void APIENTRY glGenQueries (GLsizei n, GLuint *ids);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5499 GLAPI void APIENTRY glDeleteQueries (GLsizei n, const GLuint *ids);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5500 GLAPI GLboolean APIENTRY glIsQuery (GLuint id);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5501 GLAPI void APIENTRY glBeginQuery (GLenum target, GLuint id);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5502 GLAPI void APIENTRY glEndQuery (GLenum target);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5503 GLAPI void APIENTRY glGetQueryiv (GLenum target, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5504 GLAPI void APIENTRY glGetQueryObjectiv (GLuint id, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5505 GLAPI void APIENTRY glGetQueryObjectuiv (GLuint id, GLenum pname, GLuint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5506 GLAPI void APIENTRY glBindBuffer (GLenum target, GLuint buffer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5507 GLAPI void APIENTRY glDeleteBuffers (GLsizei n, const GLuint *buffers);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5508 GLAPI void APIENTRY glGenBuffers (GLsizei n, GLuint *buffers);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5509 GLAPI GLboolean APIENTRY glIsBuffer (GLuint buffer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5510 GLAPI void APIENTRY glBufferData (GLenum target, GLsizeiptr size, const GLvoid *data, GLenum usage);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5511 GLAPI void APIENTRY glBufferSubData (GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5512 GLAPI void APIENTRY glGetBufferSubData (GLenum target, GLintptr offset, GLsizeiptr size, GLvoid *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5513 GLAPI GLvoid* APIENTRY glMapBuffer (GLenum target, GLenum access);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5514 GLAPI GLboolean APIENTRY glUnmapBuffer (GLenum target);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5515 GLAPI void APIENTRY glGetBufferParameteriv (GLenum target, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5516 GLAPI void APIENTRY glGetBufferPointerv (GLenum target, GLenum pname, GLvoid* *params);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5517 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5518 typedef void (APIENTRYP PFNGLGENQUERIESPROC) (GLsizei n, GLuint *ids);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5519 typedef void (APIENTRYP PFNGLDELETEQUERIESPROC) (GLsizei n, const GLuint *ids);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5520 typedef GLboolean (APIENTRYP PFNGLISQUERYPROC) (GLuint id);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5521 typedef void (APIENTRYP PFNGLBEGINQUERYPROC) (GLenum target, GLuint id);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5522 typedef void (APIENTRYP PFNGLENDQUERYPROC) (GLenum target);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5523 typedef void (APIENTRYP PFNGLGETQUERYIVPROC) (GLenum target, GLenum pname, GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5524 typedef void (APIENTRYP PFNGLGETQUERYOBJECTIVPROC) (GLuint id, GLenum pname, GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5525 typedef void (APIENTRYP PFNGLGETQUERYOBJECTUIVPROC) (GLuint id, GLenum pname, GLuint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5526 typedef void (APIENTRYP PFNGLBINDBUFFERPROC) (GLenum target, GLuint buffer);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5527 typedef void (APIENTRYP PFNGLDELETEBUFFERSPROC) (GLsizei n, const GLuint *buffers);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5528 typedef void (APIENTRYP PFNGLGENBUFFERSPROC) (GLsizei n, GLuint *buffers);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5529 typedef GLboolean (APIENTRYP PFNGLISBUFFERPROC) (GLuint buffer);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5530 typedef void (APIENTRYP PFNGLBUFFERDATAPROC) (GLenum target, GLsizeiptr size, const GLvoid *data, GLenum usage);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5531 typedef void (APIENTRYP PFNGLBUFFERSUBDATAPROC) (GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid *data);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5532 typedef void (APIENTRYP PFNGLGETBUFFERSUBDATAPROC) (GLenum target, GLintptr offset, GLsizeiptr size, GLvoid *data);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5533 typedef GLvoid* (APIENTRYP PFNGLMAPBUFFERPROC) (GLenum target, GLenum access);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5534 typedef GLboolean (APIENTRYP PFNGLUNMAPBUFFERPROC) (GLenum target);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5535 typedef void (APIENTRYP PFNGLGETBUFFERPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
5536 typedef void (APIENTRYP PFNGLGETBUFFERPOINTERVPROC) (GLenum target, GLenum pname, GLvoid* *params);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
5537 #endif
214
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
5538
1205
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5539 #ifndef GL_VERSION_2_0
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5540 #define GL_VERSION_2_0 1
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5541 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5542 GLAPI void APIENTRY glBlendEquationSeparate (GLenum modeRGB, GLenum modeAlpha);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5543 GLAPI void APIENTRY glDrawBuffers (GLsizei n, const GLenum *bufs);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5544 GLAPI void APIENTRY glStencilOpSeparate (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5545 GLAPI void APIENTRY glStencilFuncSeparate (GLenum face, GLenum func, GLint ref, GLuint mask);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5546 GLAPI void APIENTRY glStencilMaskSeparate (GLenum face, GLuint mask);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5547 GLAPI void APIENTRY glAttachShader (GLuint program, GLuint shader);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5548 GLAPI void APIENTRY glBindAttribLocation (GLuint program, GLuint index, const GLchar *name);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5549 GLAPI void APIENTRY glCompileShader (GLuint shader);
1205
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5550 GLAPI GLuint APIENTRY glCreateProgram (void);
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5551 GLAPI GLuint APIENTRY glCreateShader (GLenum type);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5552 GLAPI void APIENTRY glDeleteProgram (GLuint program);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5553 GLAPI void APIENTRY glDeleteShader (GLuint shader);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5554 GLAPI void APIENTRY glDetachShader (GLuint program, GLuint shader);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5555 GLAPI void APIENTRY glDisableVertexAttribArray (GLuint index);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5556 GLAPI void APIENTRY glEnableVertexAttribArray (GLuint index);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5557 GLAPI void APIENTRY glGetActiveAttrib (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5558 GLAPI void APIENTRY glGetActiveUniform (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5559 GLAPI void APIENTRY glGetAttachedShaders (GLuint program, GLsizei maxCount, GLsizei *count, GLuint *obj);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5560 GLAPI GLint APIENTRY glGetAttribLocation (GLuint program, const GLchar *name);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5561 GLAPI void APIENTRY glGetProgramiv (GLuint program, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5562 GLAPI void APIENTRY glGetProgramInfoLog (GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5563 GLAPI void APIENTRY glGetShaderiv (GLuint shader, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5564 GLAPI void APIENTRY glGetShaderInfoLog (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5565 GLAPI void APIENTRY glGetShaderSource (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5566 GLAPI GLint APIENTRY glGetUniformLocation (GLuint program, const GLchar *name);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5567 GLAPI void APIENTRY glGetUniformfv (GLuint program, GLint location, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5568 GLAPI void APIENTRY glGetUniformiv (GLuint program, GLint location, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5569 GLAPI void APIENTRY glGetVertexAttribdv (GLuint index, GLenum pname, GLdouble *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5570 GLAPI void APIENTRY glGetVertexAttribfv (GLuint index, GLenum pname, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5571 GLAPI void APIENTRY glGetVertexAttribiv (GLuint index, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5572 GLAPI void APIENTRY glGetVertexAttribPointerv (GLuint index, GLenum pname, GLvoid* *pointer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5573 GLAPI GLboolean APIENTRY glIsProgram (GLuint program);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5574 GLAPI GLboolean APIENTRY glIsShader (GLuint shader);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5575 GLAPI void APIENTRY glLinkProgram (GLuint program);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5576 GLAPI void APIENTRY glShaderSource (GLuint shader, GLsizei count, const GLchar* *string, const GLint *length);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5577 GLAPI void APIENTRY glUseProgram (GLuint program);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5578 GLAPI void APIENTRY glUniform1f (GLint location, GLfloat v0);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5579 GLAPI void APIENTRY glUniform2f (GLint location, GLfloat v0, GLfloat v1);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5580 GLAPI void APIENTRY glUniform3f (GLint location, GLfloat v0, GLfloat v1, GLfloat v2);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5581 GLAPI void APIENTRY glUniform4f (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5582 GLAPI void APIENTRY glUniform1i (GLint location, GLint v0);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5583 GLAPI void APIENTRY glUniform2i (GLint location, GLint v0, GLint v1);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5584 GLAPI void APIENTRY glUniform3i (GLint location, GLint v0, GLint v1, GLint v2);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5585 GLAPI void APIENTRY glUniform4i (GLint location, GLint v0, GLint v1, GLint v2, GLint v3);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5586 GLAPI void APIENTRY glUniform1fv (GLint location, GLsizei count, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5587 GLAPI void APIENTRY glUniform2fv (GLint location, GLsizei count, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5588 GLAPI void APIENTRY glUniform3fv (GLint location, GLsizei count, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5589 GLAPI void APIENTRY glUniform4fv (GLint location, GLsizei count, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5590 GLAPI void APIENTRY glUniform1iv (GLint location, GLsizei count, const GLint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5591 GLAPI void APIENTRY glUniform2iv (GLint location, GLsizei count, const GLint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5592 GLAPI void APIENTRY glUniform3iv (GLint location, GLsizei count, const GLint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5593 GLAPI void APIENTRY glUniform4iv (GLint location, GLsizei count, const GLint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5594 GLAPI void APIENTRY glUniformMatrix2fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5595 GLAPI void APIENTRY glUniformMatrix3fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5596 GLAPI void APIENTRY glUniformMatrix4fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5597 GLAPI void APIENTRY glValidateProgram (GLuint program);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5598 GLAPI void APIENTRY glVertexAttrib1d (GLuint index, GLdouble x);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5599 GLAPI void APIENTRY glVertexAttrib1dv (GLuint index, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5600 GLAPI void APIENTRY glVertexAttrib1f (GLuint index, GLfloat x);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5601 GLAPI void APIENTRY glVertexAttrib1fv (GLuint index, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5602 GLAPI void APIENTRY glVertexAttrib1s (GLuint index, GLshort x);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5603 GLAPI void APIENTRY glVertexAttrib1sv (GLuint index, const GLshort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5604 GLAPI void APIENTRY glVertexAttrib2d (GLuint index, GLdouble x, GLdouble y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5605 GLAPI void APIENTRY glVertexAttrib2dv (GLuint index, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5606 GLAPI void APIENTRY glVertexAttrib2f (GLuint index, GLfloat x, GLfloat y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5607 GLAPI void APIENTRY glVertexAttrib2fv (GLuint index, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5608 GLAPI void APIENTRY glVertexAttrib2s (GLuint index, GLshort x, GLshort y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5609 GLAPI void APIENTRY glVertexAttrib2sv (GLuint index, const GLshort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5610 GLAPI void APIENTRY glVertexAttrib3d (GLuint index, GLdouble x, GLdouble y, GLdouble z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5611 GLAPI void APIENTRY glVertexAttrib3dv (GLuint index, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5612 GLAPI void APIENTRY glVertexAttrib3f (GLuint index, GLfloat x, GLfloat y, GLfloat z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5613 GLAPI void APIENTRY glVertexAttrib3fv (GLuint index, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5614 GLAPI void APIENTRY glVertexAttrib3s (GLuint index, GLshort x, GLshort y, GLshort z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5615 GLAPI void APIENTRY glVertexAttrib3sv (GLuint index, const GLshort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5616 GLAPI void APIENTRY glVertexAttrib4Nbv (GLuint index, const GLbyte *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5617 GLAPI void APIENTRY glVertexAttrib4Niv (GLuint index, const GLint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5618 GLAPI void APIENTRY glVertexAttrib4Nsv (GLuint index, const GLshort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5619 GLAPI void APIENTRY glVertexAttrib4Nub (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5620 GLAPI void APIENTRY glVertexAttrib4Nubv (GLuint index, const GLubyte *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5621 GLAPI void APIENTRY glVertexAttrib4Nuiv (GLuint index, const GLuint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5622 GLAPI void APIENTRY glVertexAttrib4Nusv (GLuint index, const GLushort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5623 GLAPI void APIENTRY glVertexAttrib4bv (GLuint index, const GLbyte *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5624 GLAPI void APIENTRY glVertexAttrib4d (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5625 GLAPI void APIENTRY glVertexAttrib4dv (GLuint index, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5626 GLAPI void APIENTRY glVertexAttrib4f (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5627 GLAPI void APIENTRY glVertexAttrib4fv (GLuint index, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5628 GLAPI void APIENTRY glVertexAttrib4iv (GLuint index, const GLint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5629 GLAPI void APIENTRY glVertexAttrib4s (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5630 GLAPI void APIENTRY glVertexAttrib4sv (GLuint index, const GLshort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5631 GLAPI void APIENTRY glVertexAttrib4ubv (GLuint index, const GLubyte *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5632 GLAPI void APIENTRY glVertexAttrib4uiv (GLuint index, const GLuint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5633 GLAPI void APIENTRY glVertexAttrib4usv (GLuint index, const GLushort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5634 GLAPI void APIENTRY glVertexAttribPointer (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid *pointer);
1205
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5635 #endif /* GL_GLEXT_PROTOTYPES */
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5636 typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEPROC) (GLenum modeRGB, GLenum modeAlpha);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5637 typedef void (APIENTRYP PFNGLDRAWBUFFERSPROC) (GLsizei n, const GLenum *bufs);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5638 typedef void (APIENTRYP PFNGLSTENCILOPSEPARATEPROC) (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass);
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5639 typedef void (APIENTRYP PFNGLSTENCILFUNCSEPARATEPROC) (GLenum face, GLenum func, GLint ref, GLuint mask);
1205
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5640 typedef void (APIENTRYP PFNGLSTENCILMASKSEPARATEPROC) (GLenum face, GLuint mask);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5641 typedef void (APIENTRYP PFNGLATTACHSHADERPROC) (GLuint program, GLuint shader);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5642 typedef void (APIENTRYP PFNGLBINDATTRIBLOCATIONPROC) (GLuint program, GLuint index, const GLchar *name);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5643 typedef void (APIENTRYP PFNGLCOMPILESHADERPROC) (GLuint shader);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5644 typedef GLuint (APIENTRYP PFNGLCREATEPROGRAMPROC) (void);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5645 typedef GLuint (APIENTRYP PFNGLCREATESHADERPROC) (GLenum type);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5646 typedef void (APIENTRYP PFNGLDELETEPROGRAMPROC) (GLuint program);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5647 typedef void (APIENTRYP PFNGLDELETESHADERPROC) (GLuint shader);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5648 typedef void (APIENTRYP PFNGLDETACHSHADERPROC) (GLuint program, GLuint shader);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5649 typedef void (APIENTRYP PFNGLDISABLEVERTEXATTRIBARRAYPROC) (GLuint index);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5650 typedef void (APIENTRYP PFNGLENABLEVERTEXATTRIBARRAYPROC) (GLuint index);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5651 typedef void (APIENTRYP PFNGLGETACTIVEATTRIBPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5652 typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5653 typedef void (APIENTRYP PFNGLGETATTACHEDSHADERSPROC) (GLuint program, GLsizei maxCount, GLsizei *count, GLuint *obj);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5654 typedef GLint (APIENTRYP PFNGLGETATTRIBLOCATIONPROC) (GLuint program, const GLchar *name);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5655 typedef void (APIENTRYP PFNGLGETPROGRAMIVPROC) (GLuint program, GLenum pname, GLint *params);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5656 typedef void (APIENTRYP PFNGLGETPROGRAMINFOLOGPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5657 typedef void (APIENTRYP PFNGLGETSHADERIVPROC) (GLuint shader, GLenum pname, GLint *params);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5658 typedef void (APIENTRYP PFNGLGETSHADERINFOLOGPROC) (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5659 typedef void (APIENTRYP PFNGLGETSHADERSOURCEPROC) (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5660 typedef GLint (APIENTRYP PFNGLGETUNIFORMLOCATIONPROC) (GLuint program, const GLchar *name);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5661 typedef void (APIENTRYP PFNGLGETUNIFORMFVPROC) (GLuint program, GLint location, GLfloat *params);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5662 typedef void (APIENTRYP PFNGLGETUNIFORMIVPROC) (GLuint program, GLint location, GLint *params);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5663 typedef void (APIENTRYP PFNGLGETVERTEXATTRIBDVPROC) (GLuint index, GLenum pname, GLdouble *params);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5664 typedef void (APIENTRYP PFNGLGETVERTEXATTRIBFVPROC) (GLuint index, GLenum pname, GLfloat *params);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5665 typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIVPROC) (GLuint index, GLenum pname, GLint *params);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5666 typedef void (APIENTRYP PFNGLGETVERTEXATTRIBPOINTERVPROC) (GLuint index, GLenum pname, GLvoid* *pointer);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5667 typedef GLboolean (APIENTRYP PFNGLISPROGRAMPROC) (GLuint program);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5668 typedef GLboolean (APIENTRYP PFNGLISSHADERPROC) (GLuint shader);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5669 typedef void (APIENTRYP PFNGLLINKPROGRAMPROC) (GLuint program);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5670 typedef void (APIENTRYP PFNGLSHADERSOURCEPROC) (GLuint shader, GLsizei count, const GLchar* *string, const GLint *length);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5671 typedef void (APIENTRYP PFNGLUSEPROGRAMPROC) (GLuint program);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5672 typedef void (APIENTRYP PFNGLUNIFORM1FPROC) (GLint location, GLfloat v0);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5673 typedef void (APIENTRYP PFNGLUNIFORM2FPROC) (GLint location, GLfloat v0, GLfloat v1);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5674 typedef void (APIENTRYP PFNGLUNIFORM3FPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5675 typedef void (APIENTRYP PFNGLUNIFORM4FPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5676 typedef void (APIENTRYP PFNGLUNIFORM1IPROC) (GLint location, GLint v0);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5677 typedef void (APIENTRYP PFNGLUNIFORM2IPROC) (GLint location, GLint v0, GLint v1);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5678 typedef void (APIENTRYP PFNGLUNIFORM3IPROC) (GLint location, GLint v0, GLint v1, GLint v2);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5679 typedef void (APIENTRYP PFNGLUNIFORM4IPROC) (GLint location, GLint v0, GLint v1, GLint v2, GLint v3);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5680 typedef void (APIENTRYP PFNGLUNIFORM1FVPROC) (GLint location, GLsizei count, const GLfloat *value);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5681 typedef void (APIENTRYP PFNGLUNIFORM2FVPROC) (GLint location, GLsizei count, const GLfloat *value);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5682 typedef void (APIENTRYP PFNGLUNIFORM3FVPROC) (GLint location, GLsizei count, const GLfloat *value);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5683 typedef void (APIENTRYP PFNGLUNIFORM4FVPROC) (GLint location, GLsizei count, const GLfloat *value);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5684 typedef void (APIENTRYP PFNGLUNIFORM1IVPROC) (GLint location, GLsizei count, const GLint *value);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5685 typedef void (APIENTRYP PFNGLUNIFORM2IVPROC) (GLint location, GLsizei count, const GLint *value);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5686 typedef void (APIENTRYP PFNGLUNIFORM3IVPROC) (GLint location, GLsizei count, const GLint *value);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5687 typedef void (APIENTRYP PFNGLUNIFORM4IVPROC) (GLint location, GLsizei count, const GLint *value);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5688 typedef void (APIENTRYP PFNGLUNIFORMMATRIX2FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5689 typedef void (APIENTRYP PFNGLUNIFORMMATRIX3FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5690 typedef void (APIENTRYP PFNGLUNIFORMMATRIX4FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5691 typedef void (APIENTRYP PFNGLVALIDATEPROGRAMPROC) (GLuint program);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5692 typedef void (APIENTRYP PFNGLVERTEXATTRIB1DPROC) (GLuint index, GLdouble x);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5693 typedef void (APIENTRYP PFNGLVERTEXATTRIB1DVPROC) (GLuint index, const GLdouble *v);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5694 typedef void (APIENTRYP PFNGLVERTEXATTRIB1FPROC) (GLuint index, GLfloat x);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5695 typedef void (APIENTRYP PFNGLVERTEXATTRIB1FVPROC) (GLuint index, const GLfloat *v);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5696 typedef void (APIENTRYP PFNGLVERTEXATTRIB1SPROC) (GLuint index, GLshort x);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5697 typedef void (APIENTRYP PFNGLVERTEXATTRIB1SVPROC) (GLuint index, const GLshort *v);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5698 typedef void (APIENTRYP PFNGLVERTEXATTRIB2DPROC) (GLuint index, GLdouble x, GLdouble y);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5699 typedef void (APIENTRYP PFNGLVERTEXATTRIB2DVPROC) (GLuint index, const GLdouble *v);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5700 typedef void (APIENTRYP PFNGLVERTEXATTRIB2FPROC) (GLuint index, GLfloat x, GLfloat y);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5701 typedef void (APIENTRYP PFNGLVERTEXATTRIB2FVPROC) (GLuint index, const GLfloat *v);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5702 typedef void (APIENTRYP PFNGLVERTEXATTRIB2SPROC) (GLuint index, GLshort x, GLshort y);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5703 typedef void (APIENTRYP PFNGLVERTEXATTRIB2SVPROC) (GLuint index, const GLshort *v);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5704 typedef void (APIENTRYP PFNGLVERTEXATTRIB3DPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5705 typedef void (APIENTRYP PFNGLVERTEXATTRIB3DVPROC) (GLuint index, const GLdouble *v);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5706 typedef void (APIENTRYP PFNGLVERTEXATTRIB3FPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5707 typedef void (APIENTRYP PFNGLVERTEXATTRIB3FVPROC) (GLuint index, const GLfloat *v);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5708 typedef void (APIENTRYP PFNGLVERTEXATTRIB3SPROC) (GLuint index, GLshort x, GLshort y, GLshort z);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5709 typedef void (APIENTRYP PFNGLVERTEXATTRIB3SVPROC) (GLuint index, const GLshort *v);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5710 typedef void (APIENTRYP PFNGLVERTEXATTRIB4NBVPROC) (GLuint index, const GLbyte *v);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5711 typedef void (APIENTRYP PFNGLVERTEXATTRIB4NIVPROC) (GLuint index, const GLint *v);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5712 typedef void (APIENTRYP PFNGLVERTEXATTRIB4NSVPROC) (GLuint index, const GLshort *v);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5713 typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUBPROC) (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5714 typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUBVPROC) (GLuint index, const GLubyte *v);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5715 typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUIVPROC) (GLuint index, const GLuint *v);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5716 typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUSVPROC) (GLuint index, const GLushort *v);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5717 typedef void (APIENTRYP PFNGLVERTEXATTRIB4BVPROC) (GLuint index, const GLbyte *v);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5718 typedef void (APIENTRYP PFNGLVERTEXATTRIB4DPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5719 typedef void (APIENTRYP PFNGLVERTEXATTRIB4DVPROC) (GLuint index, const GLdouble *v);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5720 typedef void (APIENTRYP PFNGLVERTEXATTRIB4FPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5721 typedef void (APIENTRYP PFNGLVERTEXATTRIB4FVPROC) (GLuint index, const GLfloat *v);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5722 typedef void (APIENTRYP PFNGLVERTEXATTRIB4IVPROC) (GLuint index, const GLint *v);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5723 typedef void (APIENTRYP PFNGLVERTEXATTRIB4SPROC) (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5724 typedef void (APIENTRYP PFNGLVERTEXATTRIB4SVPROC) (GLuint index, const GLshort *v);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5725 typedef void (APIENTRYP PFNGLVERTEXATTRIB4UBVPROC) (GLuint index, const GLubyte *v);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5726 typedef void (APIENTRYP PFNGLVERTEXATTRIB4UIVPROC) (GLuint index, const GLuint *v);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5727 typedef void (APIENTRYP PFNGLVERTEXATTRIB4USVPROC) (GLuint index, const GLushort *v);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5728 typedef void (APIENTRYP PFNGLVERTEXATTRIBPOINTERPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid *pointer);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5729 #endif
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
5730
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5731 #ifndef GL_VERSION_2_1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5732 #define GL_VERSION_2_1 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5733 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5734 GLAPI void APIENTRY glUniformMatrix2x3fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5735 GLAPI void APIENTRY glUniformMatrix3x2fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5736 GLAPI void APIENTRY glUniformMatrix2x4fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5737 GLAPI void APIENTRY glUniformMatrix4x2fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5738 GLAPI void APIENTRY glUniformMatrix3x4fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5739 GLAPI void APIENTRY glUniformMatrix4x3fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5740 #endif /* GL_GLEXT_PROTOTYPES */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5741 typedef void (APIENTRYP PFNGLUNIFORMMATRIX2X3FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5742 typedef void (APIENTRYP PFNGLUNIFORMMATRIX3X2FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5743 typedef void (APIENTRYP PFNGLUNIFORMMATRIX2X4FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5744 typedef void (APIENTRYP PFNGLUNIFORMMATRIX4X2FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5745 typedef void (APIENTRYP PFNGLUNIFORMMATRIX3X4FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5746 typedef void (APIENTRYP PFNGLUNIFORMMATRIX4X3FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5747 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5748
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5749 #ifndef GL_VERSION_3_0
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5750 #define GL_VERSION_3_0 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5751 /* OpenGL 3.0 also reuses entry points from these extensions: */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5752 /* ARB_framebuffer_object */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5753 /* ARB_map_buffer_range */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5754 /* ARB_vertex_array_object */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5755 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5756 GLAPI void APIENTRY glColorMaski (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5757 GLAPI void APIENTRY glGetBooleani_v (GLenum target, GLuint index, GLboolean *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5758 GLAPI void APIENTRY glGetIntegeri_v (GLenum target, GLuint index, GLint *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5759 GLAPI void APIENTRY glEnablei (GLenum target, GLuint index);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5760 GLAPI void APIENTRY glDisablei (GLenum target, GLuint index);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5761 GLAPI GLboolean APIENTRY glIsEnabledi (GLenum target, GLuint index);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5762 GLAPI void APIENTRY glBeginTransformFeedback (GLenum primitiveMode);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5763 GLAPI void APIENTRY glEndTransformFeedback (void);
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5764 GLAPI void APIENTRY glBindBufferRange (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5765 GLAPI void APIENTRY glBindBufferBase (GLenum target, GLuint index, GLuint buffer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5766 GLAPI void APIENTRY glTransformFeedbackVaryings (GLuint program, GLsizei count, const GLchar* *varyings, GLenum bufferMode);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5767 GLAPI void APIENTRY glGetTransformFeedbackVarying (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5768 GLAPI void APIENTRY glClampColor (GLenum target, GLenum clamp);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5769 GLAPI void APIENTRY glBeginConditionalRender (GLuint id, GLenum mode);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5770 GLAPI void APIENTRY glEndConditionalRender (void);
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5771 GLAPI void APIENTRY glVertexAttribIPointer (GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5772 GLAPI void APIENTRY glGetVertexAttribIiv (GLuint index, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5773 GLAPI void APIENTRY glGetVertexAttribIuiv (GLuint index, GLenum pname, GLuint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5774 GLAPI void APIENTRY glVertexAttribI1i (GLuint index, GLint x);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5775 GLAPI void APIENTRY glVertexAttribI2i (GLuint index, GLint x, GLint y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5776 GLAPI void APIENTRY glVertexAttribI3i (GLuint index, GLint x, GLint y, GLint z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5777 GLAPI void APIENTRY glVertexAttribI4i (GLuint index, GLint x, GLint y, GLint z, GLint w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5778 GLAPI void APIENTRY glVertexAttribI1ui (GLuint index, GLuint x);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5779 GLAPI void APIENTRY glVertexAttribI2ui (GLuint index, GLuint x, GLuint y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5780 GLAPI void APIENTRY glVertexAttribI3ui (GLuint index, GLuint x, GLuint y, GLuint z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5781 GLAPI void APIENTRY glVertexAttribI4ui (GLuint index, GLuint x, GLuint y, GLuint z, GLuint w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5782 GLAPI void APIENTRY glVertexAttribI1iv (GLuint index, const GLint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5783 GLAPI void APIENTRY glVertexAttribI2iv (GLuint index, const GLint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5784 GLAPI void APIENTRY glVertexAttribI3iv (GLuint index, const GLint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5785 GLAPI void APIENTRY glVertexAttribI4iv (GLuint index, const GLint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5786 GLAPI void APIENTRY glVertexAttribI1uiv (GLuint index, const GLuint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5787 GLAPI void APIENTRY glVertexAttribI2uiv (GLuint index, const GLuint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5788 GLAPI void APIENTRY glVertexAttribI3uiv (GLuint index, const GLuint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5789 GLAPI void APIENTRY glVertexAttribI4uiv (GLuint index, const GLuint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5790 GLAPI void APIENTRY glVertexAttribI4bv (GLuint index, const GLbyte *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5791 GLAPI void APIENTRY glVertexAttribI4sv (GLuint index, const GLshort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5792 GLAPI void APIENTRY glVertexAttribI4ubv (GLuint index, const GLubyte *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5793 GLAPI void APIENTRY glVertexAttribI4usv (GLuint index, const GLushort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5794 GLAPI void APIENTRY glGetUniformuiv (GLuint program, GLint location, GLuint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5795 GLAPI void APIENTRY glBindFragDataLocation (GLuint program, GLuint color, const GLchar *name);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5796 GLAPI GLint APIENTRY glGetFragDataLocation (GLuint program, const GLchar *name);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5797 GLAPI void APIENTRY glUniform1ui (GLint location, GLuint v0);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5798 GLAPI void APIENTRY glUniform2ui (GLint location, GLuint v0, GLuint v1);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5799 GLAPI void APIENTRY glUniform3ui (GLint location, GLuint v0, GLuint v1, GLuint v2);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5800 GLAPI void APIENTRY glUniform4ui (GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5801 GLAPI void APIENTRY glUniform1uiv (GLint location, GLsizei count, const GLuint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5802 GLAPI void APIENTRY glUniform2uiv (GLint location, GLsizei count, const GLuint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5803 GLAPI void APIENTRY glUniform3uiv (GLint location, GLsizei count, const GLuint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5804 GLAPI void APIENTRY glUniform4uiv (GLint location, GLsizei count, const GLuint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5805 GLAPI void APIENTRY glTexParameterIiv (GLenum target, GLenum pname, const GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5806 GLAPI void APIENTRY glTexParameterIuiv (GLenum target, GLenum pname, const GLuint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5807 GLAPI void APIENTRY glGetTexParameterIiv (GLenum target, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5808 GLAPI void APIENTRY glGetTexParameterIuiv (GLenum target, GLenum pname, GLuint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5809 GLAPI void APIENTRY glClearBufferiv (GLenum buffer, GLint drawbuffer, const GLint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5810 GLAPI void APIENTRY glClearBufferuiv (GLenum buffer, GLint drawbuffer, const GLuint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5811 GLAPI void APIENTRY glClearBufferfv (GLenum buffer, GLint drawbuffer, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5812 GLAPI void APIENTRY glClearBufferfi (GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5813 GLAPI const GLubyte * APIENTRY glGetStringi (GLenum name, GLuint index);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5814 #endif /* GL_GLEXT_PROTOTYPES */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5815 typedef void (APIENTRYP PFNGLCOLORMASKIPROC) (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5816 typedef void (APIENTRYP PFNGLGETBOOLEANI_VPROC) (GLenum target, GLuint index, GLboolean *data);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5817 typedef void (APIENTRYP PFNGLGETINTEGERI_VPROC) (GLenum target, GLuint index, GLint *data);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5818 typedef void (APIENTRYP PFNGLENABLEIPROC) (GLenum target, GLuint index);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5819 typedef void (APIENTRYP PFNGLDISABLEIPROC) (GLenum target, GLuint index);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5820 typedef GLboolean (APIENTRYP PFNGLISENABLEDIPROC) (GLenum target, GLuint index);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5821 typedef void (APIENTRYP PFNGLBEGINTRANSFORMFEEDBACKPROC) (GLenum primitiveMode);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5822 typedef void (APIENTRYP PFNGLENDTRANSFORMFEEDBACKPROC) (void);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5823 typedef void (APIENTRYP PFNGLBINDBUFFERRANGEPROC) (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5824 typedef void (APIENTRYP PFNGLBINDBUFFERBASEPROC) (GLenum target, GLuint index, GLuint buffer);
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5825 typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKVARYINGSPROC) (GLuint program, GLsizei count, const GLchar* *varyings, GLenum bufferMode);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5826 typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKVARYINGPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5827 typedef void (APIENTRYP PFNGLCLAMPCOLORPROC) (GLenum target, GLenum clamp);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5828 typedef void (APIENTRYP PFNGLBEGINCONDITIONALRENDERPROC) (GLuint id, GLenum mode);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5829 typedef void (APIENTRYP PFNGLENDCONDITIONALRENDERPROC) (void);
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5830 typedef void (APIENTRYP PFNGLVERTEXATTRIBIPOINTERPROC) (GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5831 typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIIVPROC) (GLuint index, GLenum pname, GLint *params);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5832 typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIUIVPROC) (GLuint index, GLenum pname, GLuint *params);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5833 typedef void (APIENTRYP PFNGLVERTEXATTRIBI1IPROC) (GLuint index, GLint x);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5834 typedef void (APIENTRYP PFNGLVERTEXATTRIBI2IPROC) (GLuint index, GLint x, GLint y);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5835 typedef void (APIENTRYP PFNGLVERTEXATTRIBI3IPROC) (GLuint index, GLint x, GLint y, GLint z);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5836 typedef void (APIENTRYP PFNGLVERTEXATTRIBI4IPROC) (GLuint index, GLint x, GLint y, GLint z, GLint w);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5837 typedef void (APIENTRYP PFNGLVERTEXATTRIBI1UIPROC) (GLuint index, GLuint x);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5838 typedef void (APIENTRYP PFNGLVERTEXATTRIBI2UIPROC) (GLuint index, GLuint x, GLuint y);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5839 typedef void (APIENTRYP PFNGLVERTEXATTRIBI3UIPROC) (GLuint index, GLuint x, GLuint y, GLuint z);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5840 typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UIPROC) (GLuint index, GLuint x, GLuint y, GLuint z, GLuint w);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5841 typedef void (APIENTRYP PFNGLVERTEXATTRIBI1IVPROC) (GLuint index, const GLint *v);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5842 typedef void (APIENTRYP PFNGLVERTEXATTRIBI2IVPROC) (GLuint index, const GLint *v);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5843 typedef void (APIENTRYP PFNGLVERTEXATTRIBI3IVPROC) (GLuint index, const GLint *v);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5844 typedef void (APIENTRYP PFNGLVERTEXATTRIBI4IVPROC) (GLuint index, const GLint *v);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5845 typedef void (APIENTRYP PFNGLVERTEXATTRIBI1UIVPROC) (GLuint index, const GLuint *v);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5846 typedef void (APIENTRYP PFNGLVERTEXATTRIBI2UIVPROC) (GLuint index, const GLuint *v);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5847 typedef void (APIENTRYP PFNGLVERTEXATTRIBI3UIVPROC) (GLuint index, const GLuint *v);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5848 typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UIVPROC) (GLuint index, const GLuint *v);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5849 typedef void (APIENTRYP PFNGLVERTEXATTRIBI4BVPROC) (GLuint index, const GLbyte *v);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5850 typedef void (APIENTRYP PFNGLVERTEXATTRIBI4SVPROC) (GLuint index, const GLshort *v);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5851 typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UBVPROC) (GLuint index, const GLubyte *v);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5852 typedef void (APIENTRYP PFNGLVERTEXATTRIBI4USVPROC) (GLuint index, const GLushort *v);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5853 typedef void (APIENTRYP PFNGLGETUNIFORMUIVPROC) (GLuint program, GLint location, GLuint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5854 typedef void (APIENTRYP PFNGLBINDFRAGDATALOCATIONPROC) (GLuint program, GLuint color, const GLchar *name);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5855 typedef GLint (APIENTRYP PFNGLGETFRAGDATALOCATIONPROC) (GLuint program, const GLchar *name);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5856 typedef void (APIENTRYP PFNGLUNIFORM1UIPROC) (GLint location, GLuint v0);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5857 typedef void (APIENTRYP PFNGLUNIFORM2UIPROC) (GLint location, GLuint v0, GLuint v1);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5858 typedef void (APIENTRYP PFNGLUNIFORM3UIPROC) (GLint location, GLuint v0, GLuint v1, GLuint v2);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5859 typedef void (APIENTRYP PFNGLUNIFORM4UIPROC) (GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5860 typedef void (APIENTRYP PFNGLUNIFORM1UIVPROC) (GLint location, GLsizei count, const GLuint *value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5861 typedef void (APIENTRYP PFNGLUNIFORM2UIVPROC) (GLint location, GLsizei count, const GLuint *value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5862 typedef void (APIENTRYP PFNGLUNIFORM3UIVPROC) (GLint location, GLsizei count, const GLuint *value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5863 typedef void (APIENTRYP PFNGLUNIFORM4UIVPROC) (GLint location, GLsizei count, const GLuint *value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5864 typedef void (APIENTRYP PFNGLTEXPARAMETERIIVPROC) (GLenum target, GLenum pname, const GLint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5865 typedef void (APIENTRYP PFNGLTEXPARAMETERIUIVPROC) (GLenum target, GLenum pname, const GLuint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5866 typedef void (APIENTRYP PFNGLGETTEXPARAMETERIIVPROC) (GLenum target, GLenum pname, GLint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5867 typedef void (APIENTRYP PFNGLGETTEXPARAMETERIUIVPROC) (GLenum target, GLenum pname, GLuint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5868 typedef void (APIENTRYP PFNGLCLEARBUFFERIVPROC) (GLenum buffer, GLint drawbuffer, const GLint *value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5869 typedef void (APIENTRYP PFNGLCLEARBUFFERUIVPROC) (GLenum buffer, GLint drawbuffer, const GLuint *value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5870 typedef void (APIENTRYP PFNGLCLEARBUFFERFVPROC) (GLenum buffer, GLint drawbuffer, const GLfloat *value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5871 typedef void (APIENTRYP PFNGLCLEARBUFFERFIPROC) (GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5872 typedef const GLubyte * (APIENTRYP PFNGLGETSTRINGIPROC) (GLenum name, GLuint index);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5873 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
5874
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5875 #ifndef GL_VERSION_3_1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5876 #define GL_VERSION_3_1 1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5877 /* OpenGL 3.1 also reuses entry points from these extensions: */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5878 /* ARB_copy_buffer */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5879 /* ARB_uniform_buffer_object */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5880 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5881 GLAPI void APIENTRY glDrawArraysInstanced (GLenum mode, GLint first, GLsizei count, GLsizei primcount);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5882 GLAPI void APIENTRY glDrawElementsInstanced (GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei primcount);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5883 GLAPI void APIENTRY glTexBuffer (GLenum target, GLenum internalformat, GLuint buffer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5884 GLAPI void APIENTRY glPrimitiveRestartIndex (GLuint index);
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5885 #endif /* GL_GLEXT_PROTOTYPES */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5886 typedef void (APIENTRYP PFNGLDRAWARRAYSINSTANCEDPROC) (GLenum mode, GLint first, GLsizei count, GLsizei primcount);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5887 typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDPROC) (GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei primcount);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5888 typedef void (APIENTRYP PFNGLTEXBUFFERPROC) (GLenum target, GLenum internalformat, GLuint buffer);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5889 typedef void (APIENTRYP PFNGLPRIMITIVERESTARTINDEXPROC) (GLuint index);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5890 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5891
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5892 #ifndef GL_VERSION_3_2
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5893 #define GL_VERSION_3_2 1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5894 /* OpenGL 3.2 also reuses entry points from these extensions: */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5895 /* ARB_draw_elements_base_vertex */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5896 /* ARB_provoking_vertex */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5897 /* ARB_sync */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5898 /* ARB_texture_multisample */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5899 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5900 GLAPI void APIENTRY glGetInteger64i_v (GLenum target, GLuint index, GLint64 *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5901 GLAPI void APIENTRY glGetBufferParameteri64v (GLenum target, GLenum pname, GLint64 *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5902 GLAPI void APIENTRY glFramebufferTexture (GLenum target, GLenum attachment, GLuint texture, GLint level);
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5903 #endif /* GL_GLEXT_PROTOTYPES */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5904 typedef void (APIENTRYP PFNGLGETINTEGER64I_VPROC) (GLenum target, GLuint index, GLint64 *data);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5905 typedef void (APIENTRYP PFNGLGETBUFFERPARAMETERI64VPROC) (GLenum target, GLenum pname, GLint64 *params);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5906 typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level);
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5907 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5908
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5909 #ifndef GL_VERSION_3_3
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5910 #define GL_VERSION_3_3 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5911 /* OpenGL 3.3 also reuses entry points from these extensions: */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5912 /* ARB_blend_func_extended */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5913 /* ARB_sampler_objects */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5914 /* ARB_explicit_attrib_location, but it has none */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5915 /* ARB_occlusion_query2 (no entry points) */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5916 /* ARB_shader_bit_encoding (no entry points) */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5917 /* ARB_texture_rgb10_a2ui (no entry points) */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5918 /* ARB_texture_swizzle (no entry points) */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5919 /* ARB_timer_query */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5920 /* ARB_vertex_type_2_10_10_10_rev */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5921 #ifdef GL_GLEXT_PROTOTYPES
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5922 GLAPI void APIENTRY glVertexAttribDivisor (GLuint index, GLuint divisor);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5923 #endif /* GL_GLEXT_PROTOTYPES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5924 typedef void (APIENTRYP PFNGLVERTEXATTRIBDIVISORPROC) (GLuint index, GLuint divisor);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5925 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5926
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5927 #ifndef GL_VERSION_4_0
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5928 #define GL_VERSION_4_0 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5929 /* OpenGL 4.0 also reuses entry points from these extensions: */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5930 /* ARB_texture_query_lod (no entry points) */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5931 /* ARB_draw_indirect */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5932 /* ARB_gpu_shader5 (no entry points) */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5933 /* ARB_gpu_shader_fp64 */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5934 /* ARB_shader_subroutine */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5935 /* ARB_tessellation_shader */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5936 /* ARB_texture_buffer_object_rgb32 (no entry points) */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5937 /* ARB_texture_cube_map_array (no entry points) */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5938 /* ARB_texture_gather (no entry points) */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5939 /* ARB_transform_feedback2 */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5940 /* ARB_transform_feedback3 */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5941 #ifdef GL_GLEXT_PROTOTYPES
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5942 GLAPI void APIENTRY glMinSampleShading (GLclampf value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5943 GLAPI void APIENTRY glBlendEquationi (GLuint buf, GLenum mode);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5944 GLAPI void APIENTRY glBlendEquationSeparatei (GLuint buf, GLenum modeRGB, GLenum modeAlpha);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5945 GLAPI void APIENTRY glBlendFunci (GLuint buf, GLenum src, GLenum dst);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5946 GLAPI void APIENTRY glBlendFuncSeparatei (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5947 #endif /* GL_GLEXT_PROTOTYPES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5948 typedef void (APIENTRYP PFNGLMINSAMPLESHADINGPROC) (GLclampf value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5949 typedef void (APIENTRYP PFNGLBLENDEQUATIONIPROC) (GLuint buf, GLenum mode);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5950 typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEIPROC) (GLuint buf, GLenum modeRGB, GLenum modeAlpha);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5951 typedef void (APIENTRYP PFNGLBLENDFUNCIPROC) (GLuint buf, GLenum src, GLenum dst);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5952 typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEIPROC) (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5953 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5954
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5955 #ifndef GL_VERSION_4_1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5956 #define GL_VERSION_4_1 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5957 /* OpenGL 4.1 also reuses entry points from these extensions: */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5958 /* ARB_ES2_compatibility */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5959 /* ARB_get_program_binary */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5960 /* ARB_separate_shader_objects */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5961 /* ARB_shader_precision (no entry points) */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5962 /* ARB_vertex_attrib_64bit */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5963 /* ARB_viewport_array */
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5964 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
5965
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
5966 #ifndef GL_ARB_multitexture
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
5967 #define GL_ARB_multitexture 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
5968 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5969 GLAPI void APIENTRY glActiveTextureARB (GLenum texture);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5970 GLAPI void APIENTRY glClientActiveTextureARB (GLenum texture);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5971 GLAPI void APIENTRY glMultiTexCoord1dARB (GLenum target, GLdouble s);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5972 GLAPI void APIENTRY glMultiTexCoord1dvARB (GLenum target, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5973 GLAPI void APIENTRY glMultiTexCoord1fARB (GLenum target, GLfloat s);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5974 GLAPI void APIENTRY glMultiTexCoord1fvARB (GLenum target, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5975 GLAPI void APIENTRY glMultiTexCoord1iARB (GLenum target, GLint s);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5976 GLAPI void APIENTRY glMultiTexCoord1ivARB (GLenum target, const GLint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5977 GLAPI void APIENTRY glMultiTexCoord1sARB (GLenum target, GLshort s);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5978 GLAPI void APIENTRY glMultiTexCoord1svARB (GLenum target, const GLshort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5979 GLAPI void APIENTRY glMultiTexCoord2dARB (GLenum target, GLdouble s, GLdouble t);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5980 GLAPI void APIENTRY glMultiTexCoord2dvARB (GLenum target, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5981 GLAPI void APIENTRY glMultiTexCoord2fARB (GLenum target, GLfloat s, GLfloat t);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5982 GLAPI void APIENTRY glMultiTexCoord2fvARB (GLenum target, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5983 GLAPI void APIENTRY glMultiTexCoord2iARB (GLenum target, GLint s, GLint t);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5984 GLAPI void APIENTRY glMultiTexCoord2ivARB (GLenum target, const GLint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5985 GLAPI void APIENTRY glMultiTexCoord2sARB (GLenum target, GLshort s, GLshort t);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5986 GLAPI void APIENTRY glMultiTexCoord2svARB (GLenum target, const GLshort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5987 GLAPI void APIENTRY glMultiTexCoord3dARB (GLenum target, GLdouble s, GLdouble t, GLdouble r);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5988 GLAPI void APIENTRY glMultiTexCoord3dvARB (GLenum target, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5989 GLAPI void APIENTRY glMultiTexCoord3fARB (GLenum target, GLfloat s, GLfloat t, GLfloat r);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5990 GLAPI void APIENTRY glMultiTexCoord3fvARB (GLenum target, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5991 GLAPI void APIENTRY glMultiTexCoord3iARB (GLenum target, GLint s, GLint t, GLint r);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5992 GLAPI void APIENTRY glMultiTexCoord3ivARB (GLenum target, const GLint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5993 GLAPI void APIENTRY glMultiTexCoord3sARB (GLenum target, GLshort s, GLshort t, GLshort r);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5994 GLAPI void APIENTRY glMultiTexCoord3svARB (GLenum target, const GLshort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5995 GLAPI void APIENTRY glMultiTexCoord4dARB (GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5996 GLAPI void APIENTRY glMultiTexCoord4dvARB (GLenum target, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5997 GLAPI void APIENTRY glMultiTexCoord4fARB (GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5998 GLAPI void APIENTRY glMultiTexCoord4fvARB (GLenum target, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
5999 GLAPI void APIENTRY glMultiTexCoord4iARB (GLenum target, GLint s, GLint t, GLint r, GLint q);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6000 GLAPI void APIENTRY glMultiTexCoord4ivARB (GLenum target, const GLint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6001 GLAPI void APIENTRY glMultiTexCoord4sARB (GLenum target, GLshort s, GLshort t, GLshort r, GLshort q);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6002 GLAPI void APIENTRY glMultiTexCoord4svARB (GLenum target, const GLshort *v);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
6003 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6004 typedef void (APIENTRYP PFNGLACTIVETEXTUREARBPROC) (GLenum texture);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6005 typedef void (APIENTRYP PFNGLCLIENTACTIVETEXTUREARBPROC) (GLenum texture);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6006 typedef void (APIENTRYP PFNGLMULTITEXCOORD1DARBPROC) (GLenum target, GLdouble s);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6007 typedef void (APIENTRYP PFNGLMULTITEXCOORD1DVARBPROC) (GLenum target, const GLdouble *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6008 typedef void (APIENTRYP PFNGLMULTITEXCOORD1FARBPROC) (GLenum target, GLfloat s);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6009 typedef void (APIENTRYP PFNGLMULTITEXCOORD1FVARBPROC) (GLenum target, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6010 typedef void (APIENTRYP PFNGLMULTITEXCOORD1IARBPROC) (GLenum target, GLint s);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6011 typedef void (APIENTRYP PFNGLMULTITEXCOORD1IVARBPROC) (GLenum target, const GLint *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6012 typedef void (APIENTRYP PFNGLMULTITEXCOORD1SARBPROC) (GLenum target, GLshort s);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6013 typedef void (APIENTRYP PFNGLMULTITEXCOORD1SVARBPROC) (GLenum target, const GLshort *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6014 typedef void (APIENTRYP PFNGLMULTITEXCOORD2DARBPROC) (GLenum target, GLdouble s, GLdouble t);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6015 typedef void (APIENTRYP PFNGLMULTITEXCOORD2DVARBPROC) (GLenum target, const GLdouble *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6016 typedef void (APIENTRYP PFNGLMULTITEXCOORD2FARBPROC) (GLenum target, GLfloat s, GLfloat t);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6017 typedef void (APIENTRYP PFNGLMULTITEXCOORD2FVARBPROC) (GLenum target, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6018 typedef void (APIENTRYP PFNGLMULTITEXCOORD2IARBPROC) (GLenum target, GLint s, GLint t);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6019 typedef void (APIENTRYP PFNGLMULTITEXCOORD2IVARBPROC) (GLenum target, const GLint *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6020 typedef void (APIENTRYP PFNGLMULTITEXCOORD2SARBPROC) (GLenum target, GLshort s, GLshort t);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6021 typedef void (APIENTRYP PFNGLMULTITEXCOORD2SVARBPROC) (GLenum target, const GLshort *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6022 typedef void (APIENTRYP PFNGLMULTITEXCOORD3DARBPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6023 typedef void (APIENTRYP PFNGLMULTITEXCOORD3DVARBPROC) (GLenum target, const GLdouble *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6024 typedef void (APIENTRYP PFNGLMULTITEXCOORD3FARBPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6025 typedef void (APIENTRYP PFNGLMULTITEXCOORD3FVARBPROC) (GLenum target, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6026 typedef void (APIENTRYP PFNGLMULTITEXCOORD3IARBPROC) (GLenum target, GLint s, GLint t, GLint r);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6027 typedef void (APIENTRYP PFNGLMULTITEXCOORD3IVARBPROC) (GLenum target, const GLint *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6028 typedef void (APIENTRYP PFNGLMULTITEXCOORD3SARBPROC) (GLenum target, GLshort s, GLshort t, GLshort r);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6029 typedef void (APIENTRYP PFNGLMULTITEXCOORD3SVARBPROC) (GLenum target, const GLshort *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6030 typedef void (APIENTRYP PFNGLMULTITEXCOORD4DARBPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6031 typedef void (APIENTRYP PFNGLMULTITEXCOORD4DVARBPROC) (GLenum target, const GLdouble *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6032 typedef void (APIENTRYP PFNGLMULTITEXCOORD4FARBPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6033 typedef void (APIENTRYP PFNGLMULTITEXCOORD4FVARBPROC) (GLenum target, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6034 typedef void (APIENTRYP PFNGLMULTITEXCOORD4IARBPROC) (GLenum target, GLint s, GLint t, GLint r, GLint q);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6035 typedef void (APIENTRYP PFNGLMULTITEXCOORD4IVARBPROC) (GLenum target, const GLint *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6036 typedef void (APIENTRYP PFNGLMULTITEXCOORD4SARBPROC) (GLenum target, GLshort s, GLshort t, GLshort r, GLshort q);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6037 typedef void (APIENTRYP PFNGLMULTITEXCOORD4SVARBPROC) (GLenum target, const GLshort *v);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
6038 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
6039
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
6040 #ifndef GL_ARB_transpose_matrix
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
6041 #define GL_ARB_transpose_matrix 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
6042 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6043 GLAPI void APIENTRY glLoadTransposeMatrixfARB (const GLfloat *m);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6044 GLAPI void APIENTRY glLoadTransposeMatrixdARB (const GLdouble *m);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6045 GLAPI void APIENTRY glMultTransposeMatrixfARB (const GLfloat *m);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6046 GLAPI void APIENTRY glMultTransposeMatrixdARB (const GLdouble *m);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
6047 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6048 typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXFARBPROC) (const GLfloat *m);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6049 typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXDARBPROC) (const GLdouble *m);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6050 typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXFARBPROC) (const GLfloat *m);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6051 typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXDARBPROC) (const GLdouble *m);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
6052 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
6053
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
6054 #ifndef GL_ARB_multisample
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
6055 #define GL_ARB_multisample 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
6056 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6057 GLAPI void APIENTRY glSampleCoverageARB (GLclampf value, GLboolean invert);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
6058 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6059 typedef void (APIENTRYP PFNGLSAMPLECOVERAGEARBPROC) (GLclampf value, GLboolean invert);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
6060 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
6061
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
6062 #ifndef GL_ARB_texture_env_add
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
6063 #define GL_ARB_texture_env_add 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
6064 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
6065
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
6066 #ifndef GL_ARB_texture_cube_map
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
6067 #define GL_ARB_texture_cube_map 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
6068 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
6069
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
6070 #ifndef GL_ARB_texture_compression
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
6071 #define GL_ARB_texture_compression 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
6072 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6073 GLAPI void APIENTRY glCompressedTexImage3DARB (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6074 GLAPI void APIENTRY glCompressedTexImage2DARB (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6075 GLAPI void APIENTRY glCompressedTexImage1DARB (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6076 GLAPI void APIENTRY glCompressedTexSubImage3DARB (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6077 GLAPI void APIENTRY glCompressedTexSubImage2DARB (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6078 GLAPI void APIENTRY glCompressedTexSubImage1DARB (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6079 GLAPI void APIENTRY glGetCompressedTexImageARB (GLenum target, GLint level, GLvoid *img);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6080 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6081 typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DARBPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6082 typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE2DARBPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6083 typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE1DARBPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6084 typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DARBPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6085 typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE2DARBPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6086 typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE1DARBPROC) (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6087 typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXIMAGEARBPROC) (GLenum target, GLint level, GLvoid *img);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6088 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6089
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6090 #ifndef GL_ARB_texture_border_clamp
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6091 #define GL_ARB_texture_border_clamp 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6092 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6093
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6094 #ifndef GL_ARB_point_parameters
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6095 #define GL_ARB_point_parameters 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6096 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6097 GLAPI void APIENTRY glPointParameterfARB (GLenum pname, GLfloat param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6098 GLAPI void APIENTRY glPointParameterfvARB (GLenum pname, const GLfloat *params);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6099 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6100 typedef void (APIENTRYP PFNGLPOINTPARAMETERFARBPROC) (GLenum pname, GLfloat param);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6101 typedef void (APIENTRYP PFNGLPOINTPARAMETERFVARBPROC) (GLenum pname, const GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6102 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6103
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6104 #ifndef GL_ARB_vertex_blend
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6105 #define GL_ARB_vertex_blend 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6106 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6107 GLAPI void APIENTRY glWeightbvARB (GLint size, const GLbyte *weights);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6108 GLAPI void APIENTRY glWeightsvARB (GLint size, const GLshort *weights);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6109 GLAPI void APIENTRY glWeightivARB (GLint size, const GLint *weights);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6110 GLAPI void APIENTRY glWeightfvARB (GLint size, const GLfloat *weights);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6111 GLAPI void APIENTRY glWeightdvARB (GLint size, const GLdouble *weights);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6112 GLAPI void APIENTRY glWeightubvARB (GLint size, const GLubyte *weights);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6113 GLAPI void APIENTRY glWeightusvARB (GLint size, const GLushort *weights);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6114 GLAPI void APIENTRY glWeightuivARB (GLint size, const GLuint *weights);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6115 GLAPI void APIENTRY glWeightPointerARB (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6116 GLAPI void APIENTRY glVertexBlendARB (GLint count);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6117 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6118 typedef void (APIENTRYP PFNGLWEIGHTBVARBPROC) (GLint size, const GLbyte *weights);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6119 typedef void (APIENTRYP PFNGLWEIGHTSVARBPROC) (GLint size, const GLshort *weights);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6120 typedef void (APIENTRYP PFNGLWEIGHTIVARBPROC) (GLint size, const GLint *weights);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6121 typedef void (APIENTRYP PFNGLWEIGHTFVARBPROC) (GLint size, const GLfloat *weights);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6122 typedef void (APIENTRYP PFNGLWEIGHTDVARBPROC) (GLint size, const GLdouble *weights);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6123 typedef void (APIENTRYP PFNGLWEIGHTUBVARBPROC) (GLint size, const GLubyte *weights);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6124 typedef void (APIENTRYP PFNGLWEIGHTUSVARBPROC) (GLint size, const GLushort *weights);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6125 typedef void (APIENTRYP PFNGLWEIGHTUIVARBPROC) (GLint size, const GLuint *weights);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6126 typedef void (APIENTRYP PFNGLWEIGHTPOINTERARBPROC) (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6127 typedef void (APIENTRYP PFNGLVERTEXBLENDARBPROC) (GLint count);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6128 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6129
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6130 #ifndef GL_ARB_matrix_palette
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6131 #define GL_ARB_matrix_palette 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6132 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6133 GLAPI void APIENTRY glCurrentPaletteMatrixARB (GLint index);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6134 GLAPI void APIENTRY glMatrixIndexubvARB (GLint size, const GLubyte *indices);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6135 GLAPI void APIENTRY glMatrixIndexusvARB (GLint size, const GLushort *indices);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6136 GLAPI void APIENTRY glMatrixIndexuivARB (GLint size, const GLuint *indices);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6137 GLAPI void APIENTRY glMatrixIndexPointerARB (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6138 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6139 typedef void (APIENTRYP PFNGLCURRENTPALETTEMATRIXARBPROC) (GLint index);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6140 typedef void (APIENTRYP PFNGLMATRIXINDEXUBVARBPROC) (GLint size, const GLubyte *indices);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6141 typedef void (APIENTRYP PFNGLMATRIXINDEXUSVARBPROC) (GLint size, const GLushort *indices);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6142 typedef void (APIENTRYP PFNGLMATRIXINDEXUIVARBPROC) (GLint size, const GLuint *indices);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6143 typedef void (APIENTRYP PFNGLMATRIXINDEXPOINTERARBPROC) (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6144 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6145
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6146 #ifndef GL_ARB_texture_env_combine
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6147 #define GL_ARB_texture_env_combine 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6148 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6149
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6150 #ifndef GL_ARB_texture_env_crossbar
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6151 #define GL_ARB_texture_env_crossbar 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6152 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6153
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6154 #ifndef GL_ARB_texture_env_dot3
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6155 #define GL_ARB_texture_env_dot3 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6156 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6157
1205
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
6158 #ifndef GL_ARB_texture_mirrored_repeat
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
6159 #define GL_ARB_texture_mirrored_repeat 1
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6160 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6161
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6162 #ifndef GL_ARB_depth_texture
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6163 #define GL_ARB_depth_texture 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6164 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6165
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6166 #ifndef GL_ARB_shadow
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6167 #define GL_ARB_shadow 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6168 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6169
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6170 #ifndef GL_ARB_shadow_ambient
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6171 #define GL_ARB_shadow_ambient 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6172 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6173
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6174 #ifndef GL_ARB_window_pos
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6175 #define GL_ARB_window_pos 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6176 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6177 GLAPI void APIENTRY glWindowPos2dARB (GLdouble x, GLdouble y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6178 GLAPI void APIENTRY glWindowPos2dvARB (const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6179 GLAPI void APIENTRY glWindowPos2fARB (GLfloat x, GLfloat y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6180 GLAPI void APIENTRY glWindowPos2fvARB (const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6181 GLAPI void APIENTRY glWindowPos2iARB (GLint x, GLint y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6182 GLAPI void APIENTRY glWindowPos2ivARB (const GLint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6183 GLAPI void APIENTRY glWindowPos2sARB (GLshort x, GLshort y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6184 GLAPI void APIENTRY glWindowPos2svARB (const GLshort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6185 GLAPI void APIENTRY glWindowPos3dARB (GLdouble x, GLdouble y, GLdouble z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6186 GLAPI void APIENTRY glWindowPos3dvARB (const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6187 GLAPI void APIENTRY glWindowPos3fARB (GLfloat x, GLfloat y, GLfloat z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6188 GLAPI void APIENTRY glWindowPos3fvARB (const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6189 GLAPI void APIENTRY glWindowPos3iARB (GLint x, GLint y, GLint z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6190 GLAPI void APIENTRY glWindowPos3ivARB (const GLint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6191 GLAPI void APIENTRY glWindowPos3sARB (GLshort x, GLshort y, GLshort z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6192 GLAPI void APIENTRY glWindowPos3svARB (const GLshort *v);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6193 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6194 typedef void (APIENTRYP PFNGLWINDOWPOS2DARBPROC) (GLdouble x, GLdouble y);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6195 typedef void (APIENTRYP PFNGLWINDOWPOS2DVARBPROC) (const GLdouble *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6196 typedef void (APIENTRYP PFNGLWINDOWPOS2FARBPROC) (GLfloat x, GLfloat y);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6197 typedef void (APIENTRYP PFNGLWINDOWPOS2FVARBPROC) (const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6198 typedef void (APIENTRYP PFNGLWINDOWPOS2IARBPROC) (GLint x, GLint y);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6199 typedef void (APIENTRYP PFNGLWINDOWPOS2IVARBPROC) (const GLint *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6200 typedef void (APIENTRYP PFNGLWINDOWPOS2SARBPROC) (GLshort x, GLshort y);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6201 typedef void (APIENTRYP PFNGLWINDOWPOS2SVARBPROC) (const GLshort *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6202 typedef void (APIENTRYP PFNGLWINDOWPOS3DARBPROC) (GLdouble x, GLdouble y, GLdouble z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6203 typedef void (APIENTRYP PFNGLWINDOWPOS3DVARBPROC) (const GLdouble *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6204 typedef void (APIENTRYP PFNGLWINDOWPOS3FARBPROC) (GLfloat x, GLfloat y, GLfloat z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6205 typedef void (APIENTRYP PFNGLWINDOWPOS3FVARBPROC) (const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6206 typedef void (APIENTRYP PFNGLWINDOWPOS3IARBPROC) (GLint x, GLint y, GLint z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6207 typedef void (APIENTRYP PFNGLWINDOWPOS3IVARBPROC) (const GLint *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6208 typedef void (APIENTRYP PFNGLWINDOWPOS3SARBPROC) (GLshort x, GLshort y, GLshort z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6209 typedef void (APIENTRYP PFNGLWINDOWPOS3SVARBPROC) (const GLshort *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6210 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6211
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6212 #ifndef GL_ARB_vertex_program
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6213 #define GL_ARB_vertex_program 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6214 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6215 GLAPI void APIENTRY glVertexAttrib1dARB (GLuint index, GLdouble x);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6216 GLAPI void APIENTRY glVertexAttrib1dvARB (GLuint index, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6217 GLAPI void APIENTRY glVertexAttrib1fARB (GLuint index, GLfloat x);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6218 GLAPI void APIENTRY glVertexAttrib1fvARB (GLuint index, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6219 GLAPI void APIENTRY glVertexAttrib1sARB (GLuint index, GLshort x);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6220 GLAPI void APIENTRY glVertexAttrib1svARB (GLuint index, const GLshort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6221 GLAPI void APIENTRY glVertexAttrib2dARB (GLuint index, GLdouble x, GLdouble y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6222 GLAPI void APIENTRY glVertexAttrib2dvARB (GLuint index, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6223 GLAPI void APIENTRY glVertexAttrib2fARB (GLuint index, GLfloat x, GLfloat y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6224 GLAPI void APIENTRY glVertexAttrib2fvARB (GLuint index, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6225 GLAPI void APIENTRY glVertexAttrib2sARB (GLuint index, GLshort x, GLshort y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6226 GLAPI void APIENTRY glVertexAttrib2svARB (GLuint index, const GLshort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6227 GLAPI void APIENTRY glVertexAttrib3dARB (GLuint index, GLdouble x, GLdouble y, GLdouble z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6228 GLAPI void APIENTRY glVertexAttrib3dvARB (GLuint index, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6229 GLAPI void APIENTRY glVertexAttrib3fARB (GLuint index, GLfloat x, GLfloat y, GLfloat z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6230 GLAPI void APIENTRY glVertexAttrib3fvARB (GLuint index, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6231 GLAPI void APIENTRY glVertexAttrib3sARB (GLuint index, GLshort x, GLshort y, GLshort z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6232 GLAPI void APIENTRY glVertexAttrib3svARB (GLuint index, const GLshort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6233 GLAPI void APIENTRY glVertexAttrib4NbvARB (GLuint index, const GLbyte *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6234 GLAPI void APIENTRY glVertexAttrib4NivARB (GLuint index, const GLint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6235 GLAPI void APIENTRY glVertexAttrib4NsvARB (GLuint index, const GLshort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6236 GLAPI void APIENTRY glVertexAttrib4NubARB (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6237 GLAPI void APIENTRY glVertexAttrib4NubvARB (GLuint index, const GLubyte *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6238 GLAPI void APIENTRY glVertexAttrib4NuivARB (GLuint index, const GLuint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6239 GLAPI void APIENTRY glVertexAttrib4NusvARB (GLuint index, const GLushort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6240 GLAPI void APIENTRY glVertexAttrib4bvARB (GLuint index, const GLbyte *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6241 GLAPI void APIENTRY glVertexAttrib4dARB (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6242 GLAPI void APIENTRY glVertexAttrib4dvARB (GLuint index, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6243 GLAPI void APIENTRY glVertexAttrib4fARB (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6244 GLAPI void APIENTRY glVertexAttrib4fvARB (GLuint index, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6245 GLAPI void APIENTRY glVertexAttrib4ivARB (GLuint index, const GLint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6246 GLAPI void APIENTRY glVertexAttrib4sARB (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6247 GLAPI void APIENTRY glVertexAttrib4svARB (GLuint index, const GLshort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6248 GLAPI void APIENTRY glVertexAttrib4ubvARB (GLuint index, const GLubyte *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6249 GLAPI void APIENTRY glVertexAttrib4uivARB (GLuint index, const GLuint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6250 GLAPI void APIENTRY glVertexAttrib4usvARB (GLuint index, const GLushort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6251 GLAPI void APIENTRY glVertexAttribPointerARB (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid *pointer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6252 GLAPI void APIENTRY glEnableVertexAttribArrayARB (GLuint index);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6253 GLAPI void APIENTRY glDisableVertexAttribArrayARB (GLuint index);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6254 GLAPI void APIENTRY glProgramStringARB (GLenum target, GLenum format, GLsizei len, const GLvoid *string);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6255 GLAPI void APIENTRY glBindProgramARB (GLenum target, GLuint program);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6256 GLAPI void APIENTRY glDeleteProgramsARB (GLsizei n, const GLuint *programs);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6257 GLAPI void APIENTRY glGenProgramsARB (GLsizei n, GLuint *programs);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6258 GLAPI void APIENTRY glProgramEnvParameter4dARB (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6259 GLAPI void APIENTRY glProgramEnvParameter4dvARB (GLenum target, GLuint index, const GLdouble *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6260 GLAPI void APIENTRY glProgramEnvParameter4fARB (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6261 GLAPI void APIENTRY glProgramEnvParameter4fvARB (GLenum target, GLuint index, const GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6262 GLAPI void APIENTRY glProgramLocalParameter4dARB (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6263 GLAPI void APIENTRY glProgramLocalParameter4dvARB (GLenum target, GLuint index, const GLdouble *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6264 GLAPI void APIENTRY glProgramLocalParameter4fARB (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6265 GLAPI void APIENTRY glProgramLocalParameter4fvARB (GLenum target, GLuint index, const GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6266 GLAPI void APIENTRY glGetProgramEnvParameterdvARB (GLenum target, GLuint index, GLdouble *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6267 GLAPI void APIENTRY glGetProgramEnvParameterfvARB (GLenum target, GLuint index, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6268 GLAPI void APIENTRY glGetProgramLocalParameterdvARB (GLenum target, GLuint index, GLdouble *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6269 GLAPI void APIENTRY glGetProgramLocalParameterfvARB (GLenum target, GLuint index, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6270 GLAPI void APIENTRY glGetProgramivARB (GLenum target, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6271 GLAPI void APIENTRY glGetProgramStringARB (GLenum target, GLenum pname, GLvoid *string);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6272 GLAPI void APIENTRY glGetVertexAttribdvARB (GLuint index, GLenum pname, GLdouble *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6273 GLAPI void APIENTRY glGetVertexAttribfvARB (GLuint index, GLenum pname, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6274 GLAPI void APIENTRY glGetVertexAttribivARB (GLuint index, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6275 GLAPI void APIENTRY glGetVertexAttribPointervARB (GLuint index, GLenum pname, GLvoid* *pointer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6276 GLAPI GLboolean APIENTRY glIsProgramARB (GLuint program);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
6277 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6278 typedef void (APIENTRYP PFNGLVERTEXATTRIB1DARBPROC) (GLuint index, GLdouble x);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6279 typedef void (APIENTRYP PFNGLVERTEXATTRIB1DVARBPROC) (GLuint index, const GLdouble *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6280 typedef void (APIENTRYP PFNGLVERTEXATTRIB1FARBPROC) (GLuint index, GLfloat x);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6281 typedef void (APIENTRYP PFNGLVERTEXATTRIB1FVARBPROC) (GLuint index, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6282 typedef void (APIENTRYP PFNGLVERTEXATTRIB1SARBPROC) (GLuint index, GLshort x);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6283 typedef void (APIENTRYP PFNGLVERTEXATTRIB1SVARBPROC) (GLuint index, const GLshort *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6284 typedef void (APIENTRYP PFNGLVERTEXATTRIB2DARBPROC) (GLuint index, GLdouble x, GLdouble y);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6285 typedef void (APIENTRYP PFNGLVERTEXATTRIB2DVARBPROC) (GLuint index, const GLdouble *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6286 typedef void (APIENTRYP PFNGLVERTEXATTRIB2FARBPROC) (GLuint index, GLfloat x, GLfloat y);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6287 typedef void (APIENTRYP PFNGLVERTEXATTRIB2FVARBPROC) (GLuint index, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6288 typedef void (APIENTRYP PFNGLVERTEXATTRIB2SARBPROC) (GLuint index, GLshort x, GLshort y);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6289 typedef void (APIENTRYP PFNGLVERTEXATTRIB2SVARBPROC) (GLuint index, const GLshort *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6290 typedef void (APIENTRYP PFNGLVERTEXATTRIB3DARBPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6291 typedef void (APIENTRYP PFNGLVERTEXATTRIB3DVARBPROC) (GLuint index, const GLdouble *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6292 typedef void (APIENTRYP PFNGLVERTEXATTRIB3FARBPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6293 typedef void (APIENTRYP PFNGLVERTEXATTRIB3FVARBPROC) (GLuint index, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6294 typedef void (APIENTRYP PFNGLVERTEXATTRIB3SARBPROC) (GLuint index, GLshort x, GLshort y, GLshort z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6295 typedef void (APIENTRYP PFNGLVERTEXATTRIB3SVARBPROC) (GLuint index, const GLshort *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6296 typedef void (APIENTRYP PFNGLVERTEXATTRIB4NBVARBPROC) (GLuint index, const GLbyte *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6297 typedef void (APIENTRYP PFNGLVERTEXATTRIB4NIVARBPROC) (GLuint index, const GLint *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6298 typedef void (APIENTRYP PFNGLVERTEXATTRIB4NSVARBPROC) (GLuint index, const GLshort *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6299 typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUBARBPROC) (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6300 typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUBVARBPROC) (GLuint index, const GLubyte *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6301 typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUIVARBPROC) (GLuint index, const GLuint *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6302 typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUSVARBPROC) (GLuint index, const GLushort *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6303 typedef void (APIENTRYP PFNGLVERTEXATTRIB4BVARBPROC) (GLuint index, const GLbyte *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6304 typedef void (APIENTRYP PFNGLVERTEXATTRIB4DARBPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6305 typedef void (APIENTRYP PFNGLVERTEXATTRIB4DVARBPROC) (GLuint index, const GLdouble *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6306 typedef void (APIENTRYP PFNGLVERTEXATTRIB4FARBPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6307 typedef void (APIENTRYP PFNGLVERTEXATTRIB4FVARBPROC) (GLuint index, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6308 typedef void (APIENTRYP PFNGLVERTEXATTRIB4IVARBPROC) (GLuint index, const GLint *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6309 typedef void (APIENTRYP PFNGLVERTEXATTRIB4SARBPROC) (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6310 typedef void (APIENTRYP PFNGLVERTEXATTRIB4SVARBPROC) (GLuint index, const GLshort *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6311 typedef void (APIENTRYP PFNGLVERTEXATTRIB4UBVARBPROC) (GLuint index, const GLubyte *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6312 typedef void (APIENTRYP PFNGLVERTEXATTRIB4UIVARBPROC) (GLuint index, const GLuint *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6313 typedef void (APIENTRYP PFNGLVERTEXATTRIB4USVARBPROC) (GLuint index, const GLushort *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6314 typedef void (APIENTRYP PFNGLVERTEXATTRIBPOINTERARBPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid *pointer);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6315 typedef void (APIENTRYP PFNGLENABLEVERTEXATTRIBARRAYARBPROC) (GLuint index);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6316 typedef void (APIENTRYP PFNGLDISABLEVERTEXATTRIBARRAYARBPROC) (GLuint index);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6317 typedef void (APIENTRYP PFNGLPROGRAMSTRINGARBPROC) (GLenum target, GLenum format, GLsizei len, const GLvoid *string);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6318 typedef void (APIENTRYP PFNGLBINDPROGRAMARBPROC) (GLenum target, GLuint program);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6319 typedef void (APIENTRYP PFNGLDELETEPROGRAMSARBPROC) (GLsizei n, const GLuint *programs);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6320 typedef void (APIENTRYP PFNGLGENPROGRAMSARBPROC) (GLsizei n, GLuint *programs);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6321 typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETER4DARBPROC) (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6322 typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETER4DVARBPROC) (GLenum target, GLuint index, const GLdouble *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6323 typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETER4FARBPROC) (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6324 typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETER4FVARBPROC) (GLenum target, GLuint index, const GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6325 typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETER4DARBPROC) (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6326 typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETER4DVARBPROC) (GLenum target, GLuint index, const GLdouble *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6327 typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETER4FARBPROC) (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6328 typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETER4FVARBPROC) (GLenum target, GLuint index, const GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6329 typedef void (APIENTRYP PFNGLGETPROGRAMENVPARAMETERDVARBPROC) (GLenum target, GLuint index, GLdouble *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6330 typedef void (APIENTRYP PFNGLGETPROGRAMENVPARAMETERFVARBPROC) (GLenum target, GLuint index, GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6331 typedef void (APIENTRYP PFNGLGETPROGRAMLOCALPARAMETERDVARBPROC) (GLenum target, GLuint index, GLdouble *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6332 typedef void (APIENTRYP PFNGLGETPROGRAMLOCALPARAMETERFVARBPROC) (GLenum target, GLuint index, GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6333 typedef void (APIENTRYP PFNGLGETPROGRAMIVARBPROC) (GLenum target, GLenum pname, GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6334 typedef void (APIENTRYP PFNGLGETPROGRAMSTRINGARBPROC) (GLenum target, GLenum pname, GLvoid *string);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6335 typedef void (APIENTRYP PFNGLGETVERTEXATTRIBDVARBPROC) (GLuint index, GLenum pname, GLdouble *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6336 typedef void (APIENTRYP PFNGLGETVERTEXATTRIBFVARBPROC) (GLuint index, GLenum pname, GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6337 typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIVARBPROC) (GLuint index, GLenum pname, GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6338 typedef void (APIENTRYP PFNGLGETVERTEXATTRIBPOINTERVARBPROC) (GLuint index, GLenum pname, GLvoid* *pointer);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6339 typedef GLboolean (APIENTRYP PFNGLISPROGRAMARBPROC) (GLuint program);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6340 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6341
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6342 #ifndef GL_ARB_fragment_program
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6343 #define GL_ARB_fragment_program 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6344 /* All ARB_fragment_program entry points are shared with ARB_vertex_program. */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6345 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6346
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6347 #ifndef GL_ARB_vertex_buffer_object
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6348 #define GL_ARB_vertex_buffer_object 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6349 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6350 GLAPI void APIENTRY glBindBufferARB (GLenum target, GLuint buffer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6351 GLAPI void APIENTRY glDeleteBuffersARB (GLsizei n, const GLuint *buffers);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6352 GLAPI void APIENTRY glGenBuffersARB (GLsizei n, GLuint *buffers);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6353 GLAPI GLboolean APIENTRY glIsBufferARB (GLuint buffer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6354 GLAPI void APIENTRY glBufferDataARB (GLenum target, GLsizeiptrARB size, const GLvoid *data, GLenum usage);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6355 GLAPI void APIENTRY glBufferSubDataARB (GLenum target, GLintptrARB offset, GLsizeiptrARB size, const GLvoid *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6356 GLAPI void APIENTRY glGetBufferSubDataARB (GLenum target, GLintptrARB offset, GLsizeiptrARB size, GLvoid *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6357 GLAPI GLvoid* APIENTRY glMapBufferARB (GLenum target, GLenum access);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6358 GLAPI GLboolean APIENTRY glUnmapBufferARB (GLenum target);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6359 GLAPI void APIENTRY glGetBufferParameterivARB (GLenum target, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6360 GLAPI void APIENTRY glGetBufferPointervARB (GLenum target, GLenum pname, GLvoid* *params);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6361 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6362 typedef void (APIENTRYP PFNGLBINDBUFFERARBPROC) (GLenum target, GLuint buffer);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6363 typedef void (APIENTRYP PFNGLDELETEBUFFERSARBPROC) (GLsizei n, const GLuint *buffers);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6364 typedef void (APIENTRYP PFNGLGENBUFFERSARBPROC) (GLsizei n, GLuint *buffers);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6365 typedef GLboolean (APIENTRYP PFNGLISBUFFERARBPROC) (GLuint buffer);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6366 typedef void (APIENTRYP PFNGLBUFFERDATAARBPROC) (GLenum target, GLsizeiptrARB size, const GLvoid *data, GLenum usage);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6367 typedef void (APIENTRYP PFNGLBUFFERSUBDATAARBPROC) (GLenum target, GLintptrARB offset, GLsizeiptrARB size, const GLvoid *data);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6368 typedef void (APIENTRYP PFNGLGETBUFFERSUBDATAARBPROC) (GLenum target, GLintptrARB offset, GLsizeiptrARB size, GLvoid *data);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6369 typedef GLvoid* (APIENTRYP PFNGLMAPBUFFERARBPROC) (GLenum target, GLenum access);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6370 typedef GLboolean (APIENTRYP PFNGLUNMAPBUFFERARBPROC) (GLenum target);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6371 typedef void (APIENTRYP PFNGLGETBUFFERPARAMETERIVARBPROC) (GLenum target, GLenum pname, GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6372 typedef void (APIENTRYP PFNGLGETBUFFERPOINTERVARBPROC) (GLenum target, GLenum pname, GLvoid* *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6373 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6374
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6375 #ifndef GL_ARB_occlusion_query
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6376 #define GL_ARB_occlusion_query 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6377 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6378 GLAPI void APIENTRY glGenQueriesARB (GLsizei n, GLuint *ids);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6379 GLAPI void APIENTRY glDeleteQueriesARB (GLsizei n, const GLuint *ids);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6380 GLAPI GLboolean APIENTRY glIsQueryARB (GLuint id);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6381 GLAPI void APIENTRY glBeginQueryARB (GLenum target, GLuint id);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6382 GLAPI void APIENTRY glEndQueryARB (GLenum target);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6383 GLAPI void APIENTRY glGetQueryivARB (GLenum target, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6384 GLAPI void APIENTRY glGetQueryObjectivARB (GLuint id, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6385 GLAPI void APIENTRY glGetQueryObjectuivARB (GLuint id, GLenum pname, GLuint *params);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6386 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6387 typedef void (APIENTRYP PFNGLGENQUERIESARBPROC) (GLsizei n, GLuint *ids);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6388 typedef void (APIENTRYP PFNGLDELETEQUERIESARBPROC) (GLsizei n, const GLuint *ids);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6389 typedef GLboolean (APIENTRYP PFNGLISQUERYARBPROC) (GLuint id);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6390 typedef void (APIENTRYP PFNGLBEGINQUERYARBPROC) (GLenum target, GLuint id);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6391 typedef void (APIENTRYP PFNGLENDQUERYARBPROC) (GLenum target);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6392 typedef void (APIENTRYP PFNGLGETQUERYIVARBPROC) (GLenum target, GLenum pname, GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6393 typedef void (APIENTRYP PFNGLGETQUERYOBJECTIVARBPROC) (GLuint id, GLenum pname, GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6394 typedef void (APIENTRYP PFNGLGETQUERYOBJECTUIVARBPROC) (GLuint id, GLenum pname, GLuint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6395 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6396
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6397 #ifndef GL_ARB_shader_objects
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6398 #define GL_ARB_shader_objects 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6399 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6400 GLAPI void APIENTRY glDeleteObjectARB (GLhandleARB obj);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6401 GLAPI GLhandleARB APIENTRY glGetHandleARB (GLenum pname);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6402 GLAPI void APIENTRY glDetachObjectARB (GLhandleARB containerObj, GLhandleARB attachedObj);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6403 GLAPI GLhandleARB APIENTRY glCreateShaderObjectARB (GLenum shaderType);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6404 GLAPI void APIENTRY glShaderSourceARB (GLhandleARB shaderObj, GLsizei count, const GLcharARB* *string, const GLint *length);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6405 GLAPI void APIENTRY glCompileShaderARB (GLhandleARB shaderObj);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6406 GLAPI GLhandleARB APIENTRY glCreateProgramObjectARB (void);
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6407 GLAPI void APIENTRY glAttachObjectARB (GLhandleARB containerObj, GLhandleARB obj);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6408 GLAPI void APIENTRY glLinkProgramARB (GLhandleARB programObj);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6409 GLAPI void APIENTRY glUseProgramObjectARB (GLhandleARB programObj);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6410 GLAPI void APIENTRY glValidateProgramARB (GLhandleARB programObj);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6411 GLAPI void APIENTRY glUniform1fARB (GLint location, GLfloat v0);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6412 GLAPI void APIENTRY glUniform2fARB (GLint location, GLfloat v0, GLfloat v1);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6413 GLAPI void APIENTRY glUniform3fARB (GLint location, GLfloat v0, GLfloat v1, GLfloat v2);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6414 GLAPI void APIENTRY glUniform4fARB (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6415 GLAPI void APIENTRY glUniform1iARB (GLint location, GLint v0);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6416 GLAPI void APIENTRY glUniform2iARB (GLint location, GLint v0, GLint v1);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6417 GLAPI void APIENTRY glUniform3iARB (GLint location, GLint v0, GLint v1, GLint v2);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6418 GLAPI void APIENTRY glUniform4iARB (GLint location, GLint v0, GLint v1, GLint v2, GLint v3);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6419 GLAPI void APIENTRY glUniform1fvARB (GLint location, GLsizei count, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6420 GLAPI void APIENTRY glUniform2fvARB (GLint location, GLsizei count, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6421 GLAPI void APIENTRY glUniform3fvARB (GLint location, GLsizei count, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6422 GLAPI void APIENTRY glUniform4fvARB (GLint location, GLsizei count, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6423 GLAPI void APIENTRY glUniform1ivARB (GLint location, GLsizei count, const GLint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6424 GLAPI void APIENTRY glUniform2ivARB (GLint location, GLsizei count, const GLint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6425 GLAPI void APIENTRY glUniform3ivARB (GLint location, GLsizei count, const GLint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6426 GLAPI void APIENTRY glUniform4ivARB (GLint location, GLsizei count, const GLint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6427 GLAPI void APIENTRY glUniformMatrix2fvARB (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6428 GLAPI void APIENTRY glUniformMatrix3fvARB (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6429 GLAPI void APIENTRY glUniformMatrix4fvARB (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6430 GLAPI void APIENTRY glGetObjectParameterfvARB (GLhandleARB obj, GLenum pname, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6431 GLAPI void APIENTRY glGetObjectParameterivARB (GLhandleARB obj, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6432 GLAPI void APIENTRY glGetInfoLogARB (GLhandleARB obj, GLsizei maxLength, GLsizei *length, GLcharARB *infoLog);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6433 GLAPI void APIENTRY glGetAttachedObjectsARB (GLhandleARB containerObj, GLsizei maxCount, GLsizei *count, GLhandleARB *obj);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6434 GLAPI GLint APIENTRY glGetUniformLocationARB (GLhandleARB programObj, const GLcharARB *name);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6435 GLAPI void APIENTRY glGetActiveUniformARB (GLhandleARB programObj, GLuint index, GLsizei maxLength, GLsizei *length, GLint *size, GLenum *type, GLcharARB *name);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6436 GLAPI void APIENTRY glGetUniformfvARB (GLhandleARB programObj, GLint location, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6437 GLAPI void APIENTRY glGetUniformivARB (GLhandleARB programObj, GLint location, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6438 GLAPI void APIENTRY glGetShaderSourceARB (GLhandleARB obj, GLsizei maxLength, GLsizei *length, GLcharARB *source);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6439 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6440 typedef void (APIENTRYP PFNGLDELETEOBJECTARBPROC) (GLhandleARB obj);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6441 typedef GLhandleARB (APIENTRYP PFNGLGETHANDLEARBPROC) (GLenum pname);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6442 typedef void (APIENTRYP PFNGLDETACHOBJECTARBPROC) (GLhandleARB containerObj, GLhandleARB attachedObj);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6443 typedef GLhandleARB (APIENTRYP PFNGLCREATESHADEROBJECTARBPROC) (GLenum shaderType);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6444 typedef void (APIENTRYP PFNGLSHADERSOURCEARBPROC) (GLhandleARB shaderObj, GLsizei count, const GLcharARB* *string, const GLint *length);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6445 typedef void (APIENTRYP PFNGLCOMPILESHADERARBPROC) (GLhandleARB shaderObj);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6446 typedef GLhandleARB (APIENTRYP PFNGLCREATEPROGRAMOBJECTARBPROC) (void);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6447 typedef void (APIENTRYP PFNGLATTACHOBJECTARBPROC) (GLhandleARB containerObj, GLhandleARB obj);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6448 typedef void (APIENTRYP PFNGLLINKPROGRAMARBPROC) (GLhandleARB programObj);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6449 typedef void (APIENTRYP PFNGLUSEPROGRAMOBJECTARBPROC) (GLhandleARB programObj);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6450 typedef void (APIENTRYP PFNGLVALIDATEPROGRAMARBPROC) (GLhandleARB programObj);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6451 typedef void (APIENTRYP PFNGLUNIFORM1FARBPROC) (GLint location, GLfloat v0);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6452 typedef void (APIENTRYP PFNGLUNIFORM2FARBPROC) (GLint location, GLfloat v0, GLfloat v1);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6453 typedef void (APIENTRYP PFNGLUNIFORM3FARBPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6454 typedef void (APIENTRYP PFNGLUNIFORM4FARBPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6455 typedef void (APIENTRYP PFNGLUNIFORM1IARBPROC) (GLint location, GLint v0);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6456 typedef void (APIENTRYP PFNGLUNIFORM2IARBPROC) (GLint location, GLint v0, GLint v1);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6457 typedef void (APIENTRYP PFNGLUNIFORM3IARBPROC) (GLint location, GLint v0, GLint v1, GLint v2);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6458 typedef void (APIENTRYP PFNGLUNIFORM4IARBPROC) (GLint location, GLint v0, GLint v1, GLint v2, GLint v3);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6459 typedef void (APIENTRYP PFNGLUNIFORM1FVARBPROC) (GLint location, GLsizei count, const GLfloat *value);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6460 typedef void (APIENTRYP PFNGLUNIFORM2FVARBPROC) (GLint location, GLsizei count, const GLfloat *value);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6461 typedef void (APIENTRYP PFNGLUNIFORM3FVARBPROC) (GLint location, GLsizei count, const GLfloat *value);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6462 typedef void (APIENTRYP PFNGLUNIFORM4FVARBPROC) (GLint location, GLsizei count, const GLfloat *value);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6463 typedef void (APIENTRYP PFNGLUNIFORM1IVARBPROC) (GLint location, GLsizei count, const GLint *value);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6464 typedef void (APIENTRYP PFNGLUNIFORM2IVARBPROC) (GLint location, GLsizei count, const GLint *value);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6465 typedef void (APIENTRYP PFNGLUNIFORM3IVARBPROC) (GLint location, GLsizei count, const GLint *value);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6466 typedef void (APIENTRYP PFNGLUNIFORM4IVARBPROC) (GLint location, GLsizei count, const GLint *value);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6467 typedef void (APIENTRYP PFNGLUNIFORMMATRIX2FVARBPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6468 typedef void (APIENTRYP PFNGLUNIFORMMATRIX3FVARBPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6469 typedef void (APIENTRYP PFNGLUNIFORMMATRIX4FVARBPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6470 typedef void (APIENTRYP PFNGLGETOBJECTPARAMETERFVARBPROC) (GLhandleARB obj, GLenum pname, GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6471 typedef void (APIENTRYP PFNGLGETOBJECTPARAMETERIVARBPROC) (GLhandleARB obj, GLenum pname, GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6472 typedef void (APIENTRYP PFNGLGETINFOLOGARBPROC) (GLhandleARB obj, GLsizei maxLength, GLsizei *length, GLcharARB *infoLog);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6473 typedef void (APIENTRYP PFNGLGETATTACHEDOBJECTSARBPROC) (GLhandleARB containerObj, GLsizei maxCount, GLsizei *count, GLhandleARB *obj);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6474 typedef GLint (APIENTRYP PFNGLGETUNIFORMLOCATIONARBPROC) (GLhandleARB programObj, const GLcharARB *name);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6475 typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMARBPROC) (GLhandleARB programObj, GLuint index, GLsizei maxLength, GLsizei *length, GLint *size, GLenum *type, GLcharARB *name);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6476 typedef void (APIENTRYP PFNGLGETUNIFORMFVARBPROC) (GLhandleARB programObj, GLint location, GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6477 typedef void (APIENTRYP PFNGLGETUNIFORMIVARBPROC) (GLhandleARB programObj, GLint location, GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6478 typedef void (APIENTRYP PFNGLGETSHADERSOURCEARBPROC) (GLhandleARB obj, GLsizei maxLength, GLsizei *length, GLcharARB *source);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6479 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6480
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6481 #ifndef GL_ARB_vertex_shader
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6482 #define GL_ARB_vertex_shader 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6483 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6484 GLAPI void APIENTRY glBindAttribLocationARB (GLhandleARB programObj, GLuint index, const GLcharARB *name);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6485 GLAPI void APIENTRY glGetActiveAttribARB (GLhandleARB programObj, GLuint index, GLsizei maxLength, GLsizei *length, GLint *size, GLenum *type, GLcharARB *name);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6486 GLAPI GLint APIENTRY glGetAttribLocationARB (GLhandleARB programObj, const GLcharARB *name);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6487 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6488 typedef void (APIENTRYP PFNGLBINDATTRIBLOCATIONARBPROC) (GLhandleARB programObj, GLuint index, const GLcharARB *name);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6489 typedef void (APIENTRYP PFNGLGETACTIVEATTRIBARBPROC) (GLhandleARB programObj, GLuint index, GLsizei maxLength, GLsizei *length, GLint *size, GLenum *type, GLcharARB *name);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6490 typedef GLint (APIENTRYP PFNGLGETATTRIBLOCATIONARBPROC) (GLhandleARB programObj, const GLcharARB *name);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6491 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6492
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6493 #ifndef GL_ARB_fragment_shader
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6494 #define GL_ARB_fragment_shader 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6495 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6496
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6497 #ifndef GL_ARB_shading_language_100
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6498 #define GL_ARB_shading_language_100 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6499 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6500
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6501 #ifndef GL_ARB_texture_non_power_of_two
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6502 #define GL_ARB_texture_non_power_of_two 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6503 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6504
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6505 #ifndef GL_ARB_point_sprite
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
6506 #define GL_ARB_point_sprite 1
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
6507 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
6508
1205
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
6509 #ifndef GL_ARB_fragment_program_shadow
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
6510 #define GL_ARB_fragment_program_shadow 1
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
6511 #endif
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
6512
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
6513 #ifndef GL_ARB_draw_buffers
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
6514 #define GL_ARB_draw_buffers 1
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
6515 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6516 GLAPI void APIENTRY glDrawBuffersARB (GLsizei n, const GLenum *bufs);
1205
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
6517 #endif /* GL_GLEXT_PROTOTYPES */
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
6518 typedef void (APIENTRYP PFNGLDRAWBUFFERSARBPROC) (GLsizei n, const GLenum *bufs);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
6519 #endif
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
6520
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
6521 #ifndef GL_ARB_texture_rectangle
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
6522 #define GL_ARB_texture_rectangle 1
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
6523 #endif
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
6524
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
6525 #ifndef GL_ARB_color_buffer_float
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
6526 #define GL_ARB_color_buffer_float 1
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
6527 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6528 GLAPI void APIENTRY glClampColorARB (GLenum target, GLenum clamp);
1205
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
6529 #endif /* GL_GLEXT_PROTOTYPES */
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
6530 typedef void (APIENTRYP PFNGLCLAMPCOLORARBPROC) (GLenum target, GLenum clamp);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
6531 #endif
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
6532
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
6533 #ifndef GL_ARB_half_float_pixel
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
6534 #define GL_ARB_half_float_pixel 1
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
6535 #endif
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
6536
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
6537 #ifndef GL_ARB_texture_float
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
6538 #define GL_ARB_texture_float 1
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
6539 #endif
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
6540
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
6541 #ifndef GL_ARB_pixel_buffer_object
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
6542 #define GL_ARB_pixel_buffer_object 1
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
6543 #endif
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
6544
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6545 #ifndef GL_ARB_depth_buffer_float
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6546 #define GL_ARB_depth_buffer_float 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6547 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6548
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6549 #ifndef GL_ARB_draw_instanced
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6550 #define GL_ARB_draw_instanced 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6551 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6552 GLAPI void APIENTRY glDrawArraysInstancedARB (GLenum mode, GLint first, GLsizei count, GLsizei primcount);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6553 GLAPI void APIENTRY glDrawElementsInstancedARB (GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei primcount);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6554 #endif /* GL_GLEXT_PROTOTYPES */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6555 typedef void (APIENTRYP PFNGLDRAWARRAYSINSTANCEDARBPROC) (GLenum mode, GLint first, GLsizei count, GLsizei primcount);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6556 typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDARBPROC) (GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei primcount);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6557 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6558
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6559 #ifndef GL_ARB_framebuffer_object
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6560 #define GL_ARB_framebuffer_object 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6561 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6562 GLAPI GLboolean APIENTRY glIsRenderbuffer (GLuint renderbuffer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6563 GLAPI void APIENTRY glBindRenderbuffer (GLenum target, GLuint renderbuffer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6564 GLAPI void APIENTRY glDeleteRenderbuffers (GLsizei n, const GLuint *renderbuffers);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6565 GLAPI void APIENTRY glGenRenderbuffers (GLsizei n, GLuint *renderbuffers);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6566 GLAPI void APIENTRY glRenderbufferStorage (GLenum target, GLenum internalformat, GLsizei width, GLsizei height);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6567 GLAPI void APIENTRY glGetRenderbufferParameteriv (GLenum target, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6568 GLAPI GLboolean APIENTRY glIsFramebuffer (GLuint framebuffer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6569 GLAPI void APIENTRY glBindFramebuffer (GLenum target, GLuint framebuffer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6570 GLAPI void APIENTRY glDeleteFramebuffers (GLsizei n, const GLuint *framebuffers);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6571 GLAPI void APIENTRY glGenFramebuffers (GLsizei n, GLuint *framebuffers);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6572 GLAPI GLenum APIENTRY glCheckFramebufferStatus (GLenum target);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6573 GLAPI void APIENTRY glFramebufferTexture1D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6574 GLAPI void APIENTRY glFramebufferTexture2D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6575 GLAPI void APIENTRY glFramebufferTexture3D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6576 GLAPI void APIENTRY glFramebufferRenderbuffer (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6577 GLAPI void APIENTRY glGetFramebufferAttachmentParameteriv (GLenum target, GLenum attachment, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6578 GLAPI void APIENTRY glGenerateMipmap (GLenum target);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6579 GLAPI void APIENTRY glBlitFramebuffer (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6580 GLAPI void APIENTRY glRenderbufferStorageMultisample (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6581 GLAPI void APIENTRY glFramebufferTextureLayer (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6582 #endif /* GL_GLEXT_PROTOTYPES */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6583 typedef GLboolean (APIENTRYP PFNGLISRENDERBUFFERPROC) (GLuint renderbuffer);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6584 typedef void (APIENTRYP PFNGLBINDRENDERBUFFERPROC) (GLenum target, GLuint renderbuffer);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6585 typedef void (APIENTRYP PFNGLDELETERENDERBUFFERSPROC) (GLsizei n, const GLuint *renderbuffers);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6586 typedef void (APIENTRYP PFNGLGENRENDERBUFFERSPROC) (GLsizei n, GLuint *renderbuffers);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6587 typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6588 typedef void (APIENTRYP PFNGLGETRENDERBUFFERPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6589 typedef GLboolean (APIENTRYP PFNGLISFRAMEBUFFERPROC) (GLuint framebuffer);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6590 typedef void (APIENTRYP PFNGLBINDFRAMEBUFFERPROC) (GLenum target, GLuint framebuffer);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6591 typedef void (APIENTRYP PFNGLDELETEFRAMEBUFFERSPROC) (GLsizei n, const GLuint *framebuffers);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6592 typedef void (APIENTRYP PFNGLGENFRAMEBUFFERSPROC) (GLsizei n, GLuint *framebuffers);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6593 typedef GLenum (APIENTRYP PFNGLCHECKFRAMEBUFFERSTATUSPROC) (GLenum target);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6594 typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE1DPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6595 typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6596 typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE3DPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6597 typedef void (APIENTRYP PFNGLFRAMEBUFFERRENDERBUFFERPROC) (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6598 typedef void (APIENTRYP PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC) (GLenum target, GLenum attachment, GLenum pname, GLint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6599 typedef void (APIENTRYP PFNGLGENERATEMIPMAPPROC) (GLenum target);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6600 typedef void (APIENTRYP PFNGLBLITFRAMEBUFFERPROC) (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6601 typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6602 typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURELAYERPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6603 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6604
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6605 #ifndef GL_ARB_framebuffer_sRGB
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6606 #define GL_ARB_framebuffer_sRGB 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6607 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6608
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6609 #ifndef GL_ARB_geometry_shader4
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6610 #define GL_ARB_geometry_shader4 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6611 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6612 GLAPI void APIENTRY glProgramParameteriARB (GLuint program, GLenum pname, GLint value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6613 GLAPI void APIENTRY glFramebufferTextureARB (GLenum target, GLenum attachment, GLuint texture, GLint level);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6614 GLAPI void APIENTRY glFramebufferTextureLayerARB (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6615 GLAPI void APIENTRY glFramebufferTextureFaceARB (GLenum target, GLenum attachment, GLuint texture, GLint level, GLenum face);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6616 #endif /* GL_GLEXT_PROTOTYPES */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6617 typedef void (APIENTRYP PFNGLPROGRAMPARAMETERIARBPROC) (GLuint program, GLenum pname, GLint value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6618 typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREARBPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6619 typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURELAYERARBPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6620 typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREFACEARBPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLenum face);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6621 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6622
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6623 #ifndef GL_ARB_half_float_vertex
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6624 #define GL_ARB_half_float_vertex 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6625 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6626
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6627 #ifndef GL_ARB_instanced_arrays
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6628 #define GL_ARB_instanced_arrays 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6629 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6630 GLAPI void APIENTRY glVertexAttribDivisorARB (GLuint index, GLuint divisor);
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6631 #endif /* GL_GLEXT_PROTOTYPES */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6632 typedef void (APIENTRYP PFNGLVERTEXATTRIBDIVISORARBPROC) (GLuint index, GLuint divisor);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6633 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6634
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6635 #ifndef GL_ARB_map_buffer_range
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6636 #define GL_ARB_map_buffer_range 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6637 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6638 GLAPI GLvoid* APIENTRY glMapBufferRange (GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6639 GLAPI void APIENTRY glFlushMappedBufferRange (GLenum target, GLintptr offset, GLsizeiptr length);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6640 #endif /* GL_GLEXT_PROTOTYPES */
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6641 typedef GLvoid* (APIENTRYP PFNGLMAPBUFFERRANGEPROC) (GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6642 typedef void (APIENTRYP PFNGLFLUSHMAPPEDBUFFERRANGEPROC) (GLenum target, GLintptr offset, GLsizeiptr length);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6643 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6644
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6645 #ifndef GL_ARB_texture_buffer_object
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6646 #define GL_ARB_texture_buffer_object 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6647 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6648 GLAPI void APIENTRY glTexBufferARB (GLenum target, GLenum internalformat, GLuint buffer);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6649 #endif /* GL_GLEXT_PROTOTYPES */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6650 typedef void (APIENTRYP PFNGLTEXBUFFERARBPROC) (GLenum target, GLenum internalformat, GLuint buffer);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6651 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6652
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6653 #ifndef GL_ARB_texture_compression_rgtc
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6654 #define GL_ARB_texture_compression_rgtc 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6655 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6656
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6657 #ifndef GL_ARB_texture_rg
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6658 #define GL_ARB_texture_rg 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6659 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6660
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6661 #ifndef GL_ARB_vertex_array_object
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6662 #define GL_ARB_vertex_array_object 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6663 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6664 GLAPI void APIENTRY glBindVertexArray (GLuint array);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6665 GLAPI void APIENTRY glDeleteVertexArrays (GLsizei n, const GLuint *arrays);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6666 GLAPI void APIENTRY glGenVertexArrays (GLsizei n, GLuint *arrays);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6667 GLAPI GLboolean APIENTRY glIsVertexArray (GLuint array);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6668 #endif /* GL_GLEXT_PROTOTYPES */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6669 typedef void (APIENTRYP PFNGLBINDVERTEXARRAYPROC) (GLuint array);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6670 typedef void (APIENTRYP PFNGLDELETEVERTEXARRAYSPROC) (GLsizei n, const GLuint *arrays);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6671 typedef void (APIENTRYP PFNGLGENVERTEXARRAYSPROC) (GLsizei n, GLuint *arrays);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6672 typedef GLboolean (APIENTRYP PFNGLISVERTEXARRAYPROC) (GLuint array);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6673 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
6674
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6675 #ifndef GL_ARB_uniform_buffer_object
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6676 #define GL_ARB_uniform_buffer_object 1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6677 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6678 GLAPI void APIENTRY glGetUniformIndices (GLuint program, GLsizei uniformCount, const GLchar* *uniformNames, GLuint *uniformIndices);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6679 GLAPI void APIENTRY glGetActiveUniformsiv (GLuint program, GLsizei uniformCount, const GLuint *uniformIndices, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6680 GLAPI void APIENTRY glGetActiveUniformName (GLuint program, GLuint uniformIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformName);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6681 GLAPI GLuint APIENTRY glGetUniformBlockIndex (GLuint program, const GLchar *uniformBlockName);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6682 GLAPI void APIENTRY glGetActiveUniformBlockiv (GLuint program, GLuint uniformBlockIndex, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6683 GLAPI void APIENTRY glGetActiveUniformBlockName (GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformBlockName);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6684 GLAPI void APIENTRY glUniformBlockBinding (GLuint program, GLuint uniformBlockIndex, GLuint uniformBlockBinding);
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6685 #endif /* GL_GLEXT_PROTOTYPES */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6686 typedef void (APIENTRYP PFNGLGETUNIFORMINDICESPROC) (GLuint program, GLsizei uniformCount, const GLchar* *uniformNames, GLuint *uniformIndices);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6687 typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMSIVPROC) (GLuint program, GLsizei uniformCount, const GLuint *uniformIndices, GLenum pname, GLint *params);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6688 typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMNAMEPROC) (GLuint program, GLuint uniformIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformName);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6689 typedef GLuint (APIENTRYP PFNGLGETUNIFORMBLOCKINDEXPROC) (GLuint program, const GLchar *uniformBlockName);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6690 typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMBLOCKIVPROC) (GLuint program, GLuint uniformBlockIndex, GLenum pname, GLint *params);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6691 typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMBLOCKNAMEPROC) (GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformBlockName);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6692 typedef void (APIENTRYP PFNGLUNIFORMBLOCKBINDINGPROC) (GLuint program, GLuint uniformBlockIndex, GLuint uniformBlockBinding);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6693 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6694
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6695 #ifndef GL_ARB_compatibility
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6696 #define GL_ARB_compatibility 1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6697 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6698
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6699 #ifndef GL_ARB_copy_buffer
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6700 #define GL_ARB_copy_buffer 1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6701 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6702 GLAPI void APIENTRY glCopyBufferSubData (GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size);
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6703 #endif /* GL_GLEXT_PROTOTYPES */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6704 typedef void (APIENTRYP PFNGLCOPYBUFFERSUBDATAPROC) (GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6705 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6706
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6707 #ifndef GL_ARB_shader_texture_lod
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6708 #define GL_ARB_shader_texture_lod 1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6709 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6710
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6711 #ifndef GL_ARB_depth_clamp
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6712 #define GL_ARB_depth_clamp 1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6713 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6714
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6715 #ifndef GL_ARB_draw_elements_base_vertex
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6716 #define GL_ARB_draw_elements_base_vertex 1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6717 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6718 GLAPI void APIENTRY glDrawElementsBaseVertex (GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLint basevertex);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6719 GLAPI void APIENTRY glDrawRangeElementsBaseVertex (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices, GLint basevertex);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6720 GLAPI void APIENTRY glDrawElementsInstancedBaseVertex (GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei primcount, GLint basevertex);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6721 GLAPI void APIENTRY glMultiDrawElementsBaseVertex (GLenum mode, const GLsizei *count, GLenum type, const GLvoid* *indices, GLsizei primcount, const GLint *basevertex);
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6722 #endif /* GL_GLEXT_PROTOTYPES */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6723 typedef void (APIENTRYP PFNGLDRAWELEMENTSBASEVERTEXPROC) (GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLint basevertex);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6724 typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTSBASEVERTEXPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices, GLint basevertex);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6725 typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXPROC) (GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei primcount, GLint basevertex);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6726 typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSBASEVERTEXPROC) (GLenum mode, const GLsizei *count, GLenum type, const GLvoid* *indices, GLsizei primcount, const GLint *basevertex);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6727 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6728
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6729 #ifndef GL_ARB_fragment_coord_conventions
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6730 #define GL_ARB_fragment_coord_conventions 1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6731 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6732
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6733 #ifndef GL_ARB_provoking_vertex
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6734 #define GL_ARB_provoking_vertex 1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6735 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6736 GLAPI void APIENTRY glProvokingVertex (GLenum mode);
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6737 #endif /* GL_GLEXT_PROTOTYPES */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6738 typedef void (APIENTRYP PFNGLPROVOKINGVERTEXPROC) (GLenum mode);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6739 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6740
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6741 #ifndef GL_ARB_seamless_cube_map
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6742 #define GL_ARB_seamless_cube_map 1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6743 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6744
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6745 #ifndef GL_ARB_sync
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6746 #define GL_ARB_sync 1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6747 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6748 GLAPI GLsync APIENTRY glFenceSync (GLenum condition, GLbitfield flags);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6749 GLAPI GLboolean APIENTRY glIsSync (GLsync sync);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6750 GLAPI void APIENTRY glDeleteSync (GLsync sync);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6751 GLAPI GLenum APIENTRY glClientWaitSync (GLsync sync, GLbitfield flags, GLuint64 timeout);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6752 GLAPI void APIENTRY glWaitSync (GLsync sync, GLbitfield flags, GLuint64 timeout);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6753 GLAPI void APIENTRY glGetInteger64v (GLenum pname, GLint64 *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6754 GLAPI void APIENTRY glGetSynciv (GLsync sync, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *values);
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6755 #endif /* GL_GLEXT_PROTOTYPES */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6756 typedef GLsync (APIENTRYP PFNGLFENCESYNCPROC) (GLenum condition, GLbitfield flags);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6757 typedef GLboolean (APIENTRYP PFNGLISSYNCPROC) (GLsync sync);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6758 typedef void (APIENTRYP PFNGLDELETESYNCPROC) (GLsync sync);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6759 typedef GLenum (APIENTRYP PFNGLCLIENTWAITSYNCPROC) (GLsync sync, GLbitfield flags, GLuint64 timeout);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6760 typedef void (APIENTRYP PFNGLWAITSYNCPROC) (GLsync sync, GLbitfield flags, GLuint64 timeout);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6761 typedef void (APIENTRYP PFNGLGETINTEGER64VPROC) (GLenum pname, GLint64 *params);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6762 typedef void (APIENTRYP PFNGLGETSYNCIVPROC) (GLsync sync, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *values);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6763 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6764
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6765 #ifndef GL_ARB_texture_multisample
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6766 #define GL_ARB_texture_multisample 1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6767 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6768 GLAPI void APIENTRY glTexImage2DMultisample (GLenum target, GLsizei samples, GLint internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6769 GLAPI void APIENTRY glTexImage3DMultisample (GLenum target, GLsizei samples, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6770 GLAPI void APIENTRY glGetMultisamplefv (GLenum pname, GLuint index, GLfloat *val);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6771 GLAPI void APIENTRY glSampleMaski (GLuint index, GLbitfield mask);
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6772 #endif /* GL_GLEXT_PROTOTYPES */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6773 typedef void (APIENTRYP PFNGLTEXIMAGE2DMULTISAMPLEPROC) (GLenum target, GLsizei samples, GLint internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6774 typedef void (APIENTRYP PFNGLTEXIMAGE3DMULTISAMPLEPROC) (GLenum target, GLsizei samples, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6775 typedef void (APIENTRYP PFNGLGETMULTISAMPLEFVPROC) (GLenum pname, GLuint index, GLfloat *val);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6776 typedef void (APIENTRYP PFNGLSAMPLEMASKIPROC) (GLuint index, GLbitfield mask);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6777 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6778
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6779 #ifndef GL_ARB_vertex_array_bgra
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6780 #define GL_ARB_vertex_array_bgra 1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6781 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6782
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6783 #ifndef GL_ARB_draw_buffers_blend
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6784 #define GL_ARB_draw_buffers_blend 1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6785 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6786 GLAPI void APIENTRY glBlendEquationiARB (GLuint buf, GLenum mode);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6787 GLAPI void APIENTRY glBlendEquationSeparateiARB (GLuint buf, GLenum modeRGB, GLenum modeAlpha);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6788 GLAPI void APIENTRY glBlendFunciARB (GLuint buf, GLenum src, GLenum dst);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6789 GLAPI void APIENTRY glBlendFuncSeparateiARB (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6790 #endif /* GL_GLEXT_PROTOTYPES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6791 typedef void (APIENTRYP PFNGLBLENDEQUATIONIARBPROC) (GLuint buf, GLenum mode);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6792 typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEIARBPROC) (GLuint buf, GLenum modeRGB, GLenum modeAlpha);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6793 typedef void (APIENTRYP PFNGLBLENDFUNCIARBPROC) (GLuint buf, GLenum src, GLenum dst);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6794 typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEIARBPROC) (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha);
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6795 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6796
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6797 #ifndef GL_ARB_sample_shading
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6798 #define GL_ARB_sample_shading 1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6799 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6800 GLAPI void APIENTRY glMinSampleShadingARB (GLclampf value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6801 #endif /* GL_GLEXT_PROTOTYPES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6802 typedef void (APIENTRYP PFNGLMINSAMPLESHADINGARBPROC) (GLclampf value);
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6803 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6804
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6805 #ifndef GL_ARB_texture_cube_map_array
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6806 #define GL_ARB_texture_cube_map_array 1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6807 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6808
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6809 #ifndef GL_ARB_texture_gather
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6810 #define GL_ARB_texture_gather 1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6811 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6812
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6813 #ifndef GL_ARB_texture_query_lod
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6814 #define GL_ARB_texture_query_lod 1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6815 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
6816
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6817 #ifndef GL_ARB_shading_language_include
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6818 #define GL_ARB_shading_language_include 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6819 #ifdef GL_GLEXT_PROTOTYPES
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6820 GLAPI void APIENTRY glNamedStringARB (GLenum type, GLint namelen, const GLchar *name, GLint stringlen, const GLchar *string);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6821 GLAPI void APIENTRY glDeleteNamedStringARB (GLint namelen, const GLchar *name);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6822 GLAPI void APIENTRY glCompileShaderIncludeARB (GLuint shader, GLsizei count, const GLchar* *path, const GLint *length);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6823 GLAPI GLboolean APIENTRY glIsNamedStringARB (GLint namelen, const GLchar *name);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6824 GLAPI void APIENTRY glGetNamedStringARB (GLint namelen, const GLchar *name, GLsizei bufSize, GLint *stringlen, GLchar *string);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6825 GLAPI void APIENTRY glGetNamedStringivARB (GLint namelen, const GLchar *name, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6826 #endif /* GL_GLEXT_PROTOTYPES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6827 typedef void (APIENTRYP PFNGLNAMEDSTRINGARBPROC) (GLenum type, GLint namelen, const GLchar *name, GLint stringlen, const GLchar *string);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6828 typedef void (APIENTRYP PFNGLDELETENAMEDSTRINGARBPROC) (GLint namelen, const GLchar *name);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6829 typedef void (APIENTRYP PFNGLCOMPILESHADERINCLUDEARBPROC) (GLuint shader, GLsizei count, const GLchar* *path, const GLint *length);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6830 typedef GLboolean (APIENTRYP PFNGLISNAMEDSTRINGARBPROC) (GLint namelen, const GLchar *name);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6831 typedef void (APIENTRYP PFNGLGETNAMEDSTRINGARBPROC) (GLint namelen, const GLchar *name, GLsizei bufSize, GLint *stringlen, GLchar *string);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6832 typedef void (APIENTRYP PFNGLGETNAMEDSTRINGIVARBPROC) (GLint namelen, const GLchar *name, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6833 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6834
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6835 #ifndef GL_ARB_texture_compression_bptc
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6836 #define GL_ARB_texture_compression_bptc 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6837 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6838
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6839 #ifndef GL_ARB_blend_func_extended
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6840 #define GL_ARB_blend_func_extended 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6841 #ifdef GL_GLEXT_PROTOTYPES
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6842 GLAPI void APIENTRY glBindFragDataLocationIndexed (GLuint program, GLuint colorNumber, GLuint index, const GLchar *name);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6843 GLAPI GLint APIENTRY glGetFragDataIndex (GLuint program, const GLchar *name);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6844 #endif /* GL_GLEXT_PROTOTYPES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6845 typedef void (APIENTRYP PFNGLBINDFRAGDATALOCATIONINDEXEDPROC) (GLuint program, GLuint colorNumber, GLuint index, const GLchar *name);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6846 typedef GLint (APIENTRYP PFNGLGETFRAGDATAINDEXPROC) (GLuint program, const GLchar *name);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6847 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6848
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6849 #ifndef GL_ARB_explicit_attrib_location
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6850 #define GL_ARB_explicit_attrib_location 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6851 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6852
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6853 #ifndef GL_ARB_occlusion_query2
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6854 #define GL_ARB_occlusion_query2 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6855 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6856
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6857 #ifndef GL_ARB_sampler_objects
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6858 #define GL_ARB_sampler_objects 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6859 #ifdef GL_GLEXT_PROTOTYPES
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6860 GLAPI void APIENTRY glGenSamplers (GLsizei count, GLuint *samplers);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6861 GLAPI void APIENTRY glDeleteSamplers (GLsizei count, const GLuint *samplers);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6862 GLAPI GLboolean APIENTRY glIsSampler (GLuint sampler);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6863 GLAPI void APIENTRY glBindSampler (GLuint unit, GLuint sampler);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6864 GLAPI void APIENTRY glSamplerParameteri (GLuint sampler, GLenum pname, GLint param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6865 GLAPI void APIENTRY glSamplerParameteriv (GLuint sampler, GLenum pname, const GLint *param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6866 GLAPI void APIENTRY glSamplerParameterf (GLuint sampler, GLenum pname, GLfloat param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6867 GLAPI void APIENTRY glSamplerParameterfv (GLuint sampler, GLenum pname, const GLfloat *param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6868 GLAPI void APIENTRY glSamplerParameterIiv (GLuint sampler, GLenum pname, const GLint *param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6869 GLAPI void APIENTRY glSamplerParameterIuiv (GLuint sampler, GLenum pname, const GLuint *param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6870 GLAPI void APIENTRY glGetSamplerParameteriv (GLuint sampler, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6871 GLAPI void APIENTRY glGetSamplerParameterIiv (GLuint sampler, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6872 GLAPI void APIENTRY glGetSamplerParameterfv (GLuint sampler, GLenum pname, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6873 GLAPI void APIENTRY glGetSamplerParameterIuiv (GLuint sampler, GLenum pname, GLuint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6874 #endif /* GL_GLEXT_PROTOTYPES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6875 typedef void (APIENTRYP PFNGLGENSAMPLERSPROC) (GLsizei count, GLuint *samplers);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6876 typedef void (APIENTRYP PFNGLDELETESAMPLERSPROC) (GLsizei count, const GLuint *samplers);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6877 typedef GLboolean (APIENTRYP PFNGLISSAMPLERPROC) (GLuint sampler);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6878 typedef void (APIENTRYP PFNGLBINDSAMPLERPROC) (GLuint unit, GLuint sampler);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6879 typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIPROC) (GLuint sampler, GLenum pname, GLint param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6880 typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIVPROC) (GLuint sampler, GLenum pname, const GLint *param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6881 typedef void (APIENTRYP PFNGLSAMPLERPARAMETERFPROC) (GLuint sampler, GLenum pname, GLfloat param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6882 typedef void (APIENTRYP PFNGLSAMPLERPARAMETERFVPROC) (GLuint sampler, GLenum pname, const GLfloat *param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6883 typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIIVPROC) (GLuint sampler, GLenum pname, const GLint *param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6884 typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIUIVPROC) (GLuint sampler, GLenum pname, const GLuint *param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6885 typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERIVPROC) (GLuint sampler, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6886 typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERIIVPROC) (GLuint sampler, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6887 typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERFVPROC) (GLuint sampler, GLenum pname, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6888 typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERIUIVPROC) (GLuint sampler, GLenum pname, GLuint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6889 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6890
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6891 #ifndef GL_ARB_texture_rgb10_a2ui
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6892 #define GL_ARB_texture_rgb10_a2ui 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6893 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6894
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6895 #ifndef GL_ARB_texture_swizzle
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6896 #define GL_ARB_texture_swizzle 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6897 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6898
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6899 #ifndef GL_ARB_timer_query
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6900 #define GL_ARB_timer_query 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6901 #ifdef GL_GLEXT_PROTOTYPES
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6902 GLAPI void APIENTRY glQueryCounter (GLuint id, GLenum target);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6903 GLAPI void APIENTRY glGetQueryObjecti64v (GLuint id, GLenum pname, GLint64 *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6904 GLAPI void APIENTRY glGetQueryObjectui64v (GLuint id, GLenum pname, GLuint64 *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6905 #endif /* GL_GLEXT_PROTOTYPES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6906 typedef void (APIENTRYP PFNGLQUERYCOUNTERPROC) (GLuint id, GLenum target);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6907 typedef void (APIENTRYP PFNGLGETQUERYOBJECTI64VPROC) (GLuint id, GLenum pname, GLint64 *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6908 typedef void (APIENTRYP PFNGLGETQUERYOBJECTUI64VPROC) (GLuint id, GLenum pname, GLuint64 *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6909 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6910
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6911 #ifndef GL_ARB_vertex_type_2_10_10_10_rev
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6912 #define GL_ARB_vertex_type_2_10_10_10_rev 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6913 #ifdef GL_GLEXT_PROTOTYPES
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6914 GLAPI void APIENTRY glVertexP2ui (GLenum type, GLuint value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6915 GLAPI void APIENTRY glVertexP2uiv (GLenum type, const GLuint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6916 GLAPI void APIENTRY glVertexP3ui (GLenum type, GLuint value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6917 GLAPI void APIENTRY glVertexP3uiv (GLenum type, const GLuint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6918 GLAPI void APIENTRY glVertexP4ui (GLenum type, GLuint value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6919 GLAPI void APIENTRY glVertexP4uiv (GLenum type, const GLuint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6920 GLAPI void APIENTRY glTexCoordP1ui (GLenum type, GLuint coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6921 GLAPI void APIENTRY glTexCoordP1uiv (GLenum type, const GLuint *coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6922 GLAPI void APIENTRY glTexCoordP2ui (GLenum type, GLuint coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6923 GLAPI void APIENTRY glTexCoordP2uiv (GLenum type, const GLuint *coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6924 GLAPI void APIENTRY glTexCoordP3ui (GLenum type, GLuint coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6925 GLAPI void APIENTRY glTexCoordP3uiv (GLenum type, const GLuint *coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6926 GLAPI void APIENTRY glTexCoordP4ui (GLenum type, GLuint coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6927 GLAPI void APIENTRY glTexCoordP4uiv (GLenum type, const GLuint *coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6928 GLAPI void APIENTRY glMultiTexCoordP1ui (GLenum texture, GLenum type, GLuint coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6929 GLAPI void APIENTRY glMultiTexCoordP1uiv (GLenum texture, GLenum type, const GLuint *coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6930 GLAPI void APIENTRY glMultiTexCoordP2ui (GLenum texture, GLenum type, GLuint coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6931 GLAPI void APIENTRY glMultiTexCoordP2uiv (GLenum texture, GLenum type, const GLuint *coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6932 GLAPI void APIENTRY glMultiTexCoordP3ui (GLenum texture, GLenum type, GLuint coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6933 GLAPI void APIENTRY glMultiTexCoordP3uiv (GLenum texture, GLenum type, const GLuint *coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6934 GLAPI void APIENTRY glMultiTexCoordP4ui (GLenum texture, GLenum type, GLuint coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6935 GLAPI void APIENTRY glMultiTexCoordP4uiv (GLenum texture, GLenum type, const GLuint *coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6936 GLAPI void APIENTRY glNormalP3ui (GLenum type, GLuint coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6937 GLAPI void APIENTRY glNormalP3uiv (GLenum type, const GLuint *coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6938 GLAPI void APIENTRY glColorP3ui (GLenum type, GLuint color);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6939 GLAPI void APIENTRY glColorP3uiv (GLenum type, const GLuint *color);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6940 GLAPI void APIENTRY glColorP4ui (GLenum type, GLuint color);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6941 GLAPI void APIENTRY glColorP4uiv (GLenum type, const GLuint *color);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6942 GLAPI void APIENTRY glSecondaryColorP3ui (GLenum type, GLuint color);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6943 GLAPI void APIENTRY glSecondaryColorP3uiv (GLenum type, const GLuint *color);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6944 GLAPI void APIENTRY glVertexAttribP1ui (GLuint index, GLenum type, GLboolean normalized, GLuint value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6945 GLAPI void APIENTRY glVertexAttribP1uiv (GLuint index, GLenum type, GLboolean normalized, const GLuint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6946 GLAPI void APIENTRY glVertexAttribP2ui (GLuint index, GLenum type, GLboolean normalized, GLuint value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6947 GLAPI void APIENTRY glVertexAttribP2uiv (GLuint index, GLenum type, GLboolean normalized, const GLuint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6948 GLAPI void APIENTRY glVertexAttribP3ui (GLuint index, GLenum type, GLboolean normalized, GLuint value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6949 GLAPI void APIENTRY glVertexAttribP3uiv (GLuint index, GLenum type, GLboolean normalized, const GLuint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6950 GLAPI void APIENTRY glVertexAttribP4ui (GLuint index, GLenum type, GLboolean normalized, GLuint value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6951 GLAPI void APIENTRY glVertexAttribP4uiv (GLuint index, GLenum type, GLboolean normalized, const GLuint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6952 #endif /* GL_GLEXT_PROTOTYPES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6953 typedef void (APIENTRYP PFNGLVERTEXP2UIPROC) (GLenum type, GLuint value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6954 typedef void (APIENTRYP PFNGLVERTEXP2UIVPROC) (GLenum type, const GLuint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6955 typedef void (APIENTRYP PFNGLVERTEXP3UIPROC) (GLenum type, GLuint value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6956 typedef void (APIENTRYP PFNGLVERTEXP3UIVPROC) (GLenum type, const GLuint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6957 typedef void (APIENTRYP PFNGLVERTEXP4UIPROC) (GLenum type, GLuint value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6958 typedef void (APIENTRYP PFNGLVERTEXP4UIVPROC) (GLenum type, const GLuint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6959 typedef void (APIENTRYP PFNGLTEXCOORDP1UIPROC) (GLenum type, GLuint coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6960 typedef void (APIENTRYP PFNGLTEXCOORDP1UIVPROC) (GLenum type, const GLuint *coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6961 typedef void (APIENTRYP PFNGLTEXCOORDP2UIPROC) (GLenum type, GLuint coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6962 typedef void (APIENTRYP PFNGLTEXCOORDP2UIVPROC) (GLenum type, const GLuint *coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6963 typedef void (APIENTRYP PFNGLTEXCOORDP3UIPROC) (GLenum type, GLuint coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6964 typedef void (APIENTRYP PFNGLTEXCOORDP3UIVPROC) (GLenum type, const GLuint *coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6965 typedef void (APIENTRYP PFNGLTEXCOORDP4UIPROC) (GLenum type, GLuint coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6966 typedef void (APIENTRYP PFNGLTEXCOORDP4UIVPROC) (GLenum type, const GLuint *coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6967 typedef void (APIENTRYP PFNGLMULTITEXCOORDP1UIPROC) (GLenum texture, GLenum type, GLuint coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6968 typedef void (APIENTRYP PFNGLMULTITEXCOORDP1UIVPROC) (GLenum texture, GLenum type, const GLuint *coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6969 typedef void (APIENTRYP PFNGLMULTITEXCOORDP2UIPROC) (GLenum texture, GLenum type, GLuint coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6970 typedef void (APIENTRYP PFNGLMULTITEXCOORDP2UIVPROC) (GLenum texture, GLenum type, const GLuint *coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6971 typedef void (APIENTRYP PFNGLMULTITEXCOORDP3UIPROC) (GLenum texture, GLenum type, GLuint coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6972 typedef void (APIENTRYP PFNGLMULTITEXCOORDP3UIVPROC) (GLenum texture, GLenum type, const GLuint *coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6973 typedef void (APIENTRYP PFNGLMULTITEXCOORDP4UIPROC) (GLenum texture, GLenum type, GLuint coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6974 typedef void (APIENTRYP PFNGLMULTITEXCOORDP4UIVPROC) (GLenum texture, GLenum type, const GLuint *coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6975 typedef void (APIENTRYP PFNGLNORMALP3UIPROC) (GLenum type, GLuint coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6976 typedef void (APIENTRYP PFNGLNORMALP3UIVPROC) (GLenum type, const GLuint *coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6977 typedef void (APIENTRYP PFNGLCOLORP3UIPROC) (GLenum type, GLuint color);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6978 typedef void (APIENTRYP PFNGLCOLORP3UIVPROC) (GLenum type, const GLuint *color);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6979 typedef void (APIENTRYP PFNGLCOLORP4UIPROC) (GLenum type, GLuint color);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6980 typedef void (APIENTRYP PFNGLCOLORP4UIVPROC) (GLenum type, const GLuint *color);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6981 typedef void (APIENTRYP PFNGLSECONDARYCOLORP3UIPROC) (GLenum type, GLuint color);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6982 typedef void (APIENTRYP PFNGLSECONDARYCOLORP3UIVPROC) (GLenum type, const GLuint *color);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6983 typedef void (APIENTRYP PFNGLVERTEXATTRIBP1UIPROC) (GLuint index, GLenum type, GLboolean normalized, GLuint value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6984 typedef void (APIENTRYP PFNGLVERTEXATTRIBP1UIVPROC) (GLuint index, GLenum type, GLboolean normalized, const GLuint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6985 typedef void (APIENTRYP PFNGLVERTEXATTRIBP2UIPROC) (GLuint index, GLenum type, GLboolean normalized, GLuint value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6986 typedef void (APIENTRYP PFNGLVERTEXATTRIBP2UIVPROC) (GLuint index, GLenum type, GLboolean normalized, const GLuint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6987 typedef void (APIENTRYP PFNGLVERTEXATTRIBP3UIPROC) (GLuint index, GLenum type, GLboolean normalized, GLuint value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6988 typedef void (APIENTRYP PFNGLVERTEXATTRIBP3UIVPROC) (GLuint index, GLenum type, GLboolean normalized, const GLuint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6989 typedef void (APIENTRYP PFNGLVERTEXATTRIBP4UIPROC) (GLuint index, GLenum type, GLboolean normalized, GLuint value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6990 typedef void (APIENTRYP PFNGLVERTEXATTRIBP4UIVPROC) (GLuint index, GLenum type, GLboolean normalized, const GLuint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6991 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6992
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6993 #ifndef GL_ARB_draw_indirect
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6994 #define GL_ARB_draw_indirect 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6995 #ifdef GL_GLEXT_PROTOTYPES
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6996 GLAPI void APIENTRY glDrawArraysIndirect (GLenum mode, const GLvoid *indirect);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6997 GLAPI void APIENTRY glDrawElementsIndirect (GLenum mode, GLenum type, const GLvoid *indirect);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6998 #endif /* GL_GLEXT_PROTOTYPES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
6999 typedef void (APIENTRYP PFNGLDRAWARRAYSINDIRECTPROC) (GLenum mode, const GLvoid *indirect);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7000 typedef void (APIENTRYP PFNGLDRAWELEMENTSINDIRECTPROC) (GLenum mode, GLenum type, const GLvoid *indirect);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7001 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7002
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7003 #ifndef GL_ARB_gpu_shader5
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7004 #define GL_ARB_gpu_shader5 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7005 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7006
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7007 #ifndef GL_ARB_gpu_shader_fp64
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7008 #define GL_ARB_gpu_shader_fp64 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7009 #ifdef GL_GLEXT_PROTOTYPES
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7010 GLAPI void APIENTRY glUniform1d (GLint location, GLdouble x);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7011 GLAPI void APIENTRY glUniform2d (GLint location, GLdouble x, GLdouble y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7012 GLAPI void APIENTRY glUniform3d (GLint location, GLdouble x, GLdouble y, GLdouble z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7013 GLAPI void APIENTRY glUniform4d (GLint location, GLdouble x, GLdouble y, GLdouble z, GLdouble w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7014 GLAPI void APIENTRY glUniform1dv (GLint location, GLsizei count, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7015 GLAPI void APIENTRY glUniform2dv (GLint location, GLsizei count, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7016 GLAPI void APIENTRY glUniform3dv (GLint location, GLsizei count, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7017 GLAPI void APIENTRY glUniform4dv (GLint location, GLsizei count, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7018 GLAPI void APIENTRY glUniformMatrix2dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7019 GLAPI void APIENTRY glUniformMatrix3dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7020 GLAPI void APIENTRY glUniformMatrix4dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7021 GLAPI void APIENTRY glUniformMatrix2x3dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7022 GLAPI void APIENTRY glUniformMatrix2x4dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7023 GLAPI void APIENTRY glUniformMatrix3x2dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7024 GLAPI void APIENTRY glUniformMatrix3x4dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7025 GLAPI void APIENTRY glUniformMatrix4x2dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7026 GLAPI void APIENTRY glUniformMatrix4x3dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7027 GLAPI void APIENTRY glGetUniformdv (GLuint program, GLint location, GLdouble *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7028 #endif /* GL_GLEXT_PROTOTYPES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7029 typedef void (APIENTRYP PFNGLUNIFORM1DPROC) (GLint location, GLdouble x);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7030 typedef void (APIENTRYP PFNGLUNIFORM2DPROC) (GLint location, GLdouble x, GLdouble y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7031 typedef void (APIENTRYP PFNGLUNIFORM3DPROC) (GLint location, GLdouble x, GLdouble y, GLdouble z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7032 typedef void (APIENTRYP PFNGLUNIFORM4DPROC) (GLint location, GLdouble x, GLdouble y, GLdouble z, GLdouble w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7033 typedef void (APIENTRYP PFNGLUNIFORM1DVPROC) (GLint location, GLsizei count, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7034 typedef void (APIENTRYP PFNGLUNIFORM2DVPROC) (GLint location, GLsizei count, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7035 typedef void (APIENTRYP PFNGLUNIFORM3DVPROC) (GLint location, GLsizei count, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7036 typedef void (APIENTRYP PFNGLUNIFORM4DVPROC) (GLint location, GLsizei count, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7037 typedef void (APIENTRYP PFNGLUNIFORMMATRIX2DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7038 typedef void (APIENTRYP PFNGLUNIFORMMATRIX3DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7039 typedef void (APIENTRYP PFNGLUNIFORMMATRIX4DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7040 typedef void (APIENTRYP PFNGLUNIFORMMATRIX2X3DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7041 typedef void (APIENTRYP PFNGLUNIFORMMATRIX2X4DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7042 typedef void (APIENTRYP PFNGLUNIFORMMATRIX3X2DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7043 typedef void (APIENTRYP PFNGLUNIFORMMATRIX3X4DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7044 typedef void (APIENTRYP PFNGLUNIFORMMATRIX4X2DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7045 typedef void (APIENTRYP PFNGLUNIFORMMATRIX4X3DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7046 typedef void (APIENTRYP PFNGLGETUNIFORMDVPROC) (GLuint program, GLint location, GLdouble *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7047 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7048
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7049 #ifndef GL_ARB_shader_subroutine
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7050 #define GL_ARB_shader_subroutine 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7051 #ifdef GL_GLEXT_PROTOTYPES
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7052 GLAPI GLint APIENTRY glGetSubroutineUniformLocation (GLuint program, GLenum shadertype, const GLchar *name);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7053 GLAPI GLuint APIENTRY glGetSubroutineIndex (GLuint program, GLenum shadertype, const GLchar *name);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7054 GLAPI void APIENTRY glGetActiveSubroutineUniformiv (GLuint program, GLenum shadertype, GLuint index, GLenum pname, GLint *values);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7055 GLAPI void APIENTRY glGetActiveSubroutineUniformName (GLuint program, GLenum shadertype, GLuint index, GLsizei bufsize, GLsizei *length, GLchar *name);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7056 GLAPI void APIENTRY glGetActiveSubroutineName (GLuint program, GLenum shadertype, GLuint index, GLsizei bufsize, GLsizei *length, GLchar *name);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7057 GLAPI void APIENTRY glUniformSubroutinesuiv (GLenum shadertype, GLsizei count, const GLuint *indices);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7058 GLAPI void APIENTRY glGetUniformSubroutineuiv (GLenum shadertype, GLint location, GLuint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7059 GLAPI void APIENTRY glGetProgramStageiv (GLuint program, GLenum shadertype, GLenum pname, GLint *values);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7060 #endif /* GL_GLEXT_PROTOTYPES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7061 typedef GLint (APIENTRYP PFNGLGETSUBROUTINEUNIFORMLOCATIONPROC) (GLuint program, GLenum shadertype, const GLchar *name);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7062 typedef GLuint (APIENTRYP PFNGLGETSUBROUTINEINDEXPROC) (GLuint program, GLenum shadertype, const GLchar *name);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7063 typedef void (APIENTRYP PFNGLGETACTIVESUBROUTINEUNIFORMIVPROC) (GLuint program, GLenum shadertype, GLuint index, GLenum pname, GLint *values);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7064 typedef void (APIENTRYP PFNGLGETACTIVESUBROUTINEUNIFORMNAMEPROC) (GLuint program, GLenum shadertype, GLuint index, GLsizei bufsize, GLsizei *length, GLchar *name);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7065 typedef void (APIENTRYP PFNGLGETACTIVESUBROUTINENAMEPROC) (GLuint program, GLenum shadertype, GLuint index, GLsizei bufsize, GLsizei *length, GLchar *name);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7066 typedef void (APIENTRYP PFNGLUNIFORMSUBROUTINESUIVPROC) (GLenum shadertype, GLsizei count, const GLuint *indices);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7067 typedef void (APIENTRYP PFNGLGETUNIFORMSUBROUTINEUIVPROC) (GLenum shadertype, GLint location, GLuint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7068 typedef void (APIENTRYP PFNGLGETPROGRAMSTAGEIVPROC) (GLuint program, GLenum shadertype, GLenum pname, GLint *values);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7069 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7070
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7071 #ifndef GL_ARB_tessellation_shader
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7072 #define GL_ARB_tessellation_shader 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7073 #ifdef GL_GLEXT_PROTOTYPES
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7074 GLAPI void APIENTRY glPatchParameteri (GLenum pname, GLint value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7075 GLAPI void APIENTRY glPatchParameterfv (GLenum pname, const GLfloat *values);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7076 #endif /* GL_GLEXT_PROTOTYPES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7077 typedef void (APIENTRYP PFNGLPATCHPARAMETERIPROC) (GLenum pname, GLint value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7078 typedef void (APIENTRYP PFNGLPATCHPARAMETERFVPROC) (GLenum pname, const GLfloat *values);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7079 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7080
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7081 #ifndef GL_ARB_texture_buffer_object_rgb32
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7082 #define GL_ARB_texture_buffer_object_rgb32 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7083 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7084
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7085 #ifndef GL_ARB_transform_feedback2
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7086 #define GL_ARB_transform_feedback2 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7087 #ifdef GL_GLEXT_PROTOTYPES
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7088 GLAPI void APIENTRY glBindTransformFeedback (GLenum target, GLuint id);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7089 GLAPI void APIENTRY glDeleteTransformFeedbacks (GLsizei n, const GLuint *ids);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7090 GLAPI void APIENTRY glGenTransformFeedbacks (GLsizei n, GLuint *ids);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7091 GLAPI GLboolean APIENTRY glIsTransformFeedback (GLuint id);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7092 GLAPI void APIENTRY glPauseTransformFeedback (void);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7093 GLAPI void APIENTRY glResumeTransformFeedback (void);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7094 GLAPI void APIENTRY glDrawTransformFeedback (GLenum mode, GLuint id);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7095 #endif /* GL_GLEXT_PROTOTYPES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7096 typedef void (APIENTRYP PFNGLBINDTRANSFORMFEEDBACKPROC) (GLenum target, GLuint id);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7097 typedef void (APIENTRYP PFNGLDELETETRANSFORMFEEDBACKSPROC) (GLsizei n, const GLuint *ids);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7098 typedef void (APIENTRYP PFNGLGENTRANSFORMFEEDBACKSPROC) (GLsizei n, GLuint *ids);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7099 typedef GLboolean (APIENTRYP PFNGLISTRANSFORMFEEDBACKPROC) (GLuint id);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7100 typedef void (APIENTRYP PFNGLPAUSETRANSFORMFEEDBACKPROC) (void);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7101 typedef void (APIENTRYP PFNGLRESUMETRANSFORMFEEDBACKPROC) (void);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7102 typedef void (APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKPROC) (GLenum mode, GLuint id);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7103 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7104
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7105 #ifndef GL_ARB_transform_feedback3
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7106 #define GL_ARB_transform_feedback3 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7107 #ifdef GL_GLEXT_PROTOTYPES
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7108 GLAPI void APIENTRY glDrawTransformFeedbackStream (GLenum mode, GLuint id, GLuint stream);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7109 GLAPI void APIENTRY glBeginQueryIndexed (GLenum target, GLuint index, GLuint id);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7110 GLAPI void APIENTRY glEndQueryIndexed (GLenum target, GLuint index);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7111 GLAPI void APIENTRY glGetQueryIndexediv (GLenum target, GLuint index, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7112 #endif /* GL_GLEXT_PROTOTYPES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7113 typedef void (APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKSTREAMPROC) (GLenum mode, GLuint id, GLuint stream);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7114 typedef void (APIENTRYP PFNGLBEGINQUERYINDEXEDPROC) (GLenum target, GLuint index, GLuint id);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7115 typedef void (APIENTRYP PFNGLENDQUERYINDEXEDPROC) (GLenum target, GLuint index);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7116 typedef void (APIENTRYP PFNGLGETQUERYINDEXEDIVPROC) (GLenum target, GLuint index, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7117 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7118
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7119 #ifndef GL_ARB_ES2_compatibility
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7120 #define GL_ARB_ES2_compatibility 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7121 #ifdef GL_GLEXT_PROTOTYPES
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7122 GLAPI void APIENTRY glReleaseShaderCompiler (void);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7123 GLAPI void APIENTRY glShaderBinary (GLsizei count, const GLuint *shaders, GLenum binaryformat, const GLvoid *binary, GLsizei length);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7124 GLAPI void APIENTRY glGetShaderPrecisionFormat (GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7125 GLAPI void APIENTRY glDepthRangef (GLclampf n, GLclampf f);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7126 GLAPI void APIENTRY glClearDepthf (GLclampf d);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7127 #endif /* GL_GLEXT_PROTOTYPES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7128 typedef void (APIENTRYP PFNGLRELEASESHADERCOMPILERPROC) (void);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7129 typedef void (APIENTRYP PFNGLSHADERBINARYPROC) (GLsizei count, const GLuint *shaders, GLenum binaryformat, const GLvoid *binary, GLsizei length);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7130 typedef void (APIENTRYP PFNGLGETSHADERPRECISIONFORMATPROC) (GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7131 typedef void (APIENTRYP PFNGLDEPTHRANGEFPROC) (GLclampf n, GLclampf f);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7132 typedef void (APIENTRYP PFNGLCLEARDEPTHFPROC) (GLclampf d);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7133 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7134
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7135 #ifndef GL_ARB_get_program_binary
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7136 #define GL_ARB_get_program_binary 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7137 #ifdef GL_GLEXT_PROTOTYPES
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7138 GLAPI void APIENTRY glGetProgramBinary (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, GLvoid *binary);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7139 GLAPI void APIENTRY glProgramBinary (GLuint program, GLenum binaryFormat, const GLvoid *binary, GLsizei length);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7140 GLAPI void APIENTRY glProgramParameteri (GLuint program, GLenum pname, GLint value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7141 #endif /* GL_GLEXT_PROTOTYPES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7142 typedef void (APIENTRYP PFNGLGETPROGRAMBINARYPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, GLvoid *binary);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7143 typedef void (APIENTRYP PFNGLPROGRAMBINARYPROC) (GLuint program, GLenum binaryFormat, const GLvoid *binary, GLsizei length);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7144 typedef void (APIENTRYP PFNGLPROGRAMPARAMETERIPROC) (GLuint program, GLenum pname, GLint value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7145 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7146
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7147 #ifndef GL_ARB_separate_shader_objects
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7148 #define GL_ARB_separate_shader_objects 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7149 #ifdef GL_GLEXT_PROTOTYPES
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7150 GLAPI void APIENTRY glUseProgramStages (GLuint pipeline, GLbitfield stages, GLuint program);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7151 GLAPI void APIENTRY glActiveShaderProgram (GLuint pipeline, GLuint program);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7152 GLAPI GLuint APIENTRY glCreateShaderProgramv (GLenum type, GLsizei count, const GLchar* *strings);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7153 GLAPI void APIENTRY glBindProgramPipeline (GLuint pipeline);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7154 GLAPI void APIENTRY glDeleteProgramPipelines (GLsizei n, const GLuint *pipelines);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7155 GLAPI void APIENTRY glGenProgramPipelines (GLsizei n, GLuint *pipelines);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7156 GLAPI GLboolean APIENTRY glIsProgramPipeline (GLuint pipeline);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7157 GLAPI void APIENTRY glGetProgramPipelineiv (GLuint pipeline, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7158 GLAPI void APIENTRY glProgramUniform1i (GLuint program, GLint location, GLint v0);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7159 GLAPI void APIENTRY glProgramUniform1iv (GLuint program, GLint location, GLsizei count, const GLint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7160 GLAPI void APIENTRY glProgramUniform1f (GLuint program, GLint location, GLfloat v0);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7161 GLAPI void APIENTRY glProgramUniform1fv (GLuint program, GLint location, GLsizei count, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7162 GLAPI void APIENTRY glProgramUniform1d (GLuint program, GLint location, GLdouble v0);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7163 GLAPI void APIENTRY glProgramUniform1dv (GLuint program, GLint location, GLsizei count, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7164 GLAPI void APIENTRY glProgramUniform1ui (GLuint program, GLint location, GLuint v0);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7165 GLAPI void APIENTRY glProgramUniform1uiv (GLuint program, GLint location, GLsizei count, const GLuint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7166 GLAPI void APIENTRY glProgramUniform2i (GLuint program, GLint location, GLint v0, GLint v1);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7167 GLAPI void APIENTRY glProgramUniform2iv (GLuint program, GLint location, GLsizei count, const GLint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7168 GLAPI void APIENTRY glProgramUniform2f (GLuint program, GLint location, GLfloat v0, GLfloat v1);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7169 GLAPI void APIENTRY glProgramUniform2fv (GLuint program, GLint location, GLsizei count, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7170 GLAPI void APIENTRY glProgramUniform2d (GLuint program, GLint location, GLdouble v0, GLdouble v1);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7171 GLAPI void APIENTRY glProgramUniform2dv (GLuint program, GLint location, GLsizei count, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7172 GLAPI void APIENTRY glProgramUniform2ui (GLuint program, GLint location, GLuint v0, GLuint v1);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7173 GLAPI void APIENTRY glProgramUniform2uiv (GLuint program, GLint location, GLsizei count, const GLuint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7174 GLAPI void APIENTRY glProgramUniform3i (GLuint program, GLint location, GLint v0, GLint v1, GLint v2);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7175 GLAPI void APIENTRY glProgramUniform3iv (GLuint program, GLint location, GLsizei count, const GLint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7176 GLAPI void APIENTRY glProgramUniform3f (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7177 GLAPI void APIENTRY glProgramUniform3fv (GLuint program, GLint location, GLsizei count, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7178 GLAPI void APIENTRY glProgramUniform3d (GLuint program, GLint location, GLdouble v0, GLdouble v1, GLdouble v2);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7179 GLAPI void APIENTRY glProgramUniform3dv (GLuint program, GLint location, GLsizei count, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7180 GLAPI void APIENTRY glProgramUniform3ui (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7181 GLAPI void APIENTRY glProgramUniform3uiv (GLuint program, GLint location, GLsizei count, const GLuint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7182 GLAPI void APIENTRY glProgramUniform4i (GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7183 GLAPI void APIENTRY glProgramUniform4iv (GLuint program, GLint location, GLsizei count, const GLint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7184 GLAPI void APIENTRY glProgramUniform4f (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7185 GLAPI void APIENTRY glProgramUniform4fv (GLuint program, GLint location, GLsizei count, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7186 GLAPI void APIENTRY glProgramUniform4d (GLuint program, GLint location, GLdouble v0, GLdouble v1, GLdouble v2, GLdouble v3);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7187 GLAPI void APIENTRY glProgramUniform4dv (GLuint program, GLint location, GLsizei count, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7188 GLAPI void APIENTRY glProgramUniform4ui (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7189 GLAPI void APIENTRY glProgramUniform4uiv (GLuint program, GLint location, GLsizei count, const GLuint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7190 GLAPI void APIENTRY glProgramUniformMatrix2fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7191 GLAPI void APIENTRY glProgramUniformMatrix3fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7192 GLAPI void APIENTRY glProgramUniformMatrix4fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7193 GLAPI void APIENTRY glProgramUniformMatrix2dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7194 GLAPI void APIENTRY glProgramUniformMatrix3dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7195 GLAPI void APIENTRY glProgramUniformMatrix4dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7196 GLAPI void APIENTRY glProgramUniformMatrix2x3fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7197 GLAPI void APIENTRY glProgramUniformMatrix3x2fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7198 GLAPI void APIENTRY glProgramUniformMatrix2x4fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7199 GLAPI void APIENTRY glProgramUniformMatrix4x2fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7200 GLAPI void APIENTRY glProgramUniformMatrix3x4fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7201 GLAPI void APIENTRY glProgramUniformMatrix4x3fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7202 GLAPI void APIENTRY glProgramUniformMatrix2x3dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7203 GLAPI void APIENTRY glProgramUniformMatrix3x2dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7204 GLAPI void APIENTRY glProgramUniformMatrix2x4dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7205 GLAPI void APIENTRY glProgramUniformMatrix4x2dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7206 GLAPI void APIENTRY glProgramUniformMatrix3x4dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7207 GLAPI void APIENTRY glProgramUniformMatrix4x3dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7208 GLAPI void APIENTRY glValidateProgramPipeline (GLuint pipeline);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7209 GLAPI void APIENTRY glGetProgramPipelineInfoLog (GLuint pipeline, GLsizei bufSize, GLsizei *length, GLchar *infoLog);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7210 #endif /* GL_GLEXT_PROTOTYPES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7211 typedef void (APIENTRYP PFNGLUSEPROGRAMSTAGESPROC) (GLuint pipeline, GLbitfield stages, GLuint program);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7212 typedef void (APIENTRYP PFNGLACTIVESHADERPROGRAMPROC) (GLuint pipeline, GLuint program);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7213 typedef GLuint (APIENTRYP PFNGLCREATESHADERPROGRAMVPROC) (GLenum type, GLsizei count, const GLchar* *strings);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7214 typedef void (APIENTRYP PFNGLBINDPROGRAMPIPELINEPROC) (GLuint pipeline);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7215 typedef void (APIENTRYP PFNGLDELETEPROGRAMPIPELINESPROC) (GLsizei n, const GLuint *pipelines);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7216 typedef void (APIENTRYP PFNGLGENPROGRAMPIPELINESPROC) (GLsizei n, GLuint *pipelines);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7217 typedef GLboolean (APIENTRYP PFNGLISPROGRAMPIPELINEPROC) (GLuint pipeline);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7218 typedef void (APIENTRYP PFNGLGETPROGRAMPIPELINEIVPROC) (GLuint pipeline, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7219 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1IPROC) (GLuint program, GLint location, GLint v0);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7220 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1IVPROC) (GLuint program, GLint location, GLsizei count, const GLint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7221 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1FPROC) (GLuint program, GLint location, GLfloat v0);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7222 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1FVPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7223 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1DPROC) (GLuint program, GLint location, GLdouble v0);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7224 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1DVPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7225 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UIPROC) (GLuint program, GLint location, GLuint v0);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7226 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UIVPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7227 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2IPROC) (GLuint program, GLint location, GLint v0, GLint v1);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7228 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2IVPROC) (GLuint program, GLint location, GLsizei count, const GLint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7229 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2FPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7230 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2FVPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7231 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2DPROC) (GLuint program, GLint location, GLdouble v0, GLdouble v1);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7232 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2DVPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7233 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UIPROC) (GLuint program, GLint location, GLuint v0, GLuint v1);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7234 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UIVPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7235 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3IPROC) (GLuint program, GLint location, GLint v0, GLint v1, GLint v2);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7236 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3IVPROC) (GLuint program, GLint location, GLsizei count, const GLint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7237 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3FPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7238 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3FVPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7239 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3DPROC) (GLuint program, GLint location, GLdouble v0, GLdouble v1, GLdouble v2);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7240 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3DVPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7241 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UIPROC) (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7242 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UIVPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7243 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4IPROC) (GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7244 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4IVPROC) (GLuint program, GLint location, GLsizei count, const GLint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7245 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4FPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7246 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4FVPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7247 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4DPROC) (GLuint program, GLint location, GLdouble v0, GLdouble v1, GLdouble v2, GLdouble v3);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7248 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4DVPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7249 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UIPROC) (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7250 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UIVPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7251 typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7252 typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7253 typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7254 typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7255 typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7256 typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7257 typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X3FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7258 typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X2FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7259 typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X4FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7260 typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X2FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7261 typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X4FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7262 typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X3FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7263 typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X3DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7264 typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X2DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7265 typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X4DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7266 typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X2DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7267 typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X4DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7268 typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X3DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7269 typedef void (APIENTRYP PFNGLVALIDATEPROGRAMPIPELINEPROC) (GLuint pipeline);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7270 typedef void (APIENTRYP PFNGLGETPROGRAMPIPELINEINFOLOGPROC) (GLuint pipeline, GLsizei bufSize, GLsizei *length, GLchar *infoLog);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7271 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7272
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7273 #ifndef GL_ARB_vertex_attrib_64bit
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7274 #define GL_ARB_vertex_attrib_64bit 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7275 #ifdef GL_GLEXT_PROTOTYPES
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7276 GLAPI void APIENTRY glVertexAttribL1d (GLuint index, GLdouble x);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7277 GLAPI void APIENTRY glVertexAttribL2d (GLuint index, GLdouble x, GLdouble y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7278 GLAPI void APIENTRY glVertexAttribL3d (GLuint index, GLdouble x, GLdouble y, GLdouble z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7279 GLAPI void APIENTRY glVertexAttribL4d (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7280 GLAPI void APIENTRY glVertexAttribL1dv (GLuint index, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7281 GLAPI void APIENTRY glVertexAttribL2dv (GLuint index, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7282 GLAPI void APIENTRY glVertexAttribL3dv (GLuint index, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7283 GLAPI void APIENTRY glVertexAttribL4dv (GLuint index, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7284 GLAPI void APIENTRY glVertexAttribLPointer (GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7285 GLAPI void APIENTRY glGetVertexAttribLdv (GLuint index, GLenum pname, GLdouble *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7286 #endif /* GL_GLEXT_PROTOTYPES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7287 typedef void (APIENTRYP PFNGLVERTEXATTRIBL1DPROC) (GLuint index, GLdouble x);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7288 typedef void (APIENTRYP PFNGLVERTEXATTRIBL2DPROC) (GLuint index, GLdouble x, GLdouble y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7289 typedef void (APIENTRYP PFNGLVERTEXATTRIBL3DPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7290 typedef void (APIENTRYP PFNGLVERTEXATTRIBL4DPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7291 typedef void (APIENTRYP PFNGLVERTEXATTRIBL1DVPROC) (GLuint index, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7292 typedef void (APIENTRYP PFNGLVERTEXATTRIBL2DVPROC) (GLuint index, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7293 typedef void (APIENTRYP PFNGLVERTEXATTRIBL3DVPROC) (GLuint index, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7294 typedef void (APIENTRYP PFNGLVERTEXATTRIBL4DVPROC) (GLuint index, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7295 typedef void (APIENTRYP PFNGLVERTEXATTRIBLPOINTERPROC) (GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7296 typedef void (APIENTRYP PFNGLGETVERTEXATTRIBLDVPROC) (GLuint index, GLenum pname, GLdouble *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7297 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7298
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7299 #ifndef GL_ARB_viewport_array
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7300 #define GL_ARB_viewport_array 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7301 #ifdef GL_GLEXT_PROTOTYPES
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7302 GLAPI void APIENTRY glViewportArrayv (GLuint first, GLsizei count, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7303 GLAPI void APIENTRY glViewportIndexedf (GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7304 GLAPI void APIENTRY glViewportIndexedfv (GLuint index, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7305 GLAPI void APIENTRY glScissorArrayv (GLuint first, GLsizei count, const GLint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7306 GLAPI void APIENTRY glScissorIndexed (GLuint index, GLint left, GLint bottom, GLsizei width, GLsizei height);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7307 GLAPI void APIENTRY glScissorIndexedv (GLuint index, const GLint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7308 GLAPI void APIENTRY glDepthRangeArrayv (GLuint first, GLsizei count, const GLclampd *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7309 GLAPI void APIENTRY glDepthRangeIndexed (GLuint index, GLclampd n, GLclampd f);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7310 GLAPI void APIENTRY glGetFloati_v (GLenum target, GLuint index, GLfloat *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7311 GLAPI void APIENTRY glGetDoublei_v (GLenum target, GLuint index, GLdouble *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7312 #endif /* GL_GLEXT_PROTOTYPES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7313 typedef void (APIENTRYP PFNGLVIEWPORTARRAYVPROC) (GLuint first, GLsizei count, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7314 typedef void (APIENTRYP PFNGLVIEWPORTINDEXEDFPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7315 typedef void (APIENTRYP PFNGLVIEWPORTINDEXEDFVPROC) (GLuint index, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7316 typedef void (APIENTRYP PFNGLSCISSORARRAYVPROC) (GLuint first, GLsizei count, const GLint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7317 typedef void (APIENTRYP PFNGLSCISSORINDEXEDPROC) (GLuint index, GLint left, GLint bottom, GLsizei width, GLsizei height);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7318 typedef void (APIENTRYP PFNGLSCISSORINDEXEDVPROC) (GLuint index, const GLint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7319 typedef void (APIENTRYP PFNGLDEPTHRANGEARRAYVPROC) (GLuint first, GLsizei count, const GLclampd *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7320 typedef void (APIENTRYP PFNGLDEPTHRANGEINDEXEDPROC) (GLuint index, GLclampd n, GLclampd f);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7321 typedef void (APIENTRYP PFNGLGETFLOATI_VPROC) (GLenum target, GLuint index, GLfloat *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7322 typedef void (APIENTRYP PFNGLGETDOUBLEI_VPROC) (GLenum target, GLuint index, GLdouble *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7323 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7324
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7325 #ifndef GL_ARB_cl_event
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7326 #define GL_ARB_cl_event 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7327 #ifdef GL_GLEXT_PROTOTYPES
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7328 GLAPI GLsync APIENTRY glCreateSyncFromCLeventARB (struct _cl_context * context, struct _cl_event * event, GLbitfield flags);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7329 #endif /* GL_GLEXT_PROTOTYPES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7330 typedef GLsync (APIENTRYP PFNGLCREATESYNCFROMCLEVENTARBPROC) (struct _cl_context * context, struct _cl_event * event, GLbitfield flags);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7331 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7332
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7333 #ifndef GL_ARB_debug_output
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7334 #define GL_ARB_debug_output 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7335 #ifdef GL_GLEXT_PROTOTYPES
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7336 GLAPI void APIENTRY glDebugMessageControlARB (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7337 GLAPI void APIENTRY glDebugMessageInsertARB (GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7338 GLAPI void APIENTRY glDebugMessageCallbackARB (GLDEBUGPROCARB callback, const GLvoid *userParam);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7339 GLAPI GLuint APIENTRY glGetDebugMessageLogARB (GLuint count, GLsizei bufsize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7340 #endif /* GL_GLEXT_PROTOTYPES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7341 typedef void (APIENTRYP PFNGLDEBUGMESSAGECONTROLARBPROC) (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7342 typedef void (APIENTRYP PFNGLDEBUGMESSAGEINSERTARBPROC) (GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7343 typedef void (APIENTRYP PFNGLDEBUGMESSAGECALLBACKARBPROC) (GLDEBUGPROCARB callback, const GLvoid *userParam);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7344 typedef GLuint (APIENTRYP PFNGLGETDEBUGMESSAGELOGARBPROC) (GLuint count, GLsizei bufsize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7345 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7346
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7347 #ifndef GL_ARB_robustness
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7348 #define GL_ARB_robustness 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7349 #ifdef GL_GLEXT_PROTOTYPES
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7350 GLAPI GLenum APIENTRY glGetGraphicsResetStatusARB (void);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7351 GLAPI void APIENTRY glGetnMapdvARB (GLenum target, GLenum query, GLsizei bufSize, GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7352 GLAPI void APIENTRY glGetnMapfvARB (GLenum target, GLenum query, GLsizei bufSize, GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7353 GLAPI void APIENTRY glGetnMapivARB (GLenum target, GLenum query, GLsizei bufSize, GLint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7354 GLAPI void APIENTRY glGetnPixelMapfvARB (GLenum map, GLsizei bufSize, GLfloat *values);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7355 GLAPI void APIENTRY glGetnPixelMapuivARB (GLenum map, GLsizei bufSize, GLuint *values);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7356 GLAPI void APIENTRY glGetnPixelMapusvARB (GLenum map, GLsizei bufSize, GLushort *values);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7357 GLAPI void APIENTRY glGetnPolygonStippleARB (GLsizei bufSize, GLubyte *pattern);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7358 GLAPI void APIENTRY glGetnColorTableARB (GLenum target, GLenum format, GLenum type, GLsizei bufSize, GLvoid *table);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7359 GLAPI void APIENTRY glGetnConvolutionFilterARB (GLenum target, GLenum format, GLenum type, GLsizei bufSize, GLvoid *image);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7360 GLAPI void APIENTRY glGetnSeparableFilterARB (GLenum target, GLenum format, GLenum type, GLsizei rowBufSize, GLvoid *row, GLsizei columnBufSize, GLvoid *column, GLvoid *span);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7361 GLAPI void APIENTRY glGetnHistogramARB (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, GLvoid *values);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7362 GLAPI void APIENTRY glGetnMinmaxARB (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, GLvoid *values);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7363 GLAPI void APIENTRY glGetnTexImageARB (GLenum target, GLint level, GLenum format, GLenum type, GLsizei bufSize, GLvoid *img);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7364 GLAPI void APIENTRY glReadnPixelsARB (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, GLvoid *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7365 GLAPI void APIENTRY glGetnCompressedTexImageARB (GLenum target, GLint lod, GLsizei bufSize, GLvoid *img);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7366 GLAPI void APIENTRY glGetnUniformfvARB (GLuint program, GLint location, GLsizei bufSize, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7367 GLAPI void APIENTRY glGetnUniformivARB (GLuint program, GLint location, GLsizei bufSize, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7368 GLAPI void APIENTRY glGetnUniformuivARB (GLuint program, GLint location, GLsizei bufSize, GLuint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7369 GLAPI void APIENTRY glGetnUniformdvARB (GLuint program, GLint location, GLsizei bufSize, GLdouble *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7370 #endif /* GL_GLEXT_PROTOTYPES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7371 typedef GLenum (APIENTRYP PFNGLGETGRAPHICSRESETSTATUSARBPROC) (void);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7372 typedef void (APIENTRYP PFNGLGETNMAPDVARBPROC) (GLenum target, GLenum query, GLsizei bufSize, GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7373 typedef void (APIENTRYP PFNGLGETNMAPFVARBPROC) (GLenum target, GLenum query, GLsizei bufSize, GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7374 typedef void (APIENTRYP PFNGLGETNMAPIVARBPROC) (GLenum target, GLenum query, GLsizei bufSize, GLint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7375 typedef void (APIENTRYP PFNGLGETNPIXELMAPFVARBPROC) (GLenum map, GLsizei bufSize, GLfloat *values);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7376 typedef void (APIENTRYP PFNGLGETNPIXELMAPUIVARBPROC) (GLenum map, GLsizei bufSize, GLuint *values);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7377 typedef void (APIENTRYP PFNGLGETNPIXELMAPUSVARBPROC) (GLenum map, GLsizei bufSize, GLushort *values);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7378 typedef void (APIENTRYP PFNGLGETNPOLYGONSTIPPLEARBPROC) (GLsizei bufSize, GLubyte *pattern);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7379 typedef void (APIENTRYP PFNGLGETNCOLORTABLEARBPROC) (GLenum target, GLenum format, GLenum type, GLsizei bufSize, GLvoid *table);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7380 typedef void (APIENTRYP PFNGLGETNCONVOLUTIONFILTERARBPROC) (GLenum target, GLenum format, GLenum type, GLsizei bufSize, GLvoid *image);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7381 typedef void (APIENTRYP PFNGLGETNSEPARABLEFILTERARBPROC) (GLenum target, GLenum format, GLenum type, GLsizei rowBufSize, GLvoid *row, GLsizei columnBufSize, GLvoid *column, GLvoid *span);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7382 typedef void (APIENTRYP PFNGLGETNHISTOGRAMARBPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, GLvoid *values);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7383 typedef void (APIENTRYP PFNGLGETNMINMAXARBPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, GLvoid *values);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7384 typedef void (APIENTRYP PFNGLGETNTEXIMAGEARBPROC) (GLenum target, GLint level, GLenum format, GLenum type, GLsizei bufSize, GLvoid *img);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7385 typedef void (APIENTRYP PFNGLREADNPIXELSARBPROC) (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, GLvoid *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7386 typedef void (APIENTRYP PFNGLGETNCOMPRESSEDTEXIMAGEARBPROC) (GLenum target, GLint lod, GLsizei bufSize, GLvoid *img);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7387 typedef void (APIENTRYP PFNGLGETNUNIFORMFVARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7388 typedef void (APIENTRYP PFNGLGETNUNIFORMIVARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7389 typedef void (APIENTRYP PFNGLGETNUNIFORMUIVARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLuint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7390 typedef void (APIENTRYP PFNGLGETNUNIFORMDVARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLdouble *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7391 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7392
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7393 #ifndef GL_ARB_shader_stencil_export
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7394 #define GL_ARB_shader_stencil_export 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7395 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7396
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7397 #ifndef GL_EXT_abgr
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7398 #define GL_EXT_abgr 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7399 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7400
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7401 #ifndef GL_EXT_blend_color
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7402 #define GL_EXT_blend_color 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7403 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7404 GLAPI void APIENTRY glBlendColorEXT (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7405 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7406 typedef void (APIENTRYP PFNGLBLENDCOLOREXTPROC) (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7407 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7408
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7409 #ifndef GL_EXT_polygon_offset
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7410 #define GL_EXT_polygon_offset 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7411 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7412 GLAPI void APIENTRY glPolygonOffsetEXT (GLfloat factor, GLfloat bias);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7413 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7414 typedef void (APIENTRYP PFNGLPOLYGONOFFSETEXTPROC) (GLfloat factor, GLfloat bias);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7415 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7416
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7417 #ifndef GL_EXT_texture
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7418 #define GL_EXT_texture 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7419 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7420
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7421 #ifndef GL_EXT_texture3D
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7422 #define GL_EXT_texture3D 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7423 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7424 GLAPI void APIENTRY glTexImage3DEXT (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7425 GLAPI void APIENTRY glTexSubImage3DEXT (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7426 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7427 typedef void (APIENTRYP PFNGLTEXIMAGE3DEXTPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7428 typedef void (APIENTRYP PFNGLTEXSUBIMAGE3DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7429 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7430
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7431 #ifndef GL_SGIS_texture_filter4
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7432 #define GL_SGIS_texture_filter4 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7433 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7434 GLAPI void APIENTRY glGetTexFilterFuncSGIS (GLenum target, GLenum filter, GLfloat *weights);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7435 GLAPI void APIENTRY glTexFilterFuncSGIS (GLenum target, GLenum filter, GLsizei n, const GLfloat *weights);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7436 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7437 typedef void (APIENTRYP PFNGLGETTEXFILTERFUNCSGISPROC) (GLenum target, GLenum filter, GLfloat *weights);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7438 typedef void (APIENTRYP PFNGLTEXFILTERFUNCSGISPROC) (GLenum target, GLenum filter, GLsizei n, const GLfloat *weights);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7439 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7440
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7441 #ifndef GL_EXT_subtexture
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7442 #define GL_EXT_subtexture 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7443 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7444 GLAPI void APIENTRY glTexSubImage1DEXT (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const GLvoid *pixels);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7445 GLAPI void APIENTRY glTexSubImage2DEXT (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7446 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7447 typedef void (APIENTRYP PFNGLTEXSUBIMAGE1DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const GLvoid *pixels);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7448 typedef void (APIENTRYP PFNGLTEXSUBIMAGE2DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7449 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7450
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7451 #ifndef GL_EXT_copy_texture
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7452 #define GL_EXT_copy_texture 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7453 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7454 GLAPI void APIENTRY glCopyTexImage1DEXT (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7455 GLAPI void APIENTRY glCopyTexImage2DEXT (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7456 GLAPI void APIENTRY glCopyTexSubImage1DEXT (GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7457 GLAPI void APIENTRY glCopyTexSubImage2DEXT (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7458 GLAPI void APIENTRY glCopyTexSubImage3DEXT (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7459 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7460 typedef void (APIENTRYP PFNGLCOPYTEXIMAGE1DEXTPROC) (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7461 typedef void (APIENTRYP PFNGLCOPYTEXIMAGE2DEXTPROC) (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7462 typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE1DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7463 typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE2DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7464 typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE3DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7465 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7466
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7467 #ifndef GL_EXT_histogram
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7468 #define GL_EXT_histogram 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7469 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7470 GLAPI void APIENTRY glGetHistogramEXT (GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid *values);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7471 GLAPI void APIENTRY glGetHistogramParameterfvEXT (GLenum target, GLenum pname, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7472 GLAPI void APIENTRY glGetHistogramParameterivEXT (GLenum target, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7473 GLAPI void APIENTRY glGetMinmaxEXT (GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid *values);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7474 GLAPI void APIENTRY glGetMinmaxParameterfvEXT (GLenum target, GLenum pname, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7475 GLAPI void APIENTRY glGetMinmaxParameterivEXT (GLenum target, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7476 GLAPI void APIENTRY glHistogramEXT (GLenum target, GLsizei width, GLenum internalformat, GLboolean sink);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7477 GLAPI void APIENTRY glMinmaxEXT (GLenum target, GLenum internalformat, GLboolean sink);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7478 GLAPI void APIENTRY glResetHistogramEXT (GLenum target);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7479 GLAPI void APIENTRY glResetMinmaxEXT (GLenum target);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7480 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7481 typedef void (APIENTRYP PFNGLGETHISTOGRAMEXTPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid *values);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7482 typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7483 typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7484 typedef void (APIENTRYP PFNGLGETMINMAXEXTPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid *values);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7485 typedef void (APIENTRYP PFNGLGETMINMAXPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7486 typedef void (APIENTRYP PFNGLGETMINMAXPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7487 typedef void (APIENTRYP PFNGLHISTOGRAMEXTPROC) (GLenum target, GLsizei width, GLenum internalformat, GLboolean sink);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7488 typedef void (APIENTRYP PFNGLMINMAXEXTPROC) (GLenum target, GLenum internalformat, GLboolean sink);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7489 typedef void (APIENTRYP PFNGLRESETHISTOGRAMEXTPROC) (GLenum target);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7490 typedef void (APIENTRYP PFNGLRESETMINMAXEXTPROC) (GLenum target);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7491 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7492
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7493 #ifndef GL_EXT_convolution
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7494 #define GL_EXT_convolution 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7495 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7496 GLAPI void APIENTRY glConvolutionFilter1DEXT (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid *image);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7497 GLAPI void APIENTRY glConvolutionFilter2DEXT (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *image);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7498 GLAPI void APIENTRY glConvolutionParameterfEXT (GLenum target, GLenum pname, GLfloat params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7499 GLAPI void APIENTRY glConvolutionParameterfvEXT (GLenum target, GLenum pname, const GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7500 GLAPI void APIENTRY glConvolutionParameteriEXT (GLenum target, GLenum pname, GLint params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7501 GLAPI void APIENTRY glConvolutionParameterivEXT (GLenum target, GLenum pname, const GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7502 GLAPI void APIENTRY glCopyConvolutionFilter1DEXT (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7503 GLAPI void APIENTRY glCopyConvolutionFilter2DEXT (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7504 GLAPI void APIENTRY glGetConvolutionFilterEXT (GLenum target, GLenum format, GLenum type, GLvoid *image);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7505 GLAPI void APIENTRY glGetConvolutionParameterfvEXT (GLenum target, GLenum pname, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7506 GLAPI void APIENTRY glGetConvolutionParameterivEXT (GLenum target, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7507 GLAPI void APIENTRY glGetSeparableFilterEXT (GLenum target, GLenum format, GLenum type, GLvoid *row, GLvoid *column, GLvoid *span);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7508 GLAPI void APIENTRY glSeparableFilter2DEXT (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *row, const GLvoid *column);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7509 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7510 typedef void (APIENTRYP PFNGLCONVOLUTIONFILTER1DEXTPROC) (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid *image);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7511 typedef void (APIENTRYP PFNGLCONVOLUTIONFILTER2DEXTPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *image);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7512 typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERFEXTPROC) (GLenum target, GLenum pname, GLfloat params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7513 typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERFVEXTPROC) (GLenum target, GLenum pname, const GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7514 typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERIEXTPROC) (GLenum target, GLenum pname, GLint params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7515 typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERIVEXTPROC) (GLenum target, GLenum pname, const GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7516 typedef void (APIENTRYP PFNGLCOPYCONVOLUTIONFILTER1DEXTPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7517 typedef void (APIENTRYP PFNGLCOPYCONVOLUTIONFILTER2DEXTPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7518 typedef void (APIENTRYP PFNGLGETCONVOLUTIONFILTEREXTPROC) (GLenum target, GLenum format, GLenum type, GLvoid *image);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7519 typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7520 typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7521 typedef void (APIENTRYP PFNGLGETSEPARABLEFILTEREXTPROC) (GLenum target, GLenum format, GLenum type, GLvoid *row, GLvoid *column, GLvoid *span);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7522 typedef void (APIENTRYP PFNGLSEPARABLEFILTER2DEXTPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *row, const GLvoid *column);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7523 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7524
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
7525 #ifndef GL_SGI_color_matrix
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
7526 #define GL_SGI_color_matrix 1
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7527 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7528
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7529 #ifndef GL_SGI_color_table
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7530 #define GL_SGI_color_table 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7531 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7532 GLAPI void APIENTRY glColorTableSGI (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid *table);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7533 GLAPI void APIENTRY glColorTableParameterfvSGI (GLenum target, GLenum pname, const GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7534 GLAPI void APIENTRY glColorTableParameterivSGI (GLenum target, GLenum pname, const GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7535 GLAPI void APIENTRY glCopyColorTableSGI (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7536 GLAPI void APIENTRY glGetColorTableSGI (GLenum target, GLenum format, GLenum type, GLvoid *table);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7537 GLAPI void APIENTRY glGetColorTableParameterfvSGI (GLenum target, GLenum pname, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7538 GLAPI void APIENTRY glGetColorTableParameterivSGI (GLenum target, GLenum pname, GLint *params);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7539 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7540 typedef void (APIENTRYP PFNGLCOLORTABLESGIPROC) (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid *table);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7541 typedef void (APIENTRYP PFNGLCOLORTABLEPARAMETERFVSGIPROC) (GLenum target, GLenum pname, const GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7542 typedef void (APIENTRYP PFNGLCOLORTABLEPARAMETERIVSGIPROC) (GLenum target, GLenum pname, const GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7543 typedef void (APIENTRYP PFNGLCOPYCOLORTABLESGIPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7544 typedef void (APIENTRYP PFNGLGETCOLORTABLESGIPROC) (GLenum target, GLenum format, GLenum type, GLvoid *table);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7545 typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERFVSGIPROC) (GLenum target, GLenum pname, GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7546 typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERIVSGIPROC) (GLenum target, GLenum pname, GLint *params);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7547 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7548
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7549 #ifndef GL_SGIX_pixel_texture
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7550 #define GL_SGIX_pixel_texture 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7551 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7552 GLAPI void APIENTRY glPixelTexGenSGIX (GLenum mode);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7553 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7554 typedef void (APIENTRYP PFNGLPIXELTEXGENSGIXPROC) (GLenum mode);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7555 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7556
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7557 #ifndef GL_SGIS_pixel_texture
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7558 #define GL_SGIS_pixel_texture 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7559 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7560 GLAPI void APIENTRY glPixelTexGenParameteriSGIS (GLenum pname, GLint param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7561 GLAPI void APIENTRY glPixelTexGenParameterivSGIS (GLenum pname, const GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7562 GLAPI void APIENTRY glPixelTexGenParameterfSGIS (GLenum pname, GLfloat param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7563 GLAPI void APIENTRY glPixelTexGenParameterfvSGIS (GLenum pname, const GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7564 GLAPI void APIENTRY glGetPixelTexGenParameterivSGIS (GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7565 GLAPI void APIENTRY glGetPixelTexGenParameterfvSGIS (GLenum pname, GLfloat *params);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7566 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7567 typedef void (APIENTRYP PFNGLPIXELTEXGENPARAMETERISGISPROC) (GLenum pname, GLint param);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7568 typedef void (APIENTRYP PFNGLPIXELTEXGENPARAMETERIVSGISPROC) (GLenum pname, const GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7569 typedef void (APIENTRYP PFNGLPIXELTEXGENPARAMETERFSGISPROC) (GLenum pname, GLfloat param);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7570 typedef void (APIENTRYP PFNGLPIXELTEXGENPARAMETERFVSGISPROC) (GLenum pname, const GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7571 typedef void (APIENTRYP PFNGLGETPIXELTEXGENPARAMETERIVSGISPROC) (GLenum pname, GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7572 typedef void (APIENTRYP PFNGLGETPIXELTEXGENPARAMETERFVSGISPROC) (GLenum pname, GLfloat *params);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7573 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7574
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7575 #ifndef GL_SGIS_texture4D
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7576 #define GL_SGIS_texture4D 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7577 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7578 GLAPI void APIENTRY glTexImage4DSGIS (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLsizei size4d, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7579 GLAPI void APIENTRY glTexSubImage4DSGIS (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint woffset, GLsizei width, GLsizei height, GLsizei depth, GLsizei size4d, GLenum format, GLenum type, const GLvoid *pixels);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7580 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7581 typedef void (APIENTRYP PFNGLTEXIMAGE4DSGISPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLsizei size4d, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7582 typedef void (APIENTRYP PFNGLTEXSUBIMAGE4DSGISPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint woffset, GLsizei width, GLsizei height, GLsizei depth, GLsizei size4d, GLenum format, GLenum type, const GLvoid *pixels);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7583 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7584
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7585 #ifndef GL_SGI_texture_color_table
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7586 #define GL_SGI_texture_color_table 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7587 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7588
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7589 #ifndef GL_EXT_cmyka
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7590 #define GL_EXT_cmyka 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7591 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7592
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7593 #ifndef GL_EXT_texture_object
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7594 #define GL_EXT_texture_object 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7595 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7596 GLAPI GLboolean APIENTRY glAreTexturesResidentEXT (GLsizei n, const GLuint *textures, GLboolean *residences);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7597 GLAPI void APIENTRY glBindTextureEXT (GLenum target, GLuint texture);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7598 GLAPI void APIENTRY glDeleteTexturesEXT (GLsizei n, const GLuint *textures);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7599 GLAPI void APIENTRY glGenTexturesEXT (GLsizei n, GLuint *textures);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7600 GLAPI GLboolean APIENTRY glIsTextureEXT (GLuint texture);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7601 GLAPI void APIENTRY glPrioritizeTexturesEXT (GLsizei n, const GLuint *textures, const GLclampf *priorities);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7602 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7603 typedef GLboolean (APIENTRYP PFNGLARETEXTURESRESIDENTEXTPROC) (GLsizei n, const GLuint *textures, GLboolean *residences);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7604 typedef void (APIENTRYP PFNGLBINDTEXTUREEXTPROC) (GLenum target, GLuint texture);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7605 typedef void (APIENTRYP PFNGLDELETETEXTURESEXTPROC) (GLsizei n, const GLuint *textures);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7606 typedef void (APIENTRYP PFNGLGENTEXTURESEXTPROC) (GLsizei n, GLuint *textures);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7607 typedef GLboolean (APIENTRYP PFNGLISTEXTUREEXTPROC) (GLuint texture);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7608 typedef void (APIENTRYP PFNGLPRIORITIZETEXTURESEXTPROC) (GLsizei n, const GLuint *textures, const GLclampf *priorities);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7609 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7610
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7611 #ifndef GL_SGIS_detail_texture
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7612 #define GL_SGIS_detail_texture 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7613 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7614 GLAPI void APIENTRY glDetailTexFuncSGIS (GLenum target, GLsizei n, const GLfloat *points);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7615 GLAPI void APIENTRY glGetDetailTexFuncSGIS (GLenum target, GLfloat *points);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7616 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7617 typedef void (APIENTRYP PFNGLDETAILTEXFUNCSGISPROC) (GLenum target, GLsizei n, const GLfloat *points);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7618 typedef void (APIENTRYP PFNGLGETDETAILTEXFUNCSGISPROC) (GLenum target, GLfloat *points);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7619 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7620
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7621 #ifndef GL_SGIS_sharpen_texture
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7622 #define GL_SGIS_sharpen_texture 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7623 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7624 GLAPI void APIENTRY glSharpenTexFuncSGIS (GLenum target, GLsizei n, const GLfloat *points);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7625 GLAPI void APIENTRY glGetSharpenTexFuncSGIS (GLenum target, GLfloat *points);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7626 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7627 typedef void (APIENTRYP PFNGLSHARPENTEXFUNCSGISPROC) (GLenum target, GLsizei n, const GLfloat *points);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7628 typedef void (APIENTRYP PFNGLGETSHARPENTEXFUNCSGISPROC) (GLenum target, GLfloat *points);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7629 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7630
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7631 #ifndef GL_EXT_packed_pixels
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7632 #define GL_EXT_packed_pixels 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7633 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7634
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7635 #ifndef GL_SGIS_texture_lod
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7636 #define GL_SGIS_texture_lod 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7637 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7638
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7639 #ifndef GL_SGIS_multisample
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7640 #define GL_SGIS_multisample 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7641 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7642 GLAPI void APIENTRY glSampleMaskSGIS (GLclampf value, GLboolean invert);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7643 GLAPI void APIENTRY glSamplePatternSGIS (GLenum pattern);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7644 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7645 typedef void (APIENTRYP PFNGLSAMPLEMASKSGISPROC) (GLclampf value, GLboolean invert);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7646 typedef void (APIENTRYP PFNGLSAMPLEPATTERNSGISPROC) (GLenum pattern);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7647 #endif
214
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
7648
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7649 #ifndef GL_EXT_rescale_normal
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7650 #define GL_EXT_rescale_normal 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7651 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7652
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7653 #ifndef GL_EXT_vertex_array
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7654 #define GL_EXT_vertex_array 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7655 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7656 GLAPI void APIENTRY glArrayElementEXT (GLint i);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7657 GLAPI void APIENTRY glColorPointerEXT (GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7658 GLAPI void APIENTRY glDrawArraysEXT (GLenum mode, GLint first, GLsizei count);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7659 GLAPI void APIENTRY glEdgeFlagPointerEXT (GLsizei stride, GLsizei count, const GLboolean *pointer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7660 GLAPI void APIENTRY glGetPointervEXT (GLenum pname, GLvoid* *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7661 GLAPI void APIENTRY glIndexPointerEXT (GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7662 GLAPI void APIENTRY glNormalPointerEXT (GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7663 GLAPI void APIENTRY glTexCoordPointerEXT (GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7664 GLAPI void APIENTRY glVertexPointerEXT (GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7665 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7666 typedef void (APIENTRYP PFNGLARRAYELEMENTEXTPROC) (GLint i);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7667 typedef void (APIENTRYP PFNGLCOLORPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7668 typedef void (APIENTRYP PFNGLDRAWARRAYSEXTPROC) (GLenum mode, GLint first, GLsizei count);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7669 typedef void (APIENTRYP PFNGLEDGEFLAGPOINTEREXTPROC) (GLsizei stride, GLsizei count, const GLboolean *pointer);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7670 typedef void (APIENTRYP PFNGLGETPOINTERVEXTPROC) (GLenum pname, GLvoid* *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7671 typedef void (APIENTRYP PFNGLINDEXPOINTEREXTPROC) (GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7672 typedef void (APIENTRYP PFNGLNORMALPOINTEREXTPROC) (GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7673 typedef void (APIENTRYP PFNGLTEXCOORDPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7674 typedef void (APIENTRYP PFNGLVERTEXPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7675 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7676
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7677 #ifndef GL_EXT_misc_attribute
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7678 #define GL_EXT_misc_attribute 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7679 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7680
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7681 #ifndef GL_SGIS_generate_mipmap
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7682 #define GL_SGIS_generate_mipmap 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7683 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7684
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7685 #ifndef GL_SGIX_clipmap
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7686 #define GL_SGIX_clipmap 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7687 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7688
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7689 #ifndef GL_SGIX_shadow
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7690 #define GL_SGIX_shadow 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7691 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7692
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7693 #ifndef GL_SGIS_texture_edge_clamp
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7694 #define GL_SGIS_texture_edge_clamp 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7695 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7696
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7697 #ifndef GL_SGIS_texture_border_clamp
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7698 #define GL_SGIS_texture_border_clamp 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7699 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7700
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7701 #ifndef GL_EXT_blend_minmax
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7702 #define GL_EXT_blend_minmax 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7703 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7704 GLAPI void APIENTRY glBlendEquationEXT (GLenum mode);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7705 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7706 typedef void (APIENTRYP PFNGLBLENDEQUATIONEXTPROC) (GLenum mode);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7707 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7708
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7709 #ifndef GL_EXT_blend_subtract
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7710 #define GL_EXT_blend_subtract 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7711 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7712
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7713 #ifndef GL_EXT_blend_logic_op
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7714 #define GL_EXT_blend_logic_op 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7715 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7716
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7717 #ifndef GL_SGIX_interlace
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7718 #define GL_SGIX_interlace 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7719 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7720
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7721 #ifndef GL_SGIX_pixel_tiles
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7722 #define GL_SGIX_pixel_tiles 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7723 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7724
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7725 #ifndef GL_SGIX_texture_select
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7726 #define GL_SGIX_texture_select 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7727 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7728
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7729 #ifndef GL_SGIX_sprite
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7730 #define GL_SGIX_sprite 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7731 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7732 GLAPI void APIENTRY glSpriteParameterfSGIX (GLenum pname, GLfloat param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7733 GLAPI void APIENTRY glSpriteParameterfvSGIX (GLenum pname, const GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7734 GLAPI void APIENTRY glSpriteParameteriSGIX (GLenum pname, GLint param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7735 GLAPI void APIENTRY glSpriteParameterivSGIX (GLenum pname, const GLint *params);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7736 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7737 typedef void (APIENTRYP PFNGLSPRITEPARAMETERFSGIXPROC) (GLenum pname, GLfloat param);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7738 typedef void (APIENTRYP PFNGLSPRITEPARAMETERFVSGIXPROC) (GLenum pname, const GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7739 typedef void (APIENTRYP PFNGLSPRITEPARAMETERISGIXPROC) (GLenum pname, GLint param);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7740 typedef void (APIENTRYP PFNGLSPRITEPARAMETERIVSGIXPROC) (GLenum pname, const GLint *params);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7741 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7742
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7743 #ifndef GL_SGIX_texture_multi_buffer
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7744 #define GL_SGIX_texture_multi_buffer 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7745 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7746
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7747 #ifndef GL_EXT_point_parameters
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7748 #define GL_EXT_point_parameters 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7749 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7750 GLAPI void APIENTRY glPointParameterfEXT (GLenum pname, GLfloat param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7751 GLAPI void APIENTRY glPointParameterfvEXT (GLenum pname, const GLfloat *params);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7752 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7753 typedef void (APIENTRYP PFNGLPOINTPARAMETERFEXTPROC) (GLenum pname, GLfloat param);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7754 typedef void (APIENTRYP PFNGLPOINTPARAMETERFVEXTPROC) (GLenum pname, const GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7755 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7756
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7757 #ifndef GL_SGIS_point_parameters
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7758 #define GL_SGIS_point_parameters 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7759 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7760 GLAPI void APIENTRY glPointParameterfSGIS (GLenum pname, GLfloat param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7761 GLAPI void APIENTRY glPointParameterfvSGIS (GLenum pname, const GLfloat *params);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7762 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7763 typedef void (APIENTRYP PFNGLPOINTPARAMETERFSGISPROC) (GLenum pname, GLfloat param);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7764 typedef void (APIENTRYP PFNGLPOINTPARAMETERFVSGISPROC) (GLenum pname, const GLfloat *params);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7765 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7766
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7767 #ifndef GL_SGIX_instruments
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7768 #define GL_SGIX_instruments 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7769 #ifdef GL_GLEXT_PROTOTYPES
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7770 GLAPI GLint APIENTRY glGetInstrumentsSGIX (void);
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7771 GLAPI void APIENTRY glInstrumentsBufferSGIX (GLsizei size, GLint *buffer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7772 GLAPI GLint APIENTRY glPollInstrumentsSGIX (GLint *marker_p);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7773 GLAPI void APIENTRY glReadInstrumentsSGIX (GLint marker);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7774 GLAPI void APIENTRY glStartInstrumentsSGIX (void);
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7775 GLAPI void APIENTRY glStopInstrumentsSGIX (GLint marker);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7776 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7777 typedef GLint (APIENTRYP PFNGLGETINSTRUMENTSSGIXPROC) (void);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7778 typedef void (APIENTRYP PFNGLINSTRUMENTSBUFFERSGIXPROC) (GLsizei size, GLint *buffer);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7779 typedef GLint (APIENTRYP PFNGLPOLLINSTRUMENTSSGIXPROC) (GLint *marker_p);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7780 typedef void (APIENTRYP PFNGLREADINSTRUMENTSSGIXPROC) (GLint marker);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7781 typedef void (APIENTRYP PFNGLSTARTINSTRUMENTSSGIXPROC) (void);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7782 typedef void (APIENTRYP PFNGLSTOPINSTRUMENTSSGIXPROC) (GLint marker);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7783 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7784
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7785 #ifndef GL_SGIX_texture_scale_bias
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7786 #define GL_SGIX_texture_scale_bias 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7787 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7788
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7789 #ifndef GL_SGIX_framezoom
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7790 #define GL_SGIX_framezoom 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7791 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7792 GLAPI void APIENTRY glFrameZoomSGIX (GLint factor);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7793 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7794 typedef void (APIENTRYP PFNGLFRAMEZOOMSGIXPROC) (GLint factor);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7795 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7796
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7797 #ifndef GL_SGIX_tag_sample_buffer
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7798 #define GL_SGIX_tag_sample_buffer 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7799 #ifdef GL_GLEXT_PROTOTYPES
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7800 GLAPI void APIENTRY glTagSampleBufferSGIX (void);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7801 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7802 typedef void (APIENTRYP PFNGLTAGSAMPLEBUFFERSGIXPROC) (void);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7803 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7804
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7805 #ifndef GL_SGIX_polynomial_ffd
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7806 #define GL_SGIX_polynomial_ffd 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7807 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7808 GLAPI void APIENTRY glDeformationMap3dSGIX (GLenum target, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, GLdouble w1, GLdouble w2, GLint wstride, GLint worder, const GLdouble *points);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7809 GLAPI void APIENTRY glDeformationMap3fSGIX (GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, GLfloat w1, GLfloat w2, GLint wstride, GLint worder, const GLfloat *points);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7810 GLAPI void APIENTRY glDeformSGIX (GLbitfield mask);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7811 GLAPI void APIENTRY glLoadIdentityDeformationMapSGIX (GLbitfield mask);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7812 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7813 typedef void (APIENTRYP PFNGLDEFORMATIONMAP3DSGIXPROC) (GLenum target, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, GLdouble w1, GLdouble w2, GLint wstride, GLint worder, const GLdouble *points);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7814 typedef void (APIENTRYP PFNGLDEFORMATIONMAP3FSGIXPROC) (GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, GLfloat w1, GLfloat w2, GLint wstride, GLint worder, const GLfloat *points);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7815 typedef void (APIENTRYP PFNGLDEFORMSGIXPROC) (GLbitfield mask);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7816 typedef void (APIENTRYP PFNGLLOADIDENTITYDEFORMATIONMAPSGIXPROC) (GLbitfield mask);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7817 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7818
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7819 #ifndef GL_SGIX_reference_plane
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7820 #define GL_SGIX_reference_plane 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7821 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7822 GLAPI void APIENTRY glReferencePlaneSGIX (const GLdouble *equation);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7823 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7824 typedef void (APIENTRYP PFNGLREFERENCEPLANESGIXPROC) (const GLdouble *equation);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7825 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7826
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7827 #ifndef GL_SGIX_flush_raster
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7828 #define GL_SGIX_flush_raster 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7829 #ifdef GL_GLEXT_PROTOTYPES
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7830 GLAPI void APIENTRY glFlushRasterSGIX (void);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7831 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7832 typedef void (APIENTRYP PFNGLFLUSHRASTERSGIXPROC) (void);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7833 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7834
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7835 #ifndef GL_SGIX_depth_texture
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7836 #define GL_SGIX_depth_texture 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7837 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7838
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7839 #ifndef GL_SGIS_fog_function
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7840 #define GL_SGIS_fog_function 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7841 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7842 GLAPI void APIENTRY glFogFuncSGIS (GLsizei n, const GLfloat *points);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7843 GLAPI void APIENTRY glGetFogFuncSGIS (GLfloat *points);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7844 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7845 typedef void (APIENTRYP PFNGLFOGFUNCSGISPROC) (GLsizei n, const GLfloat *points);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7846 typedef void (APIENTRYP PFNGLGETFOGFUNCSGISPROC) (GLfloat *points);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7847 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7848
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7849 #ifndef GL_SGIX_fog_offset
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7850 #define GL_SGIX_fog_offset 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7851 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7852
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7853 #ifndef GL_HP_image_transform
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7854 #define GL_HP_image_transform 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7855 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7856 GLAPI void APIENTRY glImageTransformParameteriHP (GLenum target, GLenum pname, GLint param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7857 GLAPI void APIENTRY glImageTransformParameterfHP (GLenum target, GLenum pname, GLfloat param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7858 GLAPI void APIENTRY glImageTransformParameterivHP (GLenum target, GLenum pname, const GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7859 GLAPI void APIENTRY glImageTransformParameterfvHP (GLenum target, GLenum pname, const GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7860 GLAPI void APIENTRY glGetImageTransformParameterivHP (GLenum target, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7861 GLAPI void APIENTRY glGetImageTransformParameterfvHP (GLenum target, GLenum pname, GLfloat *params);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7862 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7863 typedef void (APIENTRYP PFNGLIMAGETRANSFORMPARAMETERIHPPROC) (GLenum target, GLenum pname, GLint param);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7864 typedef void (APIENTRYP PFNGLIMAGETRANSFORMPARAMETERFHPPROC) (GLenum target, GLenum pname, GLfloat param);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7865 typedef void (APIENTRYP PFNGLIMAGETRANSFORMPARAMETERIVHPPROC) (GLenum target, GLenum pname, const GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7866 typedef void (APIENTRYP PFNGLIMAGETRANSFORMPARAMETERFVHPPROC) (GLenum target, GLenum pname, const GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7867 typedef void (APIENTRYP PFNGLGETIMAGETRANSFORMPARAMETERIVHPPROC) (GLenum target, GLenum pname, GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7868 typedef void (APIENTRYP PFNGLGETIMAGETRANSFORMPARAMETERFVHPPROC) (GLenum target, GLenum pname, GLfloat *params);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7869 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7870
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7871 #ifndef GL_HP_convolution_border_modes
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7872 #define GL_HP_convolution_border_modes 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7873 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7874
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7875 #ifndef GL_SGIX_texture_add_env
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7876 #define GL_SGIX_texture_add_env 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7877 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7878
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7879 #ifndef GL_EXT_color_subtable
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7880 #define GL_EXT_color_subtable 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7881 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7882 GLAPI void APIENTRY glColorSubTableEXT (GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const GLvoid *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7883 GLAPI void APIENTRY glCopyColorSubTableEXT (GLenum target, GLsizei start, GLint x, GLint y, GLsizei width);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7884 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7885 typedef void (APIENTRYP PFNGLCOLORSUBTABLEEXTPROC) (GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const GLvoid *data);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7886 typedef void (APIENTRYP PFNGLCOPYCOLORSUBTABLEEXTPROC) (GLenum target, GLsizei start, GLint x, GLint y, GLsizei width);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7887 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7888
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7889 #ifndef GL_PGI_vertex_hints
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7890 #define GL_PGI_vertex_hints 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7891 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7892
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7893 #ifndef GL_PGI_misc_hints
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7894 #define GL_PGI_misc_hints 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7895 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7896 GLAPI void APIENTRY glHintPGI (GLenum target, GLint mode);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7897 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7898 typedef void (APIENTRYP PFNGLHINTPGIPROC) (GLenum target, GLint mode);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7899 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7900
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7901 #ifndef GL_EXT_paletted_texture
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7902 #define GL_EXT_paletted_texture 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7903 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7904 GLAPI void APIENTRY glColorTableEXT (GLenum target, GLenum internalFormat, GLsizei width, GLenum format, GLenum type, const GLvoid *table);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7905 GLAPI void APIENTRY glGetColorTableEXT (GLenum target, GLenum format, GLenum type, GLvoid *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7906 GLAPI void APIENTRY glGetColorTableParameterivEXT (GLenum target, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7907 GLAPI void APIENTRY glGetColorTableParameterfvEXT (GLenum target, GLenum pname, GLfloat *params);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7908 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7909 typedef void (APIENTRYP PFNGLCOLORTABLEEXTPROC) (GLenum target, GLenum internalFormat, GLsizei width, GLenum format, GLenum type, const GLvoid *table);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7910 typedef void (APIENTRYP PFNGLGETCOLORTABLEEXTPROC) (GLenum target, GLenum format, GLenum type, GLvoid *data);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7911 typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7912 typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat *params);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7913 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7914
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7915 #ifndef GL_EXT_clip_volume_hint
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7916 #define GL_EXT_clip_volume_hint 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7917 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7918
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7919 #ifndef GL_SGIX_list_priority
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7920 #define GL_SGIX_list_priority 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7921 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7922 GLAPI void APIENTRY glGetListParameterfvSGIX (GLuint list, GLenum pname, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7923 GLAPI void APIENTRY glGetListParameterivSGIX (GLuint list, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7924 GLAPI void APIENTRY glListParameterfSGIX (GLuint list, GLenum pname, GLfloat param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7925 GLAPI void APIENTRY glListParameterfvSGIX (GLuint list, GLenum pname, const GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7926 GLAPI void APIENTRY glListParameteriSGIX (GLuint list, GLenum pname, GLint param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7927 GLAPI void APIENTRY glListParameterivSGIX (GLuint list, GLenum pname, const GLint *params);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7928 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7929 typedef void (APIENTRYP PFNGLGETLISTPARAMETERFVSGIXPROC) (GLuint list, GLenum pname, GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7930 typedef void (APIENTRYP PFNGLGETLISTPARAMETERIVSGIXPROC) (GLuint list, GLenum pname, GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7931 typedef void (APIENTRYP PFNGLLISTPARAMETERFSGIXPROC) (GLuint list, GLenum pname, GLfloat param);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7932 typedef void (APIENTRYP PFNGLLISTPARAMETERFVSGIXPROC) (GLuint list, GLenum pname, const GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7933 typedef void (APIENTRYP PFNGLLISTPARAMETERISGIXPROC) (GLuint list, GLenum pname, GLint param);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7934 typedef void (APIENTRYP PFNGLLISTPARAMETERIVSGIXPROC) (GLuint list, GLenum pname, const GLint *params);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7935 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7936
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7937 #ifndef GL_SGIX_ir_instrument1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7938 #define GL_SGIX_ir_instrument1 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7939 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7940
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7941 #ifndef GL_SGIX_calligraphic_fragment
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7942 #define GL_SGIX_calligraphic_fragment 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7943 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7944
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7945 #ifndef GL_SGIX_texture_lod_bias
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7946 #define GL_SGIX_texture_lod_bias 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7947 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7948
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7949 #ifndef GL_SGIX_shadow_ambient
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7950 #define GL_SGIX_shadow_ambient 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7951 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7952
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7953 #ifndef GL_EXT_index_texture
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7954 #define GL_EXT_index_texture 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7955 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7956
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7957 #ifndef GL_EXT_index_material
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7958 #define GL_EXT_index_material 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7959 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7960 GLAPI void APIENTRY glIndexMaterialEXT (GLenum face, GLenum mode);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7961 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7962 typedef void (APIENTRYP PFNGLINDEXMATERIALEXTPROC) (GLenum face, GLenum mode);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7963 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7964
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7965 #ifndef GL_EXT_index_func
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7966 #define GL_EXT_index_func 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7967 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7968 GLAPI void APIENTRY glIndexFuncEXT (GLenum func, GLclampf ref);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7969 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7970 typedef void (APIENTRYP PFNGLINDEXFUNCEXTPROC) (GLenum func, GLclampf ref);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7971 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7972
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7973 #ifndef GL_EXT_index_array_formats
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7974 #define GL_EXT_index_array_formats 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7975 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7976
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7977 #ifndef GL_EXT_compiled_vertex_array
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7978 #define GL_EXT_compiled_vertex_array 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7979 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7980 GLAPI void APIENTRY glLockArraysEXT (GLint first, GLsizei count);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7981 GLAPI void APIENTRY glUnlockArraysEXT (void);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7982 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7983 typedef void (APIENTRYP PFNGLLOCKARRAYSEXTPROC) (GLint first, GLsizei count);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7984 typedef void (APIENTRYP PFNGLUNLOCKARRAYSEXTPROC) (void);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7985 #endif
214
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
7986
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7987 #ifndef GL_EXT_cull_vertex
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7988 #define GL_EXT_cull_vertex 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7989 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7990 GLAPI void APIENTRY glCullParameterdvEXT (GLenum pname, GLdouble *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
7991 GLAPI void APIENTRY glCullParameterfvEXT (GLenum pname, GLfloat *params);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7992 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7993 typedef void (APIENTRYP PFNGLCULLPARAMETERDVEXTPROC) (GLenum pname, GLdouble *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
7994 typedef void (APIENTRYP PFNGLCULLPARAMETERFVEXTPROC) (GLenum pname, GLfloat *params);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7995 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7996
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7997 #ifndef GL_SGIX_ycrcb
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7998 #define GL_SGIX_ycrcb 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
7999 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8000
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8001 #ifndef GL_SGIX_fragment_lighting
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8002 #define GL_SGIX_fragment_lighting 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8003 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8004 GLAPI void APIENTRY glFragmentColorMaterialSGIX (GLenum face, GLenum mode);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8005 GLAPI void APIENTRY glFragmentLightfSGIX (GLenum light, GLenum pname, GLfloat param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8006 GLAPI void APIENTRY glFragmentLightfvSGIX (GLenum light, GLenum pname, const GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8007 GLAPI void APIENTRY glFragmentLightiSGIX (GLenum light, GLenum pname, GLint param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8008 GLAPI void APIENTRY glFragmentLightivSGIX (GLenum light, GLenum pname, const GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8009 GLAPI void APIENTRY glFragmentLightModelfSGIX (GLenum pname, GLfloat param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8010 GLAPI void APIENTRY glFragmentLightModelfvSGIX (GLenum pname, const GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8011 GLAPI void APIENTRY glFragmentLightModeliSGIX (GLenum pname, GLint param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8012 GLAPI void APIENTRY glFragmentLightModelivSGIX (GLenum pname, const GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8013 GLAPI void APIENTRY glFragmentMaterialfSGIX (GLenum face, GLenum pname, GLfloat param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8014 GLAPI void APIENTRY glFragmentMaterialfvSGIX (GLenum face, GLenum pname, const GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8015 GLAPI void APIENTRY glFragmentMaterialiSGIX (GLenum face, GLenum pname, GLint param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8016 GLAPI void APIENTRY glFragmentMaterialivSGIX (GLenum face, GLenum pname, const GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8017 GLAPI void APIENTRY glGetFragmentLightfvSGIX (GLenum light, GLenum pname, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8018 GLAPI void APIENTRY glGetFragmentLightivSGIX (GLenum light, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8019 GLAPI void APIENTRY glGetFragmentMaterialfvSGIX (GLenum face, GLenum pname, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8020 GLAPI void APIENTRY glGetFragmentMaterialivSGIX (GLenum face, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8021 GLAPI void APIENTRY glLightEnviSGIX (GLenum pname, GLint param);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8022 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8023 typedef void (APIENTRYP PFNGLFRAGMENTCOLORMATERIALSGIXPROC) (GLenum face, GLenum mode);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8024 typedef void (APIENTRYP PFNGLFRAGMENTLIGHTFSGIXPROC) (GLenum light, GLenum pname, GLfloat param);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8025 typedef void (APIENTRYP PFNGLFRAGMENTLIGHTFVSGIXPROC) (GLenum light, GLenum pname, const GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8026 typedef void (APIENTRYP PFNGLFRAGMENTLIGHTISGIXPROC) (GLenum light, GLenum pname, GLint param);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8027 typedef void (APIENTRYP PFNGLFRAGMENTLIGHTIVSGIXPROC) (GLenum light, GLenum pname, const GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8028 typedef void (APIENTRYP PFNGLFRAGMENTLIGHTMODELFSGIXPROC) (GLenum pname, GLfloat param);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8029 typedef void (APIENTRYP PFNGLFRAGMENTLIGHTMODELFVSGIXPROC) (GLenum pname, const GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8030 typedef void (APIENTRYP PFNGLFRAGMENTLIGHTMODELISGIXPROC) (GLenum pname, GLint param);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8031 typedef void (APIENTRYP PFNGLFRAGMENTLIGHTMODELIVSGIXPROC) (GLenum pname, const GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8032 typedef void (APIENTRYP PFNGLFRAGMENTMATERIALFSGIXPROC) (GLenum face, GLenum pname, GLfloat param);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8033 typedef void (APIENTRYP PFNGLFRAGMENTMATERIALFVSGIXPROC) (GLenum face, GLenum pname, const GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8034 typedef void (APIENTRYP PFNGLFRAGMENTMATERIALISGIXPROC) (GLenum face, GLenum pname, GLint param);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8035 typedef void (APIENTRYP PFNGLFRAGMENTMATERIALIVSGIXPROC) (GLenum face, GLenum pname, const GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8036 typedef void (APIENTRYP PFNGLGETFRAGMENTLIGHTFVSGIXPROC) (GLenum light, GLenum pname, GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8037 typedef void (APIENTRYP PFNGLGETFRAGMENTLIGHTIVSGIXPROC) (GLenum light, GLenum pname, GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8038 typedef void (APIENTRYP PFNGLGETFRAGMENTMATERIALFVSGIXPROC) (GLenum face, GLenum pname, GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8039 typedef void (APIENTRYP PFNGLGETFRAGMENTMATERIALIVSGIXPROC) (GLenum face, GLenum pname, GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8040 typedef void (APIENTRYP PFNGLLIGHTENVISGIXPROC) (GLenum pname, GLint param);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8041 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8042
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8043 #ifndef GL_IBM_rasterpos_clip
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8044 #define GL_IBM_rasterpos_clip 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8045 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8046
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8047 #ifndef GL_HP_texture_lighting
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8048 #define GL_HP_texture_lighting 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8049 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8050
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8051 #ifndef GL_EXT_draw_range_elements
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8052 #define GL_EXT_draw_range_elements 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8053 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8054 GLAPI void APIENTRY glDrawRangeElementsEXT (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8055 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8056 typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTSEXTPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8057 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8058
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8059 #ifndef GL_WIN_phong_shading
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8060 #define GL_WIN_phong_shading 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8061 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8062
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8063 #ifndef GL_WIN_specular_fog
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8064 #define GL_WIN_specular_fog 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8065 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8066
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8067 #ifndef GL_EXT_light_texture
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8068 #define GL_EXT_light_texture 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8069 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8070 GLAPI void APIENTRY glApplyTextureEXT (GLenum mode);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8071 GLAPI void APIENTRY glTextureLightEXT (GLenum pname);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8072 GLAPI void APIENTRY glTextureMaterialEXT (GLenum face, GLenum mode);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8073 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8074 typedef void (APIENTRYP PFNGLAPPLYTEXTUREEXTPROC) (GLenum mode);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8075 typedef void (APIENTRYP PFNGLTEXTURELIGHTEXTPROC) (GLenum pname);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8076 typedef void (APIENTRYP PFNGLTEXTUREMATERIALEXTPROC) (GLenum face, GLenum mode);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8077 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8078
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8079 #ifndef GL_SGIX_blend_alpha_minmax
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8080 #define GL_SGIX_blend_alpha_minmax 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8081 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8082
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8083 #ifndef GL_EXT_bgra
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8084 #define GL_EXT_bgra 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8085 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8086
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8087 #ifndef GL_SGIX_async
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8088 #define GL_SGIX_async 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8089 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8090 GLAPI void APIENTRY glAsyncMarkerSGIX (GLuint marker);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8091 GLAPI GLint APIENTRY glFinishAsyncSGIX (GLuint *markerp);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8092 GLAPI GLint APIENTRY glPollAsyncSGIX (GLuint *markerp);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8093 GLAPI GLuint APIENTRY glGenAsyncMarkersSGIX (GLsizei range);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8094 GLAPI void APIENTRY glDeleteAsyncMarkersSGIX (GLuint marker, GLsizei range);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8095 GLAPI GLboolean APIENTRY glIsAsyncMarkerSGIX (GLuint marker);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8096 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8097 typedef void (APIENTRYP PFNGLASYNCMARKERSGIXPROC) (GLuint marker);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8098 typedef GLint (APIENTRYP PFNGLFINISHASYNCSGIXPROC) (GLuint *markerp);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8099 typedef GLint (APIENTRYP PFNGLPOLLASYNCSGIXPROC) (GLuint *markerp);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8100 typedef GLuint (APIENTRYP PFNGLGENASYNCMARKERSSGIXPROC) (GLsizei range);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8101 typedef void (APIENTRYP PFNGLDELETEASYNCMARKERSSGIXPROC) (GLuint marker, GLsizei range);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8102 typedef GLboolean (APIENTRYP PFNGLISASYNCMARKERSGIXPROC) (GLuint marker);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8103 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8104
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8105 #ifndef GL_SGIX_async_pixel
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8106 #define GL_SGIX_async_pixel 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8107 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8108
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8109 #ifndef GL_SGIX_async_histogram
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8110 #define GL_SGIX_async_histogram 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8111 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8112
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8113 #ifndef GL_INTEL_parallel_arrays
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8114 #define GL_INTEL_parallel_arrays 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8115 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8116 GLAPI void APIENTRY glVertexPointervINTEL (GLint size, GLenum type, const GLvoid* *pointer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8117 GLAPI void APIENTRY glNormalPointervINTEL (GLenum type, const GLvoid* *pointer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8118 GLAPI void APIENTRY glColorPointervINTEL (GLint size, GLenum type, const GLvoid* *pointer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8119 GLAPI void APIENTRY glTexCoordPointervINTEL (GLint size, GLenum type, const GLvoid* *pointer);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8120 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8121 typedef void (APIENTRYP PFNGLVERTEXPOINTERVINTELPROC) (GLint size, GLenum type, const GLvoid* *pointer);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8122 typedef void (APIENTRYP PFNGLNORMALPOINTERVINTELPROC) (GLenum type, const GLvoid* *pointer);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8123 typedef void (APIENTRYP PFNGLCOLORPOINTERVINTELPROC) (GLint size, GLenum type, const GLvoid* *pointer);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8124 typedef void (APIENTRYP PFNGLTEXCOORDPOINTERVINTELPROC) (GLint size, GLenum type, const GLvoid* *pointer);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8125 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8126
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8127 #ifndef GL_HP_occlusion_test
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8128 #define GL_HP_occlusion_test 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8129 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8130
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8131 #ifndef GL_EXT_pixel_transform
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8132 #define GL_EXT_pixel_transform 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8133 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8134 GLAPI void APIENTRY glPixelTransformParameteriEXT (GLenum target, GLenum pname, GLint param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8135 GLAPI void APIENTRY glPixelTransformParameterfEXT (GLenum target, GLenum pname, GLfloat param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8136 GLAPI void APIENTRY glPixelTransformParameterivEXT (GLenum target, GLenum pname, const GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8137 GLAPI void APIENTRY glPixelTransformParameterfvEXT (GLenum target, GLenum pname, const GLfloat *params);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8138 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8139 typedef void (APIENTRYP PFNGLPIXELTRANSFORMPARAMETERIEXTPROC) (GLenum target, GLenum pname, GLint param);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8140 typedef void (APIENTRYP PFNGLPIXELTRANSFORMPARAMETERFEXTPROC) (GLenum target, GLenum pname, GLfloat param);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8141 typedef void (APIENTRYP PFNGLPIXELTRANSFORMPARAMETERIVEXTPROC) (GLenum target, GLenum pname, const GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8142 typedef void (APIENTRYP PFNGLPIXELTRANSFORMPARAMETERFVEXTPROC) (GLenum target, GLenum pname, const GLfloat *params);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8143 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8144
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8145 #ifndef GL_EXT_pixel_transform_color_table
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8146 #define GL_EXT_pixel_transform_color_table 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8147 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8148
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8149 #ifndef GL_EXT_shared_texture_palette
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8150 #define GL_EXT_shared_texture_palette 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8151 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8152
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8153 #ifndef GL_EXT_separate_specular_color
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8154 #define GL_EXT_separate_specular_color 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8155 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8156
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8157 #ifndef GL_EXT_secondary_color
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8158 #define GL_EXT_secondary_color 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8159 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8160 GLAPI void APIENTRY glSecondaryColor3bEXT (GLbyte red, GLbyte green, GLbyte blue);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8161 GLAPI void APIENTRY glSecondaryColor3bvEXT (const GLbyte *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8162 GLAPI void APIENTRY glSecondaryColor3dEXT (GLdouble red, GLdouble green, GLdouble blue);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8163 GLAPI void APIENTRY glSecondaryColor3dvEXT (const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8164 GLAPI void APIENTRY glSecondaryColor3fEXT (GLfloat red, GLfloat green, GLfloat blue);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8165 GLAPI void APIENTRY glSecondaryColor3fvEXT (const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8166 GLAPI void APIENTRY glSecondaryColor3iEXT (GLint red, GLint green, GLint blue);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8167 GLAPI void APIENTRY glSecondaryColor3ivEXT (const GLint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8168 GLAPI void APIENTRY glSecondaryColor3sEXT (GLshort red, GLshort green, GLshort blue);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8169 GLAPI void APIENTRY glSecondaryColor3svEXT (const GLshort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8170 GLAPI void APIENTRY glSecondaryColor3ubEXT (GLubyte red, GLubyte green, GLubyte blue);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8171 GLAPI void APIENTRY glSecondaryColor3ubvEXT (const GLubyte *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8172 GLAPI void APIENTRY glSecondaryColor3uiEXT (GLuint red, GLuint green, GLuint blue);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8173 GLAPI void APIENTRY glSecondaryColor3uivEXT (const GLuint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8174 GLAPI void APIENTRY glSecondaryColor3usEXT (GLushort red, GLushort green, GLushort blue);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8175 GLAPI void APIENTRY glSecondaryColor3usvEXT (const GLushort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8176 GLAPI void APIENTRY glSecondaryColorPointerEXT (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8177 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8178 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3BEXTPROC) (GLbyte red, GLbyte green, GLbyte blue);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8179 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3BVEXTPROC) (const GLbyte *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8180 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3DEXTPROC) (GLdouble red, GLdouble green, GLdouble blue);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8181 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3DVEXTPROC) (const GLdouble *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8182 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3FEXTPROC) (GLfloat red, GLfloat green, GLfloat blue);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8183 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3FVEXTPROC) (const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8184 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3IEXTPROC) (GLint red, GLint green, GLint blue);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8185 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3IVEXTPROC) (const GLint *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8186 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3SEXTPROC) (GLshort red, GLshort green, GLshort blue);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8187 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3SVEXTPROC) (const GLshort *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8188 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UBEXTPROC) (GLubyte red, GLubyte green, GLubyte blue);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8189 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UBVEXTPROC) (const GLubyte *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8190 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UIEXTPROC) (GLuint red, GLuint green, GLuint blue);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8191 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UIVEXTPROC) (const GLuint *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8192 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3USEXTPROC) (GLushort red, GLushort green, GLushort blue);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8193 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3USVEXTPROC) (const GLushort *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8194 typedef void (APIENTRYP PFNGLSECONDARYCOLORPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8195 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8196
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8197 #ifndef GL_EXT_texture_perturb_normal
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8198 #define GL_EXT_texture_perturb_normal 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8199 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8200 GLAPI void APIENTRY glTextureNormalEXT (GLenum mode);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8201 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8202 typedef void (APIENTRYP PFNGLTEXTURENORMALEXTPROC) (GLenum mode);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8203 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8204
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8205 #ifndef GL_EXT_multi_draw_arrays
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8206 #define GL_EXT_multi_draw_arrays 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8207 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8208 GLAPI void APIENTRY glMultiDrawArraysEXT (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8209 GLAPI void APIENTRY glMultiDrawElementsEXT (GLenum mode, const GLsizei *count, GLenum type, const GLvoid* *indices, GLsizei primcount);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8210 #endif /* GL_GLEXT_PROTOTYPES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8211 typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSEXTPROC) (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8212 typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSEXTPROC) (GLenum mode, const GLsizei *count, GLenum type, const GLvoid* *indices, GLsizei primcount);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8213 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8214
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8215 #ifndef GL_EXT_fog_coord
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8216 #define GL_EXT_fog_coord 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8217 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8218 GLAPI void APIENTRY glFogCoordfEXT (GLfloat coord);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8219 GLAPI void APIENTRY glFogCoordfvEXT (const GLfloat *coord);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8220 GLAPI void APIENTRY glFogCoorddEXT (GLdouble coord);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8221 GLAPI void APIENTRY glFogCoorddvEXT (const GLdouble *coord);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8222 GLAPI void APIENTRY glFogCoordPointerEXT (GLenum type, GLsizei stride, const GLvoid *pointer);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8223 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8224 typedef void (APIENTRYP PFNGLFOGCOORDFEXTPROC) (GLfloat coord);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8225 typedef void (APIENTRYP PFNGLFOGCOORDFVEXTPROC) (const GLfloat *coord);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8226 typedef void (APIENTRYP PFNGLFOGCOORDDEXTPROC) (GLdouble coord);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8227 typedef void (APIENTRYP PFNGLFOGCOORDDVEXTPROC) (const GLdouble *coord);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8228 typedef void (APIENTRYP PFNGLFOGCOORDPOINTEREXTPROC) (GLenum type, GLsizei stride, const GLvoid *pointer);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8229 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8230
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8231 #ifndef GL_REND_screen_coordinates
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8232 #define GL_REND_screen_coordinates 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8233 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8234
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8235 #ifndef GL_EXT_coordinate_frame
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8236 #define GL_EXT_coordinate_frame 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8237 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8238 GLAPI void APIENTRY glTangent3bEXT (GLbyte tx, GLbyte ty, GLbyte tz);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8239 GLAPI void APIENTRY glTangent3bvEXT (const GLbyte *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8240 GLAPI void APIENTRY glTangent3dEXT (GLdouble tx, GLdouble ty, GLdouble tz);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8241 GLAPI void APIENTRY glTangent3dvEXT (const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8242 GLAPI void APIENTRY glTangent3fEXT (GLfloat tx, GLfloat ty, GLfloat tz);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8243 GLAPI void APIENTRY glTangent3fvEXT (const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8244 GLAPI void APIENTRY glTangent3iEXT (GLint tx, GLint ty, GLint tz);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8245 GLAPI void APIENTRY glTangent3ivEXT (const GLint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8246 GLAPI void APIENTRY glTangent3sEXT (GLshort tx, GLshort ty, GLshort tz);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8247 GLAPI void APIENTRY glTangent3svEXT (const GLshort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8248 GLAPI void APIENTRY glBinormal3bEXT (GLbyte bx, GLbyte by, GLbyte bz);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8249 GLAPI void APIENTRY glBinormal3bvEXT (const GLbyte *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8250 GLAPI void APIENTRY glBinormal3dEXT (GLdouble bx, GLdouble by, GLdouble bz);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8251 GLAPI void APIENTRY glBinormal3dvEXT (const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8252 GLAPI void APIENTRY glBinormal3fEXT (GLfloat bx, GLfloat by, GLfloat bz);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8253 GLAPI void APIENTRY glBinormal3fvEXT (const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8254 GLAPI void APIENTRY glBinormal3iEXT (GLint bx, GLint by, GLint bz);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8255 GLAPI void APIENTRY glBinormal3ivEXT (const GLint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8256 GLAPI void APIENTRY glBinormal3sEXT (GLshort bx, GLshort by, GLshort bz);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8257 GLAPI void APIENTRY glBinormal3svEXT (const GLshort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8258 GLAPI void APIENTRY glTangentPointerEXT (GLenum type, GLsizei stride, const GLvoid *pointer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8259 GLAPI void APIENTRY glBinormalPointerEXT (GLenum type, GLsizei stride, const GLvoid *pointer);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8260 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8261 typedef void (APIENTRYP PFNGLTANGENT3BEXTPROC) (GLbyte tx, GLbyte ty, GLbyte tz);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8262 typedef void (APIENTRYP PFNGLTANGENT3BVEXTPROC) (const GLbyte *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8263 typedef void (APIENTRYP PFNGLTANGENT3DEXTPROC) (GLdouble tx, GLdouble ty, GLdouble tz);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8264 typedef void (APIENTRYP PFNGLTANGENT3DVEXTPROC) (const GLdouble *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8265 typedef void (APIENTRYP PFNGLTANGENT3FEXTPROC) (GLfloat tx, GLfloat ty, GLfloat tz);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8266 typedef void (APIENTRYP PFNGLTANGENT3FVEXTPROC) (const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8267 typedef void (APIENTRYP PFNGLTANGENT3IEXTPROC) (GLint tx, GLint ty, GLint tz);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8268 typedef void (APIENTRYP PFNGLTANGENT3IVEXTPROC) (const GLint *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8269 typedef void (APIENTRYP PFNGLTANGENT3SEXTPROC) (GLshort tx, GLshort ty, GLshort tz);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8270 typedef void (APIENTRYP PFNGLTANGENT3SVEXTPROC) (const GLshort *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8271 typedef void (APIENTRYP PFNGLBINORMAL3BEXTPROC) (GLbyte bx, GLbyte by, GLbyte bz);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8272 typedef void (APIENTRYP PFNGLBINORMAL3BVEXTPROC) (const GLbyte *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8273 typedef void (APIENTRYP PFNGLBINORMAL3DEXTPROC) (GLdouble bx, GLdouble by, GLdouble bz);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8274 typedef void (APIENTRYP PFNGLBINORMAL3DVEXTPROC) (const GLdouble *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8275 typedef void (APIENTRYP PFNGLBINORMAL3FEXTPROC) (GLfloat bx, GLfloat by, GLfloat bz);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8276 typedef void (APIENTRYP PFNGLBINORMAL3FVEXTPROC) (const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8277 typedef void (APIENTRYP PFNGLBINORMAL3IEXTPROC) (GLint bx, GLint by, GLint bz);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8278 typedef void (APIENTRYP PFNGLBINORMAL3IVEXTPROC) (const GLint *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8279 typedef void (APIENTRYP PFNGLBINORMAL3SEXTPROC) (GLshort bx, GLshort by, GLshort bz);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8280 typedef void (APIENTRYP PFNGLBINORMAL3SVEXTPROC) (const GLshort *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8281 typedef void (APIENTRYP PFNGLTANGENTPOINTEREXTPROC) (GLenum type, GLsizei stride, const GLvoid *pointer);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8282 typedef void (APIENTRYP PFNGLBINORMALPOINTEREXTPROC) (GLenum type, GLsizei stride, const GLvoid *pointer);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8283 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8284
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8285 #ifndef GL_EXT_texture_env_combine
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8286 #define GL_EXT_texture_env_combine 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8287 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8288
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8289 #ifndef GL_APPLE_specular_vector
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8290 #define GL_APPLE_specular_vector 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8291 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8292
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8293 #ifndef GL_APPLE_transform_hint
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8294 #define GL_APPLE_transform_hint 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8295 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8296
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8297 #ifndef GL_SGIX_fog_scale
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8298 #define GL_SGIX_fog_scale 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8299 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8300
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8301 #ifndef GL_SUNX_constant_data
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8302 #define GL_SUNX_constant_data 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8303 #ifdef GL_GLEXT_PROTOTYPES
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8304 GLAPI void APIENTRY glFinishTextureSUNX (void);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8305 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8306 typedef void (APIENTRYP PFNGLFINISHTEXTURESUNXPROC) (void);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8307 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8308
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8309 #ifndef GL_SUN_global_alpha
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8310 #define GL_SUN_global_alpha 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8311 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8312 GLAPI void APIENTRY glGlobalAlphaFactorbSUN (GLbyte factor);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8313 GLAPI void APIENTRY glGlobalAlphaFactorsSUN (GLshort factor);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8314 GLAPI void APIENTRY glGlobalAlphaFactoriSUN (GLint factor);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8315 GLAPI void APIENTRY glGlobalAlphaFactorfSUN (GLfloat factor);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8316 GLAPI void APIENTRY glGlobalAlphaFactordSUN (GLdouble factor);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8317 GLAPI void APIENTRY glGlobalAlphaFactorubSUN (GLubyte factor);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8318 GLAPI void APIENTRY glGlobalAlphaFactorusSUN (GLushort factor);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8319 GLAPI void APIENTRY glGlobalAlphaFactoruiSUN (GLuint factor);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8320 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8321 typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORBSUNPROC) (GLbyte factor);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8322 typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORSSUNPROC) (GLshort factor);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8323 typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORISUNPROC) (GLint factor);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8324 typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORFSUNPROC) (GLfloat factor);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8325 typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORDSUNPROC) (GLdouble factor);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8326 typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORUBSUNPROC) (GLubyte factor);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8327 typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORUSSUNPROC) (GLushort factor);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8328 typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORUISUNPROC) (GLuint factor);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8329 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8330
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8331 #ifndef GL_SUN_triangle_list
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8332 #define GL_SUN_triangle_list 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8333 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8334 GLAPI void APIENTRY glReplacementCodeuiSUN (GLuint code);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8335 GLAPI void APIENTRY glReplacementCodeusSUN (GLushort code);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8336 GLAPI void APIENTRY glReplacementCodeubSUN (GLubyte code);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8337 GLAPI void APIENTRY glReplacementCodeuivSUN (const GLuint *code);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8338 GLAPI void APIENTRY glReplacementCodeusvSUN (const GLushort *code);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8339 GLAPI void APIENTRY glReplacementCodeubvSUN (const GLubyte *code);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8340 GLAPI void APIENTRY glReplacementCodePointerSUN (GLenum type, GLsizei stride, const GLvoid* *pointer);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8341 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8342 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUISUNPROC) (GLuint code);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8343 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUSSUNPROC) (GLushort code);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8344 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUBSUNPROC) (GLubyte code);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8345 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUIVSUNPROC) (const GLuint *code);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8346 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUSVSUNPROC) (const GLushort *code);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8347 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUBVSUNPROC) (const GLubyte *code);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8348 typedef void (APIENTRYP PFNGLREPLACEMENTCODEPOINTERSUNPROC) (GLenum type, GLsizei stride, const GLvoid* *pointer);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8349 #endif
214
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
8350
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8351 #ifndef GL_SUN_vertex
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8352 #define GL_SUN_vertex 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8353 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8354 GLAPI void APIENTRY glColor4ubVertex2fSUN (GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8355 GLAPI void APIENTRY glColor4ubVertex2fvSUN (const GLubyte *c, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8356 GLAPI void APIENTRY glColor4ubVertex3fSUN (GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8357 GLAPI void APIENTRY glColor4ubVertex3fvSUN (const GLubyte *c, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8358 GLAPI void APIENTRY glColor3fVertex3fSUN (GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8359 GLAPI void APIENTRY glColor3fVertex3fvSUN (const GLfloat *c, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8360 GLAPI void APIENTRY glNormal3fVertex3fSUN (GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8361 GLAPI void APIENTRY glNormal3fVertex3fvSUN (const GLfloat *n, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8362 GLAPI void APIENTRY glColor4fNormal3fVertex3fSUN (GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8363 GLAPI void APIENTRY glColor4fNormal3fVertex3fvSUN (const GLfloat *c, const GLfloat *n, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8364 GLAPI void APIENTRY glTexCoord2fVertex3fSUN (GLfloat s, GLfloat t, GLfloat x, GLfloat y, GLfloat z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8365 GLAPI void APIENTRY glTexCoord2fVertex3fvSUN (const GLfloat *tc, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8366 GLAPI void APIENTRY glTexCoord4fVertex4fSUN (GLfloat s, GLfloat t, GLfloat p, GLfloat q, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8367 GLAPI void APIENTRY glTexCoord4fVertex4fvSUN (const GLfloat *tc, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8368 GLAPI void APIENTRY glTexCoord2fColor4ubVertex3fSUN (GLfloat s, GLfloat t, GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8369 GLAPI void APIENTRY glTexCoord2fColor4ubVertex3fvSUN (const GLfloat *tc, const GLubyte *c, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8370 GLAPI void APIENTRY glTexCoord2fColor3fVertex3fSUN (GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8371 GLAPI void APIENTRY glTexCoord2fColor3fVertex3fvSUN (const GLfloat *tc, const GLfloat *c, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8372 GLAPI void APIENTRY glTexCoord2fNormal3fVertex3fSUN (GLfloat s, GLfloat t, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8373 GLAPI void APIENTRY glTexCoord2fNormal3fVertex3fvSUN (const GLfloat *tc, const GLfloat *n, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8374 GLAPI void APIENTRY glTexCoord2fColor4fNormal3fVertex3fSUN (GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8375 GLAPI void APIENTRY glTexCoord2fColor4fNormal3fVertex3fvSUN (const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8376 GLAPI void APIENTRY glTexCoord4fColor4fNormal3fVertex4fSUN (GLfloat s, GLfloat t, GLfloat p, GLfloat q, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8377 GLAPI void APIENTRY glTexCoord4fColor4fNormal3fVertex4fvSUN (const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8378 GLAPI void APIENTRY glReplacementCodeuiVertex3fSUN (GLuint rc, GLfloat x, GLfloat y, GLfloat z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8379 GLAPI void APIENTRY glReplacementCodeuiVertex3fvSUN (const GLuint *rc, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8380 GLAPI void APIENTRY glReplacementCodeuiColor4ubVertex3fSUN (GLuint rc, GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8381 GLAPI void APIENTRY glReplacementCodeuiColor4ubVertex3fvSUN (const GLuint *rc, const GLubyte *c, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8382 GLAPI void APIENTRY glReplacementCodeuiColor3fVertex3fSUN (GLuint rc, GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8383 GLAPI void APIENTRY glReplacementCodeuiColor3fVertex3fvSUN (const GLuint *rc, const GLfloat *c, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8384 GLAPI void APIENTRY glReplacementCodeuiNormal3fVertex3fSUN (GLuint rc, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8385 GLAPI void APIENTRY glReplacementCodeuiNormal3fVertex3fvSUN (const GLuint *rc, const GLfloat *n, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8386 GLAPI void APIENTRY glReplacementCodeuiColor4fNormal3fVertex3fSUN (GLuint rc, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8387 GLAPI void APIENTRY glReplacementCodeuiColor4fNormal3fVertex3fvSUN (const GLuint *rc, const GLfloat *c, const GLfloat *n, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8388 GLAPI void APIENTRY glReplacementCodeuiTexCoord2fVertex3fSUN (GLuint rc, GLfloat s, GLfloat t, GLfloat x, GLfloat y, GLfloat z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8389 GLAPI void APIENTRY glReplacementCodeuiTexCoord2fVertex3fvSUN (const GLuint *rc, const GLfloat *tc, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8390 GLAPI void APIENTRY glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN (GLuint rc, GLfloat s, GLfloat t, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8391 GLAPI void APIENTRY glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN (const GLuint *rc, const GLfloat *tc, const GLfloat *n, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8392 GLAPI void APIENTRY glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN (GLuint rc, GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8393 GLAPI void APIENTRY glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN (const GLuint *rc, const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8394 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8395 typedef void (APIENTRYP PFNGLCOLOR4UBVERTEX2FSUNPROC) (GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8396 typedef void (APIENTRYP PFNGLCOLOR4UBVERTEX2FVSUNPROC) (const GLubyte *c, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8397 typedef void (APIENTRYP PFNGLCOLOR4UBVERTEX3FSUNPROC) (GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8398 typedef void (APIENTRYP PFNGLCOLOR4UBVERTEX3FVSUNPROC) (const GLubyte *c, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8399 typedef void (APIENTRYP PFNGLCOLOR3FVERTEX3FSUNPROC) (GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8400 typedef void (APIENTRYP PFNGLCOLOR3FVERTEX3FVSUNPROC) (const GLfloat *c, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8401 typedef void (APIENTRYP PFNGLNORMAL3FVERTEX3FSUNPROC) (GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8402 typedef void (APIENTRYP PFNGLNORMAL3FVERTEX3FVSUNPROC) (const GLfloat *n, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8403 typedef void (APIENTRYP PFNGLCOLOR4FNORMAL3FVERTEX3FSUNPROC) (GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8404 typedef void (APIENTRYP PFNGLCOLOR4FNORMAL3FVERTEX3FVSUNPROC) (const GLfloat *c, const GLfloat *n, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8405 typedef void (APIENTRYP PFNGLTEXCOORD2FVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLfloat x, GLfloat y, GLfloat z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8406 typedef void (APIENTRYP PFNGLTEXCOORD2FVERTEX3FVSUNPROC) (const GLfloat *tc, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8407 typedef void (APIENTRYP PFNGLTEXCOORD4FVERTEX4FSUNPROC) (GLfloat s, GLfloat t, GLfloat p, GLfloat q, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8408 typedef void (APIENTRYP PFNGLTEXCOORD4FVERTEX4FVSUNPROC) (const GLfloat *tc, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8409 typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR4UBVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8410 typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR4UBVERTEX3FVSUNPROC) (const GLfloat *tc, const GLubyte *c, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8411 typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR3FVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8412 typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR3FVERTEX3FVSUNPROC) (const GLfloat *tc, const GLfloat *c, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8413 typedef void (APIENTRYP PFNGLTEXCOORD2FNORMAL3FVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8414 typedef void (APIENTRYP PFNGLTEXCOORD2FNORMAL3FVERTEX3FVSUNPROC) (const GLfloat *tc, const GLfloat *n, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8415 typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR4FNORMAL3FVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8416 typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR4FNORMAL3FVERTEX3FVSUNPROC) (const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8417 typedef void (APIENTRYP PFNGLTEXCOORD4FCOLOR4FNORMAL3FVERTEX4FSUNPROC) (GLfloat s, GLfloat t, GLfloat p, GLfloat q, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8418 typedef void (APIENTRYP PFNGLTEXCOORD4FCOLOR4FNORMAL3FVERTEX4FVSUNPROC) (const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8419 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUIVERTEX3FSUNPROC) (GLuint rc, GLfloat x, GLfloat y, GLfloat z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8420 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUIVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8421 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR4UBVERTEX3FSUNPROC) (GLuint rc, GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8422 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR4UBVERTEX3FVSUNPROC) (const GLuint *rc, const GLubyte *c, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8423 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR3FVERTEX3FSUNPROC) (GLuint rc, GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8424 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR3FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *c, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8425 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUINORMAL3FVERTEX3FSUNPROC) (GLuint rc, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8426 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUINORMAL3FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *n, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8427 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR4FNORMAL3FVERTEX3FSUNPROC) (GLuint rc, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8428 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR4FNORMAL3FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *c, const GLfloat *n, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8429 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FVERTEX3FSUNPROC) (GLuint rc, GLfloat s, GLfloat t, GLfloat x, GLfloat y, GLfloat z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8430 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *tc, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8431 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FNORMAL3FVERTEX3FSUNPROC) (GLuint rc, GLfloat s, GLfloat t, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8432 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FNORMAL3FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *tc, const GLfloat *n, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8433 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FCOLOR4FNORMAL3FVERTEX3FSUNPROC) (GLuint rc, GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8434 typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FCOLOR4FNORMAL3FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8435 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8436
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8437 #ifndef GL_EXT_blend_func_separate
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8438 #define GL_EXT_blend_func_separate 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8439 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8440 GLAPI void APIENTRY glBlendFuncSeparateEXT (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8441 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8442 typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEEXTPROC) (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8443 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8444
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8445 #ifndef GL_INGR_blend_func_separate
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8446 #define GL_INGR_blend_func_separate 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8447 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8448 GLAPI void APIENTRY glBlendFuncSeparateINGR (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8449 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8450 typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEINGRPROC) (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8451 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8452
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8453 #ifndef GL_INGR_color_clamp
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8454 #define GL_INGR_color_clamp 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8455 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8456
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8457 #ifndef GL_INGR_interlace_read
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8458 #define GL_INGR_interlace_read 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8459 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8460
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8461 #ifndef GL_EXT_stencil_wrap
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8462 #define GL_EXT_stencil_wrap 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8463 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8464
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8465 #ifndef GL_EXT_422_pixels
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8466 #define GL_EXT_422_pixels 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8467 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8468
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8469 #ifndef GL_NV_texgen_reflection
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8470 #define GL_NV_texgen_reflection 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8471 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8472
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8473 #ifndef GL_SUN_convolution_border_modes
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8474 #define GL_SUN_convolution_border_modes 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8475 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8476
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8477 #ifndef GL_EXT_texture_env_add
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8478 #define GL_EXT_texture_env_add 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8479 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8480
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8481 #ifndef GL_EXT_texture_lod_bias
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8482 #define GL_EXT_texture_lod_bias 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8483 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8484
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8485 #ifndef GL_EXT_texture_filter_anisotropic
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8486 #define GL_EXT_texture_filter_anisotropic 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8487 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8488
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8489 #ifndef GL_EXT_vertex_weighting
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8490 #define GL_EXT_vertex_weighting 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8491 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8492 GLAPI void APIENTRY glVertexWeightfEXT (GLfloat weight);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8493 GLAPI void APIENTRY glVertexWeightfvEXT (const GLfloat *weight);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8494 GLAPI void APIENTRY glVertexWeightPointerEXT (GLsizei size, GLenum type, GLsizei stride, const GLvoid *pointer);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8495 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8496 typedef void (APIENTRYP PFNGLVERTEXWEIGHTFEXTPROC) (GLfloat weight);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8497 typedef void (APIENTRYP PFNGLVERTEXWEIGHTFVEXTPROC) (const GLfloat *weight);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8498 typedef void (APIENTRYP PFNGLVERTEXWEIGHTPOINTEREXTPROC) (GLsizei size, GLenum type, GLsizei stride, const GLvoid *pointer);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8499 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8500
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8501 #ifndef GL_NV_light_max_exponent
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8502 #define GL_NV_light_max_exponent 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8503 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8504
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8505 #ifndef GL_NV_vertex_array_range
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8506 #define GL_NV_vertex_array_range 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8507 #ifdef GL_GLEXT_PROTOTYPES
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8508 GLAPI void APIENTRY glFlushVertexArrayRangeNV (void);
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8509 GLAPI void APIENTRY glVertexArrayRangeNV (GLsizei length, const GLvoid *pointer);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8510 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8511 typedef void (APIENTRYP PFNGLFLUSHVERTEXARRAYRANGENVPROC) (void);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8512 typedef void (APIENTRYP PFNGLVERTEXARRAYRANGENVPROC) (GLsizei length, const GLvoid *pointer);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8513 #endif
214
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
8514
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8515 #ifndef GL_NV_register_combiners
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8516 #define GL_NV_register_combiners 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8517 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8518 GLAPI void APIENTRY glCombinerParameterfvNV (GLenum pname, const GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8519 GLAPI void APIENTRY glCombinerParameterfNV (GLenum pname, GLfloat param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8520 GLAPI void APIENTRY glCombinerParameterivNV (GLenum pname, const GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8521 GLAPI void APIENTRY glCombinerParameteriNV (GLenum pname, GLint param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8522 GLAPI void APIENTRY glCombinerInputNV (GLenum stage, GLenum portion, GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8523 GLAPI void APIENTRY glCombinerOutputNV (GLenum stage, GLenum portion, GLenum abOutput, GLenum cdOutput, GLenum sumOutput, GLenum scale, GLenum bias, GLboolean abDotProduct, GLboolean cdDotProduct, GLboolean muxSum);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8524 GLAPI void APIENTRY glFinalCombinerInputNV (GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8525 GLAPI void APIENTRY glGetCombinerInputParameterfvNV (GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8526 GLAPI void APIENTRY glGetCombinerInputParameterivNV (GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8527 GLAPI void APIENTRY glGetCombinerOutputParameterfvNV (GLenum stage, GLenum portion, GLenum pname, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8528 GLAPI void APIENTRY glGetCombinerOutputParameterivNV (GLenum stage, GLenum portion, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8529 GLAPI void APIENTRY glGetFinalCombinerInputParameterfvNV (GLenum variable, GLenum pname, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8530 GLAPI void APIENTRY glGetFinalCombinerInputParameterivNV (GLenum variable, GLenum pname, GLint *params);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8531 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8532 typedef void (APIENTRYP PFNGLCOMBINERPARAMETERFVNVPROC) (GLenum pname, const GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8533 typedef void (APIENTRYP PFNGLCOMBINERPARAMETERFNVPROC) (GLenum pname, GLfloat param);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8534 typedef void (APIENTRYP PFNGLCOMBINERPARAMETERIVNVPROC) (GLenum pname, const GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8535 typedef void (APIENTRYP PFNGLCOMBINERPARAMETERINVPROC) (GLenum pname, GLint param);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8536 typedef void (APIENTRYP PFNGLCOMBINERINPUTNVPROC) (GLenum stage, GLenum portion, GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8537 typedef void (APIENTRYP PFNGLCOMBINEROUTPUTNVPROC) (GLenum stage, GLenum portion, GLenum abOutput, GLenum cdOutput, GLenum sumOutput, GLenum scale, GLenum bias, GLboolean abDotProduct, GLboolean cdDotProduct, GLboolean muxSum);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8538 typedef void (APIENTRYP PFNGLFINALCOMBINERINPUTNVPROC) (GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8539 typedef void (APIENTRYP PFNGLGETCOMBINERINPUTPARAMETERFVNVPROC) (GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8540 typedef void (APIENTRYP PFNGLGETCOMBINERINPUTPARAMETERIVNVPROC) (GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8541 typedef void (APIENTRYP PFNGLGETCOMBINEROUTPUTPARAMETERFVNVPROC) (GLenum stage, GLenum portion, GLenum pname, GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8542 typedef void (APIENTRYP PFNGLGETCOMBINEROUTPUTPARAMETERIVNVPROC) (GLenum stage, GLenum portion, GLenum pname, GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8543 typedef void (APIENTRYP PFNGLGETFINALCOMBINERINPUTPARAMETERFVNVPROC) (GLenum variable, GLenum pname, GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8544 typedef void (APIENTRYP PFNGLGETFINALCOMBINERINPUTPARAMETERIVNVPROC) (GLenum variable, GLenum pname, GLint *params);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8545 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8546
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8547 #ifndef GL_NV_fog_distance
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8548 #define GL_NV_fog_distance 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8549 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8550
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8551 #ifndef GL_NV_texgen_emboss
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8552 #define GL_NV_texgen_emboss 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8553 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8554
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8555 #ifndef GL_NV_blend_square
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8556 #define GL_NV_blend_square 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8557 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8558
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8559 #ifndef GL_NV_texture_env_combine4
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8560 #define GL_NV_texture_env_combine4 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8561 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8562
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8563 #ifndef GL_MESA_resize_buffers
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8564 #define GL_MESA_resize_buffers 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8565 #ifdef GL_GLEXT_PROTOTYPES
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8566 GLAPI void APIENTRY glResizeBuffersMESA (void);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8567 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8568 typedef void (APIENTRYP PFNGLRESIZEBUFFERSMESAPROC) (void);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8569 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8570
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8571 #ifndef GL_MESA_window_pos
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8572 #define GL_MESA_window_pos 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8573 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8574 GLAPI void APIENTRY glWindowPos2dMESA (GLdouble x, GLdouble y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8575 GLAPI void APIENTRY glWindowPos2dvMESA (const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8576 GLAPI void APIENTRY glWindowPos2fMESA (GLfloat x, GLfloat y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8577 GLAPI void APIENTRY glWindowPos2fvMESA (const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8578 GLAPI void APIENTRY glWindowPos2iMESA (GLint x, GLint y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8579 GLAPI void APIENTRY glWindowPos2ivMESA (const GLint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8580 GLAPI void APIENTRY glWindowPos2sMESA (GLshort x, GLshort y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8581 GLAPI void APIENTRY glWindowPos2svMESA (const GLshort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8582 GLAPI void APIENTRY glWindowPos3dMESA (GLdouble x, GLdouble y, GLdouble z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8583 GLAPI void APIENTRY glWindowPos3dvMESA (const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8584 GLAPI void APIENTRY glWindowPos3fMESA (GLfloat x, GLfloat y, GLfloat z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8585 GLAPI void APIENTRY glWindowPos3fvMESA (const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8586 GLAPI void APIENTRY glWindowPos3iMESA (GLint x, GLint y, GLint z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8587 GLAPI void APIENTRY glWindowPos3ivMESA (const GLint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8588 GLAPI void APIENTRY glWindowPos3sMESA (GLshort x, GLshort y, GLshort z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8589 GLAPI void APIENTRY glWindowPos3svMESA (const GLshort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8590 GLAPI void APIENTRY glWindowPos4dMESA (GLdouble x, GLdouble y, GLdouble z, GLdouble w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8591 GLAPI void APIENTRY glWindowPos4dvMESA (const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8592 GLAPI void APIENTRY glWindowPos4fMESA (GLfloat x, GLfloat y, GLfloat z, GLfloat w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8593 GLAPI void APIENTRY glWindowPos4fvMESA (const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8594 GLAPI void APIENTRY glWindowPos4iMESA (GLint x, GLint y, GLint z, GLint w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8595 GLAPI void APIENTRY glWindowPos4ivMESA (const GLint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8596 GLAPI void APIENTRY glWindowPos4sMESA (GLshort x, GLshort y, GLshort z, GLshort w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8597 GLAPI void APIENTRY glWindowPos4svMESA (const GLshort *v);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8598 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8599 typedef void (APIENTRYP PFNGLWINDOWPOS2DMESAPROC) (GLdouble x, GLdouble y);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8600 typedef void (APIENTRYP PFNGLWINDOWPOS2DVMESAPROC) (const GLdouble *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8601 typedef void (APIENTRYP PFNGLWINDOWPOS2FMESAPROC) (GLfloat x, GLfloat y);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8602 typedef void (APIENTRYP PFNGLWINDOWPOS2FVMESAPROC) (const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8603 typedef void (APIENTRYP PFNGLWINDOWPOS2IMESAPROC) (GLint x, GLint y);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8604 typedef void (APIENTRYP PFNGLWINDOWPOS2IVMESAPROC) (const GLint *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8605 typedef void (APIENTRYP PFNGLWINDOWPOS2SMESAPROC) (GLshort x, GLshort y);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8606 typedef void (APIENTRYP PFNGLWINDOWPOS2SVMESAPROC) (const GLshort *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8607 typedef void (APIENTRYP PFNGLWINDOWPOS3DMESAPROC) (GLdouble x, GLdouble y, GLdouble z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8608 typedef void (APIENTRYP PFNGLWINDOWPOS3DVMESAPROC) (const GLdouble *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8609 typedef void (APIENTRYP PFNGLWINDOWPOS3FMESAPROC) (GLfloat x, GLfloat y, GLfloat z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8610 typedef void (APIENTRYP PFNGLWINDOWPOS3FVMESAPROC) (const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8611 typedef void (APIENTRYP PFNGLWINDOWPOS3IMESAPROC) (GLint x, GLint y, GLint z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8612 typedef void (APIENTRYP PFNGLWINDOWPOS3IVMESAPROC) (const GLint *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8613 typedef void (APIENTRYP PFNGLWINDOWPOS3SMESAPROC) (GLshort x, GLshort y, GLshort z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8614 typedef void (APIENTRYP PFNGLWINDOWPOS3SVMESAPROC) (const GLshort *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8615 typedef void (APIENTRYP PFNGLWINDOWPOS4DMESAPROC) (GLdouble x, GLdouble y, GLdouble z, GLdouble w);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8616 typedef void (APIENTRYP PFNGLWINDOWPOS4DVMESAPROC) (const GLdouble *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8617 typedef void (APIENTRYP PFNGLWINDOWPOS4FMESAPROC) (GLfloat x, GLfloat y, GLfloat z, GLfloat w);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8618 typedef void (APIENTRYP PFNGLWINDOWPOS4FVMESAPROC) (const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8619 typedef void (APIENTRYP PFNGLWINDOWPOS4IMESAPROC) (GLint x, GLint y, GLint z, GLint w);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8620 typedef void (APIENTRYP PFNGLWINDOWPOS4IVMESAPROC) (const GLint *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8621 typedef void (APIENTRYP PFNGLWINDOWPOS4SMESAPROC) (GLshort x, GLshort y, GLshort z, GLshort w);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8622 typedef void (APIENTRYP PFNGLWINDOWPOS4SVMESAPROC) (const GLshort *v);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8623 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8624
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8625 #ifndef GL_IBM_cull_vertex
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8626 #define GL_IBM_cull_vertex 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8627 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8628
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8629 #ifndef GL_IBM_multimode_draw_arrays
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8630 #define GL_IBM_multimode_draw_arrays 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8631 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8632 GLAPI void APIENTRY glMultiModeDrawArraysIBM (const GLenum *mode, const GLint *first, const GLsizei *count, GLsizei primcount, GLint modestride);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8633 GLAPI void APIENTRY glMultiModeDrawElementsIBM (const GLenum *mode, const GLsizei *count, GLenum type, const GLvoid* const *indices, GLsizei primcount, GLint modestride);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8634 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8635 typedef void (APIENTRYP PFNGLMULTIMODEDRAWARRAYSIBMPROC) (const GLenum *mode, const GLint *first, const GLsizei *count, GLsizei primcount, GLint modestride);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8636 typedef void (APIENTRYP PFNGLMULTIMODEDRAWELEMENTSIBMPROC) (const GLenum *mode, const GLsizei *count, GLenum type, const GLvoid* const *indices, GLsizei primcount, GLint modestride);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8637 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8638
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8639 #ifndef GL_IBM_vertex_array_lists
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8640 #define GL_IBM_vertex_array_lists 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8641 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8642 GLAPI void APIENTRY glColorPointerListIBM (GLint size, GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8643 GLAPI void APIENTRY glSecondaryColorPointerListIBM (GLint size, GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8644 GLAPI void APIENTRY glEdgeFlagPointerListIBM (GLint stride, const GLboolean* *pointer, GLint ptrstride);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8645 GLAPI void APIENTRY glFogCoordPointerListIBM (GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8646 GLAPI void APIENTRY glIndexPointerListIBM (GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8647 GLAPI void APIENTRY glNormalPointerListIBM (GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8648 GLAPI void APIENTRY glTexCoordPointerListIBM (GLint size, GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8649 GLAPI void APIENTRY glVertexPointerListIBM (GLint size, GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8650 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8651 typedef void (APIENTRYP PFNGLCOLORPOINTERLISTIBMPROC) (GLint size, GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8652 typedef void (APIENTRYP PFNGLSECONDARYCOLORPOINTERLISTIBMPROC) (GLint size, GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8653 typedef void (APIENTRYP PFNGLEDGEFLAGPOINTERLISTIBMPROC) (GLint stride, const GLboolean* *pointer, GLint ptrstride);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8654 typedef void (APIENTRYP PFNGLFOGCOORDPOINTERLISTIBMPROC) (GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8655 typedef void (APIENTRYP PFNGLINDEXPOINTERLISTIBMPROC) (GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8656 typedef void (APIENTRYP PFNGLNORMALPOINTERLISTIBMPROC) (GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8657 typedef void (APIENTRYP PFNGLTEXCOORDPOINTERLISTIBMPROC) (GLint size, GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8658 typedef void (APIENTRYP PFNGLVERTEXPOINTERLISTIBMPROC) (GLint size, GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8659 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8660
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8661 #ifndef GL_SGIX_subsample
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8662 #define GL_SGIX_subsample 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8663 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8664
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8665 #ifndef GL_SGIX_ycrcba
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8666 #define GL_SGIX_ycrcba 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8667 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8668
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8669 #ifndef GL_SGIX_ycrcb_subsample
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8670 #define GL_SGIX_ycrcb_subsample 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8671 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8672
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8673 #ifndef GL_SGIX_depth_pass_instrument
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8674 #define GL_SGIX_depth_pass_instrument 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8675 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8676
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8677 #ifndef GL_3DFX_texture_compression_FXT1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8678 #define GL_3DFX_texture_compression_FXT1 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8679 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8680
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8681 #ifndef GL_3DFX_multisample
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8682 #define GL_3DFX_multisample 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8683 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8684
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8685 #ifndef GL_3DFX_tbuffer
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8686 #define GL_3DFX_tbuffer 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8687 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8688 GLAPI void APIENTRY glTbufferMask3DFX (GLuint mask);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8689 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8690 typedef void (APIENTRYP PFNGLTBUFFERMASK3DFXPROC) (GLuint mask);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8691 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8692
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8693 #ifndef GL_EXT_multisample
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8694 #define GL_EXT_multisample 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8695 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8696 GLAPI void APIENTRY glSampleMaskEXT (GLclampf value, GLboolean invert);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8697 GLAPI void APIENTRY glSamplePatternEXT (GLenum pattern);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8698 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8699 typedef void (APIENTRYP PFNGLSAMPLEMASKEXTPROC) (GLclampf value, GLboolean invert);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8700 typedef void (APIENTRYP PFNGLSAMPLEPATTERNEXTPROC) (GLenum pattern);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8701 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8702
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8703 #ifndef GL_SGIX_vertex_preclip
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8704 #define GL_SGIX_vertex_preclip 1
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8705 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8706
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8707 #ifndef GL_SGIX_convolution_accuracy
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8708 #define GL_SGIX_convolution_accuracy 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8709 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8710
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8711 #ifndef GL_SGIX_resample
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8712 #define GL_SGIX_resample 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8713 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8714
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8715 #ifndef GL_SGIS_point_line_texgen
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8716 #define GL_SGIS_point_line_texgen 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8717 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8718
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8719 #ifndef GL_SGIS_texture_color_mask
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8720 #define GL_SGIS_texture_color_mask 1
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
8721 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8722 GLAPI void APIENTRY glTextureColorMaskSGIS (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8723 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8724 typedef void (APIENTRYP PFNGLTEXTURECOLORMASKSGISPROC) (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8725 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8726
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8727 #ifndef GL_SGIX_igloo_interface
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8728 #define GL_SGIX_igloo_interface 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8729 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8730 GLAPI void APIENTRY glIglooInterfaceSGIX (GLenum pname, const GLvoid *params);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8731 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8732 typedef void (APIENTRYP PFNGLIGLOOINTERFACESGIXPROC) (GLenum pname, const GLvoid *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8733 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8734
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8735 #ifndef GL_EXT_texture_env_dot3
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8736 #define GL_EXT_texture_env_dot3 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8737 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8738
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8739 #ifndef GL_ATI_texture_mirror_once
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8740 #define GL_ATI_texture_mirror_once 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8741 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8742
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8743 #ifndef GL_NV_fence
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8744 #define GL_NV_fence 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8745 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8746 GLAPI void APIENTRY glDeleteFencesNV (GLsizei n, const GLuint *fences);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8747 GLAPI void APIENTRY glGenFencesNV (GLsizei n, GLuint *fences);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8748 GLAPI GLboolean APIENTRY glIsFenceNV (GLuint fence);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8749 GLAPI GLboolean APIENTRY glTestFenceNV (GLuint fence);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8750 GLAPI void APIENTRY glGetFenceivNV (GLuint fence, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8751 GLAPI void APIENTRY glFinishFenceNV (GLuint fence);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8752 GLAPI void APIENTRY glSetFenceNV (GLuint fence, GLenum condition);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8753 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8754 typedef void (APIENTRYP PFNGLDELETEFENCESNVPROC) (GLsizei n, const GLuint *fences);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8755 typedef void (APIENTRYP PFNGLGENFENCESNVPROC) (GLsizei n, GLuint *fences);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8756 typedef GLboolean (APIENTRYP PFNGLISFENCENVPROC) (GLuint fence);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8757 typedef GLboolean (APIENTRYP PFNGLTESTFENCENVPROC) (GLuint fence);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8758 typedef void (APIENTRYP PFNGLGETFENCEIVNVPROC) (GLuint fence, GLenum pname, GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8759 typedef void (APIENTRYP PFNGLFINISHFENCENVPROC) (GLuint fence);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8760 typedef void (APIENTRYP PFNGLSETFENCENVPROC) (GLuint fence, GLenum condition);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8761 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8762
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8763 #ifndef GL_NV_evaluators
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8764 #define GL_NV_evaluators 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8765 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8766 GLAPI void APIENTRY glMapControlPointsNV (GLenum target, GLuint index, GLenum type, GLsizei ustride, GLsizei vstride, GLint uorder, GLint vorder, GLboolean packed, const GLvoid *points);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8767 GLAPI void APIENTRY glMapParameterivNV (GLenum target, GLenum pname, const GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8768 GLAPI void APIENTRY glMapParameterfvNV (GLenum target, GLenum pname, const GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8769 GLAPI void APIENTRY glGetMapControlPointsNV (GLenum target, GLuint index, GLenum type, GLsizei ustride, GLsizei vstride, GLboolean packed, GLvoid *points);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8770 GLAPI void APIENTRY glGetMapParameterivNV (GLenum target, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8771 GLAPI void APIENTRY glGetMapParameterfvNV (GLenum target, GLenum pname, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8772 GLAPI void APIENTRY glGetMapAttribParameterivNV (GLenum target, GLuint index, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8773 GLAPI void APIENTRY glGetMapAttribParameterfvNV (GLenum target, GLuint index, GLenum pname, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8774 GLAPI void APIENTRY glEvalMapsNV (GLenum target, GLenum mode);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8775 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8776 typedef void (APIENTRYP PFNGLMAPCONTROLPOINTSNVPROC) (GLenum target, GLuint index, GLenum type, GLsizei ustride, GLsizei vstride, GLint uorder, GLint vorder, GLboolean packed, const GLvoid *points);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8777 typedef void (APIENTRYP PFNGLMAPPARAMETERIVNVPROC) (GLenum target, GLenum pname, const GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8778 typedef void (APIENTRYP PFNGLMAPPARAMETERFVNVPROC) (GLenum target, GLenum pname, const GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8779 typedef void (APIENTRYP PFNGLGETMAPCONTROLPOINTSNVPROC) (GLenum target, GLuint index, GLenum type, GLsizei ustride, GLsizei vstride, GLboolean packed, GLvoid *points);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8780 typedef void (APIENTRYP PFNGLGETMAPPARAMETERIVNVPROC) (GLenum target, GLenum pname, GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8781 typedef void (APIENTRYP PFNGLGETMAPPARAMETERFVNVPROC) (GLenum target, GLenum pname, GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8782 typedef void (APIENTRYP PFNGLGETMAPATTRIBPARAMETERIVNVPROC) (GLenum target, GLuint index, GLenum pname, GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8783 typedef void (APIENTRYP PFNGLGETMAPATTRIBPARAMETERFVNVPROC) (GLenum target, GLuint index, GLenum pname, GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8784 typedef void (APIENTRYP PFNGLEVALMAPSNVPROC) (GLenum target, GLenum mode);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8785 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8786
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8787 #ifndef GL_NV_packed_depth_stencil
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8788 #define GL_NV_packed_depth_stencil 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8789 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8790
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8791 #ifndef GL_NV_register_combiners2
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8792 #define GL_NV_register_combiners2 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8793 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8794 GLAPI void APIENTRY glCombinerStageParameterfvNV (GLenum stage, GLenum pname, const GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8795 GLAPI void APIENTRY glGetCombinerStageParameterfvNV (GLenum stage, GLenum pname, GLfloat *params);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8796 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8797 typedef void (APIENTRYP PFNGLCOMBINERSTAGEPARAMETERFVNVPROC) (GLenum stage, GLenum pname, const GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8798 typedef void (APIENTRYP PFNGLGETCOMBINERSTAGEPARAMETERFVNVPROC) (GLenum stage, GLenum pname, GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8799 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8800
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8801 #ifndef GL_NV_texture_compression_vtc
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8802 #define GL_NV_texture_compression_vtc 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8803 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8804
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8805 #ifndef GL_NV_texture_rectangle
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8806 #define GL_NV_texture_rectangle 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8807 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8808
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8809 #ifndef GL_NV_texture_shader
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8810 #define GL_NV_texture_shader 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8811 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8812
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8813 #ifndef GL_NV_texture_shader2
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8814 #define GL_NV_texture_shader2 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8815 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8816
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8817 #ifndef GL_NV_vertex_array_range2
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8818 #define GL_NV_vertex_array_range2 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8819 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8820
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8821 #ifndef GL_NV_vertex_program
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8822 #define GL_NV_vertex_program 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8823 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8824 GLAPI GLboolean APIENTRY glAreProgramsResidentNV (GLsizei n, const GLuint *programs, GLboolean *residences);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8825 GLAPI void APIENTRY glBindProgramNV (GLenum target, GLuint id);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8826 GLAPI void APIENTRY glDeleteProgramsNV (GLsizei n, const GLuint *programs);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8827 GLAPI void APIENTRY glExecuteProgramNV (GLenum target, GLuint id, const GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8828 GLAPI void APIENTRY glGenProgramsNV (GLsizei n, GLuint *programs);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8829 GLAPI void APIENTRY glGetProgramParameterdvNV (GLenum target, GLuint index, GLenum pname, GLdouble *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8830 GLAPI void APIENTRY glGetProgramParameterfvNV (GLenum target, GLuint index, GLenum pname, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8831 GLAPI void APIENTRY glGetProgramivNV (GLuint id, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8832 GLAPI void APIENTRY glGetProgramStringNV (GLuint id, GLenum pname, GLubyte *program);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8833 GLAPI void APIENTRY glGetTrackMatrixivNV (GLenum target, GLuint address, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8834 GLAPI void APIENTRY glGetVertexAttribdvNV (GLuint index, GLenum pname, GLdouble *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8835 GLAPI void APIENTRY glGetVertexAttribfvNV (GLuint index, GLenum pname, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8836 GLAPI void APIENTRY glGetVertexAttribivNV (GLuint index, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8837 GLAPI void APIENTRY glGetVertexAttribPointervNV (GLuint index, GLenum pname, GLvoid* *pointer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8838 GLAPI GLboolean APIENTRY glIsProgramNV (GLuint id);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8839 GLAPI void APIENTRY glLoadProgramNV (GLenum target, GLuint id, GLsizei len, const GLubyte *program);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8840 GLAPI void APIENTRY glProgramParameter4dNV (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8841 GLAPI void APIENTRY glProgramParameter4dvNV (GLenum target, GLuint index, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8842 GLAPI void APIENTRY glProgramParameter4fNV (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8843 GLAPI void APIENTRY glProgramParameter4fvNV (GLenum target, GLuint index, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8844 GLAPI void APIENTRY glProgramParameters4dvNV (GLenum target, GLuint index, GLuint count, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8845 GLAPI void APIENTRY glProgramParameters4fvNV (GLenum target, GLuint index, GLuint count, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8846 GLAPI void APIENTRY glRequestResidentProgramsNV (GLsizei n, const GLuint *programs);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8847 GLAPI void APIENTRY glTrackMatrixNV (GLenum target, GLuint address, GLenum matrix, GLenum transform);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8848 GLAPI void APIENTRY glVertexAttribPointerNV (GLuint index, GLint fsize, GLenum type, GLsizei stride, const GLvoid *pointer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8849 GLAPI void APIENTRY glVertexAttrib1dNV (GLuint index, GLdouble x);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8850 GLAPI void APIENTRY glVertexAttrib1dvNV (GLuint index, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8851 GLAPI void APIENTRY glVertexAttrib1fNV (GLuint index, GLfloat x);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8852 GLAPI void APIENTRY glVertexAttrib1fvNV (GLuint index, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8853 GLAPI void APIENTRY glVertexAttrib1sNV (GLuint index, GLshort x);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8854 GLAPI void APIENTRY glVertexAttrib1svNV (GLuint index, const GLshort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8855 GLAPI void APIENTRY glVertexAttrib2dNV (GLuint index, GLdouble x, GLdouble y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8856 GLAPI void APIENTRY glVertexAttrib2dvNV (GLuint index, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8857 GLAPI void APIENTRY glVertexAttrib2fNV (GLuint index, GLfloat x, GLfloat y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8858 GLAPI void APIENTRY glVertexAttrib2fvNV (GLuint index, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8859 GLAPI void APIENTRY glVertexAttrib2sNV (GLuint index, GLshort x, GLshort y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8860 GLAPI void APIENTRY glVertexAttrib2svNV (GLuint index, const GLshort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8861 GLAPI void APIENTRY glVertexAttrib3dNV (GLuint index, GLdouble x, GLdouble y, GLdouble z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8862 GLAPI void APIENTRY glVertexAttrib3dvNV (GLuint index, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8863 GLAPI void APIENTRY glVertexAttrib3fNV (GLuint index, GLfloat x, GLfloat y, GLfloat z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8864 GLAPI void APIENTRY glVertexAttrib3fvNV (GLuint index, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8865 GLAPI void APIENTRY glVertexAttrib3sNV (GLuint index, GLshort x, GLshort y, GLshort z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8866 GLAPI void APIENTRY glVertexAttrib3svNV (GLuint index, const GLshort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8867 GLAPI void APIENTRY glVertexAttrib4dNV (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8868 GLAPI void APIENTRY glVertexAttrib4dvNV (GLuint index, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8869 GLAPI void APIENTRY glVertexAttrib4fNV (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8870 GLAPI void APIENTRY glVertexAttrib4fvNV (GLuint index, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8871 GLAPI void APIENTRY glVertexAttrib4sNV (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8872 GLAPI void APIENTRY glVertexAttrib4svNV (GLuint index, const GLshort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8873 GLAPI void APIENTRY glVertexAttrib4ubNV (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8874 GLAPI void APIENTRY glVertexAttrib4ubvNV (GLuint index, const GLubyte *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8875 GLAPI void APIENTRY glVertexAttribs1dvNV (GLuint index, GLsizei count, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8876 GLAPI void APIENTRY glVertexAttribs1fvNV (GLuint index, GLsizei count, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8877 GLAPI void APIENTRY glVertexAttribs1svNV (GLuint index, GLsizei count, const GLshort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8878 GLAPI void APIENTRY glVertexAttribs2dvNV (GLuint index, GLsizei count, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8879 GLAPI void APIENTRY glVertexAttribs2fvNV (GLuint index, GLsizei count, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8880 GLAPI void APIENTRY glVertexAttribs2svNV (GLuint index, GLsizei count, const GLshort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8881 GLAPI void APIENTRY glVertexAttribs3dvNV (GLuint index, GLsizei count, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8882 GLAPI void APIENTRY glVertexAttribs3fvNV (GLuint index, GLsizei count, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8883 GLAPI void APIENTRY glVertexAttribs3svNV (GLuint index, GLsizei count, const GLshort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8884 GLAPI void APIENTRY glVertexAttribs4dvNV (GLuint index, GLsizei count, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8885 GLAPI void APIENTRY glVertexAttribs4fvNV (GLuint index, GLsizei count, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8886 GLAPI void APIENTRY glVertexAttribs4svNV (GLuint index, GLsizei count, const GLshort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8887 GLAPI void APIENTRY glVertexAttribs4ubvNV (GLuint index, GLsizei count, const GLubyte *v);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8888 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8889 typedef GLboolean (APIENTRYP PFNGLAREPROGRAMSRESIDENTNVPROC) (GLsizei n, const GLuint *programs, GLboolean *residences);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8890 typedef void (APIENTRYP PFNGLBINDPROGRAMNVPROC) (GLenum target, GLuint id);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8891 typedef void (APIENTRYP PFNGLDELETEPROGRAMSNVPROC) (GLsizei n, const GLuint *programs);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8892 typedef void (APIENTRYP PFNGLEXECUTEPROGRAMNVPROC) (GLenum target, GLuint id, const GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8893 typedef void (APIENTRYP PFNGLGENPROGRAMSNVPROC) (GLsizei n, GLuint *programs);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8894 typedef void (APIENTRYP PFNGLGETPROGRAMPARAMETERDVNVPROC) (GLenum target, GLuint index, GLenum pname, GLdouble *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8895 typedef void (APIENTRYP PFNGLGETPROGRAMPARAMETERFVNVPROC) (GLenum target, GLuint index, GLenum pname, GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8896 typedef void (APIENTRYP PFNGLGETPROGRAMIVNVPROC) (GLuint id, GLenum pname, GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8897 typedef void (APIENTRYP PFNGLGETPROGRAMSTRINGNVPROC) (GLuint id, GLenum pname, GLubyte *program);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8898 typedef void (APIENTRYP PFNGLGETTRACKMATRIXIVNVPROC) (GLenum target, GLuint address, GLenum pname, GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8899 typedef void (APIENTRYP PFNGLGETVERTEXATTRIBDVNVPROC) (GLuint index, GLenum pname, GLdouble *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8900 typedef void (APIENTRYP PFNGLGETVERTEXATTRIBFVNVPROC) (GLuint index, GLenum pname, GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8901 typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIVNVPROC) (GLuint index, GLenum pname, GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8902 typedef void (APIENTRYP PFNGLGETVERTEXATTRIBPOINTERVNVPROC) (GLuint index, GLenum pname, GLvoid* *pointer);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8903 typedef GLboolean (APIENTRYP PFNGLISPROGRAMNVPROC) (GLuint id);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8904 typedef void (APIENTRYP PFNGLLOADPROGRAMNVPROC) (GLenum target, GLuint id, GLsizei len, const GLubyte *program);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8905 typedef void (APIENTRYP PFNGLPROGRAMPARAMETER4DNVPROC) (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8906 typedef void (APIENTRYP PFNGLPROGRAMPARAMETER4DVNVPROC) (GLenum target, GLuint index, const GLdouble *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8907 typedef void (APIENTRYP PFNGLPROGRAMPARAMETER4FNVPROC) (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8908 typedef void (APIENTRYP PFNGLPROGRAMPARAMETER4FVNVPROC) (GLenum target, GLuint index, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8909 typedef void (APIENTRYP PFNGLPROGRAMPARAMETERS4DVNVPROC) (GLenum target, GLuint index, GLuint count, const GLdouble *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8910 typedef void (APIENTRYP PFNGLPROGRAMPARAMETERS4FVNVPROC) (GLenum target, GLuint index, GLuint count, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8911 typedef void (APIENTRYP PFNGLREQUESTRESIDENTPROGRAMSNVPROC) (GLsizei n, const GLuint *programs);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8912 typedef void (APIENTRYP PFNGLTRACKMATRIXNVPROC) (GLenum target, GLuint address, GLenum matrix, GLenum transform);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8913 typedef void (APIENTRYP PFNGLVERTEXATTRIBPOINTERNVPROC) (GLuint index, GLint fsize, GLenum type, GLsizei stride, const GLvoid *pointer);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8914 typedef void (APIENTRYP PFNGLVERTEXATTRIB1DNVPROC) (GLuint index, GLdouble x);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8915 typedef void (APIENTRYP PFNGLVERTEXATTRIB1DVNVPROC) (GLuint index, const GLdouble *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8916 typedef void (APIENTRYP PFNGLVERTEXATTRIB1FNVPROC) (GLuint index, GLfloat x);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8917 typedef void (APIENTRYP PFNGLVERTEXATTRIB1FVNVPROC) (GLuint index, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8918 typedef void (APIENTRYP PFNGLVERTEXATTRIB1SNVPROC) (GLuint index, GLshort x);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8919 typedef void (APIENTRYP PFNGLVERTEXATTRIB1SVNVPROC) (GLuint index, const GLshort *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8920 typedef void (APIENTRYP PFNGLVERTEXATTRIB2DNVPROC) (GLuint index, GLdouble x, GLdouble y);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8921 typedef void (APIENTRYP PFNGLVERTEXATTRIB2DVNVPROC) (GLuint index, const GLdouble *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8922 typedef void (APIENTRYP PFNGLVERTEXATTRIB2FNVPROC) (GLuint index, GLfloat x, GLfloat y);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8923 typedef void (APIENTRYP PFNGLVERTEXATTRIB2FVNVPROC) (GLuint index, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8924 typedef void (APIENTRYP PFNGLVERTEXATTRIB2SNVPROC) (GLuint index, GLshort x, GLshort y);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8925 typedef void (APIENTRYP PFNGLVERTEXATTRIB2SVNVPROC) (GLuint index, const GLshort *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8926 typedef void (APIENTRYP PFNGLVERTEXATTRIB3DNVPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8927 typedef void (APIENTRYP PFNGLVERTEXATTRIB3DVNVPROC) (GLuint index, const GLdouble *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8928 typedef void (APIENTRYP PFNGLVERTEXATTRIB3FNVPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8929 typedef void (APIENTRYP PFNGLVERTEXATTRIB3FVNVPROC) (GLuint index, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8930 typedef void (APIENTRYP PFNGLVERTEXATTRIB3SNVPROC) (GLuint index, GLshort x, GLshort y, GLshort z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8931 typedef void (APIENTRYP PFNGLVERTEXATTRIB3SVNVPROC) (GLuint index, const GLshort *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8932 typedef void (APIENTRYP PFNGLVERTEXATTRIB4DNVPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8933 typedef void (APIENTRYP PFNGLVERTEXATTRIB4DVNVPROC) (GLuint index, const GLdouble *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8934 typedef void (APIENTRYP PFNGLVERTEXATTRIB4FNVPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8935 typedef void (APIENTRYP PFNGLVERTEXATTRIB4FVNVPROC) (GLuint index, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8936 typedef void (APIENTRYP PFNGLVERTEXATTRIB4SNVPROC) (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8937 typedef void (APIENTRYP PFNGLVERTEXATTRIB4SVNVPROC) (GLuint index, const GLshort *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8938 typedef void (APIENTRYP PFNGLVERTEXATTRIB4UBNVPROC) (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8939 typedef void (APIENTRYP PFNGLVERTEXATTRIB4UBVNVPROC) (GLuint index, const GLubyte *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8940 typedef void (APIENTRYP PFNGLVERTEXATTRIBS1DVNVPROC) (GLuint index, GLsizei count, const GLdouble *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8941 typedef void (APIENTRYP PFNGLVERTEXATTRIBS1FVNVPROC) (GLuint index, GLsizei count, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8942 typedef void (APIENTRYP PFNGLVERTEXATTRIBS1SVNVPROC) (GLuint index, GLsizei count, const GLshort *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8943 typedef void (APIENTRYP PFNGLVERTEXATTRIBS2DVNVPROC) (GLuint index, GLsizei count, const GLdouble *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8944 typedef void (APIENTRYP PFNGLVERTEXATTRIBS2FVNVPROC) (GLuint index, GLsizei count, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8945 typedef void (APIENTRYP PFNGLVERTEXATTRIBS2SVNVPROC) (GLuint index, GLsizei count, const GLshort *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8946 typedef void (APIENTRYP PFNGLVERTEXATTRIBS3DVNVPROC) (GLuint index, GLsizei count, const GLdouble *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8947 typedef void (APIENTRYP PFNGLVERTEXATTRIBS3FVNVPROC) (GLuint index, GLsizei count, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8948 typedef void (APIENTRYP PFNGLVERTEXATTRIBS3SVNVPROC) (GLuint index, GLsizei count, const GLshort *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8949 typedef void (APIENTRYP PFNGLVERTEXATTRIBS4DVNVPROC) (GLuint index, GLsizei count, const GLdouble *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8950 typedef void (APIENTRYP PFNGLVERTEXATTRIBS4FVNVPROC) (GLuint index, GLsizei count, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8951 typedef void (APIENTRYP PFNGLVERTEXATTRIBS4SVNVPROC) (GLuint index, GLsizei count, const GLshort *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8952 typedef void (APIENTRYP PFNGLVERTEXATTRIBS4UBVNVPROC) (GLuint index, GLsizei count, const GLubyte *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8953 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8954
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8955 #ifndef GL_SGIX_texture_coordinate_clamp
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8956 #define GL_SGIX_texture_coordinate_clamp 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8957 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8958
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8959 #ifndef GL_SGIX_scalebias_hint
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8960 #define GL_SGIX_scalebias_hint 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8961 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8962
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8963 #ifndef GL_OML_interlace
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8964 #define GL_OML_interlace 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8965 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8966
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8967 #ifndef GL_OML_subsample
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8968 #define GL_OML_subsample 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8969 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8970
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8971 #ifndef GL_OML_resample
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8972 #define GL_OML_resample 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8973 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8974
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8975 #ifndef GL_NV_copy_depth_to_color
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8976 #define GL_NV_copy_depth_to_color 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8977 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8978
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8979 #ifndef GL_ATI_envmap_bumpmap
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8980 #define GL_ATI_envmap_bumpmap 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8981 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8982 GLAPI void APIENTRY glTexBumpParameterivATI (GLenum pname, const GLint *param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8983 GLAPI void APIENTRY glTexBumpParameterfvATI (GLenum pname, const GLfloat *param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8984 GLAPI void APIENTRY glGetTexBumpParameterivATI (GLenum pname, GLint *param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8985 GLAPI void APIENTRY glGetTexBumpParameterfvATI (GLenum pname, GLfloat *param);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8986 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8987 typedef void (APIENTRYP PFNGLTEXBUMPPARAMETERIVATIPROC) (GLenum pname, const GLint *param);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8988 typedef void (APIENTRYP PFNGLTEXBUMPPARAMETERFVATIPROC) (GLenum pname, const GLfloat *param);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8989 typedef void (APIENTRYP PFNGLGETTEXBUMPPARAMETERIVATIPROC) (GLenum pname, GLint *param);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8990 typedef void (APIENTRYP PFNGLGETTEXBUMPPARAMETERFVATIPROC) (GLenum pname, GLfloat *param);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8991 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8992
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8993 #ifndef GL_ATI_fragment_shader
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8994 #define GL_ATI_fragment_shader 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8995 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8996 GLAPI GLuint APIENTRY glGenFragmentShadersATI (GLuint range);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8997 GLAPI void APIENTRY glBindFragmentShaderATI (GLuint id);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
8998 GLAPI void APIENTRY glDeleteFragmentShaderATI (GLuint id);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
8999 GLAPI void APIENTRY glBeginFragmentShaderATI (void);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9000 GLAPI void APIENTRY glEndFragmentShaderATI (void);
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9001 GLAPI void APIENTRY glPassTexCoordATI (GLuint dst, GLuint coord, GLenum swizzle);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9002 GLAPI void APIENTRY glSampleMapATI (GLuint dst, GLuint interp, GLenum swizzle);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9003 GLAPI void APIENTRY glColorFragmentOp1ATI (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9004 GLAPI void APIENTRY glColorFragmentOp2ATI (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9005 GLAPI void APIENTRY glColorFragmentOp3ATI (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9006 GLAPI void APIENTRY glAlphaFragmentOp1ATI (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9007 GLAPI void APIENTRY glAlphaFragmentOp2ATI (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9008 GLAPI void APIENTRY glAlphaFragmentOp3ATI (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9009 GLAPI void APIENTRY glSetFragmentShaderConstantATI (GLuint dst, const GLfloat *value);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9010 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9011 typedef GLuint (APIENTRYP PFNGLGENFRAGMENTSHADERSATIPROC) (GLuint range);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9012 typedef void (APIENTRYP PFNGLBINDFRAGMENTSHADERATIPROC) (GLuint id);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9013 typedef void (APIENTRYP PFNGLDELETEFRAGMENTSHADERATIPROC) (GLuint id);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9014 typedef void (APIENTRYP PFNGLBEGINFRAGMENTSHADERATIPROC) (void);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9015 typedef void (APIENTRYP PFNGLENDFRAGMENTSHADERATIPROC) (void);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9016 typedef void (APIENTRYP PFNGLPASSTEXCOORDATIPROC) (GLuint dst, GLuint coord, GLenum swizzle);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9017 typedef void (APIENTRYP PFNGLSAMPLEMAPATIPROC) (GLuint dst, GLuint interp, GLenum swizzle);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9018 typedef void (APIENTRYP PFNGLCOLORFRAGMENTOP1ATIPROC) (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9019 typedef void (APIENTRYP PFNGLCOLORFRAGMENTOP2ATIPROC) (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9020 typedef void (APIENTRYP PFNGLCOLORFRAGMENTOP3ATIPROC) (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9021 typedef void (APIENTRYP PFNGLALPHAFRAGMENTOP1ATIPROC) (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9022 typedef void (APIENTRYP PFNGLALPHAFRAGMENTOP2ATIPROC) (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9023 typedef void (APIENTRYP PFNGLALPHAFRAGMENTOP3ATIPROC) (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9024 typedef void (APIENTRYP PFNGLSETFRAGMENTSHADERCONSTANTATIPROC) (GLuint dst, const GLfloat *value);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9025 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9026
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9027 #ifndef GL_ATI_pn_triangles
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9028 #define GL_ATI_pn_triangles 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9029 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9030 GLAPI void APIENTRY glPNTrianglesiATI (GLenum pname, GLint param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9031 GLAPI void APIENTRY glPNTrianglesfATI (GLenum pname, GLfloat param);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9032 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9033 typedef void (APIENTRYP PFNGLPNTRIANGLESIATIPROC) (GLenum pname, GLint param);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9034 typedef void (APIENTRYP PFNGLPNTRIANGLESFATIPROC) (GLenum pname, GLfloat param);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9035 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9036
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9037 #ifndef GL_ATI_vertex_array_object
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9038 #define GL_ATI_vertex_array_object 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9039 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9040 GLAPI GLuint APIENTRY glNewObjectBufferATI (GLsizei size, const GLvoid *pointer, GLenum usage);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9041 GLAPI GLboolean APIENTRY glIsObjectBufferATI (GLuint buffer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9042 GLAPI void APIENTRY glUpdateObjectBufferATI (GLuint buffer, GLuint offset, GLsizei size, const GLvoid *pointer, GLenum preserve);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9043 GLAPI void APIENTRY glGetObjectBufferfvATI (GLuint buffer, GLenum pname, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9044 GLAPI void APIENTRY glGetObjectBufferivATI (GLuint buffer, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9045 GLAPI void APIENTRY glFreeObjectBufferATI (GLuint buffer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9046 GLAPI void APIENTRY glArrayObjectATI (GLenum array, GLint size, GLenum type, GLsizei stride, GLuint buffer, GLuint offset);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9047 GLAPI void APIENTRY glGetArrayObjectfvATI (GLenum array, GLenum pname, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9048 GLAPI void APIENTRY glGetArrayObjectivATI (GLenum array, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9049 GLAPI void APIENTRY glVariantArrayObjectATI (GLuint id, GLenum type, GLsizei stride, GLuint buffer, GLuint offset);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9050 GLAPI void APIENTRY glGetVariantArrayObjectfvATI (GLuint id, GLenum pname, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9051 GLAPI void APIENTRY glGetVariantArrayObjectivATI (GLuint id, GLenum pname, GLint *params);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9052 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9053 typedef GLuint (APIENTRYP PFNGLNEWOBJECTBUFFERATIPROC) (GLsizei size, const GLvoid *pointer, GLenum usage);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9054 typedef GLboolean (APIENTRYP PFNGLISOBJECTBUFFERATIPROC) (GLuint buffer);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9055 typedef void (APIENTRYP PFNGLUPDATEOBJECTBUFFERATIPROC) (GLuint buffer, GLuint offset, GLsizei size, const GLvoid *pointer, GLenum preserve);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9056 typedef void (APIENTRYP PFNGLGETOBJECTBUFFERFVATIPROC) (GLuint buffer, GLenum pname, GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9057 typedef void (APIENTRYP PFNGLGETOBJECTBUFFERIVATIPROC) (GLuint buffer, GLenum pname, GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9058 typedef void (APIENTRYP PFNGLFREEOBJECTBUFFERATIPROC) (GLuint buffer);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9059 typedef void (APIENTRYP PFNGLARRAYOBJECTATIPROC) (GLenum array, GLint size, GLenum type, GLsizei stride, GLuint buffer, GLuint offset);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9060 typedef void (APIENTRYP PFNGLGETARRAYOBJECTFVATIPROC) (GLenum array, GLenum pname, GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9061 typedef void (APIENTRYP PFNGLGETARRAYOBJECTIVATIPROC) (GLenum array, GLenum pname, GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9062 typedef void (APIENTRYP PFNGLVARIANTARRAYOBJECTATIPROC) (GLuint id, GLenum type, GLsizei stride, GLuint buffer, GLuint offset);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9063 typedef void (APIENTRYP PFNGLGETVARIANTARRAYOBJECTFVATIPROC) (GLuint id, GLenum pname, GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9064 typedef void (APIENTRYP PFNGLGETVARIANTARRAYOBJECTIVATIPROC) (GLuint id, GLenum pname, GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9065 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9066
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9067 #ifndef GL_EXT_vertex_shader
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9068 #define GL_EXT_vertex_shader 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9069 #ifdef GL_GLEXT_PROTOTYPES
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9070 GLAPI void APIENTRY glBeginVertexShaderEXT (void);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9071 GLAPI void APIENTRY glEndVertexShaderEXT (void);
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9072 GLAPI void APIENTRY glBindVertexShaderEXT (GLuint id);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9073 GLAPI GLuint APIENTRY glGenVertexShadersEXT (GLuint range);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9074 GLAPI void APIENTRY glDeleteVertexShaderEXT (GLuint id);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9075 GLAPI void APIENTRY glShaderOp1EXT (GLenum op, GLuint res, GLuint arg1);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9076 GLAPI void APIENTRY glShaderOp2EXT (GLenum op, GLuint res, GLuint arg1, GLuint arg2);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9077 GLAPI void APIENTRY glShaderOp3EXT (GLenum op, GLuint res, GLuint arg1, GLuint arg2, GLuint arg3);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9078 GLAPI void APIENTRY glSwizzleEXT (GLuint res, GLuint in, GLenum outX, GLenum outY, GLenum outZ, GLenum outW);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9079 GLAPI void APIENTRY glWriteMaskEXT (GLuint res, GLuint in, GLenum outX, GLenum outY, GLenum outZ, GLenum outW);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9080 GLAPI void APIENTRY glInsertComponentEXT (GLuint res, GLuint src, GLuint num);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9081 GLAPI void APIENTRY glExtractComponentEXT (GLuint res, GLuint src, GLuint num);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9082 GLAPI GLuint APIENTRY glGenSymbolsEXT (GLenum datatype, GLenum storagetype, GLenum range, GLuint components);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9083 GLAPI void APIENTRY glSetInvariantEXT (GLuint id, GLenum type, const GLvoid *addr);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9084 GLAPI void APIENTRY glSetLocalConstantEXT (GLuint id, GLenum type, const GLvoid *addr);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9085 GLAPI void APIENTRY glVariantbvEXT (GLuint id, const GLbyte *addr);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9086 GLAPI void APIENTRY glVariantsvEXT (GLuint id, const GLshort *addr);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9087 GLAPI void APIENTRY glVariantivEXT (GLuint id, const GLint *addr);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9088 GLAPI void APIENTRY glVariantfvEXT (GLuint id, const GLfloat *addr);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9089 GLAPI void APIENTRY glVariantdvEXT (GLuint id, const GLdouble *addr);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9090 GLAPI void APIENTRY glVariantubvEXT (GLuint id, const GLubyte *addr);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9091 GLAPI void APIENTRY glVariantusvEXT (GLuint id, const GLushort *addr);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9092 GLAPI void APIENTRY glVariantuivEXT (GLuint id, const GLuint *addr);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9093 GLAPI void APIENTRY glVariantPointerEXT (GLuint id, GLenum type, GLuint stride, const GLvoid *addr);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9094 GLAPI void APIENTRY glEnableVariantClientStateEXT (GLuint id);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9095 GLAPI void APIENTRY glDisableVariantClientStateEXT (GLuint id);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9096 GLAPI GLuint APIENTRY glBindLightParameterEXT (GLenum light, GLenum value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9097 GLAPI GLuint APIENTRY glBindMaterialParameterEXT (GLenum face, GLenum value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9098 GLAPI GLuint APIENTRY glBindTexGenParameterEXT (GLenum unit, GLenum coord, GLenum value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9099 GLAPI GLuint APIENTRY glBindTextureUnitParameterEXT (GLenum unit, GLenum value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9100 GLAPI GLuint APIENTRY glBindParameterEXT (GLenum value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9101 GLAPI GLboolean APIENTRY glIsVariantEnabledEXT (GLuint id, GLenum cap);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9102 GLAPI void APIENTRY glGetVariantBooleanvEXT (GLuint id, GLenum value, GLboolean *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9103 GLAPI void APIENTRY glGetVariantIntegervEXT (GLuint id, GLenum value, GLint *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9104 GLAPI void APIENTRY glGetVariantFloatvEXT (GLuint id, GLenum value, GLfloat *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9105 GLAPI void APIENTRY glGetVariantPointervEXT (GLuint id, GLenum value, GLvoid* *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9106 GLAPI void APIENTRY glGetInvariantBooleanvEXT (GLuint id, GLenum value, GLboolean *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9107 GLAPI void APIENTRY glGetInvariantIntegervEXT (GLuint id, GLenum value, GLint *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9108 GLAPI void APIENTRY glGetInvariantFloatvEXT (GLuint id, GLenum value, GLfloat *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9109 GLAPI void APIENTRY glGetLocalConstantBooleanvEXT (GLuint id, GLenum value, GLboolean *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9110 GLAPI void APIENTRY glGetLocalConstantIntegervEXT (GLuint id, GLenum value, GLint *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9111 GLAPI void APIENTRY glGetLocalConstantFloatvEXT (GLuint id, GLenum value, GLfloat *data);
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
9112 #endif /* GL_GLEXT_PROTOTYPES */
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9113 typedef void (APIENTRYP PFNGLBEGINVERTEXSHADEREXTPROC) (void);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9114 typedef void (APIENTRYP PFNGLENDVERTEXSHADEREXTPROC) (void);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9115 typedef void (APIENTRYP PFNGLBINDVERTEXSHADEREXTPROC) (GLuint id);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9116 typedef GLuint (APIENTRYP PFNGLGENVERTEXSHADERSEXTPROC) (GLuint range);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9117 typedef void (APIENTRYP PFNGLDELETEVERTEXSHADEREXTPROC) (GLuint id);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9118 typedef void (APIENTRYP PFNGLSHADEROP1EXTPROC) (GLenum op, GLuint res, GLuint arg1);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9119 typedef void (APIENTRYP PFNGLSHADEROP2EXTPROC) (GLenum op, GLuint res, GLuint arg1, GLuint arg2);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9120 typedef void (APIENTRYP PFNGLSHADEROP3EXTPROC) (GLenum op, GLuint res, GLuint arg1, GLuint arg2, GLuint arg3);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9121 typedef void (APIENTRYP PFNGLSWIZZLEEXTPROC) (GLuint res, GLuint in, GLenum outX, GLenum outY, GLenum outZ, GLenum outW);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9122 typedef void (APIENTRYP PFNGLWRITEMASKEXTPROC) (GLuint res, GLuint in, GLenum outX, GLenum outY, GLenum outZ, GLenum outW);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9123 typedef void (APIENTRYP PFNGLINSERTCOMPONENTEXTPROC) (GLuint res, GLuint src, GLuint num);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9124 typedef void (APIENTRYP PFNGLEXTRACTCOMPONENTEXTPROC) (GLuint res, GLuint src, GLuint num);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9125 typedef GLuint (APIENTRYP PFNGLGENSYMBOLSEXTPROC) (GLenum datatype, GLenum storagetype, GLenum range, GLuint components);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9126 typedef void (APIENTRYP PFNGLSETINVARIANTEXTPROC) (GLuint id, GLenum type, const GLvoid *addr);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9127 typedef void (APIENTRYP PFNGLSETLOCALCONSTANTEXTPROC) (GLuint id, GLenum type, const GLvoid *addr);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9128 typedef void (APIENTRYP PFNGLVARIANTBVEXTPROC) (GLuint id, const GLbyte *addr);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9129 typedef void (APIENTRYP PFNGLVARIANTSVEXTPROC) (GLuint id, const GLshort *addr);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9130 typedef void (APIENTRYP PFNGLVARIANTIVEXTPROC) (GLuint id, const GLint *addr);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9131 typedef void (APIENTRYP PFNGLVARIANTFVEXTPROC) (GLuint id, const GLfloat *addr);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9132 typedef void (APIENTRYP PFNGLVARIANTDVEXTPROC) (GLuint id, const GLdouble *addr);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9133 typedef void (APIENTRYP PFNGLVARIANTUBVEXTPROC) (GLuint id, const GLubyte *addr);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9134 typedef void (APIENTRYP PFNGLVARIANTUSVEXTPROC) (GLuint id, const GLushort *addr);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9135 typedef void (APIENTRYP PFNGLVARIANTUIVEXTPROC) (GLuint id, const GLuint *addr);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9136 typedef void (APIENTRYP PFNGLVARIANTPOINTEREXTPROC) (GLuint id, GLenum type, GLuint stride, const GLvoid *addr);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9137 typedef void (APIENTRYP PFNGLENABLEVARIANTCLIENTSTATEEXTPROC) (GLuint id);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9138 typedef void (APIENTRYP PFNGLDISABLEVARIANTCLIENTSTATEEXTPROC) (GLuint id);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9139 typedef GLuint (APIENTRYP PFNGLBINDLIGHTPARAMETEREXTPROC) (GLenum light, GLenum value);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9140 typedef GLuint (APIENTRYP PFNGLBINDMATERIALPARAMETEREXTPROC) (GLenum face, GLenum value);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9141 typedef GLuint (APIENTRYP PFNGLBINDTEXGENPARAMETEREXTPROC) (GLenum unit, GLenum coord, GLenum value);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9142 typedef GLuint (APIENTRYP PFNGLBINDTEXTUREUNITPARAMETEREXTPROC) (GLenum unit, GLenum value);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9143 typedef GLuint (APIENTRYP PFNGLBINDPARAMETEREXTPROC) (GLenum value);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9144 typedef GLboolean (APIENTRYP PFNGLISVARIANTENABLEDEXTPROC) (GLuint id, GLenum cap);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9145 typedef void (APIENTRYP PFNGLGETVARIANTBOOLEANVEXTPROC) (GLuint id, GLenum value, GLboolean *data);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9146 typedef void (APIENTRYP PFNGLGETVARIANTINTEGERVEXTPROC) (GLuint id, GLenum value, GLint *data);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9147 typedef void (APIENTRYP PFNGLGETVARIANTFLOATVEXTPROC) (GLuint id, GLenum value, GLfloat *data);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9148 typedef void (APIENTRYP PFNGLGETVARIANTPOINTERVEXTPROC) (GLuint id, GLenum value, GLvoid* *data);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9149 typedef void (APIENTRYP PFNGLGETINVARIANTBOOLEANVEXTPROC) (GLuint id, GLenum value, GLboolean *data);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9150 typedef void (APIENTRYP PFNGLGETINVARIANTINTEGERVEXTPROC) (GLuint id, GLenum value, GLint *data);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9151 typedef void (APIENTRYP PFNGLGETINVARIANTFLOATVEXTPROC) (GLuint id, GLenum value, GLfloat *data);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9152 typedef void (APIENTRYP PFNGLGETLOCALCONSTANTBOOLEANVEXTPROC) (GLuint id, GLenum value, GLboolean *data);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9153 typedef void (APIENTRYP PFNGLGETLOCALCONSTANTINTEGERVEXTPROC) (GLuint id, GLenum value, GLint *data);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9154 typedef void (APIENTRYP PFNGLGETLOCALCONSTANTFLOATVEXTPROC) (GLuint id, GLenum value, GLfloat *data);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9155 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9156
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9157 #ifndef GL_ATI_vertex_streams
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9158 #define GL_ATI_vertex_streams 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9159 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9160 GLAPI void APIENTRY glVertexStream1sATI (GLenum stream, GLshort x);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9161 GLAPI void APIENTRY glVertexStream1svATI (GLenum stream, const GLshort *coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9162 GLAPI void APIENTRY glVertexStream1iATI (GLenum stream, GLint x);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9163 GLAPI void APIENTRY glVertexStream1ivATI (GLenum stream, const GLint *coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9164 GLAPI void APIENTRY glVertexStream1fATI (GLenum stream, GLfloat x);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9165 GLAPI void APIENTRY glVertexStream1fvATI (GLenum stream, const GLfloat *coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9166 GLAPI void APIENTRY glVertexStream1dATI (GLenum stream, GLdouble x);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9167 GLAPI void APIENTRY glVertexStream1dvATI (GLenum stream, const GLdouble *coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9168 GLAPI void APIENTRY glVertexStream2sATI (GLenum stream, GLshort x, GLshort y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9169 GLAPI void APIENTRY glVertexStream2svATI (GLenum stream, const GLshort *coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9170 GLAPI void APIENTRY glVertexStream2iATI (GLenum stream, GLint x, GLint y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9171 GLAPI void APIENTRY glVertexStream2ivATI (GLenum stream, const GLint *coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9172 GLAPI void APIENTRY glVertexStream2fATI (GLenum stream, GLfloat x, GLfloat y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9173 GLAPI void APIENTRY glVertexStream2fvATI (GLenum stream, const GLfloat *coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9174 GLAPI void APIENTRY glVertexStream2dATI (GLenum stream, GLdouble x, GLdouble y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9175 GLAPI void APIENTRY glVertexStream2dvATI (GLenum stream, const GLdouble *coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9176 GLAPI void APIENTRY glVertexStream3sATI (GLenum stream, GLshort x, GLshort y, GLshort z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9177 GLAPI void APIENTRY glVertexStream3svATI (GLenum stream, const GLshort *coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9178 GLAPI void APIENTRY glVertexStream3iATI (GLenum stream, GLint x, GLint y, GLint z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9179 GLAPI void APIENTRY glVertexStream3ivATI (GLenum stream, const GLint *coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9180 GLAPI void APIENTRY glVertexStream3fATI (GLenum stream, GLfloat x, GLfloat y, GLfloat z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9181 GLAPI void APIENTRY glVertexStream3fvATI (GLenum stream, const GLfloat *coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9182 GLAPI void APIENTRY glVertexStream3dATI (GLenum stream, GLdouble x, GLdouble y, GLdouble z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9183 GLAPI void APIENTRY glVertexStream3dvATI (GLenum stream, const GLdouble *coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9184 GLAPI void APIENTRY glVertexStream4sATI (GLenum stream, GLshort x, GLshort y, GLshort z, GLshort w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9185 GLAPI void APIENTRY glVertexStream4svATI (GLenum stream, const GLshort *coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9186 GLAPI void APIENTRY glVertexStream4iATI (GLenum stream, GLint x, GLint y, GLint z, GLint w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9187 GLAPI void APIENTRY glVertexStream4ivATI (GLenum stream, const GLint *coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9188 GLAPI void APIENTRY glVertexStream4fATI (GLenum stream, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9189 GLAPI void APIENTRY glVertexStream4fvATI (GLenum stream, const GLfloat *coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9190 GLAPI void APIENTRY glVertexStream4dATI (GLenum stream, GLdouble x, GLdouble y, GLdouble z, GLdouble w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9191 GLAPI void APIENTRY glVertexStream4dvATI (GLenum stream, const GLdouble *coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9192 GLAPI void APIENTRY glNormalStream3bATI (GLenum stream, GLbyte nx, GLbyte ny, GLbyte nz);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9193 GLAPI void APIENTRY glNormalStream3bvATI (GLenum stream, const GLbyte *coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9194 GLAPI void APIENTRY glNormalStream3sATI (GLenum stream, GLshort nx, GLshort ny, GLshort nz);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9195 GLAPI void APIENTRY glNormalStream3svATI (GLenum stream, const GLshort *coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9196 GLAPI void APIENTRY glNormalStream3iATI (GLenum stream, GLint nx, GLint ny, GLint nz);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9197 GLAPI void APIENTRY glNormalStream3ivATI (GLenum stream, const GLint *coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9198 GLAPI void APIENTRY glNormalStream3fATI (GLenum stream, GLfloat nx, GLfloat ny, GLfloat nz);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9199 GLAPI void APIENTRY glNormalStream3fvATI (GLenum stream, const GLfloat *coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9200 GLAPI void APIENTRY glNormalStream3dATI (GLenum stream, GLdouble nx, GLdouble ny, GLdouble nz);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9201 GLAPI void APIENTRY glNormalStream3dvATI (GLenum stream, const GLdouble *coords);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9202 GLAPI void APIENTRY glClientActiveVertexStreamATI (GLenum stream);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9203 GLAPI void APIENTRY glVertexBlendEnviATI (GLenum pname, GLint param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9204 GLAPI void APIENTRY glVertexBlendEnvfATI (GLenum pname, GLfloat param);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9205 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9206 typedef void (APIENTRYP PFNGLVERTEXSTREAM1SATIPROC) (GLenum stream, GLshort x);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9207 typedef void (APIENTRYP PFNGLVERTEXSTREAM1SVATIPROC) (GLenum stream, const GLshort *coords);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9208 typedef void (APIENTRYP PFNGLVERTEXSTREAM1IATIPROC) (GLenum stream, GLint x);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9209 typedef void (APIENTRYP PFNGLVERTEXSTREAM1IVATIPROC) (GLenum stream, const GLint *coords);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9210 typedef void (APIENTRYP PFNGLVERTEXSTREAM1FATIPROC) (GLenum stream, GLfloat x);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9211 typedef void (APIENTRYP PFNGLVERTEXSTREAM1FVATIPROC) (GLenum stream, const GLfloat *coords);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9212 typedef void (APIENTRYP PFNGLVERTEXSTREAM1DATIPROC) (GLenum stream, GLdouble x);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9213 typedef void (APIENTRYP PFNGLVERTEXSTREAM1DVATIPROC) (GLenum stream, const GLdouble *coords);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9214 typedef void (APIENTRYP PFNGLVERTEXSTREAM2SATIPROC) (GLenum stream, GLshort x, GLshort y);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9215 typedef void (APIENTRYP PFNGLVERTEXSTREAM2SVATIPROC) (GLenum stream, const GLshort *coords);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9216 typedef void (APIENTRYP PFNGLVERTEXSTREAM2IATIPROC) (GLenum stream, GLint x, GLint y);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9217 typedef void (APIENTRYP PFNGLVERTEXSTREAM2IVATIPROC) (GLenum stream, const GLint *coords);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9218 typedef void (APIENTRYP PFNGLVERTEXSTREAM2FATIPROC) (GLenum stream, GLfloat x, GLfloat y);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9219 typedef void (APIENTRYP PFNGLVERTEXSTREAM2FVATIPROC) (GLenum stream, const GLfloat *coords);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9220 typedef void (APIENTRYP PFNGLVERTEXSTREAM2DATIPROC) (GLenum stream, GLdouble x, GLdouble y);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9221 typedef void (APIENTRYP PFNGLVERTEXSTREAM2DVATIPROC) (GLenum stream, const GLdouble *coords);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9222 typedef void (APIENTRYP PFNGLVERTEXSTREAM3SATIPROC) (GLenum stream, GLshort x, GLshort y, GLshort z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9223 typedef void (APIENTRYP PFNGLVERTEXSTREAM3SVATIPROC) (GLenum stream, const GLshort *coords);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9224 typedef void (APIENTRYP PFNGLVERTEXSTREAM3IATIPROC) (GLenum stream, GLint x, GLint y, GLint z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9225 typedef void (APIENTRYP PFNGLVERTEXSTREAM3IVATIPROC) (GLenum stream, const GLint *coords);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9226 typedef void (APIENTRYP PFNGLVERTEXSTREAM3FATIPROC) (GLenum stream, GLfloat x, GLfloat y, GLfloat z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9227 typedef void (APIENTRYP PFNGLVERTEXSTREAM3FVATIPROC) (GLenum stream, const GLfloat *coords);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9228 typedef void (APIENTRYP PFNGLVERTEXSTREAM3DATIPROC) (GLenum stream, GLdouble x, GLdouble y, GLdouble z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9229 typedef void (APIENTRYP PFNGLVERTEXSTREAM3DVATIPROC) (GLenum stream, const GLdouble *coords);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9230 typedef void (APIENTRYP PFNGLVERTEXSTREAM4SATIPROC) (GLenum stream, GLshort x, GLshort y, GLshort z, GLshort w);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9231 typedef void (APIENTRYP PFNGLVERTEXSTREAM4SVATIPROC) (GLenum stream, const GLshort *coords);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9232 typedef void (APIENTRYP PFNGLVERTEXSTREAM4IATIPROC) (GLenum stream, GLint x, GLint y, GLint z, GLint w);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9233 typedef void (APIENTRYP PFNGLVERTEXSTREAM4IVATIPROC) (GLenum stream, const GLint *coords);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9234 typedef void (APIENTRYP PFNGLVERTEXSTREAM4FATIPROC) (GLenum stream, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9235 typedef void (APIENTRYP PFNGLVERTEXSTREAM4FVATIPROC) (GLenum stream, const GLfloat *coords);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9236 typedef void (APIENTRYP PFNGLVERTEXSTREAM4DATIPROC) (GLenum stream, GLdouble x, GLdouble y, GLdouble z, GLdouble w);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9237 typedef void (APIENTRYP PFNGLVERTEXSTREAM4DVATIPROC) (GLenum stream, const GLdouble *coords);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9238 typedef void (APIENTRYP PFNGLNORMALSTREAM3BATIPROC) (GLenum stream, GLbyte nx, GLbyte ny, GLbyte nz);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9239 typedef void (APIENTRYP PFNGLNORMALSTREAM3BVATIPROC) (GLenum stream, const GLbyte *coords);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9240 typedef void (APIENTRYP PFNGLNORMALSTREAM3SATIPROC) (GLenum stream, GLshort nx, GLshort ny, GLshort nz);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9241 typedef void (APIENTRYP PFNGLNORMALSTREAM3SVATIPROC) (GLenum stream, const GLshort *coords);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9242 typedef void (APIENTRYP PFNGLNORMALSTREAM3IATIPROC) (GLenum stream, GLint nx, GLint ny, GLint nz);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9243 typedef void (APIENTRYP PFNGLNORMALSTREAM3IVATIPROC) (GLenum stream, const GLint *coords);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9244 typedef void (APIENTRYP PFNGLNORMALSTREAM3FATIPROC) (GLenum stream, GLfloat nx, GLfloat ny, GLfloat nz);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9245 typedef void (APIENTRYP PFNGLNORMALSTREAM3FVATIPROC) (GLenum stream, const GLfloat *coords);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9246 typedef void (APIENTRYP PFNGLNORMALSTREAM3DATIPROC) (GLenum stream, GLdouble nx, GLdouble ny, GLdouble nz);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9247 typedef void (APIENTRYP PFNGLNORMALSTREAM3DVATIPROC) (GLenum stream, const GLdouble *coords);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9248 typedef void (APIENTRYP PFNGLCLIENTACTIVEVERTEXSTREAMATIPROC) (GLenum stream);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9249 typedef void (APIENTRYP PFNGLVERTEXBLENDENVIATIPROC) (GLenum pname, GLint param);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9250 typedef void (APIENTRYP PFNGLVERTEXBLENDENVFATIPROC) (GLenum pname, GLfloat param);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9251 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9252
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9253 #ifndef GL_ATI_element_array
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9254 #define GL_ATI_element_array 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9255 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9256 GLAPI void APIENTRY glElementPointerATI (GLenum type, const GLvoid *pointer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9257 GLAPI void APIENTRY glDrawElementArrayATI (GLenum mode, GLsizei count);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9258 GLAPI void APIENTRY glDrawRangeElementArrayATI (GLenum mode, GLuint start, GLuint end, GLsizei count);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9259 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9260 typedef void (APIENTRYP PFNGLELEMENTPOINTERATIPROC) (GLenum type, const GLvoid *pointer);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9261 typedef void (APIENTRYP PFNGLDRAWELEMENTARRAYATIPROC) (GLenum mode, GLsizei count);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9262 typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTARRAYATIPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9263 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9264
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9265 #ifndef GL_SUN_mesh_array
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9266 #define GL_SUN_mesh_array 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9267 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9268 GLAPI void APIENTRY glDrawMeshArraysSUN (GLenum mode, GLint first, GLsizei count, GLsizei width);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9269 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9270 typedef void (APIENTRYP PFNGLDRAWMESHARRAYSSUNPROC) (GLenum mode, GLint first, GLsizei count, GLsizei width);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9271 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9272
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9273 #ifndef GL_SUN_slice_accum
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9274 #define GL_SUN_slice_accum 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9275 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9276
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9277 #ifndef GL_NV_multisample_filter_hint
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9278 #define GL_NV_multisample_filter_hint 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9279 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9280
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9281 #ifndef GL_NV_depth_clamp
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9282 #define GL_NV_depth_clamp 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9283 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9284
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9285 #ifndef GL_NV_occlusion_query
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9286 #define GL_NV_occlusion_query 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9287 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9288 GLAPI void APIENTRY glGenOcclusionQueriesNV (GLsizei n, GLuint *ids);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9289 GLAPI void APIENTRY glDeleteOcclusionQueriesNV (GLsizei n, const GLuint *ids);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9290 GLAPI GLboolean APIENTRY glIsOcclusionQueryNV (GLuint id);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9291 GLAPI void APIENTRY glBeginOcclusionQueryNV (GLuint id);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9292 GLAPI void APIENTRY glEndOcclusionQueryNV (void);
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9293 GLAPI void APIENTRY glGetOcclusionQueryivNV (GLuint id, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9294 GLAPI void APIENTRY glGetOcclusionQueryuivNV (GLuint id, GLenum pname, GLuint *params);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9295 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9296 typedef void (APIENTRYP PFNGLGENOCCLUSIONQUERIESNVPROC) (GLsizei n, GLuint *ids);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9297 typedef void (APIENTRYP PFNGLDELETEOCCLUSIONQUERIESNVPROC) (GLsizei n, const GLuint *ids);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9298 typedef GLboolean (APIENTRYP PFNGLISOCCLUSIONQUERYNVPROC) (GLuint id);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9299 typedef void (APIENTRYP PFNGLBEGINOCCLUSIONQUERYNVPROC) (GLuint id);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9300 typedef void (APIENTRYP PFNGLENDOCCLUSIONQUERYNVPROC) (void);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9301 typedef void (APIENTRYP PFNGLGETOCCLUSIONQUERYIVNVPROC) (GLuint id, GLenum pname, GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9302 typedef void (APIENTRYP PFNGLGETOCCLUSIONQUERYUIVNVPROC) (GLuint id, GLenum pname, GLuint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9303 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9304
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9305 #ifndef GL_NV_point_sprite
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9306 #define GL_NV_point_sprite 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9307 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9308 GLAPI void APIENTRY glPointParameteriNV (GLenum pname, GLint param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9309 GLAPI void APIENTRY glPointParameterivNV (GLenum pname, const GLint *params);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9310 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9311 typedef void (APIENTRYP PFNGLPOINTPARAMETERINVPROC) (GLenum pname, GLint param);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9312 typedef void (APIENTRYP PFNGLPOINTPARAMETERIVNVPROC) (GLenum pname, const GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9313 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9314
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9315 #ifndef GL_NV_texture_shader3
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9316 #define GL_NV_texture_shader3 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9317 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9318
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9319 #ifndef GL_NV_vertex_program1_1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9320 #define GL_NV_vertex_program1_1 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9321 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9322
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9323 #ifndef GL_EXT_shadow_funcs
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9324 #define GL_EXT_shadow_funcs 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9325 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9326
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9327 #ifndef GL_EXT_stencil_two_side
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9328 #define GL_EXT_stencil_two_side 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9329 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9330 GLAPI void APIENTRY glActiveStencilFaceEXT (GLenum face);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9331 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9332 typedef void (APIENTRYP PFNGLACTIVESTENCILFACEEXTPROC) (GLenum face);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9333 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9334
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9335 #ifndef GL_ATI_text_fragment_shader
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9336 #define GL_ATI_text_fragment_shader 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9337 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9338
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9339 #ifndef GL_APPLE_client_storage
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9340 #define GL_APPLE_client_storage 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9341 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9342
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9343 #ifndef GL_APPLE_element_array
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9344 #define GL_APPLE_element_array 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9345 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9346 GLAPI void APIENTRY glElementPointerAPPLE (GLenum type, const GLvoid *pointer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9347 GLAPI void APIENTRY glDrawElementArrayAPPLE (GLenum mode, GLint first, GLsizei count);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9348 GLAPI void APIENTRY glDrawRangeElementArrayAPPLE (GLenum mode, GLuint start, GLuint end, GLint first, GLsizei count);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9349 GLAPI void APIENTRY glMultiDrawElementArrayAPPLE (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9350 GLAPI void APIENTRY glMultiDrawRangeElementArrayAPPLE (GLenum mode, GLuint start, GLuint end, const GLint *first, const GLsizei *count, GLsizei primcount);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9351 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9352 typedef void (APIENTRYP PFNGLELEMENTPOINTERAPPLEPROC) (GLenum type, const GLvoid *pointer);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9353 typedef void (APIENTRYP PFNGLDRAWELEMENTARRAYAPPLEPROC) (GLenum mode, GLint first, GLsizei count);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9354 typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTARRAYAPPLEPROC) (GLenum mode, GLuint start, GLuint end, GLint first, GLsizei count);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9355 typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTARRAYAPPLEPROC) (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9356 typedef void (APIENTRYP PFNGLMULTIDRAWRANGEELEMENTARRAYAPPLEPROC) (GLenum mode, GLuint start, GLuint end, const GLint *first, const GLsizei *count, GLsizei primcount);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9357 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9358
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9359 #ifndef GL_APPLE_fence
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9360 #define GL_APPLE_fence 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9361 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9362 GLAPI void APIENTRY glGenFencesAPPLE (GLsizei n, GLuint *fences);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9363 GLAPI void APIENTRY glDeleteFencesAPPLE (GLsizei n, const GLuint *fences);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9364 GLAPI void APIENTRY glSetFenceAPPLE (GLuint fence);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9365 GLAPI GLboolean APIENTRY glIsFenceAPPLE (GLuint fence);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9366 GLAPI GLboolean APIENTRY glTestFenceAPPLE (GLuint fence);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9367 GLAPI void APIENTRY glFinishFenceAPPLE (GLuint fence);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9368 GLAPI GLboolean APIENTRY glTestObjectAPPLE (GLenum object, GLuint name);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9369 GLAPI void APIENTRY glFinishObjectAPPLE (GLenum object, GLint name);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9370 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9371 typedef void (APIENTRYP PFNGLGENFENCESAPPLEPROC) (GLsizei n, GLuint *fences);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9372 typedef void (APIENTRYP PFNGLDELETEFENCESAPPLEPROC) (GLsizei n, const GLuint *fences);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9373 typedef void (APIENTRYP PFNGLSETFENCEAPPLEPROC) (GLuint fence);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9374 typedef GLboolean (APIENTRYP PFNGLISFENCEAPPLEPROC) (GLuint fence);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9375 typedef GLboolean (APIENTRYP PFNGLTESTFENCEAPPLEPROC) (GLuint fence);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9376 typedef void (APIENTRYP PFNGLFINISHFENCEAPPLEPROC) (GLuint fence);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9377 typedef GLboolean (APIENTRYP PFNGLTESTOBJECTAPPLEPROC) (GLenum object, GLuint name);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9378 typedef void (APIENTRYP PFNGLFINISHOBJECTAPPLEPROC) (GLenum object, GLint name);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9379 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9380
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9381 #ifndef GL_APPLE_vertex_array_object
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9382 #define GL_APPLE_vertex_array_object 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9383 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9384 GLAPI void APIENTRY glBindVertexArrayAPPLE (GLuint array);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9385 GLAPI void APIENTRY glDeleteVertexArraysAPPLE (GLsizei n, const GLuint *arrays);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9386 GLAPI void APIENTRY glGenVertexArraysAPPLE (GLsizei n, GLuint *arrays);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9387 GLAPI GLboolean APIENTRY glIsVertexArrayAPPLE (GLuint array);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9388 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9389 typedef void (APIENTRYP PFNGLBINDVERTEXARRAYAPPLEPROC) (GLuint array);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9390 typedef void (APIENTRYP PFNGLDELETEVERTEXARRAYSAPPLEPROC) (GLsizei n, const GLuint *arrays);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9391 typedef void (APIENTRYP PFNGLGENVERTEXARRAYSAPPLEPROC) (GLsizei n, GLuint *arrays);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9392 typedef GLboolean (APIENTRYP PFNGLISVERTEXARRAYAPPLEPROC) (GLuint array);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9393 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9394
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9395 #ifndef GL_APPLE_vertex_array_range
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9396 #define GL_APPLE_vertex_array_range 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9397 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9398 GLAPI void APIENTRY glVertexArrayRangeAPPLE (GLsizei length, GLvoid *pointer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9399 GLAPI void APIENTRY glFlushVertexArrayRangeAPPLE (GLsizei length, GLvoid *pointer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9400 GLAPI void APIENTRY glVertexArrayParameteriAPPLE (GLenum pname, GLint param);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9401 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9402 typedef void (APIENTRYP PFNGLVERTEXARRAYRANGEAPPLEPROC) (GLsizei length, GLvoid *pointer);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9403 typedef void (APIENTRYP PFNGLFLUSHVERTEXARRAYRANGEAPPLEPROC) (GLsizei length, GLvoid *pointer);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9404 typedef void (APIENTRYP PFNGLVERTEXARRAYPARAMETERIAPPLEPROC) (GLenum pname, GLint param);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9405 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9406
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9407 #ifndef GL_APPLE_ycbcr_422
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9408 #define GL_APPLE_ycbcr_422 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9409 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9410
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9411 #ifndef GL_S3_s3tc
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9412 #define GL_S3_s3tc 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9413 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9414
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9415 #ifndef GL_ATI_draw_buffers
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9416 #define GL_ATI_draw_buffers 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9417 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9418 GLAPI void APIENTRY glDrawBuffersATI (GLsizei n, const GLenum *bufs);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9419 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9420 typedef void (APIENTRYP PFNGLDRAWBUFFERSATIPROC) (GLsizei n, const GLenum *bufs);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9421 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9422
1205
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9423 #ifndef GL_ATI_pixel_format_float
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9424 #define GL_ATI_pixel_format_float 1
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9425 /* This is really a WGL extension, but defines some associated GL enums.
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9426 * ATI does not export "GL_ATI_pixel_format_float" in the GL_EXTENSIONS string.
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9427 */
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9428 #endif
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9429
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9430 #ifndef GL_ATI_texture_env_combine3
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9431 #define GL_ATI_texture_env_combine3 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9432 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9433
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9434 #ifndef GL_ATI_texture_float
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9435 #define GL_ATI_texture_float 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9436 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9437
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9438 #ifndef GL_NV_float_buffer
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9439 #define GL_NV_float_buffer 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9440 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9441
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9442 #ifndef GL_NV_fragment_program
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9443 #define GL_NV_fragment_program 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9444 /* Some NV_fragment_program entry points are shared with ARB_vertex_program. */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9445 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9446 GLAPI void APIENTRY glProgramNamedParameter4fNV (GLuint id, GLsizei len, const GLubyte *name, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9447 GLAPI void APIENTRY glProgramNamedParameter4dNV (GLuint id, GLsizei len, const GLubyte *name, GLdouble x, GLdouble y, GLdouble z, GLdouble w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9448 GLAPI void APIENTRY glProgramNamedParameter4fvNV (GLuint id, GLsizei len, const GLubyte *name, const GLfloat *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9449 GLAPI void APIENTRY glProgramNamedParameter4dvNV (GLuint id, GLsizei len, const GLubyte *name, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9450 GLAPI void APIENTRY glGetProgramNamedParameterfvNV (GLuint id, GLsizei len, const GLubyte *name, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9451 GLAPI void APIENTRY glGetProgramNamedParameterdvNV (GLuint id, GLsizei len, const GLubyte *name, GLdouble *params);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9452 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9453 typedef void (APIENTRYP PFNGLPROGRAMNAMEDPARAMETER4FNVPROC) (GLuint id, GLsizei len, const GLubyte *name, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9454 typedef void (APIENTRYP PFNGLPROGRAMNAMEDPARAMETER4DNVPROC) (GLuint id, GLsizei len, const GLubyte *name, GLdouble x, GLdouble y, GLdouble z, GLdouble w);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9455 typedef void (APIENTRYP PFNGLPROGRAMNAMEDPARAMETER4FVNVPROC) (GLuint id, GLsizei len, const GLubyte *name, const GLfloat *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9456 typedef void (APIENTRYP PFNGLPROGRAMNAMEDPARAMETER4DVNVPROC) (GLuint id, GLsizei len, const GLubyte *name, const GLdouble *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9457 typedef void (APIENTRYP PFNGLGETPROGRAMNAMEDPARAMETERFVNVPROC) (GLuint id, GLsizei len, const GLubyte *name, GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9458 typedef void (APIENTRYP PFNGLGETPROGRAMNAMEDPARAMETERDVNVPROC) (GLuint id, GLsizei len, const GLubyte *name, GLdouble *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9459 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9460
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9461 #ifndef GL_NV_half_float
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9462 #define GL_NV_half_float 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9463 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9464 GLAPI void APIENTRY glVertex2hNV (GLhalfNV x, GLhalfNV y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9465 GLAPI void APIENTRY glVertex2hvNV (const GLhalfNV *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9466 GLAPI void APIENTRY glVertex3hNV (GLhalfNV x, GLhalfNV y, GLhalfNV z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9467 GLAPI void APIENTRY glVertex3hvNV (const GLhalfNV *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9468 GLAPI void APIENTRY glVertex4hNV (GLhalfNV x, GLhalfNV y, GLhalfNV z, GLhalfNV w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9469 GLAPI void APIENTRY glVertex4hvNV (const GLhalfNV *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9470 GLAPI void APIENTRY glNormal3hNV (GLhalfNV nx, GLhalfNV ny, GLhalfNV nz);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9471 GLAPI void APIENTRY glNormal3hvNV (const GLhalfNV *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9472 GLAPI void APIENTRY glColor3hNV (GLhalfNV red, GLhalfNV green, GLhalfNV blue);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9473 GLAPI void APIENTRY glColor3hvNV (const GLhalfNV *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9474 GLAPI void APIENTRY glColor4hNV (GLhalfNV red, GLhalfNV green, GLhalfNV blue, GLhalfNV alpha);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9475 GLAPI void APIENTRY glColor4hvNV (const GLhalfNV *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9476 GLAPI void APIENTRY glTexCoord1hNV (GLhalfNV s);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9477 GLAPI void APIENTRY glTexCoord1hvNV (const GLhalfNV *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9478 GLAPI void APIENTRY glTexCoord2hNV (GLhalfNV s, GLhalfNV t);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9479 GLAPI void APIENTRY glTexCoord2hvNV (const GLhalfNV *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9480 GLAPI void APIENTRY glTexCoord3hNV (GLhalfNV s, GLhalfNV t, GLhalfNV r);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9481 GLAPI void APIENTRY glTexCoord3hvNV (const GLhalfNV *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9482 GLAPI void APIENTRY glTexCoord4hNV (GLhalfNV s, GLhalfNV t, GLhalfNV r, GLhalfNV q);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9483 GLAPI void APIENTRY glTexCoord4hvNV (const GLhalfNV *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9484 GLAPI void APIENTRY glMultiTexCoord1hNV (GLenum target, GLhalfNV s);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9485 GLAPI void APIENTRY glMultiTexCoord1hvNV (GLenum target, const GLhalfNV *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9486 GLAPI void APIENTRY glMultiTexCoord2hNV (GLenum target, GLhalfNV s, GLhalfNV t);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9487 GLAPI void APIENTRY glMultiTexCoord2hvNV (GLenum target, const GLhalfNV *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9488 GLAPI void APIENTRY glMultiTexCoord3hNV (GLenum target, GLhalfNV s, GLhalfNV t, GLhalfNV r);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9489 GLAPI void APIENTRY glMultiTexCoord3hvNV (GLenum target, const GLhalfNV *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9490 GLAPI void APIENTRY glMultiTexCoord4hNV (GLenum target, GLhalfNV s, GLhalfNV t, GLhalfNV r, GLhalfNV q);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9491 GLAPI void APIENTRY glMultiTexCoord4hvNV (GLenum target, const GLhalfNV *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9492 GLAPI void APIENTRY glFogCoordhNV (GLhalfNV fog);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9493 GLAPI void APIENTRY glFogCoordhvNV (const GLhalfNV *fog);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9494 GLAPI void APIENTRY glSecondaryColor3hNV (GLhalfNV red, GLhalfNV green, GLhalfNV blue);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9495 GLAPI void APIENTRY glSecondaryColor3hvNV (const GLhalfNV *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9496 GLAPI void APIENTRY glVertexWeighthNV (GLhalfNV weight);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9497 GLAPI void APIENTRY glVertexWeighthvNV (const GLhalfNV *weight);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9498 GLAPI void APIENTRY glVertexAttrib1hNV (GLuint index, GLhalfNV x);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9499 GLAPI void APIENTRY glVertexAttrib1hvNV (GLuint index, const GLhalfNV *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9500 GLAPI void APIENTRY glVertexAttrib2hNV (GLuint index, GLhalfNV x, GLhalfNV y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9501 GLAPI void APIENTRY glVertexAttrib2hvNV (GLuint index, const GLhalfNV *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9502 GLAPI void APIENTRY glVertexAttrib3hNV (GLuint index, GLhalfNV x, GLhalfNV y, GLhalfNV z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9503 GLAPI void APIENTRY glVertexAttrib3hvNV (GLuint index, const GLhalfNV *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9504 GLAPI void APIENTRY glVertexAttrib4hNV (GLuint index, GLhalfNV x, GLhalfNV y, GLhalfNV z, GLhalfNV w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9505 GLAPI void APIENTRY glVertexAttrib4hvNV (GLuint index, const GLhalfNV *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9506 GLAPI void APIENTRY glVertexAttribs1hvNV (GLuint index, GLsizei n, const GLhalfNV *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9507 GLAPI void APIENTRY glVertexAttribs2hvNV (GLuint index, GLsizei n, const GLhalfNV *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9508 GLAPI void APIENTRY glVertexAttribs3hvNV (GLuint index, GLsizei n, const GLhalfNV *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9509 GLAPI void APIENTRY glVertexAttribs4hvNV (GLuint index, GLsizei n, const GLhalfNV *v);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9510 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9511 typedef void (APIENTRYP PFNGLVERTEX2HNVPROC) (GLhalfNV x, GLhalfNV y);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9512 typedef void (APIENTRYP PFNGLVERTEX2HVNVPROC) (const GLhalfNV *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9513 typedef void (APIENTRYP PFNGLVERTEX3HNVPROC) (GLhalfNV x, GLhalfNV y, GLhalfNV z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9514 typedef void (APIENTRYP PFNGLVERTEX3HVNVPROC) (const GLhalfNV *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9515 typedef void (APIENTRYP PFNGLVERTEX4HNVPROC) (GLhalfNV x, GLhalfNV y, GLhalfNV z, GLhalfNV w);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9516 typedef void (APIENTRYP PFNGLVERTEX4HVNVPROC) (const GLhalfNV *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9517 typedef void (APIENTRYP PFNGLNORMAL3HNVPROC) (GLhalfNV nx, GLhalfNV ny, GLhalfNV nz);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9518 typedef void (APIENTRYP PFNGLNORMAL3HVNVPROC) (const GLhalfNV *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9519 typedef void (APIENTRYP PFNGLCOLOR3HNVPROC) (GLhalfNV red, GLhalfNV green, GLhalfNV blue);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9520 typedef void (APIENTRYP PFNGLCOLOR3HVNVPROC) (const GLhalfNV *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9521 typedef void (APIENTRYP PFNGLCOLOR4HNVPROC) (GLhalfNV red, GLhalfNV green, GLhalfNV blue, GLhalfNV alpha);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9522 typedef void (APIENTRYP PFNGLCOLOR4HVNVPROC) (const GLhalfNV *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9523 typedef void (APIENTRYP PFNGLTEXCOORD1HNVPROC) (GLhalfNV s);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9524 typedef void (APIENTRYP PFNGLTEXCOORD1HVNVPROC) (const GLhalfNV *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9525 typedef void (APIENTRYP PFNGLTEXCOORD2HNVPROC) (GLhalfNV s, GLhalfNV t);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9526 typedef void (APIENTRYP PFNGLTEXCOORD2HVNVPROC) (const GLhalfNV *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9527 typedef void (APIENTRYP PFNGLTEXCOORD3HNVPROC) (GLhalfNV s, GLhalfNV t, GLhalfNV r);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9528 typedef void (APIENTRYP PFNGLTEXCOORD3HVNVPROC) (const GLhalfNV *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9529 typedef void (APIENTRYP PFNGLTEXCOORD4HNVPROC) (GLhalfNV s, GLhalfNV t, GLhalfNV r, GLhalfNV q);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9530 typedef void (APIENTRYP PFNGLTEXCOORD4HVNVPROC) (const GLhalfNV *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9531 typedef void (APIENTRYP PFNGLMULTITEXCOORD1HNVPROC) (GLenum target, GLhalfNV s);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9532 typedef void (APIENTRYP PFNGLMULTITEXCOORD1HVNVPROC) (GLenum target, const GLhalfNV *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9533 typedef void (APIENTRYP PFNGLMULTITEXCOORD2HNVPROC) (GLenum target, GLhalfNV s, GLhalfNV t);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9534 typedef void (APIENTRYP PFNGLMULTITEXCOORD2HVNVPROC) (GLenum target, const GLhalfNV *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9535 typedef void (APIENTRYP PFNGLMULTITEXCOORD3HNVPROC) (GLenum target, GLhalfNV s, GLhalfNV t, GLhalfNV r);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9536 typedef void (APIENTRYP PFNGLMULTITEXCOORD3HVNVPROC) (GLenum target, const GLhalfNV *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9537 typedef void (APIENTRYP PFNGLMULTITEXCOORD4HNVPROC) (GLenum target, GLhalfNV s, GLhalfNV t, GLhalfNV r, GLhalfNV q);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9538 typedef void (APIENTRYP PFNGLMULTITEXCOORD4HVNVPROC) (GLenum target, const GLhalfNV *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9539 typedef void (APIENTRYP PFNGLFOGCOORDHNVPROC) (GLhalfNV fog);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9540 typedef void (APIENTRYP PFNGLFOGCOORDHVNVPROC) (const GLhalfNV *fog);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9541 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3HNVPROC) (GLhalfNV red, GLhalfNV green, GLhalfNV blue);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9542 typedef void (APIENTRYP PFNGLSECONDARYCOLOR3HVNVPROC) (const GLhalfNV *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9543 typedef void (APIENTRYP PFNGLVERTEXWEIGHTHNVPROC) (GLhalfNV weight);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9544 typedef void (APIENTRYP PFNGLVERTEXWEIGHTHVNVPROC) (const GLhalfNV *weight);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9545 typedef void (APIENTRYP PFNGLVERTEXATTRIB1HNVPROC) (GLuint index, GLhalfNV x);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9546 typedef void (APIENTRYP PFNGLVERTEXATTRIB1HVNVPROC) (GLuint index, const GLhalfNV *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9547 typedef void (APIENTRYP PFNGLVERTEXATTRIB2HNVPROC) (GLuint index, GLhalfNV x, GLhalfNV y);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9548 typedef void (APIENTRYP PFNGLVERTEXATTRIB2HVNVPROC) (GLuint index, const GLhalfNV *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9549 typedef void (APIENTRYP PFNGLVERTEXATTRIB3HNVPROC) (GLuint index, GLhalfNV x, GLhalfNV y, GLhalfNV z);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9550 typedef void (APIENTRYP PFNGLVERTEXATTRIB3HVNVPROC) (GLuint index, const GLhalfNV *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9551 typedef void (APIENTRYP PFNGLVERTEXATTRIB4HNVPROC) (GLuint index, GLhalfNV x, GLhalfNV y, GLhalfNV z, GLhalfNV w);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9552 typedef void (APIENTRYP PFNGLVERTEXATTRIB4HVNVPROC) (GLuint index, const GLhalfNV *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9553 typedef void (APIENTRYP PFNGLVERTEXATTRIBS1HVNVPROC) (GLuint index, GLsizei n, const GLhalfNV *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9554 typedef void (APIENTRYP PFNGLVERTEXATTRIBS2HVNVPROC) (GLuint index, GLsizei n, const GLhalfNV *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9555 typedef void (APIENTRYP PFNGLVERTEXATTRIBS3HVNVPROC) (GLuint index, GLsizei n, const GLhalfNV *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9556 typedef void (APIENTRYP PFNGLVERTEXATTRIBS4HVNVPROC) (GLuint index, GLsizei n, const GLhalfNV *v);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9557 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9558
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9559 #ifndef GL_NV_pixel_data_range
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9560 #define GL_NV_pixel_data_range 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9561 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9562 GLAPI void APIENTRY glPixelDataRangeNV (GLenum target, GLsizei length, GLvoid *pointer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9563 GLAPI void APIENTRY glFlushPixelDataRangeNV (GLenum target);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9564 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9565 typedef void (APIENTRYP PFNGLPIXELDATARANGENVPROC) (GLenum target, GLsizei length, GLvoid *pointer);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9566 typedef void (APIENTRYP PFNGLFLUSHPIXELDATARANGENVPROC) (GLenum target);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9567 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9568
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9569 #ifndef GL_NV_primitive_restart
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9570 #define GL_NV_primitive_restart 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9571 #ifdef GL_GLEXT_PROTOTYPES
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9572 GLAPI void APIENTRY glPrimitiveRestartNV (void);
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9573 GLAPI void APIENTRY glPrimitiveRestartIndexNV (GLuint index);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9574 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9575 typedef void (APIENTRYP PFNGLPRIMITIVERESTARTNVPROC) (void);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9576 typedef void (APIENTRYP PFNGLPRIMITIVERESTARTINDEXNVPROC) (GLuint index);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9577 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9578
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9579 #ifndef GL_NV_texture_expand_normal
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9580 #define GL_NV_texture_expand_normal 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9581 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9582
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9583 #ifndef GL_NV_vertex_program2
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9584 #define GL_NV_vertex_program2 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9585 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9586
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9587 #ifndef GL_ATI_map_object_buffer
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9588 #define GL_ATI_map_object_buffer 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9589 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9590 GLAPI GLvoid* APIENTRY glMapObjectBufferATI (GLuint buffer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9591 GLAPI void APIENTRY glUnmapObjectBufferATI (GLuint buffer);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9592 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9593 typedef GLvoid* (APIENTRYP PFNGLMAPOBJECTBUFFERATIPROC) (GLuint buffer);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9594 typedef void (APIENTRYP PFNGLUNMAPOBJECTBUFFERATIPROC) (GLuint buffer);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9595 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9596
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9597 #ifndef GL_ATI_separate_stencil
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9598 #define GL_ATI_separate_stencil 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9599 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9600 GLAPI void APIENTRY glStencilOpSeparateATI (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9601 GLAPI void APIENTRY glStencilFuncSeparateATI (GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9602 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9603 typedef void (APIENTRYP PFNGLSTENCILOPSEPARATEATIPROC) (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9604 typedef void (APIENTRYP PFNGLSTENCILFUNCSEPARATEATIPROC) (GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9605 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9606
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9607 #ifndef GL_ATI_vertex_attrib_array_object
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9608 #define GL_ATI_vertex_attrib_array_object 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9609 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9610 GLAPI void APIENTRY glVertexAttribArrayObjectATI (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, GLuint buffer, GLuint offset);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9611 GLAPI void APIENTRY glGetVertexAttribArrayObjectfvATI (GLuint index, GLenum pname, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9612 GLAPI void APIENTRY glGetVertexAttribArrayObjectivATI (GLuint index, GLenum pname, GLint *params);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9613 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9614 typedef void (APIENTRYP PFNGLVERTEXATTRIBARRAYOBJECTATIPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, GLuint buffer, GLuint offset);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9615 typedef void (APIENTRYP PFNGLGETVERTEXATTRIBARRAYOBJECTFVATIPROC) (GLuint index, GLenum pname, GLfloat *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9616 typedef void (APIENTRYP PFNGLGETVERTEXATTRIBARRAYOBJECTIVATIPROC) (GLuint index, GLenum pname, GLint *params);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9617 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9618
1205
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9619 #ifndef GL_OES_read_format
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9620 #define GL_OES_read_format 1
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9621 #endif
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9622
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9623 #ifndef GL_EXT_depth_bounds_test
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9624 #define GL_EXT_depth_bounds_test 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9625 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9626 GLAPI void APIENTRY glDepthBoundsEXT (GLclampd zmin, GLclampd zmax);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9627 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9628 typedef void (APIENTRYP PFNGLDEPTHBOUNDSEXTPROC) (GLclampd zmin, GLclampd zmax);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9629 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9630
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9631 #ifndef GL_EXT_texture_mirror_clamp
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9632 #define GL_EXT_texture_mirror_clamp 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9633 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9634
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9635 #ifndef GL_EXT_blend_equation_separate
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9636 #define GL_EXT_blend_equation_separate 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9637 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9638 GLAPI void APIENTRY glBlendEquationSeparateEXT (GLenum modeRGB, GLenum modeAlpha);
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9639 #endif /* GL_GLEXT_PROTOTYPES */
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9640 typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEEXTPROC) (GLenum modeRGB, GLenum modeAlpha);
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9641 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9642
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9643 #ifndef GL_MESA_pack_invert
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9644 #define GL_MESA_pack_invert 1
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9645 #endif
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9646
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9647 #ifndef GL_MESA_ycbcr_texture
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
9648 #define GL_MESA_ycbcr_texture 1
312
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
9649 #endif
d62b9aeaf0ea Used the glext.h from the SGI sample implementation
Sam Lantinga <slouken@libsdl.org>
parents: 297
diff changeset
9650
1205
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9651 #ifndef GL_EXT_pixel_buffer_object
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9652 #define GL_EXT_pixel_buffer_object 1
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9653 #endif
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9654
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9655 #ifndef GL_NV_fragment_program_option
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9656 #define GL_NV_fragment_program_option 1
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9657 #endif
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9658
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9659 #ifndef GL_NV_fragment_program2
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9660 #define GL_NV_fragment_program2 1
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9661 #endif
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9662
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9663 #ifndef GL_NV_vertex_program2_option
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9664 #define GL_NV_vertex_program2_option 1
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9665 #endif
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9666
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9667 #ifndef GL_NV_vertex_program3
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9668 #define GL_NV_vertex_program3 1
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9669 #endif
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9670
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9671 #ifndef GL_EXT_framebuffer_object
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9672 #define GL_EXT_framebuffer_object 1
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9673 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9674 GLAPI GLboolean APIENTRY glIsRenderbufferEXT (GLuint renderbuffer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9675 GLAPI void APIENTRY glBindRenderbufferEXT (GLenum target, GLuint renderbuffer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9676 GLAPI void APIENTRY glDeleteRenderbuffersEXT (GLsizei n, const GLuint *renderbuffers);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9677 GLAPI void APIENTRY glGenRenderbuffersEXT (GLsizei n, GLuint *renderbuffers);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9678 GLAPI void APIENTRY glRenderbufferStorageEXT (GLenum target, GLenum internalformat, GLsizei width, GLsizei height);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9679 GLAPI void APIENTRY glGetRenderbufferParameterivEXT (GLenum target, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9680 GLAPI GLboolean APIENTRY glIsFramebufferEXT (GLuint framebuffer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9681 GLAPI void APIENTRY glBindFramebufferEXT (GLenum target, GLuint framebuffer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9682 GLAPI void APIENTRY glDeleteFramebuffersEXT (GLsizei n, const GLuint *framebuffers);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9683 GLAPI void APIENTRY glGenFramebuffersEXT (GLsizei n, GLuint *framebuffers);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9684 GLAPI GLenum APIENTRY glCheckFramebufferStatusEXT (GLenum target);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9685 GLAPI void APIENTRY glFramebufferTexture1DEXT (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9686 GLAPI void APIENTRY glFramebufferTexture2DEXT (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9687 GLAPI void APIENTRY glFramebufferTexture3DEXT (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9688 GLAPI void APIENTRY glFramebufferRenderbufferEXT (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9689 GLAPI void APIENTRY glGetFramebufferAttachmentParameterivEXT (GLenum target, GLenum attachment, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9690 GLAPI void APIENTRY glGenerateMipmapEXT (GLenum target);
1205
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9691 #endif /* GL_GLEXT_PROTOTYPES */
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9692 typedef GLboolean (APIENTRYP PFNGLISRENDERBUFFEREXTPROC) (GLuint renderbuffer);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9693 typedef void (APIENTRYP PFNGLBINDRENDERBUFFEREXTPROC) (GLenum target, GLuint renderbuffer);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9694 typedef void (APIENTRYP PFNGLDELETERENDERBUFFERSEXTPROC) (GLsizei n, const GLuint *renderbuffers);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9695 typedef void (APIENTRYP PFNGLGENRENDERBUFFERSEXTPROC) (GLsizei n, GLuint *renderbuffers);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9696 typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEEXTPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9697 typedef void (APIENTRYP PFNGLGETRENDERBUFFERPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9698 typedef GLboolean (APIENTRYP PFNGLISFRAMEBUFFEREXTPROC) (GLuint framebuffer);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9699 typedef void (APIENTRYP PFNGLBINDFRAMEBUFFEREXTPROC) (GLenum target, GLuint framebuffer);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9700 typedef void (APIENTRYP PFNGLDELETEFRAMEBUFFERSEXTPROC) (GLsizei n, const GLuint *framebuffers);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9701 typedef void (APIENTRYP PFNGLGENFRAMEBUFFERSEXTPROC) (GLsizei n, GLuint *framebuffers);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9702 typedef GLenum (APIENTRYP PFNGLCHECKFRAMEBUFFERSTATUSEXTPROC) (GLenum target);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9703 typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE1DEXTPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9704 typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DEXTPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9705 typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE3DEXTPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9706 typedef void (APIENTRYP PFNGLFRAMEBUFFERRENDERBUFFEREXTPROC) (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9707 typedef void (APIENTRYP PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVEXTPROC) (GLenum target, GLenum attachment, GLenum pname, GLint *params);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9708 typedef void (APIENTRYP PFNGLGENERATEMIPMAPEXTPROC) (GLenum target);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9709 #endif
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9710
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9711 #ifndef GL_GREMEDY_string_marker
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9712 #define GL_GREMEDY_string_marker 1
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9713 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9714 GLAPI void APIENTRY glStringMarkerGREMEDY (GLsizei len, const GLvoid *string);
1205
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9715 #endif /* GL_GLEXT_PROTOTYPES */
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9716 typedef void (APIENTRYP PFNGLSTRINGMARKERGREMEDYPROC) (GLsizei len, const GLvoid *string);
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9717 #endif
2ab21d9a20da Updated to the latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 932
diff changeset
9718
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9719 #ifndef GL_EXT_packed_depth_stencil
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9720 #define GL_EXT_packed_depth_stencil 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9721 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9722
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9723 #ifndef GL_EXT_stencil_clear_tag
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9724 #define GL_EXT_stencil_clear_tag 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9725 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9726 GLAPI void APIENTRY glStencilClearTagEXT (GLsizei stencilTagBits, GLuint stencilClearTag);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9727 #endif /* GL_GLEXT_PROTOTYPES */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9728 typedef void (APIENTRYP PFNGLSTENCILCLEARTAGEXTPROC) (GLsizei stencilTagBits, GLuint stencilClearTag);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9729 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9730
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9731 #ifndef GL_EXT_texture_sRGB
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9732 #define GL_EXT_texture_sRGB 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9733 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9734
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9735 #ifndef GL_EXT_framebuffer_blit
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9736 #define GL_EXT_framebuffer_blit 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9737 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9738 GLAPI void APIENTRY glBlitFramebufferEXT (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9739 #endif /* GL_GLEXT_PROTOTYPES */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9740 typedef void (APIENTRYP PFNGLBLITFRAMEBUFFEREXTPROC) (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9741 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9742
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9743 #ifndef GL_EXT_framebuffer_multisample
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9744 #define GL_EXT_framebuffer_multisample 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9745 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9746 GLAPI void APIENTRY glRenderbufferStorageMultisampleEXT (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9747 #endif /* GL_GLEXT_PROTOTYPES */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9748 typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEEXTPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9749 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9750
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9751 #ifndef GL_MESAX_texture_stack
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9752 #define GL_MESAX_texture_stack 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9753 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9754
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9755 #ifndef GL_EXT_timer_query
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9756 #define GL_EXT_timer_query 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9757 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9758 GLAPI void APIENTRY glGetQueryObjecti64vEXT (GLuint id, GLenum pname, GLint64EXT *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9759 GLAPI void APIENTRY glGetQueryObjectui64vEXT (GLuint id, GLenum pname, GLuint64EXT *params);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9760 #endif /* GL_GLEXT_PROTOTYPES */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9761 typedef void (APIENTRYP PFNGLGETQUERYOBJECTI64VEXTPROC) (GLuint id, GLenum pname, GLint64EXT *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9762 typedef void (APIENTRYP PFNGLGETQUERYOBJECTUI64VEXTPROC) (GLuint id, GLenum pname, GLuint64EXT *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9763 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9764
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9765 #ifndef GL_EXT_gpu_program_parameters
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9766 #define GL_EXT_gpu_program_parameters 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9767 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9768 GLAPI void APIENTRY glProgramEnvParameters4fvEXT (GLenum target, GLuint index, GLsizei count, const GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9769 GLAPI void APIENTRY glProgramLocalParameters4fvEXT (GLenum target, GLuint index, GLsizei count, const GLfloat *params);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9770 #endif /* GL_GLEXT_PROTOTYPES */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9771 typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERS4FVEXTPROC) (GLenum target, GLuint index, GLsizei count, const GLfloat *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9772 typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERS4FVEXTPROC) (GLenum target, GLuint index, GLsizei count, const GLfloat *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9773 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9774
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9775 #ifndef GL_APPLE_flush_buffer_range
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9776 #define GL_APPLE_flush_buffer_range 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9777 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9778 GLAPI void APIENTRY glBufferParameteriAPPLE (GLenum target, GLenum pname, GLint param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9779 GLAPI void APIENTRY glFlushMappedBufferRangeAPPLE (GLenum target, GLintptr offset, GLsizeiptr size);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9780 #endif /* GL_GLEXT_PROTOTYPES */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9781 typedef void (APIENTRYP PFNGLBUFFERPARAMETERIAPPLEPROC) (GLenum target, GLenum pname, GLint param);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9782 typedef void (APIENTRYP PFNGLFLUSHMAPPEDBUFFERRANGEAPPLEPROC) (GLenum target, GLintptr offset, GLsizeiptr size);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9783 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9784
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9785 #ifndef GL_NV_gpu_program4
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9786 #define GL_NV_gpu_program4 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9787 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9788 GLAPI void APIENTRY glProgramLocalParameterI4iNV (GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9789 GLAPI void APIENTRY glProgramLocalParameterI4ivNV (GLenum target, GLuint index, const GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9790 GLAPI void APIENTRY glProgramLocalParametersI4ivNV (GLenum target, GLuint index, GLsizei count, const GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9791 GLAPI void APIENTRY glProgramLocalParameterI4uiNV (GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9792 GLAPI void APIENTRY glProgramLocalParameterI4uivNV (GLenum target, GLuint index, const GLuint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9793 GLAPI void APIENTRY glProgramLocalParametersI4uivNV (GLenum target, GLuint index, GLsizei count, const GLuint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9794 GLAPI void APIENTRY glProgramEnvParameterI4iNV (GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9795 GLAPI void APIENTRY glProgramEnvParameterI4ivNV (GLenum target, GLuint index, const GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9796 GLAPI void APIENTRY glProgramEnvParametersI4ivNV (GLenum target, GLuint index, GLsizei count, const GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9797 GLAPI void APIENTRY glProgramEnvParameterI4uiNV (GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9798 GLAPI void APIENTRY glProgramEnvParameterI4uivNV (GLenum target, GLuint index, const GLuint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9799 GLAPI void APIENTRY glProgramEnvParametersI4uivNV (GLenum target, GLuint index, GLsizei count, const GLuint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9800 GLAPI void APIENTRY glGetProgramLocalParameterIivNV (GLenum target, GLuint index, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9801 GLAPI void APIENTRY glGetProgramLocalParameterIuivNV (GLenum target, GLuint index, GLuint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9802 GLAPI void APIENTRY glGetProgramEnvParameterIivNV (GLenum target, GLuint index, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9803 GLAPI void APIENTRY glGetProgramEnvParameterIuivNV (GLenum target, GLuint index, GLuint *params);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9804 #endif /* GL_GLEXT_PROTOTYPES */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9805 typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERI4INVPROC) (GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9806 typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERI4IVNVPROC) (GLenum target, GLuint index, const GLint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9807 typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERSI4IVNVPROC) (GLenum target, GLuint index, GLsizei count, const GLint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9808 typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERI4UINVPROC) (GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9809 typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERI4UIVNVPROC) (GLenum target, GLuint index, const GLuint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9810 typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERSI4UIVNVPROC) (GLenum target, GLuint index, GLsizei count, const GLuint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9811 typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERI4INVPROC) (GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9812 typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERI4IVNVPROC) (GLenum target, GLuint index, const GLint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9813 typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERSI4IVNVPROC) (GLenum target, GLuint index, GLsizei count, const GLint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9814 typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERI4UINVPROC) (GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9815 typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERI4UIVNVPROC) (GLenum target, GLuint index, const GLuint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9816 typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERSI4UIVNVPROC) (GLenum target, GLuint index, GLsizei count, const GLuint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9817 typedef void (APIENTRYP PFNGLGETPROGRAMLOCALPARAMETERIIVNVPROC) (GLenum target, GLuint index, GLint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9818 typedef void (APIENTRYP PFNGLGETPROGRAMLOCALPARAMETERIUIVNVPROC) (GLenum target, GLuint index, GLuint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9819 typedef void (APIENTRYP PFNGLGETPROGRAMENVPARAMETERIIVNVPROC) (GLenum target, GLuint index, GLint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9820 typedef void (APIENTRYP PFNGLGETPROGRAMENVPARAMETERIUIVNVPROC) (GLenum target, GLuint index, GLuint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9821 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9822
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9823 #ifndef GL_NV_geometry_program4
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9824 #define GL_NV_geometry_program4 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9825 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9826 GLAPI void APIENTRY glProgramVertexLimitNV (GLenum target, GLint limit);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9827 GLAPI void APIENTRY glFramebufferTextureEXT (GLenum target, GLenum attachment, GLuint texture, GLint level);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9828 GLAPI void APIENTRY glFramebufferTextureLayerEXT (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9829 GLAPI void APIENTRY glFramebufferTextureFaceEXT (GLenum target, GLenum attachment, GLuint texture, GLint level, GLenum face);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9830 #endif /* GL_GLEXT_PROTOTYPES */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9831 typedef void (APIENTRYP PFNGLPROGRAMVERTEXLIMITNVPROC) (GLenum target, GLint limit);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9832 typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREEXTPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9833 typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURELAYEREXTPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9834 typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREFACEEXTPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLenum face);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9835 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9836
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9837 #ifndef GL_EXT_geometry_shader4
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9838 #define GL_EXT_geometry_shader4 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9839 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9840 GLAPI void APIENTRY glProgramParameteriEXT (GLuint program, GLenum pname, GLint value);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9841 #endif /* GL_GLEXT_PROTOTYPES */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9842 typedef void (APIENTRYP PFNGLPROGRAMPARAMETERIEXTPROC) (GLuint program, GLenum pname, GLint value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9843 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9844
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9845 #ifndef GL_NV_vertex_program4
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9846 #define GL_NV_vertex_program4 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9847 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9848 GLAPI void APIENTRY glVertexAttribI1iEXT (GLuint index, GLint x);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9849 GLAPI void APIENTRY glVertexAttribI2iEXT (GLuint index, GLint x, GLint y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9850 GLAPI void APIENTRY glVertexAttribI3iEXT (GLuint index, GLint x, GLint y, GLint z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9851 GLAPI void APIENTRY glVertexAttribI4iEXT (GLuint index, GLint x, GLint y, GLint z, GLint w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9852 GLAPI void APIENTRY glVertexAttribI1uiEXT (GLuint index, GLuint x);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9853 GLAPI void APIENTRY glVertexAttribI2uiEXT (GLuint index, GLuint x, GLuint y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9854 GLAPI void APIENTRY glVertexAttribI3uiEXT (GLuint index, GLuint x, GLuint y, GLuint z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9855 GLAPI void APIENTRY glVertexAttribI4uiEXT (GLuint index, GLuint x, GLuint y, GLuint z, GLuint w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9856 GLAPI void APIENTRY glVertexAttribI1ivEXT (GLuint index, const GLint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9857 GLAPI void APIENTRY glVertexAttribI2ivEXT (GLuint index, const GLint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9858 GLAPI void APIENTRY glVertexAttribI3ivEXT (GLuint index, const GLint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9859 GLAPI void APIENTRY glVertexAttribI4ivEXT (GLuint index, const GLint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9860 GLAPI void APIENTRY glVertexAttribI1uivEXT (GLuint index, const GLuint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9861 GLAPI void APIENTRY glVertexAttribI2uivEXT (GLuint index, const GLuint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9862 GLAPI void APIENTRY glVertexAttribI3uivEXT (GLuint index, const GLuint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9863 GLAPI void APIENTRY glVertexAttribI4uivEXT (GLuint index, const GLuint *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9864 GLAPI void APIENTRY glVertexAttribI4bvEXT (GLuint index, const GLbyte *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9865 GLAPI void APIENTRY glVertexAttribI4svEXT (GLuint index, const GLshort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9866 GLAPI void APIENTRY glVertexAttribI4ubvEXT (GLuint index, const GLubyte *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9867 GLAPI void APIENTRY glVertexAttribI4usvEXT (GLuint index, const GLushort *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9868 GLAPI void APIENTRY glVertexAttribIPointerEXT (GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9869 GLAPI void APIENTRY glGetVertexAttribIivEXT (GLuint index, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9870 GLAPI void APIENTRY glGetVertexAttribIuivEXT (GLuint index, GLenum pname, GLuint *params);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9871 #endif /* GL_GLEXT_PROTOTYPES */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9872 typedef void (APIENTRYP PFNGLVERTEXATTRIBI1IEXTPROC) (GLuint index, GLint x);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9873 typedef void (APIENTRYP PFNGLVERTEXATTRIBI2IEXTPROC) (GLuint index, GLint x, GLint y);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9874 typedef void (APIENTRYP PFNGLVERTEXATTRIBI3IEXTPROC) (GLuint index, GLint x, GLint y, GLint z);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9875 typedef void (APIENTRYP PFNGLVERTEXATTRIBI4IEXTPROC) (GLuint index, GLint x, GLint y, GLint z, GLint w);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9876 typedef void (APIENTRYP PFNGLVERTEXATTRIBI1UIEXTPROC) (GLuint index, GLuint x);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9877 typedef void (APIENTRYP PFNGLVERTEXATTRIBI2UIEXTPROC) (GLuint index, GLuint x, GLuint y);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9878 typedef void (APIENTRYP PFNGLVERTEXATTRIBI3UIEXTPROC) (GLuint index, GLuint x, GLuint y, GLuint z);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9879 typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UIEXTPROC) (GLuint index, GLuint x, GLuint y, GLuint z, GLuint w);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9880 typedef void (APIENTRYP PFNGLVERTEXATTRIBI1IVEXTPROC) (GLuint index, const GLint *v);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9881 typedef void (APIENTRYP PFNGLVERTEXATTRIBI2IVEXTPROC) (GLuint index, const GLint *v);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9882 typedef void (APIENTRYP PFNGLVERTEXATTRIBI3IVEXTPROC) (GLuint index, const GLint *v);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9883 typedef void (APIENTRYP PFNGLVERTEXATTRIBI4IVEXTPROC) (GLuint index, const GLint *v);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9884 typedef void (APIENTRYP PFNGLVERTEXATTRIBI1UIVEXTPROC) (GLuint index, const GLuint *v);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9885 typedef void (APIENTRYP PFNGLVERTEXATTRIBI2UIVEXTPROC) (GLuint index, const GLuint *v);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9886 typedef void (APIENTRYP PFNGLVERTEXATTRIBI3UIVEXTPROC) (GLuint index, const GLuint *v);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9887 typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UIVEXTPROC) (GLuint index, const GLuint *v);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9888 typedef void (APIENTRYP PFNGLVERTEXATTRIBI4BVEXTPROC) (GLuint index, const GLbyte *v);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9889 typedef void (APIENTRYP PFNGLVERTEXATTRIBI4SVEXTPROC) (GLuint index, const GLshort *v);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9890 typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UBVEXTPROC) (GLuint index, const GLubyte *v);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9891 typedef void (APIENTRYP PFNGLVERTEXATTRIBI4USVEXTPROC) (GLuint index, const GLushort *v);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9892 typedef void (APIENTRYP PFNGLVERTEXATTRIBIPOINTEREXTPROC) (GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9893 typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIIVEXTPROC) (GLuint index, GLenum pname, GLint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9894 typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIUIVEXTPROC) (GLuint index, GLenum pname, GLuint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9895 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9896
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9897 #ifndef GL_EXT_gpu_shader4
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9898 #define GL_EXT_gpu_shader4 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9899 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9900 GLAPI void APIENTRY glGetUniformuivEXT (GLuint program, GLint location, GLuint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9901 GLAPI void APIENTRY glBindFragDataLocationEXT (GLuint program, GLuint color, const GLchar *name);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9902 GLAPI GLint APIENTRY glGetFragDataLocationEXT (GLuint program, const GLchar *name);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9903 GLAPI void APIENTRY glUniform1uiEXT (GLint location, GLuint v0);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9904 GLAPI void APIENTRY glUniform2uiEXT (GLint location, GLuint v0, GLuint v1);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9905 GLAPI void APIENTRY glUniform3uiEXT (GLint location, GLuint v0, GLuint v1, GLuint v2);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9906 GLAPI void APIENTRY glUniform4uiEXT (GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9907 GLAPI void APIENTRY glUniform1uivEXT (GLint location, GLsizei count, const GLuint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9908 GLAPI void APIENTRY glUniform2uivEXT (GLint location, GLsizei count, const GLuint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9909 GLAPI void APIENTRY glUniform3uivEXT (GLint location, GLsizei count, const GLuint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9910 GLAPI void APIENTRY glUniform4uivEXT (GLint location, GLsizei count, const GLuint *value);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9911 #endif /* GL_GLEXT_PROTOTYPES */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9912 typedef void (APIENTRYP PFNGLGETUNIFORMUIVEXTPROC) (GLuint program, GLint location, GLuint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9913 typedef void (APIENTRYP PFNGLBINDFRAGDATALOCATIONEXTPROC) (GLuint program, GLuint color, const GLchar *name);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9914 typedef GLint (APIENTRYP PFNGLGETFRAGDATALOCATIONEXTPROC) (GLuint program, const GLchar *name);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9915 typedef void (APIENTRYP PFNGLUNIFORM1UIEXTPROC) (GLint location, GLuint v0);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9916 typedef void (APIENTRYP PFNGLUNIFORM2UIEXTPROC) (GLint location, GLuint v0, GLuint v1);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9917 typedef void (APIENTRYP PFNGLUNIFORM3UIEXTPROC) (GLint location, GLuint v0, GLuint v1, GLuint v2);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9918 typedef void (APIENTRYP PFNGLUNIFORM4UIEXTPROC) (GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9919 typedef void (APIENTRYP PFNGLUNIFORM1UIVEXTPROC) (GLint location, GLsizei count, const GLuint *value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9920 typedef void (APIENTRYP PFNGLUNIFORM2UIVEXTPROC) (GLint location, GLsizei count, const GLuint *value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9921 typedef void (APIENTRYP PFNGLUNIFORM3UIVEXTPROC) (GLint location, GLsizei count, const GLuint *value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9922 typedef void (APIENTRYP PFNGLUNIFORM4UIVEXTPROC) (GLint location, GLsizei count, const GLuint *value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9923 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9924
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9925 #ifndef GL_EXT_draw_instanced
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9926 #define GL_EXT_draw_instanced 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9927 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9928 GLAPI void APIENTRY glDrawArraysInstancedEXT (GLenum mode, GLint start, GLsizei count, GLsizei primcount);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9929 GLAPI void APIENTRY glDrawElementsInstancedEXT (GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei primcount);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9930 #endif /* GL_GLEXT_PROTOTYPES */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9931 typedef void (APIENTRYP PFNGLDRAWARRAYSINSTANCEDEXTPROC) (GLenum mode, GLint start, GLsizei count, GLsizei primcount);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9932 typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDEXTPROC) (GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei primcount);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9933 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9934
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9935 #ifndef GL_EXT_packed_float
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9936 #define GL_EXT_packed_float 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9937 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9938
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9939 #ifndef GL_EXT_texture_array
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9940 #define GL_EXT_texture_array 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9941 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9942
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9943 #ifndef GL_EXT_texture_buffer_object
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9944 #define GL_EXT_texture_buffer_object 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9945 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9946 GLAPI void APIENTRY glTexBufferEXT (GLenum target, GLenum internalformat, GLuint buffer);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9947 #endif /* GL_GLEXT_PROTOTYPES */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9948 typedef void (APIENTRYP PFNGLTEXBUFFEREXTPROC) (GLenum target, GLenum internalformat, GLuint buffer);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9949 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9950
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9951 #ifndef GL_EXT_texture_compression_latc
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9952 #define GL_EXT_texture_compression_latc 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9953 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9954
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9955 #ifndef GL_EXT_texture_compression_rgtc
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9956 #define GL_EXT_texture_compression_rgtc 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9957 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9958
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9959 #ifndef GL_EXT_texture_shared_exponent
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9960 #define GL_EXT_texture_shared_exponent 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9961 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9962
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9963 #ifndef GL_NV_depth_buffer_float
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9964 #define GL_NV_depth_buffer_float 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9965 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9966 GLAPI void APIENTRY glDepthRangedNV (GLdouble zNear, GLdouble zFar);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9967 GLAPI void APIENTRY glClearDepthdNV (GLdouble depth);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9968 GLAPI void APIENTRY glDepthBoundsdNV (GLdouble zmin, GLdouble zmax);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9969 #endif /* GL_GLEXT_PROTOTYPES */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9970 typedef void (APIENTRYP PFNGLDEPTHRANGEDNVPROC) (GLdouble zNear, GLdouble zFar);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9971 typedef void (APIENTRYP PFNGLCLEARDEPTHDNVPROC) (GLdouble depth);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9972 typedef void (APIENTRYP PFNGLDEPTHBOUNDSDNVPROC) (GLdouble zmin, GLdouble zmax);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9973 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9974
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9975 #ifndef GL_NV_fragment_program4
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9976 #define GL_NV_fragment_program4 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9977 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9978
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9979 #ifndef GL_NV_framebuffer_multisample_coverage
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9980 #define GL_NV_framebuffer_multisample_coverage 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9981 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9982 GLAPI void APIENTRY glRenderbufferStorageMultisampleCoverageNV (GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLenum internalformat, GLsizei width, GLsizei height);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9983 #endif /* GL_GLEXT_PROTOTYPES */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9984 typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLECOVERAGENVPROC) (GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLenum internalformat, GLsizei width, GLsizei height);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9985 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9986
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9987 #ifndef GL_EXT_framebuffer_sRGB
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9988 #define GL_EXT_framebuffer_sRGB 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9989 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9990
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9991 #ifndef GL_NV_geometry_shader4
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9992 #define GL_NV_geometry_shader4 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9993 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9994
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9995 #ifndef GL_NV_parameter_buffer_object
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9996 #define GL_NV_parameter_buffer_object 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
9997 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9998 GLAPI void APIENTRY glProgramBufferParametersfvNV (GLenum target, GLuint buffer, GLuint index, GLsizei count, const GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
9999 GLAPI void APIENTRY glProgramBufferParametersIivNV (GLenum target, GLuint buffer, GLuint index, GLsizei count, const GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10000 GLAPI void APIENTRY glProgramBufferParametersIuivNV (GLenum target, GLuint buffer, GLuint index, GLsizei count, const GLuint *params);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10001 #endif /* GL_GLEXT_PROTOTYPES */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10002 typedef void (APIENTRYP PFNGLPROGRAMBUFFERPARAMETERSFVNVPROC) (GLenum target, GLuint buffer, GLuint index, GLsizei count, const GLfloat *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10003 typedef void (APIENTRYP PFNGLPROGRAMBUFFERPARAMETERSIIVNVPROC) (GLenum target, GLuint buffer, GLuint index, GLsizei count, const GLint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10004 typedef void (APIENTRYP PFNGLPROGRAMBUFFERPARAMETERSIUIVNVPROC) (GLenum target, GLuint buffer, GLuint index, GLsizei count, const GLuint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10005 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10006
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10007 #ifndef GL_EXT_draw_buffers2
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10008 #define GL_EXT_draw_buffers2 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10009 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10010 GLAPI void APIENTRY glColorMaskIndexedEXT (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10011 GLAPI void APIENTRY glGetBooleanIndexedvEXT (GLenum target, GLuint index, GLboolean *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10012 GLAPI void APIENTRY glGetIntegerIndexedvEXT (GLenum target, GLuint index, GLint *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10013 GLAPI void APIENTRY glEnableIndexedEXT (GLenum target, GLuint index);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10014 GLAPI void APIENTRY glDisableIndexedEXT (GLenum target, GLuint index);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10015 GLAPI GLboolean APIENTRY glIsEnabledIndexedEXT (GLenum target, GLuint index);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10016 #endif /* GL_GLEXT_PROTOTYPES */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10017 typedef void (APIENTRYP PFNGLCOLORMASKINDEXEDEXTPROC) (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10018 typedef void (APIENTRYP PFNGLGETBOOLEANINDEXEDVEXTPROC) (GLenum target, GLuint index, GLboolean *data);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10019 typedef void (APIENTRYP PFNGLGETINTEGERINDEXEDVEXTPROC) (GLenum target, GLuint index, GLint *data);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10020 typedef void (APIENTRYP PFNGLENABLEINDEXEDEXTPROC) (GLenum target, GLuint index);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10021 typedef void (APIENTRYP PFNGLDISABLEINDEXEDEXTPROC) (GLenum target, GLuint index);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10022 typedef GLboolean (APIENTRYP PFNGLISENABLEDINDEXEDEXTPROC) (GLenum target, GLuint index);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10023 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10024
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10025 #ifndef GL_NV_transform_feedback
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10026 #define GL_NV_transform_feedback 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10027 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10028 GLAPI void APIENTRY glBeginTransformFeedbackNV (GLenum primitiveMode);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10029 GLAPI void APIENTRY glEndTransformFeedbackNV (void);
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10030 GLAPI void APIENTRY glTransformFeedbackAttribsNV (GLuint count, const GLint *attribs, GLenum bufferMode);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10031 GLAPI void APIENTRY glBindBufferRangeNV (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10032 GLAPI void APIENTRY glBindBufferOffsetNV (GLenum target, GLuint index, GLuint buffer, GLintptr offset);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10033 GLAPI void APIENTRY glBindBufferBaseNV (GLenum target, GLuint index, GLuint buffer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10034 GLAPI void APIENTRY glTransformFeedbackVaryingsNV (GLuint program, GLsizei count, const GLint *locations, GLenum bufferMode);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10035 GLAPI void APIENTRY glActiveVaryingNV (GLuint program, const GLchar *name);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10036 GLAPI GLint APIENTRY glGetVaryingLocationNV (GLuint program, const GLchar *name);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10037 GLAPI void APIENTRY glGetActiveVaryingNV (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10038 GLAPI void APIENTRY glGetTransformFeedbackVaryingNV (GLuint program, GLuint index, GLint *location);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10039 GLAPI void APIENTRY glTransformFeedbackStreamAttribsNV (GLsizei count, const GLint *attribs, GLsizei nbuffers, const GLint *bufstreams, GLenum bufferMode);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10040 #endif /* GL_GLEXT_PROTOTYPES */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10041 typedef void (APIENTRYP PFNGLBEGINTRANSFORMFEEDBACKNVPROC) (GLenum primitiveMode);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10042 typedef void (APIENTRYP PFNGLENDTRANSFORMFEEDBACKNVPROC) (void);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10043 typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKATTRIBSNVPROC) (GLuint count, const GLint *attribs, GLenum bufferMode);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10044 typedef void (APIENTRYP PFNGLBINDBUFFERRANGENVPROC) (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10045 typedef void (APIENTRYP PFNGLBINDBUFFEROFFSETNVPROC) (GLenum target, GLuint index, GLuint buffer, GLintptr offset);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10046 typedef void (APIENTRYP PFNGLBINDBUFFERBASENVPROC) (GLenum target, GLuint index, GLuint buffer);
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10047 typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKVARYINGSNVPROC) (GLuint program, GLsizei count, const GLint *locations, GLenum bufferMode);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10048 typedef void (APIENTRYP PFNGLACTIVEVARYINGNVPROC) (GLuint program, const GLchar *name);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10049 typedef GLint (APIENTRYP PFNGLGETVARYINGLOCATIONNVPROC) (GLuint program, const GLchar *name);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10050 typedef void (APIENTRYP PFNGLGETACTIVEVARYINGNVPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10051 typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKVARYINGNVPROC) (GLuint program, GLuint index, GLint *location);
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10052 typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKSTREAMATTRIBSNVPROC) (GLsizei count, const GLint *attribs, GLsizei nbuffers, const GLint *bufstreams, GLenum bufferMode);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10053 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10054
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10055 #ifndef GL_EXT_bindable_uniform
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10056 #define GL_EXT_bindable_uniform 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10057 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10058 GLAPI void APIENTRY glUniformBufferEXT (GLuint program, GLint location, GLuint buffer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10059 GLAPI GLint APIENTRY glGetUniformBufferSizeEXT (GLuint program, GLint location);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10060 GLAPI GLintptr APIENTRY glGetUniformOffsetEXT (GLuint program, GLint location);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10061 #endif /* GL_GLEXT_PROTOTYPES */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10062 typedef void (APIENTRYP PFNGLUNIFORMBUFFEREXTPROC) (GLuint program, GLint location, GLuint buffer);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10063 typedef GLint (APIENTRYP PFNGLGETUNIFORMBUFFERSIZEEXTPROC) (GLuint program, GLint location);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10064 typedef GLintptr (APIENTRYP PFNGLGETUNIFORMOFFSETEXTPROC) (GLuint program, GLint location);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10065 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10066
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10067 #ifndef GL_EXT_texture_integer
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10068 #define GL_EXT_texture_integer 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10069 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10070 GLAPI void APIENTRY glTexParameterIivEXT (GLenum target, GLenum pname, const GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10071 GLAPI void APIENTRY glTexParameterIuivEXT (GLenum target, GLenum pname, const GLuint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10072 GLAPI void APIENTRY glGetTexParameterIivEXT (GLenum target, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10073 GLAPI void APIENTRY glGetTexParameterIuivEXT (GLenum target, GLenum pname, GLuint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10074 GLAPI void APIENTRY glClearColorIiEXT (GLint red, GLint green, GLint blue, GLint alpha);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10075 GLAPI void APIENTRY glClearColorIuiEXT (GLuint red, GLuint green, GLuint blue, GLuint alpha);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10076 #endif /* GL_GLEXT_PROTOTYPES */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10077 typedef void (APIENTRYP PFNGLTEXPARAMETERIIVEXTPROC) (GLenum target, GLenum pname, const GLint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10078 typedef void (APIENTRYP PFNGLTEXPARAMETERIUIVEXTPROC) (GLenum target, GLenum pname, const GLuint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10079 typedef void (APIENTRYP PFNGLGETTEXPARAMETERIIVEXTPROC) (GLenum target, GLenum pname, GLint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10080 typedef void (APIENTRYP PFNGLGETTEXPARAMETERIUIVEXTPROC) (GLenum target, GLenum pname, GLuint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10081 typedef void (APIENTRYP PFNGLCLEARCOLORIIEXTPROC) (GLint red, GLint green, GLint blue, GLint alpha);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10082 typedef void (APIENTRYP PFNGLCLEARCOLORIUIEXTPROC) (GLuint red, GLuint green, GLuint blue, GLuint alpha);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10083 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10084
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10085 #ifndef GL_GREMEDY_frame_terminator
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10086 #define GL_GREMEDY_frame_terminator 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10087 #ifdef GL_GLEXT_PROTOTYPES
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10088 GLAPI void APIENTRY glFrameTerminatorGREMEDY (void);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10089 #endif /* GL_GLEXT_PROTOTYPES */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10090 typedef void (APIENTRYP PFNGLFRAMETERMINATORGREMEDYPROC) (void);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10091 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10092
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10093 #ifndef GL_NV_conditional_render
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10094 #define GL_NV_conditional_render 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10095 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10096 GLAPI void APIENTRY glBeginConditionalRenderNV (GLuint id, GLenum mode);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10097 GLAPI void APIENTRY glEndConditionalRenderNV (void);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10098 #endif /* GL_GLEXT_PROTOTYPES */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10099 typedef void (APIENTRYP PFNGLBEGINCONDITIONALRENDERNVPROC) (GLuint id, GLenum mode);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10100 typedef void (APIENTRYP PFNGLENDCONDITIONALRENDERNVPROC) (void);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10101 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10102
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10103 #ifndef GL_NV_present_video
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10104 #define GL_NV_present_video 1
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10105 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10106 GLAPI void APIENTRY glPresentFrameKeyedNV (GLuint video_slot, GLuint64EXT minPresentTime, GLuint beginPresentTimeId, GLuint presentDurationId, GLenum type, GLenum target0, GLuint fill0, GLuint key0, GLenum target1, GLuint fill1, GLuint key1);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10107 GLAPI void APIENTRY glPresentFrameDualFillNV (GLuint video_slot, GLuint64EXT minPresentTime, GLuint beginPresentTimeId, GLuint presentDurationId, GLenum type, GLenum target0, GLuint fill0, GLenum target1, GLuint fill1, GLenum target2, GLuint fill2, GLenum target3, GLuint fill3);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10108 GLAPI void APIENTRY glGetVideoivNV (GLuint video_slot, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10109 GLAPI void APIENTRY glGetVideouivNV (GLuint video_slot, GLenum pname, GLuint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10110 GLAPI void APIENTRY glGetVideoi64vNV (GLuint video_slot, GLenum pname, GLint64EXT *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10111 GLAPI void APIENTRY glGetVideoui64vNV (GLuint video_slot, GLenum pname, GLuint64EXT *params);
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10112 #endif /* GL_GLEXT_PROTOTYPES */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10113 typedef void (APIENTRYP PFNGLPRESENTFRAMEKEYEDNVPROC) (GLuint video_slot, GLuint64EXT minPresentTime, GLuint beginPresentTimeId, GLuint presentDurationId, GLenum type, GLenum target0, GLuint fill0, GLuint key0, GLenum target1, GLuint fill1, GLuint key1);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10114 typedef void (APIENTRYP PFNGLPRESENTFRAMEDUALFILLNVPROC) (GLuint video_slot, GLuint64EXT minPresentTime, GLuint beginPresentTimeId, GLuint presentDurationId, GLenum type, GLenum target0, GLuint fill0, GLenum target1, GLuint fill1, GLenum target2, GLuint fill2, GLenum target3, GLuint fill3);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10115 typedef void (APIENTRYP PFNGLGETVIDEOIVNVPROC) (GLuint video_slot, GLenum pname, GLint *params);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10116 typedef void (APIENTRYP PFNGLGETVIDEOUIVNVPROC) (GLuint video_slot, GLenum pname, GLuint *params);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10117 typedef void (APIENTRYP PFNGLGETVIDEOI64VNVPROC) (GLuint video_slot, GLenum pname, GLint64EXT *params);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10118 typedef void (APIENTRYP PFNGLGETVIDEOUI64VNVPROC) (GLuint video_slot, GLenum pname, GLuint64EXT *params);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10119 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10120
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10121 #ifndef GL_EXT_transform_feedback
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10122 #define GL_EXT_transform_feedback 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10123 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10124 GLAPI void APIENTRY glBeginTransformFeedbackEXT (GLenum primitiveMode);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10125 GLAPI void APIENTRY glEndTransformFeedbackEXT (void);
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10126 GLAPI void APIENTRY glBindBufferRangeEXT (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10127 GLAPI void APIENTRY glBindBufferOffsetEXT (GLenum target, GLuint index, GLuint buffer, GLintptr offset);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10128 GLAPI void APIENTRY glBindBufferBaseEXT (GLenum target, GLuint index, GLuint buffer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10129 GLAPI void APIENTRY glTransformFeedbackVaryingsEXT (GLuint program, GLsizei count, const GLchar* *varyings, GLenum bufferMode);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10130 GLAPI void APIENTRY glGetTransformFeedbackVaryingEXT (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10131 #endif /* GL_GLEXT_PROTOTYPES */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10132 typedef void (APIENTRYP PFNGLBEGINTRANSFORMFEEDBACKEXTPROC) (GLenum primitiveMode);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10133 typedef void (APIENTRYP PFNGLENDTRANSFORMFEEDBACKEXTPROC) (void);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10134 typedef void (APIENTRYP PFNGLBINDBUFFERRANGEEXTPROC) (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10135 typedef void (APIENTRYP PFNGLBINDBUFFEROFFSETEXTPROC) (GLenum target, GLuint index, GLuint buffer, GLintptr offset);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10136 typedef void (APIENTRYP PFNGLBINDBUFFERBASEEXTPROC) (GLenum target, GLuint index, GLuint buffer);
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10137 typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKVARYINGSEXTPROC) (GLuint program, GLsizei count, const GLchar* *varyings, GLenum bufferMode);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10138 typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKVARYINGEXTPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10139 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10140
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10141 #ifndef GL_EXT_direct_state_access
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10142 #define GL_EXT_direct_state_access 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10143 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10144 GLAPI void APIENTRY glClientAttribDefaultEXT (GLbitfield mask);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10145 GLAPI void APIENTRY glPushClientAttribDefaultEXT (GLbitfield mask);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10146 GLAPI void APIENTRY glMatrixLoadfEXT (GLenum mode, const GLfloat *m);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10147 GLAPI void APIENTRY glMatrixLoaddEXT (GLenum mode, const GLdouble *m);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10148 GLAPI void APIENTRY glMatrixMultfEXT (GLenum mode, const GLfloat *m);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10149 GLAPI void APIENTRY glMatrixMultdEXT (GLenum mode, const GLdouble *m);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10150 GLAPI void APIENTRY glMatrixLoadIdentityEXT (GLenum mode);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10151 GLAPI void APIENTRY glMatrixRotatefEXT (GLenum mode, GLfloat angle, GLfloat x, GLfloat y, GLfloat z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10152 GLAPI void APIENTRY glMatrixRotatedEXT (GLenum mode, GLdouble angle, GLdouble x, GLdouble y, GLdouble z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10153 GLAPI void APIENTRY glMatrixScalefEXT (GLenum mode, GLfloat x, GLfloat y, GLfloat z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10154 GLAPI void APIENTRY glMatrixScaledEXT (GLenum mode, GLdouble x, GLdouble y, GLdouble z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10155 GLAPI void APIENTRY glMatrixTranslatefEXT (GLenum mode, GLfloat x, GLfloat y, GLfloat z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10156 GLAPI void APIENTRY glMatrixTranslatedEXT (GLenum mode, GLdouble x, GLdouble y, GLdouble z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10157 GLAPI void APIENTRY glMatrixFrustumEXT (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10158 GLAPI void APIENTRY glMatrixOrthoEXT (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10159 GLAPI void APIENTRY glMatrixPopEXT (GLenum mode);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10160 GLAPI void APIENTRY glMatrixPushEXT (GLenum mode);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10161 GLAPI void APIENTRY glMatrixLoadTransposefEXT (GLenum mode, const GLfloat *m);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10162 GLAPI void APIENTRY glMatrixLoadTransposedEXT (GLenum mode, const GLdouble *m);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10163 GLAPI void APIENTRY glMatrixMultTransposefEXT (GLenum mode, const GLfloat *m);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10164 GLAPI void APIENTRY glMatrixMultTransposedEXT (GLenum mode, const GLdouble *m);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10165 GLAPI void APIENTRY glTextureParameterfEXT (GLuint texture, GLenum target, GLenum pname, GLfloat param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10166 GLAPI void APIENTRY glTextureParameterfvEXT (GLuint texture, GLenum target, GLenum pname, const GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10167 GLAPI void APIENTRY glTextureParameteriEXT (GLuint texture, GLenum target, GLenum pname, GLint param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10168 GLAPI void APIENTRY glTextureParameterivEXT (GLuint texture, GLenum target, GLenum pname, const GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10169 GLAPI void APIENTRY glTextureImage1DEXT (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10170 GLAPI void APIENTRY glTextureImage2DEXT (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10171 GLAPI void APIENTRY glTextureSubImage1DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const GLvoid *pixels);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10172 GLAPI void APIENTRY glTextureSubImage2DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10173 GLAPI void APIENTRY glCopyTextureImage1DEXT (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10174 GLAPI void APIENTRY glCopyTextureImage2DEXT (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10175 GLAPI void APIENTRY glCopyTextureSubImage1DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10176 GLAPI void APIENTRY glCopyTextureSubImage2DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10177 GLAPI void APIENTRY glGetTextureImageEXT (GLuint texture, GLenum target, GLint level, GLenum format, GLenum type, GLvoid *pixels);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10178 GLAPI void APIENTRY glGetTextureParameterfvEXT (GLuint texture, GLenum target, GLenum pname, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10179 GLAPI void APIENTRY glGetTextureParameterivEXT (GLuint texture, GLenum target, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10180 GLAPI void APIENTRY glGetTextureLevelParameterfvEXT (GLuint texture, GLenum target, GLint level, GLenum pname, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10181 GLAPI void APIENTRY glGetTextureLevelParameterivEXT (GLuint texture, GLenum target, GLint level, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10182 GLAPI void APIENTRY glTextureImage3DEXT (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10183 GLAPI void APIENTRY glTextureSubImage3DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10184 GLAPI void APIENTRY glCopyTextureSubImage3DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10185 GLAPI void APIENTRY glMultiTexParameterfEXT (GLenum texunit, GLenum target, GLenum pname, GLfloat param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10186 GLAPI void APIENTRY glMultiTexParameterfvEXT (GLenum texunit, GLenum target, GLenum pname, const GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10187 GLAPI void APIENTRY glMultiTexParameteriEXT (GLenum texunit, GLenum target, GLenum pname, GLint param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10188 GLAPI void APIENTRY glMultiTexParameterivEXT (GLenum texunit, GLenum target, GLenum pname, const GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10189 GLAPI void APIENTRY glMultiTexImage1DEXT (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10190 GLAPI void APIENTRY glMultiTexImage2DEXT (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10191 GLAPI void APIENTRY glMultiTexSubImage1DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const GLvoid *pixels);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10192 GLAPI void APIENTRY glMultiTexSubImage2DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10193 GLAPI void APIENTRY glCopyMultiTexImage1DEXT (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10194 GLAPI void APIENTRY glCopyMultiTexImage2DEXT (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10195 GLAPI void APIENTRY glCopyMultiTexSubImage1DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10196 GLAPI void APIENTRY glCopyMultiTexSubImage2DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10197 GLAPI void APIENTRY glGetMultiTexImageEXT (GLenum texunit, GLenum target, GLint level, GLenum format, GLenum type, GLvoid *pixels);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10198 GLAPI void APIENTRY glGetMultiTexParameterfvEXT (GLenum texunit, GLenum target, GLenum pname, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10199 GLAPI void APIENTRY glGetMultiTexParameterivEXT (GLenum texunit, GLenum target, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10200 GLAPI void APIENTRY glGetMultiTexLevelParameterfvEXT (GLenum texunit, GLenum target, GLint level, GLenum pname, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10201 GLAPI void APIENTRY glGetMultiTexLevelParameterivEXT (GLenum texunit, GLenum target, GLint level, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10202 GLAPI void APIENTRY glMultiTexImage3DEXT (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10203 GLAPI void APIENTRY glMultiTexSubImage3DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10204 GLAPI void APIENTRY glCopyMultiTexSubImage3DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10205 GLAPI void APIENTRY glBindMultiTextureEXT (GLenum texunit, GLenum target, GLuint texture);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10206 GLAPI void APIENTRY glEnableClientStateIndexedEXT (GLenum array, GLuint index);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10207 GLAPI void APIENTRY glDisableClientStateIndexedEXT (GLenum array, GLuint index);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10208 GLAPI void APIENTRY glMultiTexCoordPointerEXT (GLenum texunit, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10209 GLAPI void APIENTRY glMultiTexEnvfEXT (GLenum texunit, GLenum target, GLenum pname, GLfloat param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10210 GLAPI void APIENTRY glMultiTexEnvfvEXT (GLenum texunit, GLenum target, GLenum pname, const GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10211 GLAPI void APIENTRY glMultiTexEnviEXT (GLenum texunit, GLenum target, GLenum pname, GLint param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10212 GLAPI void APIENTRY glMultiTexEnvivEXT (GLenum texunit, GLenum target, GLenum pname, const GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10213 GLAPI void APIENTRY glMultiTexGendEXT (GLenum texunit, GLenum coord, GLenum pname, GLdouble param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10214 GLAPI void APIENTRY glMultiTexGendvEXT (GLenum texunit, GLenum coord, GLenum pname, const GLdouble *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10215 GLAPI void APIENTRY glMultiTexGenfEXT (GLenum texunit, GLenum coord, GLenum pname, GLfloat param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10216 GLAPI void APIENTRY glMultiTexGenfvEXT (GLenum texunit, GLenum coord, GLenum pname, const GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10217 GLAPI void APIENTRY glMultiTexGeniEXT (GLenum texunit, GLenum coord, GLenum pname, GLint param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10218 GLAPI void APIENTRY glMultiTexGenivEXT (GLenum texunit, GLenum coord, GLenum pname, const GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10219 GLAPI void APIENTRY glGetMultiTexEnvfvEXT (GLenum texunit, GLenum target, GLenum pname, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10220 GLAPI void APIENTRY glGetMultiTexEnvivEXT (GLenum texunit, GLenum target, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10221 GLAPI void APIENTRY glGetMultiTexGendvEXT (GLenum texunit, GLenum coord, GLenum pname, GLdouble *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10222 GLAPI void APIENTRY glGetMultiTexGenfvEXT (GLenum texunit, GLenum coord, GLenum pname, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10223 GLAPI void APIENTRY glGetMultiTexGenivEXT (GLenum texunit, GLenum coord, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10224 GLAPI void APIENTRY glGetFloatIndexedvEXT (GLenum target, GLuint index, GLfloat *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10225 GLAPI void APIENTRY glGetDoubleIndexedvEXT (GLenum target, GLuint index, GLdouble *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10226 GLAPI void APIENTRY glGetPointerIndexedvEXT (GLenum target, GLuint index, GLvoid* *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10227 GLAPI void APIENTRY glCompressedTextureImage3DEXT (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *bits);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10228 GLAPI void APIENTRY glCompressedTextureImage2DEXT (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *bits);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10229 GLAPI void APIENTRY glCompressedTextureImage1DEXT (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *bits);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10230 GLAPI void APIENTRY glCompressedTextureSubImage3DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *bits);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10231 GLAPI void APIENTRY glCompressedTextureSubImage2DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *bits);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10232 GLAPI void APIENTRY glCompressedTextureSubImage1DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *bits);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10233 GLAPI void APIENTRY glGetCompressedTextureImageEXT (GLuint texture, GLenum target, GLint lod, GLvoid *img);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10234 GLAPI void APIENTRY glCompressedMultiTexImage3DEXT (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *bits);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10235 GLAPI void APIENTRY glCompressedMultiTexImage2DEXT (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *bits);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10236 GLAPI void APIENTRY glCompressedMultiTexImage1DEXT (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *bits);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10237 GLAPI void APIENTRY glCompressedMultiTexSubImage3DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *bits);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10238 GLAPI void APIENTRY glCompressedMultiTexSubImage2DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *bits);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10239 GLAPI void APIENTRY glCompressedMultiTexSubImage1DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *bits);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10240 GLAPI void APIENTRY glGetCompressedMultiTexImageEXT (GLenum texunit, GLenum target, GLint lod, GLvoid *img);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10241 GLAPI void APIENTRY glNamedProgramStringEXT (GLuint program, GLenum target, GLenum format, GLsizei len, const GLvoid *string);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10242 GLAPI void APIENTRY glNamedProgramLocalParameter4dEXT (GLuint program, GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10243 GLAPI void APIENTRY glNamedProgramLocalParameter4dvEXT (GLuint program, GLenum target, GLuint index, const GLdouble *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10244 GLAPI void APIENTRY glNamedProgramLocalParameter4fEXT (GLuint program, GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10245 GLAPI void APIENTRY glNamedProgramLocalParameter4fvEXT (GLuint program, GLenum target, GLuint index, const GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10246 GLAPI void APIENTRY glGetNamedProgramLocalParameterdvEXT (GLuint program, GLenum target, GLuint index, GLdouble *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10247 GLAPI void APIENTRY glGetNamedProgramLocalParameterfvEXT (GLuint program, GLenum target, GLuint index, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10248 GLAPI void APIENTRY glGetNamedProgramivEXT (GLuint program, GLenum target, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10249 GLAPI void APIENTRY glGetNamedProgramStringEXT (GLuint program, GLenum target, GLenum pname, GLvoid *string);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10250 GLAPI void APIENTRY glNamedProgramLocalParameters4fvEXT (GLuint program, GLenum target, GLuint index, GLsizei count, const GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10251 GLAPI void APIENTRY glNamedProgramLocalParameterI4iEXT (GLuint program, GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10252 GLAPI void APIENTRY glNamedProgramLocalParameterI4ivEXT (GLuint program, GLenum target, GLuint index, const GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10253 GLAPI void APIENTRY glNamedProgramLocalParametersI4ivEXT (GLuint program, GLenum target, GLuint index, GLsizei count, const GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10254 GLAPI void APIENTRY glNamedProgramLocalParameterI4uiEXT (GLuint program, GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10255 GLAPI void APIENTRY glNamedProgramLocalParameterI4uivEXT (GLuint program, GLenum target, GLuint index, const GLuint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10256 GLAPI void APIENTRY glNamedProgramLocalParametersI4uivEXT (GLuint program, GLenum target, GLuint index, GLsizei count, const GLuint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10257 GLAPI void APIENTRY glGetNamedProgramLocalParameterIivEXT (GLuint program, GLenum target, GLuint index, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10258 GLAPI void APIENTRY glGetNamedProgramLocalParameterIuivEXT (GLuint program, GLenum target, GLuint index, GLuint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10259 GLAPI void APIENTRY glTextureParameterIivEXT (GLuint texture, GLenum target, GLenum pname, const GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10260 GLAPI void APIENTRY glTextureParameterIuivEXT (GLuint texture, GLenum target, GLenum pname, const GLuint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10261 GLAPI void APIENTRY glGetTextureParameterIivEXT (GLuint texture, GLenum target, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10262 GLAPI void APIENTRY glGetTextureParameterIuivEXT (GLuint texture, GLenum target, GLenum pname, GLuint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10263 GLAPI void APIENTRY glMultiTexParameterIivEXT (GLenum texunit, GLenum target, GLenum pname, const GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10264 GLAPI void APIENTRY glMultiTexParameterIuivEXT (GLenum texunit, GLenum target, GLenum pname, const GLuint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10265 GLAPI void APIENTRY glGetMultiTexParameterIivEXT (GLenum texunit, GLenum target, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10266 GLAPI void APIENTRY glGetMultiTexParameterIuivEXT (GLenum texunit, GLenum target, GLenum pname, GLuint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10267 GLAPI void APIENTRY glProgramUniform1fEXT (GLuint program, GLint location, GLfloat v0);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10268 GLAPI void APIENTRY glProgramUniform2fEXT (GLuint program, GLint location, GLfloat v0, GLfloat v1);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10269 GLAPI void APIENTRY glProgramUniform3fEXT (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10270 GLAPI void APIENTRY glProgramUniform4fEXT (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10271 GLAPI void APIENTRY glProgramUniform1iEXT (GLuint program, GLint location, GLint v0);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10272 GLAPI void APIENTRY glProgramUniform2iEXT (GLuint program, GLint location, GLint v0, GLint v1);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10273 GLAPI void APIENTRY glProgramUniform3iEXT (GLuint program, GLint location, GLint v0, GLint v1, GLint v2);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10274 GLAPI void APIENTRY glProgramUniform4iEXT (GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10275 GLAPI void APIENTRY glProgramUniform1fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10276 GLAPI void APIENTRY glProgramUniform2fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10277 GLAPI void APIENTRY glProgramUniform3fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10278 GLAPI void APIENTRY glProgramUniform4fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10279 GLAPI void APIENTRY glProgramUniform1ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10280 GLAPI void APIENTRY glProgramUniform2ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10281 GLAPI void APIENTRY glProgramUniform3ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10282 GLAPI void APIENTRY glProgramUniform4ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10283 GLAPI void APIENTRY glProgramUniformMatrix2fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10284 GLAPI void APIENTRY glProgramUniformMatrix3fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10285 GLAPI void APIENTRY glProgramUniformMatrix4fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10286 GLAPI void APIENTRY glProgramUniformMatrix2x3fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10287 GLAPI void APIENTRY glProgramUniformMatrix3x2fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10288 GLAPI void APIENTRY glProgramUniformMatrix2x4fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10289 GLAPI void APIENTRY glProgramUniformMatrix4x2fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10290 GLAPI void APIENTRY glProgramUniformMatrix3x4fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10291 GLAPI void APIENTRY glProgramUniformMatrix4x3fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10292 GLAPI void APIENTRY glProgramUniform1uiEXT (GLuint program, GLint location, GLuint v0);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10293 GLAPI void APIENTRY glProgramUniform2uiEXT (GLuint program, GLint location, GLuint v0, GLuint v1);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10294 GLAPI void APIENTRY glProgramUniform3uiEXT (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10295 GLAPI void APIENTRY glProgramUniform4uiEXT (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10296 GLAPI void APIENTRY glProgramUniform1uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10297 GLAPI void APIENTRY glProgramUniform2uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10298 GLAPI void APIENTRY glProgramUniform3uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10299 GLAPI void APIENTRY glProgramUniform4uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10300 GLAPI void APIENTRY glNamedBufferDataEXT (GLuint buffer, GLsizeiptr size, const GLvoid *data, GLenum usage);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10301 GLAPI void APIENTRY glNamedBufferSubDataEXT (GLuint buffer, GLintptr offset, GLsizeiptr size, const GLvoid *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10302 GLAPI GLvoid* APIENTRY glMapNamedBufferEXT (GLuint buffer, GLenum access);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10303 GLAPI GLboolean APIENTRY glUnmapNamedBufferEXT (GLuint buffer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10304 GLAPI GLvoid* APIENTRY glMapNamedBufferRangeEXT (GLuint buffer, GLintptr offset, GLsizeiptr length, GLbitfield access);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10305 GLAPI void APIENTRY glFlushMappedNamedBufferRangeEXT (GLuint buffer, GLintptr offset, GLsizeiptr length);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10306 GLAPI void APIENTRY glNamedCopyBufferSubDataEXT (GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10307 GLAPI void APIENTRY glGetNamedBufferParameterivEXT (GLuint buffer, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10308 GLAPI void APIENTRY glGetNamedBufferPointervEXT (GLuint buffer, GLenum pname, GLvoid* *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10309 GLAPI void APIENTRY glGetNamedBufferSubDataEXT (GLuint buffer, GLintptr offset, GLsizeiptr size, GLvoid *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10310 GLAPI void APIENTRY glTextureBufferEXT (GLuint texture, GLenum target, GLenum internalformat, GLuint buffer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10311 GLAPI void APIENTRY glMultiTexBufferEXT (GLenum texunit, GLenum target, GLenum internalformat, GLuint buffer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10312 GLAPI void APIENTRY glNamedRenderbufferStorageEXT (GLuint renderbuffer, GLenum internalformat, GLsizei width, GLsizei height);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10313 GLAPI void APIENTRY glGetNamedRenderbufferParameterivEXT (GLuint renderbuffer, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10314 GLAPI GLenum APIENTRY glCheckNamedFramebufferStatusEXT (GLuint framebuffer, GLenum target);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10315 GLAPI void APIENTRY glNamedFramebufferTexture1DEXT (GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10316 GLAPI void APIENTRY glNamedFramebufferTexture2DEXT (GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10317 GLAPI void APIENTRY glNamedFramebufferTexture3DEXT (GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10318 GLAPI void APIENTRY glNamedFramebufferRenderbufferEXT (GLuint framebuffer, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10319 GLAPI void APIENTRY glGetNamedFramebufferAttachmentParameterivEXT (GLuint framebuffer, GLenum attachment, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10320 GLAPI void APIENTRY glGenerateTextureMipmapEXT (GLuint texture, GLenum target);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10321 GLAPI void APIENTRY glGenerateMultiTexMipmapEXT (GLenum texunit, GLenum target);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10322 GLAPI void APIENTRY glFramebufferDrawBufferEXT (GLuint framebuffer, GLenum mode);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10323 GLAPI void APIENTRY glFramebufferDrawBuffersEXT (GLuint framebuffer, GLsizei n, const GLenum *bufs);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10324 GLAPI void APIENTRY glFramebufferReadBufferEXT (GLuint framebuffer, GLenum mode);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10325 GLAPI void APIENTRY glGetFramebufferParameterivEXT (GLuint framebuffer, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10326 GLAPI void APIENTRY glNamedRenderbufferStorageMultisampleEXT (GLuint renderbuffer, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10327 GLAPI void APIENTRY glNamedRenderbufferStorageMultisampleCoverageEXT (GLuint renderbuffer, GLsizei coverageSamples, GLsizei colorSamples, GLenum internalformat, GLsizei width, GLsizei height);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10328 GLAPI void APIENTRY glNamedFramebufferTextureEXT (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10329 GLAPI void APIENTRY glNamedFramebufferTextureLayerEXT (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLint layer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10330 GLAPI void APIENTRY glNamedFramebufferTextureFaceEXT (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLenum face);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10331 GLAPI void APIENTRY glTextureRenderbufferEXT (GLuint texture, GLenum target, GLuint renderbuffer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10332 GLAPI void APIENTRY glMultiTexRenderbufferEXT (GLenum texunit, GLenum target, GLuint renderbuffer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10333 GLAPI void APIENTRY glProgramUniform1dEXT (GLuint program, GLint location, GLdouble x);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10334 GLAPI void APIENTRY glProgramUniform2dEXT (GLuint program, GLint location, GLdouble x, GLdouble y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10335 GLAPI void APIENTRY glProgramUniform3dEXT (GLuint program, GLint location, GLdouble x, GLdouble y, GLdouble z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10336 GLAPI void APIENTRY glProgramUniform4dEXT (GLuint program, GLint location, GLdouble x, GLdouble y, GLdouble z, GLdouble w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10337 GLAPI void APIENTRY glProgramUniform1dvEXT (GLuint program, GLint location, GLsizei count, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10338 GLAPI void APIENTRY glProgramUniform2dvEXT (GLuint program, GLint location, GLsizei count, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10339 GLAPI void APIENTRY glProgramUniform3dvEXT (GLuint program, GLint location, GLsizei count, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10340 GLAPI void APIENTRY glProgramUniform4dvEXT (GLuint program, GLint location, GLsizei count, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10341 GLAPI void APIENTRY glProgramUniformMatrix2dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10342 GLAPI void APIENTRY glProgramUniformMatrix3dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10343 GLAPI void APIENTRY glProgramUniformMatrix4dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10344 GLAPI void APIENTRY glProgramUniformMatrix2x3dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10345 GLAPI void APIENTRY glProgramUniformMatrix2x4dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10346 GLAPI void APIENTRY glProgramUniformMatrix3x2dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10347 GLAPI void APIENTRY glProgramUniformMatrix3x4dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10348 GLAPI void APIENTRY glProgramUniformMatrix4x2dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10349 GLAPI void APIENTRY glProgramUniformMatrix4x3dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10350 #endif /* GL_GLEXT_PROTOTYPES */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10351 typedef void (APIENTRYP PFNGLCLIENTATTRIBDEFAULTEXTPROC) (GLbitfield mask);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10352 typedef void (APIENTRYP PFNGLPUSHCLIENTATTRIBDEFAULTEXTPROC) (GLbitfield mask);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10353 typedef void (APIENTRYP PFNGLMATRIXLOADFEXTPROC) (GLenum mode, const GLfloat *m);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10354 typedef void (APIENTRYP PFNGLMATRIXLOADDEXTPROC) (GLenum mode, const GLdouble *m);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10355 typedef void (APIENTRYP PFNGLMATRIXMULTFEXTPROC) (GLenum mode, const GLfloat *m);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10356 typedef void (APIENTRYP PFNGLMATRIXMULTDEXTPROC) (GLenum mode, const GLdouble *m);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10357 typedef void (APIENTRYP PFNGLMATRIXLOADIDENTITYEXTPROC) (GLenum mode);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10358 typedef void (APIENTRYP PFNGLMATRIXROTATEFEXTPROC) (GLenum mode, GLfloat angle, GLfloat x, GLfloat y, GLfloat z);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10359 typedef void (APIENTRYP PFNGLMATRIXROTATEDEXTPROC) (GLenum mode, GLdouble angle, GLdouble x, GLdouble y, GLdouble z);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10360 typedef void (APIENTRYP PFNGLMATRIXSCALEFEXTPROC) (GLenum mode, GLfloat x, GLfloat y, GLfloat z);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10361 typedef void (APIENTRYP PFNGLMATRIXSCALEDEXTPROC) (GLenum mode, GLdouble x, GLdouble y, GLdouble z);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10362 typedef void (APIENTRYP PFNGLMATRIXTRANSLATEFEXTPROC) (GLenum mode, GLfloat x, GLfloat y, GLfloat z);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10363 typedef void (APIENTRYP PFNGLMATRIXTRANSLATEDEXTPROC) (GLenum mode, GLdouble x, GLdouble y, GLdouble z);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10364 typedef void (APIENTRYP PFNGLMATRIXFRUSTUMEXTPROC) (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10365 typedef void (APIENTRYP PFNGLMATRIXORTHOEXTPROC) (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10366 typedef void (APIENTRYP PFNGLMATRIXPOPEXTPROC) (GLenum mode);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10367 typedef void (APIENTRYP PFNGLMATRIXPUSHEXTPROC) (GLenum mode);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10368 typedef void (APIENTRYP PFNGLMATRIXLOADTRANSPOSEFEXTPROC) (GLenum mode, const GLfloat *m);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10369 typedef void (APIENTRYP PFNGLMATRIXLOADTRANSPOSEDEXTPROC) (GLenum mode, const GLdouble *m);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10370 typedef void (APIENTRYP PFNGLMATRIXMULTTRANSPOSEFEXTPROC) (GLenum mode, const GLfloat *m);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10371 typedef void (APIENTRYP PFNGLMATRIXMULTTRANSPOSEDEXTPROC) (GLenum mode, const GLdouble *m);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10372 typedef void (APIENTRYP PFNGLTEXTUREPARAMETERFEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLfloat param);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10373 typedef void (APIENTRYP PFNGLTEXTUREPARAMETERFVEXTPROC) (GLuint texture, GLenum target, GLenum pname, const GLfloat *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10374 typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLint param);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10375 typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, const GLint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10376 typedef void (APIENTRYP PFNGLTEXTUREIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10377 typedef void (APIENTRYP PFNGLTEXTUREIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10378 typedef void (APIENTRYP PFNGLTEXTURESUBIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const GLvoid *pixels);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10379 typedef void (APIENTRYP PFNGLTEXTURESUBIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10380 typedef void (APIENTRYP PFNGLCOPYTEXTUREIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10381 typedef void (APIENTRYP PFNGLCOPYTEXTUREIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10382 typedef void (APIENTRYP PFNGLCOPYTEXTURESUBIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10383 typedef void (APIENTRYP PFNGLCOPYTEXTURESUBIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10384 typedef void (APIENTRYP PFNGLGETTEXTUREIMAGEEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum format, GLenum type, GLvoid *pixels);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10385 typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERFVEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLfloat *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10386 typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10387 typedef void (APIENTRYP PFNGLGETTEXTURELEVELPARAMETERFVEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum pname, GLfloat *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10388 typedef void (APIENTRYP PFNGLGETTEXTURELEVELPARAMETERIVEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum pname, GLint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10389 typedef void (APIENTRYP PFNGLTEXTUREIMAGE3DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10390 typedef void (APIENTRYP PFNGLTEXTURESUBIMAGE3DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10391 typedef void (APIENTRYP PFNGLCOPYTEXTURESUBIMAGE3DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10392 typedef void (APIENTRYP PFNGLMULTITEXPARAMETERFEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLfloat param);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10393 typedef void (APIENTRYP PFNGLMULTITEXPARAMETERFVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLfloat *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10394 typedef void (APIENTRYP PFNGLMULTITEXPARAMETERIEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLint param);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10395 typedef void (APIENTRYP PFNGLMULTITEXPARAMETERIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10396 typedef void (APIENTRYP PFNGLMULTITEXIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10397 typedef void (APIENTRYP PFNGLMULTITEXIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10398 typedef void (APIENTRYP PFNGLMULTITEXSUBIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const GLvoid *pixels);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10399 typedef void (APIENTRYP PFNGLMULTITEXSUBIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10400 typedef void (APIENTRYP PFNGLCOPYMULTITEXIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10401 typedef void (APIENTRYP PFNGLCOPYMULTITEXIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10402 typedef void (APIENTRYP PFNGLCOPYMULTITEXSUBIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10403 typedef void (APIENTRYP PFNGLCOPYMULTITEXSUBIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10404 typedef void (APIENTRYP PFNGLGETMULTITEXIMAGEEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum format, GLenum type, GLvoid *pixels);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10405 typedef void (APIENTRYP PFNGLGETMULTITEXPARAMETERFVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLfloat *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10406 typedef void (APIENTRYP PFNGLGETMULTITEXPARAMETERIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10407 typedef void (APIENTRYP PFNGLGETMULTITEXLEVELPARAMETERFVEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum pname, GLfloat *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10408 typedef void (APIENTRYP PFNGLGETMULTITEXLEVELPARAMETERIVEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum pname, GLint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10409 typedef void (APIENTRYP PFNGLMULTITEXIMAGE3DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10410 typedef void (APIENTRYP PFNGLMULTITEXSUBIMAGE3DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10411 typedef void (APIENTRYP PFNGLCOPYMULTITEXSUBIMAGE3DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10412 typedef void (APIENTRYP PFNGLBINDMULTITEXTUREEXTPROC) (GLenum texunit, GLenum target, GLuint texture);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10413 typedef void (APIENTRYP PFNGLENABLECLIENTSTATEINDEXEDEXTPROC) (GLenum array, GLuint index);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10414 typedef void (APIENTRYP PFNGLDISABLECLIENTSTATEINDEXEDEXTPROC) (GLenum array, GLuint index);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10415 typedef void (APIENTRYP PFNGLMULTITEXCOORDPOINTEREXTPROC) (GLenum texunit, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10416 typedef void (APIENTRYP PFNGLMULTITEXENVFEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLfloat param);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10417 typedef void (APIENTRYP PFNGLMULTITEXENVFVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLfloat *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10418 typedef void (APIENTRYP PFNGLMULTITEXENVIEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLint param);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10419 typedef void (APIENTRYP PFNGLMULTITEXENVIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10420 typedef void (APIENTRYP PFNGLMULTITEXGENDEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLdouble param);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10421 typedef void (APIENTRYP PFNGLMULTITEXGENDVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, const GLdouble *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10422 typedef void (APIENTRYP PFNGLMULTITEXGENFEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLfloat param);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10423 typedef void (APIENTRYP PFNGLMULTITEXGENFVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, const GLfloat *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10424 typedef void (APIENTRYP PFNGLMULTITEXGENIEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLint param);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10425 typedef void (APIENTRYP PFNGLMULTITEXGENIVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, const GLint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10426 typedef void (APIENTRYP PFNGLGETMULTITEXENVFVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLfloat *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10427 typedef void (APIENTRYP PFNGLGETMULTITEXENVIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10428 typedef void (APIENTRYP PFNGLGETMULTITEXGENDVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLdouble *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10429 typedef void (APIENTRYP PFNGLGETMULTITEXGENFVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLfloat *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10430 typedef void (APIENTRYP PFNGLGETMULTITEXGENIVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10431 typedef void (APIENTRYP PFNGLGETFLOATINDEXEDVEXTPROC) (GLenum target, GLuint index, GLfloat *data);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10432 typedef void (APIENTRYP PFNGLGETDOUBLEINDEXEDVEXTPROC) (GLenum target, GLuint index, GLdouble *data);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10433 typedef void (APIENTRYP PFNGLGETPOINTERINDEXEDVEXTPROC) (GLenum target, GLuint index, GLvoid* *data);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10434 typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTUREIMAGE3DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *bits);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10435 typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTUREIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *bits);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10436 typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTUREIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *bits);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10437 typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTURESUBIMAGE3DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *bits);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10438 typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTURESUBIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *bits);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10439 typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTURESUBIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *bits);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10440 typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXTUREIMAGEEXTPROC) (GLuint texture, GLenum target, GLint lod, GLvoid *img);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10441 typedef void (APIENTRYP PFNGLCOMPRESSEDMULTITEXIMAGE3DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *bits);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10442 typedef void (APIENTRYP PFNGLCOMPRESSEDMULTITEXIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *bits);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10443 typedef void (APIENTRYP PFNGLCOMPRESSEDMULTITEXIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *bits);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10444 typedef void (APIENTRYP PFNGLCOMPRESSEDMULTITEXSUBIMAGE3DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *bits);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10445 typedef void (APIENTRYP PFNGLCOMPRESSEDMULTITEXSUBIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *bits);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10446 typedef void (APIENTRYP PFNGLCOMPRESSEDMULTITEXSUBIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *bits);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10447 typedef void (APIENTRYP PFNGLGETCOMPRESSEDMULTITEXIMAGEEXTPROC) (GLenum texunit, GLenum target, GLint lod, GLvoid *img);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10448 typedef void (APIENTRYP PFNGLNAMEDPROGRAMSTRINGEXTPROC) (GLuint program, GLenum target, GLenum format, GLsizei len, const GLvoid *string);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10449 typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETER4DEXTPROC) (GLuint program, GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10450 typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETER4DVEXTPROC) (GLuint program, GLenum target, GLuint index, const GLdouble *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10451 typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETER4FEXTPROC) (GLuint program, GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10452 typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETER4FVEXTPROC) (GLuint program, GLenum target, GLuint index, const GLfloat *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10453 typedef void (APIENTRYP PFNGLGETNAMEDPROGRAMLOCALPARAMETERDVEXTPROC) (GLuint program, GLenum target, GLuint index, GLdouble *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10454 typedef void (APIENTRYP PFNGLGETNAMEDPROGRAMLOCALPARAMETERFVEXTPROC) (GLuint program, GLenum target, GLuint index, GLfloat *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10455 typedef void (APIENTRYP PFNGLGETNAMEDPROGRAMIVEXTPROC) (GLuint program, GLenum target, GLenum pname, GLint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10456 typedef void (APIENTRYP PFNGLGETNAMEDPROGRAMSTRINGEXTPROC) (GLuint program, GLenum target, GLenum pname, GLvoid *string);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10457 typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERS4FVEXTPROC) (GLuint program, GLenum target, GLuint index, GLsizei count, const GLfloat *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10458 typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERI4IEXTPROC) (GLuint program, GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10459 typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERI4IVEXTPROC) (GLuint program, GLenum target, GLuint index, const GLint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10460 typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERSI4IVEXTPROC) (GLuint program, GLenum target, GLuint index, GLsizei count, const GLint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10461 typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERI4UIEXTPROC) (GLuint program, GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10462 typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERI4UIVEXTPROC) (GLuint program, GLenum target, GLuint index, const GLuint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10463 typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERSI4UIVEXTPROC) (GLuint program, GLenum target, GLuint index, GLsizei count, const GLuint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10464 typedef void (APIENTRYP PFNGLGETNAMEDPROGRAMLOCALPARAMETERIIVEXTPROC) (GLuint program, GLenum target, GLuint index, GLint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10465 typedef void (APIENTRYP PFNGLGETNAMEDPROGRAMLOCALPARAMETERIUIVEXTPROC) (GLuint program, GLenum target, GLuint index, GLuint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10466 typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, const GLint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10467 typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIUIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, const GLuint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10468 typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERIIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10469 typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERIUIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLuint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10470 typedef void (APIENTRYP PFNGLMULTITEXPARAMETERIIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10471 typedef void (APIENTRYP PFNGLMULTITEXPARAMETERIUIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLuint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10472 typedef void (APIENTRYP PFNGLGETMULTITEXPARAMETERIIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10473 typedef void (APIENTRYP PFNGLGETMULTITEXPARAMETERIUIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLuint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10474 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1FEXTPROC) (GLuint program, GLint location, GLfloat v0);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10475 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2FEXTPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10476 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3FEXTPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10477 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4FEXTPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10478 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1IEXTPROC) (GLuint program, GLint location, GLint v0);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10479 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2IEXTPROC) (GLuint program, GLint location, GLint v0, GLint v1);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10480 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3IEXTPROC) (GLuint program, GLint location, GLint v0, GLint v1, GLint v2);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10481 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4IEXTPROC) (GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10482 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10483 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10484 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10485 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10486 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10487 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10488 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10489 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10490 typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10491 typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10492 typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10493 typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X3FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10494 typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X2FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10495 typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X4FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10496 typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X2FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10497 typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X4FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10498 typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X3FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10499 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UIEXTPROC) (GLuint program, GLint location, GLuint v0);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10500 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UIEXTPROC) (GLuint program, GLint location, GLuint v0, GLuint v1);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10501 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UIEXTPROC) (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10502 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UIEXTPROC) (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10503 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10504 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10505 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10506 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10507 typedef void (APIENTRYP PFNGLNAMEDBUFFERDATAEXTPROC) (GLuint buffer, GLsizeiptr size, const GLvoid *data, GLenum usage);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10508 typedef void (APIENTRYP PFNGLNAMEDBUFFERSUBDATAEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, const GLvoid *data);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10509 typedef GLvoid* (APIENTRYP PFNGLMAPNAMEDBUFFEREXTPROC) (GLuint buffer, GLenum access);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10510 typedef GLboolean (APIENTRYP PFNGLUNMAPNAMEDBUFFEREXTPROC) (GLuint buffer);
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10511 typedef GLvoid* (APIENTRYP PFNGLMAPNAMEDBUFFERRANGEEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr length, GLbitfield access);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10512 typedef void (APIENTRYP PFNGLFLUSHMAPPEDNAMEDBUFFERRANGEEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr length);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10513 typedef void (APIENTRYP PFNGLNAMEDCOPYBUFFERSUBDATAEXTPROC) (GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10514 typedef void (APIENTRYP PFNGLGETNAMEDBUFFERPARAMETERIVEXTPROC) (GLuint buffer, GLenum pname, GLint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10515 typedef void (APIENTRYP PFNGLGETNAMEDBUFFERPOINTERVEXTPROC) (GLuint buffer, GLenum pname, GLvoid* *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10516 typedef void (APIENTRYP PFNGLGETNAMEDBUFFERSUBDATAEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, GLvoid *data);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10517 typedef void (APIENTRYP PFNGLTEXTUREBUFFEREXTPROC) (GLuint texture, GLenum target, GLenum internalformat, GLuint buffer);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10518 typedef void (APIENTRYP PFNGLMULTITEXBUFFEREXTPROC) (GLenum texunit, GLenum target, GLenum internalformat, GLuint buffer);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10519 typedef void (APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEEXTPROC) (GLuint renderbuffer, GLenum internalformat, GLsizei width, GLsizei height);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10520 typedef void (APIENTRYP PFNGLGETNAMEDRENDERBUFFERPARAMETERIVEXTPROC) (GLuint renderbuffer, GLenum pname, GLint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10521 typedef GLenum (APIENTRYP PFNGLCHECKNAMEDFRAMEBUFFERSTATUSEXTPROC) (GLuint framebuffer, GLenum target);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10522 typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTURE1DEXTPROC) (GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10523 typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTURE2DEXTPROC) (GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10524 typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTURE3DEXTPROC) (GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10525 typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERRENDERBUFFEREXTPROC) (GLuint framebuffer, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10526 typedef void (APIENTRYP PFNGLGETNAMEDFRAMEBUFFERATTACHMENTPARAMETERIVEXTPROC) (GLuint framebuffer, GLenum attachment, GLenum pname, GLint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10527 typedef void (APIENTRYP PFNGLGENERATETEXTUREMIPMAPEXTPROC) (GLuint texture, GLenum target);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10528 typedef void (APIENTRYP PFNGLGENERATEMULTITEXMIPMAPEXTPROC) (GLenum texunit, GLenum target);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10529 typedef void (APIENTRYP PFNGLFRAMEBUFFERDRAWBUFFEREXTPROC) (GLuint framebuffer, GLenum mode);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10530 typedef void (APIENTRYP PFNGLFRAMEBUFFERDRAWBUFFERSEXTPROC) (GLuint framebuffer, GLsizei n, const GLenum *bufs);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10531 typedef void (APIENTRYP PFNGLFRAMEBUFFERREADBUFFEREXTPROC) (GLuint framebuffer, GLenum mode);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10532 typedef void (APIENTRYP PFNGLGETFRAMEBUFFERPARAMETERIVEXTPROC) (GLuint framebuffer, GLenum pname, GLint *params);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10533 typedef void (APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEMULTISAMPLEEXTPROC) (GLuint renderbuffer, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10534 typedef void (APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEMULTISAMPLECOVERAGEEXTPROC) (GLuint renderbuffer, GLsizei coverageSamples, GLsizei colorSamples, GLenum internalformat, GLsizei width, GLsizei height);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10535 typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTUREEXTPROC) (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10536 typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTURELAYEREXTPROC) (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLint layer);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10537 typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTUREFACEEXTPROC) (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLenum face);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10538 typedef void (APIENTRYP PFNGLTEXTURERENDERBUFFEREXTPROC) (GLuint texture, GLenum target, GLuint renderbuffer);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10539 typedef void (APIENTRYP PFNGLMULTITEXRENDERBUFFEREXTPROC) (GLenum texunit, GLenum target, GLuint renderbuffer);
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10540 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1DEXTPROC) (GLuint program, GLint location, GLdouble x);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10541 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2DEXTPROC) (GLuint program, GLint location, GLdouble x, GLdouble y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10542 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3DEXTPROC) (GLuint program, GLint location, GLdouble x, GLdouble y, GLdouble z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10543 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4DEXTPROC) (GLuint program, GLint location, GLdouble x, GLdouble y, GLdouble z, GLdouble w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10544 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1DVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10545 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2DVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10546 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3DVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10547 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4DVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10548 typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10549 typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10550 typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10551 typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X3DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10552 typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X4DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10553 typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X2DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10554 typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X4DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10555 typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X2DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10556 typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X3DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10557 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10558
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10559 #ifndef GL_EXT_vertex_array_bgra
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10560 #define GL_EXT_vertex_array_bgra 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10561 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10562
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10563 #ifndef GL_EXT_texture_swizzle
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10564 #define GL_EXT_texture_swizzle 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10565 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10566
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10567 #ifndef GL_NV_explicit_multisample
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10568 #define GL_NV_explicit_multisample 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10569 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10570 GLAPI void APIENTRY glGetMultisamplefvNV (GLenum pname, GLuint index, GLfloat *val);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10571 GLAPI void APIENTRY glSampleMaskIndexedNV (GLuint index, GLbitfield mask);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10572 GLAPI void APIENTRY glTexRenderbufferNV (GLenum target, GLuint renderbuffer);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10573 #endif /* GL_GLEXT_PROTOTYPES */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10574 typedef void (APIENTRYP PFNGLGETMULTISAMPLEFVNVPROC) (GLenum pname, GLuint index, GLfloat *val);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10575 typedef void (APIENTRYP PFNGLSAMPLEMASKINDEXEDNVPROC) (GLuint index, GLbitfield mask);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10576 typedef void (APIENTRYP PFNGLTEXRENDERBUFFERNVPROC) (GLenum target, GLuint renderbuffer);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10577 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10578
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10579 #ifndef GL_NV_transform_feedback2
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10580 #define GL_NV_transform_feedback2 1
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10581 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10582 GLAPI void APIENTRY glBindTransformFeedbackNV (GLenum target, GLuint id);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10583 GLAPI void APIENTRY glDeleteTransformFeedbacksNV (GLsizei n, const GLuint *ids);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10584 GLAPI void APIENTRY glGenTransformFeedbacksNV (GLsizei n, GLuint *ids);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10585 GLAPI GLboolean APIENTRY glIsTransformFeedbackNV (GLuint id);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10586 GLAPI void APIENTRY glPauseTransformFeedbackNV (void);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10587 GLAPI void APIENTRY glResumeTransformFeedbackNV (void);
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10588 GLAPI void APIENTRY glDrawTransformFeedbackNV (GLenum mode, GLuint id);
2788
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10589 #endif /* GL_GLEXT_PROTOTYPES */
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10590 typedef void (APIENTRYP PFNGLBINDTRANSFORMFEEDBACKNVPROC) (GLenum target, GLuint id);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10591 typedef void (APIENTRYP PFNGLDELETETRANSFORMFEEDBACKSNVPROC) (GLsizei n, const GLuint *ids);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10592 typedef void (APIENTRYP PFNGLGENTRANSFORMFEEDBACKSNVPROC) (GLsizei n, GLuint *ids);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10593 typedef GLboolean (APIENTRYP PFNGLISTRANSFORMFEEDBACKNVPROC) (GLuint id);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10594 typedef void (APIENTRYP PFNGLPAUSETRANSFORMFEEDBACKNVPROC) (void);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10595 typedef void (APIENTRYP PFNGLRESUMETRANSFORMFEEDBACKNVPROC) (void);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10596 typedef void (APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKNVPROC) (GLenum mode, GLuint id);
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10597 #endif
44be910366a9 Updated with latest glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 1978
diff changeset
10598
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10599 #ifndef GL_ATI_meminfo
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10600 #define GL_ATI_meminfo 1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10601 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10602
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10603 #ifndef GL_AMD_performance_monitor
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10604 #define GL_AMD_performance_monitor 1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10605 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10606 GLAPI void APIENTRY glGetPerfMonitorGroupsAMD (GLint *numGroups, GLsizei groupsSize, GLuint *groups);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10607 GLAPI void APIENTRY glGetPerfMonitorCountersAMD (GLuint group, GLint *numCounters, GLint *maxActiveCounters, GLsizei counterSize, GLuint *counters);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10608 GLAPI void APIENTRY glGetPerfMonitorGroupStringAMD (GLuint group, GLsizei bufSize, GLsizei *length, GLchar *groupString);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10609 GLAPI void APIENTRY glGetPerfMonitorCounterStringAMD (GLuint group, GLuint counter, GLsizei bufSize, GLsizei *length, GLchar *counterString);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10610 GLAPI void APIENTRY glGetPerfMonitorCounterInfoAMD (GLuint group, GLuint counter, GLenum pname, GLvoid *data);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10611 GLAPI void APIENTRY glGenPerfMonitorsAMD (GLsizei n, GLuint *monitors);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10612 GLAPI void APIENTRY glDeletePerfMonitorsAMD (GLsizei n, GLuint *monitors);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10613 GLAPI void APIENTRY glSelectPerfMonitorCountersAMD (GLuint monitor, GLboolean enable, GLuint group, GLint numCounters, GLuint *counterList);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10614 GLAPI void APIENTRY glBeginPerfMonitorAMD (GLuint monitor);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10615 GLAPI void APIENTRY glEndPerfMonitorAMD (GLuint monitor);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10616 GLAPI void APIENTRY glGetPerfMonitorCounterDataAMD (GLuint monitor, GLenum pname, GLsizei dataSize, GLuint *data, GLint *bytesWritten);
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10617 #endif /* GL_GLEXT_PROTOTYPES */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10618 typedef void (APIENTRYP PFNGLGETPERFMONITORGROUPSAMDPROC) (GLint *numGroups, GLsizei groupsSize, GLuint *groups);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10619 typedef void (APIENTRYP PFNGLGETPERFMONITORCOUNTERSAMDPROC) (GLuint group, GLint *numCounters, GLint *maxActiveCounters, GLsizei counterSize, GLuint *counters);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10620 typedef void (APIENTRYP PFNGLGETPERFMONITORGROUPSTRINGAMDPROC) (GLuint group, GLsizei bufSize, GLsizei *length, GLchar *groupString);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10621 typedef void (APIENTRYP PFNGLGETPERFMONITORCOUNTERSTRINGAMDPROC) (GLuint group, GLuint counter, GLsizei bufSize, GLsizei *length, GLchar *counterString);
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10622 typedef void (APIENTRYP PFNGLGETPERFMONITORCOUNTERINFOAMDPROC) (GLuint group, GLuint counter, GLenum pname, GLvoid *data);
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10623 typedef void (APIENTRYP PFNGLGENPERFMONITORSAMDPROC) (GLsizei n, GLuint *monitors);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10624 typedef void (APIENTRYP PFNGLDELETEPERFMONITORSAMDPROC) (GLsizei n, GLuint *monitors);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10625 typedef void (APIENTRYP PFNGLSELECTPERFMONITORCOUNTERSAMDPROC) (GLuint monitor, GLboolean enable, GLuint group, GLint numCounters, GLuint *counterList);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10626 typedef void (APIENTRYP PFNGLBEGINPERFMONITORAMDPROC) (GLuint monitor);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10627 typedef void (APIENTRYP PFNGLENDPERFMONITORAMDPROC) (GLuint monitor);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10628 typedef void (APIENTRYP PFNGLGETPERFMONITORCOUNTERDATAAMDPROC) (GLuint monitor, GLenum pname, GLsizei dataSize, GLuint *data, GLint *bytesWritten);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10629 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10630
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10631 #ifndef GL_AMD_texture_texture4
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10632 #define GL_AMD_texture_texture4 1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10633 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10634
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10635 #ifndef GL_AMD_vertex_shader_tesselator
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10636 #define GL_AMD_vertex_shader_tesselator 1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10637 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10638 GLAPI void APIENTRY glTessellationFactorAMD (GLfloat factor);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10639 GLAPI void APIENTRY glTessellationModeAMD (GLenum mode);
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10640 #endif /* GL_GLEXT_PROTOTYPES */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10641 typedef void (APIENTRYP PFNGLTESSELLATIONFACTORAMDPROC) (GLfloat factor);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10642 typedef void (APIENTRYP PFNGLTESSELLATIONMODEAMDPROC) (GLenum mode);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10643 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10644
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10645 #ifndef GL_EXT_provoking_vertex
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10646 #define GL_EXT_provoking_vertex 1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10647 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10648 GLAPI void APIENTRY glProvokingVertexEXT (GLenum mode);
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10649 #endif /* GL_GLEXT_PROTOTYPES */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10650 typedef void (APIENTRYP PFNGLPROVOKINGVERTEXEXTPROC) (GLenum mode);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10651 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10652
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10653 #ifndef GL_EXT_texture_snorm
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10654 #define GL_EXT_texture_snorm 1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10655 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10656
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10657 #ifndef GL_AMD_draw_buffers_blend
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10658 #define GL_AMD_draw_buffers_blend 1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10659 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10660 GLAPI void APIENTRY glBlendFuncIndexedAMD (GLuint buf, GLenum src, GLenum dst);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10661 GLAPI void APIENTRY glBlendFuncSeparateIndexedAMD (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10662 GLAPI void APIENTRY glBlendEquationIndexedAMD (GLuint buf, GLenum mode);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10663 GLAPI void APIENTRY glBlendEquationSeparateIndexedAMD (GLuint buf, GLenum modeRGB, GLenum modeAlpha);
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10664 #endif /* GL_GLEXT_PROTOTYPES */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10665 typedef void (APIENTRYP PFNGLBLENDFUNCINDEXEDAMDPROC) (GLuint buf, GLenum src, GLenum dst);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10666 typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEINDEXEDAMDPROC) (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10667 typedef void (APIENTRYP PFNGLBLENDEQUATIONINDEXEDAMDPROC) (GLuint buf, GLenum mode);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10668 typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEINDEXEDAMDPROC) (GLuint buf, GLenum modeRGB, GLenum modeAlpha);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10669 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10670
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10671 #ifndef GL_APPLE_texture_range
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10672 #define GL_APPLE_texture_range 1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10673 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10674 GLAPI void APIENTRY glTextureRangeAPPLE (GLenum target, GLsizei length, const GLvoid *pointer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10675 GLAPI void APIENTRY glGetTexParameterPointervAPPLE (GLenum target, GLenum pname, GLvoid* *params);
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10676 #endif /* GL_GLEXT_PROTOTYPES */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10677 typedef void (APIENTRYP PFNGLTEXTURERANGEAPPLEPROC) (GLenum target, GLsizei length, const GLvoid *pointer);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10678 typedef void (APIENTRYP PFNGLGETTEXPARAMETERPOINTERVAPPLEPROC) (GLenum target, GLenum pname, GLvoid* *params);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10679 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10680
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10681 #ifndef GL_APPLE_float_pixels
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10682 #define GL_APPLE_float_pixels 1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10683 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10684
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10685 #ifndef GL_APPLE_vertex_program_evaluators
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10686 #define GL_APPLE_vertex_program_evaluators 1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10687 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10688 GLAPI void APIENTRY glEnableVertexAttribAPPLE (GLuint index, GLenum pname);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10689 GLAPI void APIENTRY glDisableVertexAttribAPPLE (GLuint index, GLenum pname);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10690 GLAPI GLboolean APIENTRY glIsVertexAttribEnabledAPPLE (GLuint index, GLenum pname);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10691 GLAPI void APIENTRY glMapVertexAttrib1dAPPLE (GLuint index, GLuint size, GLdouble u1, GLdouble u2, GLint stride, GLint order, const GLdouble *points);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10692 GLAPI void APIENTRY glMapVertexAttrib1fAPPLE (GLuint index, GLuint size, GLfloat u1, GLfloat u2, GLint stride, GLint order, const GLfloat *points);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10693 GLAPI void APIENTRY glMapVertexAttrib2dAPPLE (GLuint index, GLuint size, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, const GLdouble *points);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10694 GLAPI void APIENTRY glMapVertexAttrib2fAPPLE (GLuint index, GLuint size, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, const GLfloat *points);
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10695 #endif /* GL_GLEXT_PROTOTYPES */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10696 typedef void (APIENTRYP PFNGLENABLEVERTEXATTRIBAPPLEPROC) (GLuint index, GLenum pname);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10697 typedef void (APIENTRYP PFNGLDISABLEVERTEXATTRIBAPPLEPROC) (GLuint index, GLenum pname);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10698 typedef GLboolean (APIENTRYP PFNGLISVERTEXATTRIBENABLEDAPPLEPROC) (GLuint index, GLenum pname);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10699 typedef void (APIENTRYP PFNGLMAPVERTEXATTRIB1DAPPLEPROC) (GLuint index, GLuint size, GLdouble u1, GLdouble u2, GLint stride, GLint order, const GLdouble *points);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10700 typedef void (APIENTRYP PFNGLMAPVERTEXATTRIB1FAPPLEPROC) (GLuint index, GLuint size, GLfloat u1, GLfloat u2, GLint stride, GLint order, const GLfloat *points);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10701 typedef void (APIENTRYP PFNGLMAPVERTEXATTRIB2DAPPLEPROC) (GLuint index, GLuint size, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, const GLdouble *points);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10702 typedef void (APIENTRYP PFNGLMAPVERTEXATTRIB2FAPPLEPROC) (GLuint index, GLuint size, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, const GLfloat *points);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10703 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10704
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10705 #ifndef GL_APPLE_aux_depth_stencil
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10706 #define GL_APPLE_aux_depth_stencil 1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10707 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10708
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10709 #ifndef GL_APPLE_object_purgeable
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10710 #define GL_APPLE_object_purgeable 1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10711 #ifdef GL_GLEXT_PROTOTYPES
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10712 GLAPI GLenum APIENTRY glObjectPurgeableAPPLE (GLenum objectType, GLuint name, GLenum option);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10713 GLAPI GLenum APIENTRY glObjectUnpurgeableAPPLE (GLenum objectType, GLuint name, GLenum option);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10714 GLAPI void APIENTRY glGetObjectParameterivAPPLE (GLenum objectType, GLuint name, GLenum pname, GLint *params);
3240
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10715 #endif /* GL_GLEXT_PROTOTYPES */
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10716 typedef GLenum (APIENTRYP PFNGLOBJECTPURGEABLEAPPLEPROC) (GLenum objectType, GLuint name, GLenum option);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10717 typedef GLenum (APIENTRYP PFNGLOBJECTUNPURGEABLEAPPLEPROC) (GLenum objectType, GLuint name, GLenum option);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10718 typedef void (APIENTRYP PFNGLGETOBJECTPARAMETERIVAPPLEPROC) (GLenum objectType, GLuint name, GLenum pname, GLint *params);
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10719 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10720
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10721 #ifndef GL_APPLE_row_bytes
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10722 #define GL_APPLE_row_bytes 1
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10723 #endif
6c4736b446e8 Updated glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 2859
diff changeset
10724
4634
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10725 #ifndef GL_APPLE_rgb_422
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10726 #define GL_APPLE_rgb_422 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10727 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10728
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10729 #ifndef GL_NV_video_capture
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10730 #define GL_NV_video_capture 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10731 #ifdef GL_GLEXT_PROTOTYPES
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10732 GLAPI void APIENTRY glBeginVideoCaptureNV (GLuint video_capture_slot);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10733 GLAPI void APIENTRY glBindVideoCaptureStreamBufferNV (GLuint video_capture_slot, GLuint stream, GLenum frame_region, GLintptrARB offset);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10734 GLAPI void APIENTRY glBindVideoCaptureStreamTextureNV (GLuint video_capture_slot, GLuint stream, GLenum frame_region, GLenum target, GLuint texture);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10735 GLAPI void APIENTRY glEndVideoCaptureNV (GLuint video_capture_slot);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10736 GLAPI void APIENTRY glGetVideoCaptureivNV (GLuint video_capture_slot, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10737 GLAPI void APIENTRY glGetVideoCaptureStreamivNV (GLuint video_capture_slot, GLuint stream, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10738 GLAPI void APIENTRY glGetVideoCaptureStreamfvNV (GLuint video_capture_slot, GLuint stream, GLenum pname, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10739 GLAPI void APIENTRY glGetVideoCaptureStreamdvNV (GLuint video_capture_slot, GLuint stream, GLenum pname, GLdouble *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10740 GLAPI GLenum APIENTRY glVideoCaptureNV (GLuint video_capture_slot, GLuint *sequence_num, GLuint64EXT *capture_time);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10741 GLAPI void APIENTRY glVideoCaptureStreamParameterivNV (GLuint video_capture_slot, GLuint stream, GLenum pname, const GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10742 GLAPI void APIENTRY glVideoCaptureStreamParameterfvNV (GLuint video_capture_slot, GLuint stream, GLenum pname, const GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10743 GLAPI void APIENTRY glVideoCaptureStreamParameterdvNV (GLuint video_capture_slot, GLuint stream, GLenum pname, const GLdouble *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10744 #endif /* GL_GLEXT_PROTOTYPES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10745 typedef void (APIENTRYP PFNGLBEGINVIDEOCAPTURENVPROC) (GLuint video_capture_slot);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10746 typedef void (APIENTRYP PFNGLBINDVIDEOCAPTURESTREAMBUFFERNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum frame_region, GLintptrARB offset);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10747 typedef void (APIENTRYP PFNGLBINDVIDEOCAPTURESTREAMTEXTURENVPROC) (GLuint video_capture_slot, GLuint stream, GLenum frame_region, GLenum target, GLuint texture);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10748 typedef void (APIENTRYP PFNGLENDVIDEOCAPTURENVPROC) (GLuint video_capture_slot);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10749 typedef void (APIENTRYP PFNGLGETVIDEOCAPTUREIVNVPROC) (GLuint video_capture_slot, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10750 typedef void (APIENTRYP PFNGLGETVIDEOCAPTURESTREAMIVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10751 typedef void (APIENTRYP PFNGLGETVIDEOCAPTURESTREAMFVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10752 typedef void (APIENTRYP PFNGLGETVIDEOCAPTURESTREAMDVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, GLdouble *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10753 typedef GLenum (APIENTRYP PFNGLVIDEOCAPTURENVPROC) (GLuint video_capture_slot, GLuint *sequence_num, GLuint64EXT *capture_time);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10754 typedef void (APIENTRYP PFNGLVIDEOCAPTURESTREAMPARAMETERIVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, const GLint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10755 typedef void (APIENTRYP PFNGLVIDEOCAPTURESTREAMPARAMETERFVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, const GLfloat *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10756 typedef void (APIENTRYP PFNGLVIDEOCAPTURESTREAMPARAMETERDVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, const GLdouble *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10757 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10758
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10759 #ifndef GL_NV_copy_image
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10760 #define GL_NV_copy_image 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10761 #ifdef GL_GLEXT_PROTOTYPES
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10762 GLAPI void APIENTRY glCopyImageSubDataNV (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10763 #endif /* GL_GLEXT_PROTOTYPES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10764 typedef void (APIENTRYP PFNGLCOPYIMAGESUBDATANVPROC) (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10765 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10766
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10767 #ifndef GL_EXT_separate_shader_objects
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10768 #define GL_EXT_separate_shader_objects 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10769 #ifdef GL_GLEXT_PROTOTYPES
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10770 GLAPI void APIENTRY glUseShaderProgramEXT (GLenum type, GLuint program);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10771 GLAPI void APIENTRY glActiveProgramEXT (GLuint program);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10772 GLAPI GLuint APIENTRY glCreateShaderProgramEXT (GLenum type, const GLchar *string);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10773 #endif /* GL_GLEXT_PROTOTYPES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10774 typedef void (APIENTRYP PFNGLUSESHADERPROGRAMEXTPROC) (GLenum type, GLuint program);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10775 typedef void (APIENTRYP PFNGLACTIVEPROGRAMEXTPROC) (GLuint program);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10776 typedef GLuint (APIENTRYP PFNGLCREATESHADERPROGRAMEXTPROC) (GLenum type, const GLchar *string);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10777 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10778
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10779 #ifndef GL_NV_parameter_buffer_object2
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10780 #define GL_NV_parameter_buffer_object2 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10781 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10782
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10783 #ifndef GL_NV_shader_buffer_load
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10784 #define GL_NV_shader_buffer_load 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10785 #ifdef GL_GLEXT_PROTOTYPES
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10786 GLAPI void APIENTRY glMakeBufferResidentNV (GLenum target, GLenum access);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10787 GLAPI void APIENTRY glMakeBufferNonResidentNV (GLenum target);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10788 GLAPI GLboolean APIENTRY glIsBufferResidentNV (GLenum target);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10789 GLAPI void APIENTRY glMakeNamedBufferResidentNV (GLuint buffer, GLenum access);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10790 GLAPI void APIENTRY glMakeNamedBufferNonResidentNV (GLuint buffer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10791 GLAPI GLboolean APIENTRY glIsNamedBufferResidentNV (GLuint buffer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10792 GLAPI void APIENTRY glGetBufferParameterui64vNV (GLenum target, GLenum pname, GLuint64EXT *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10793 GLAPI void APIENTRY glGetNamedBufferParameterui64vNV (GLuint buffer, GLenum pname, GLuint64EXT *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10794 GLAPI void APIENTRY glGetIntegerui64vNV (GLenum value, GLuint64EXT *result);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10795 GLAPI void APIENTRY glUniformui64NV (GLint location, GLuint64EXT value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10796 GLAPI void APIENTRY glUniformui64vNV (GLint location, GLsizei count, const GLuint64EXT *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10797 GLAPI void APIENTRY glGetUniformui64vNV (GLuint program, GLint location, GLuint64EXT *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10798 GLAPI void APIENTRY glProgramUniformui64NV (GLuint program, GLint location, GLuint64EXT value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10799 GLAPI void APIENTRY glProgramUniformui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10800 #endif /* GL_GLEXT_PROTOTYPES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10801 typedef void (APIENTRYP PFNGLMAKEBUFFERRESIDENTNVPROC) (GLenum target, GLenum access);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10802 typedef void (APIENTRYP PFNGLMAKEBUFFERNONRESIDENTNVPROC) (GLenum target);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10803 typedef GLboolean (APIENTRYP PFNGLISBUFFERRESIDENTNVPROC) (GLenum target);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10804 typedef void (APIENTRYP PFNGLMAKENAMEDBUFFERRESIDENTNVPROC) (GLuint buffer, GLenum access);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10805 typedef void (APIENTRYP PFNGLMAKENAMEDBUFFERNONRESIDENTNVPROC) (GLuint buffer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10806 typedef GLboolean (APIENTRYP PFNGLISNAMEDBUFFERRESIDENTNVPROC) (GLuint buffer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10807 typedef void (APIENTRYP PFNGLGETBUFFERPARAMETERUI64VNVPROC) (GLenum target, GLenum pname, GLuint64EXT *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10808 typedef void (APIENTRYP PFNGLGETNAMEDBUFFERPARAMETERUI64VNVPROC) (GLuint buffer, GLenum pname, GLuint64EXT *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10809 typedef void (APIENTRYP PFNGLGETINTEGERUI64VNVPROC) (GLenum value, GLuint64EXT *result);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10810 typedef void (APIENTRYP PFNGLUNIFORMUI64NVPROC) (GLint location, GLuint64EXT value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10811 typedef void (APIENTRYP PFNGLUNIFORMUI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10812 typedef void (APIENTRYP PFNGLGETUNIFORMUI64VNVPROC) (GLuint program, GLint location, GLuint64EXT *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10813 typedef void (APIENTRYP PFNGLPROGRAMUNIFORMUI64NVPROC) (GLuint program, GLint location, GLuint64EXT value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10814 typedef void (APIENTRYP PFNGLPROGRAMUNIFORMUI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10815 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10816
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10817 #ifndef GL_NV_vertex_buffer_unified_memory
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10818 #define GL_NV_vertex_buffer_unified_memory 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10819 #ifdef GL_GLEXT_PROTOTYPES
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10820 GLAPI void APIENTRY glBufferAddressRangeNV (GLenum pname, GLuint index, GLuint64EXT address, GLsizeiptr length);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10821 GLAPI void APIENTRY glVertexFormatNV (GLint size, GLenum type, GLsizei stride);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10822 GLAPI void APIENTRY glNormalFormatNV (GLenum type, GLsizei stride);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10823 GLAPI void APIENTRY glColorFormatNV (GLint size, GLenum type, GLsizei stride);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10824 GLAPI void APIENTRY glIndexFormatNV (GLenum type, GLsizei stride);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10825 GLAPI void APIENTRY glTexCoordFormatNV (GLint size, GLenum type, GLsizei stride);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10826 GLAPI void APIENTRY glEdgeFlagFormatNV (GLsizei stride);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10827 GLAPI void APIENTRY glSecondaryColorFormatNV (GLint size, GLenum type, GLsizei stride);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10828 GLAPI void APIENTRY glFogCoordFormatNV (GLenum type, GLsizei stride);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10829 GLAPI void APIENTRY glVertexAttribFormatNV (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10830 GLAPI void APIENTRY glVertexAttribIFormatNV (GLuint index, GLint size, GLenum type, GLsizei stride);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10831 GLAPI void APIENTRY glGetIntegerui64i_vNV (GLenum value, GLuint index, GLuint64EXT *result);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10832 #endif /* GL_GLEXT_PROTOTYPES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10833 typedef void (APIENTRYP PFNGLBUFFERADDRESSRANGENVPROC) (GLenum pname, GLuint index, GLuint64EXT address, GLsizeiptr length);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10834 typedef void (APIENTRYP PFNGLVERTEXFORMATNVPROC) (GLint size, GLenum type, GLsizei stride);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10835 typedef void (APIENTRYP PFNGLNORMALFORMATNVPROC) (GLenum type, GLsizei stride);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10836 typedef void (APIENTRYP PFNGLCOLORFORMATNVPROC) (GLint size, GLenum type, GLsizei stride);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10837 typedef void (APIENTRYP PFNGLINDEXFORMATNVPROC) (GLenum type, GLsizei stride);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10838 typedef void (APIENTRYP PFNGLTEXCOORDFORMATNVPROC) (GLint size, GLenum type, GLsizei stride);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10839 typedef void (APIENTRYP PFNGLEDGEFLAGFORMATNVPROC) (GLsizei stride);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10840 typedef void (APIENTRYP PFNGLSECONDARYCOLORFORMATNVPROC) (GLint size, GLenum type, GLsizei stride);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10841 typedef void (APIENTRYP PFNGLFOGCOORDFORMATNVPROC) (GLenum type, GLsizei stride);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10842 typedef void (APIENTRYP PFNGLVERTEXATTRIBFORMATNVPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10843 typedef void (APIENTRYP PFNGLVERTEXATTRIBIFORMATNVPROC) (GLuint index, GLint size, GLenum type, GLsizei stride);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10844 typedef void (APIENTRYP PFNGLGETINTEGERUI64I_VNVPROC) (GLenum value, GLuint index, GLuint64EXT *result);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10845 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10846
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10847 #ifndef GL_NV_texture_barrier
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10848 #define GL_NV_texture_barrier 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10849 #ifdef GL_GLEXT_PROTOTYPES
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10850 GLAPI void APIENTRY glTextureBarrierNV (void);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10851 #endif /* GL_GLEXT_PROTOTYPES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10852 typedef void (APIENTRYP PFNGLTEXTUREBARRIERNVPROC) (void);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10853 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10854
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10855 #ifndef GL_AMD_shader_stencil_export
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10856 #define GL_AMD_shader_stencil_export 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10857 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10858
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10859 #ifndef GL_AMD_seamless_cubemap_per_texture
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10860 #define GL_AMD_seamless_cubemap_per_texture 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10861 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10862
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10863 #ifndef GL_AMD_conservative_depth
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10864 #define GL_AMD_conservative_depth 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10865 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10866
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10867 #ifndef GL_EXT_shader_image_load_store
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10868 #define GL_EXT_shader_image_load_store 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10869 #ifdef GL_GLEXT_PROTOTYPES
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10870 GLAPI void APIENTRY glBindImageTextureEXT (GLuint index, GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum access, GLint format);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10871 GLAPI void APIENTRY glMemoryBarrierEXT (GLbitfield barriers);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10872 #endif /* GL_GLEXT_PROTOTYPES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10873 typedef void (APIENTRYP PFNGLBINDIMAGETEXTUREEXTPROC) (GLuint index, GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum access, GLint format);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10874 typedef void (APIENTRYP PFNGLMEMORYBARRIEREXTPROC) (GLbitfield barriers);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10875 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10876
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10877 #ifndef GL_EXT_vertex_attrib_64bit
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10878 #define GL_EXT_vertex_attrib_64bit 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10879 #ifdef GL_GLEXT_PROTOTYPES
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10880 GLAPI void APIENTRY glVertexAttribL1dEXT (GLuint index, GLdouble x);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10881 GLAPI void APIENTRY glVertexAttribL2dEXT (GLuint index, GLdouble x, GLdouble y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10882 GLAPI void APIENTRY glVertexAttribL3dEXT (GLuint index, GLdouble x, GLdouble y, GLdouble z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10883 GLAPI void APIENTRY glVertexAttribL4dEXT (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10884 GLAPI void APIENTRY glVertexAttribL1dvEXT (GLuint index, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10885 GLAPI void APIENTRY glVertexAttribL2dvEXT (GLuint index, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10886 GLAPI void APIENTRY glVertexAttribL3dvEXT (GLuint index, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10887 GLAPI void APIENTRY glVertexAttribL4dvEXT (GLuint index, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10888 GLAPI void APIENTRY glVertexAttribLPointerEXT (GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10889 GLAPI void APIENTRY glGetVertexAttribLdvEXT (GLuint index, GLenum pname, GLdouble *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10890 GLAPI void APIENTRY glVertexArrayVertexAttribLOffsetEXT (GLuint vaobj, GLuint buffer, GLuint index, GLint size, GLenum type, GLsizei stride, GLintptr offset);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10891 #endif /* GL_GLEXT_PROTOTYPES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10892 typedef void (APIENTRYP PFNGLVERTEXATTRIBL1DEXTPROC) (GLuint index, GLdouble x);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10893 typedef void (APIENTRYP PFNGLVERTEXATTRIBL2DEXTPROC) (GLuint index, GLdouble x, GLdouble y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10894 typedef void (APIENTRYP PFNGLVERTEXATTRIBL3DEXTPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10895 typedef void (APIENTRYP PFNGLVERTEXATTRIBL4DEXTPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10896 typedef void (APIENTRYP PFNGLVERTEXATTRIBL1DVEXTPROC) (GLuint index, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10897 typedef void (APIENTRYP PFNGLVERTEXATTRIBL2DVEXTPROC) (GLuint index, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10898 typedef void (APIENTRYP PFNGLVERTEXATTRIBL3DVEXTPROC) (GLuint index, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10899 typedef void (APIENTRYP PFNGLVERTEXATTRIBL4DVEXTPROC) (GLuint index, const GLdouble *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10900 typedef void (APIENTRYP PFNGLVERTEXATTRIBLPOINTEREXTPROC) (GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10901 typedef void (APIENTRYP PFNGLGETVERTEXATTRIBLDVEXTPROC) (GLuint index, GLenum pname, GLdouble *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10902 typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBLOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLuint index, GLint size, GLenum type, GLsizei stride, GLintptr offset);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10903 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10904
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10905 #ifndef GL_NV_gpu_program5
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10906 #define GL_NV_gpu_program5 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10907 #ifdef GL_GLEXT_PROTOTYPES
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10908 GLAPI void APIENTRY glProgramSubroutineParametersuivNV (GLenum target, GLsizei count, const GLuint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10909 GLAPI void APIENTRY glGetProgramSubroutineParameteruivNV (GLenum target, GLuint index, GLuint *param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10910 #endif /* GL_GLEXT_PROTOTYPES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10911 typedef void (APIENTRYP PFNGLPROGRAMSUBROUTINEPARAMETERSUIVNVPROC) (GLenum target, GLsizei count, const GLuint *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10912 typedef void (APIENTRYP PFNGLGETPROGRAMSUBROUTINEPARAMETERUIVNVPROC) (GLenum target, GLuint index, GLuint *param);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10913 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10914
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10915 #ifndef GL_NV_gpu_shader5
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10916 #define GL_NV_gpu_shader5 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10917 #ifdef GL_GLEXT_PROTOTYPES
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10918 GLAPI void APIENTRY glUniform1i64NV (GLint location, GLint64EXT x);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10919 GLAPI void APIENTRY glUniform2i64NV (GLint location, GLint64EXT x, GLint64EXT y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10920 GLAPI void APIENTRY glUniform3i64NV (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10921 GLAPI void APIENTRY glUniform4i64NV (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10922 GLAPI void APIENTRY glUniform1i64vNV (GLint location, GLsizei count, const GLint64EXT *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10923 GLAPI void APIENTRY glUniform2i64vNV (GLint location, GLsizei count, const GLint64EXT *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10924 GLAPI void APIENTRY glUniform3i64vNV (GLint location, GLsizei count, const GLint64EXT *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10925 GLAPI void APIENTRY glUniform4i64vNV (GLint location, GLsizei count, const GLint64EXT *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10926 GLAPI void APIENTRY glUniform1ui64NV (GLint location, GLuint64EXT x);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10927 GLAPI void APIENTRY glUniform2ui64NV (GLint location, GLuint64EXT x, GLuint64EXT y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10928 GLAPI void APIENTRY glUniform3ui64NV (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10929 GLAPI void APIENTRY glUniform4ui64NV (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10930 GLAPI void APIENTRY glUniform1ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10931 GLAPI void APIENTRY glUniform2ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10932 GLAPI void APIENTRY glUniform3ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10933 GLAPI void APIENTRY glUniform4ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10934 GLAPI void APIENTRY glGetUniformi64vNV (GLuint program, GLint location, GLint64EXT *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10935 GLAPI void APIENTRY glProgramUniform1i64NV (GLuint program, GLint location, GLint64EXT x);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10936 GLAPI void APIENTRY glProgramUniform2i64NV (GLuint program, GLint location, GLint64EXT x, GLint64EXT y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10937 GLAPI void APIENTRY glProgramUniform3i64NV (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10938 GLAPI void APIENTRY glProgramUniform4i64NV (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10939 GLAPI void APIENTRY glProgramUniform1i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10940 GLAPI void APIENTRY glProgramUniform2i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10941 GLAPI void APIENTRY glProgramUniform3i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10942 GLAPI void APIENTRY glProgramUniform4i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10943 GLAPI void APIENTRY glProgramUniform1ui64NV (GLuint program, GLint location, GLuint64EXT x);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10944 GLAPI void APIENTRY glProgramUniform2ui64NV (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10945 GLAPI void APIENTRY glProgramUniform3ui64NV (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10946 GLAPI void APIENTRY glProgramUniform4ui64NV (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10947 GLAPI void APIENTRY glProgramUniform1ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10948 GLAPI void APIENTRY glProgramUniform2ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10949 GLAPI void APIENTRY glProgramUniform3ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10950 GLAPI void APIENTRY glProgramUniform4ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10951 #endif /* GL_GLEXT_PROTOTYPES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10952 typedef void (APIENTRYP PFNGLUNIFORM1I64NVPROC) (GLint location, GLint64EXT x);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10953 typedef void (APIENTRYP PFNGLUNIFORM2I64NVPROC) (GLint location, GLint64EXT x, GLint64EXT y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10954 typedef void (APIENTRYP PFNGLUNIFORM3I64NVPROC) (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10955 typedef void (APIENTRYP PFNGLUNIFORM4I64NVPROC) (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10956 typedef void (APIENTRYP PFNGLUNIFORM1I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10957 typedef void (APIENTRYP PFNGLUNIFORM2I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10958 typedef void (APIENTRYP PFNGLUNIFORM3I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10959 typedef void (APIENTRYP PFNGLUNIFORM4I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10960 typedef void (APIENTRYP PFNGLUNIFORM1UI64NVPROC) (GLint location, GLuint64EXT x);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10961 typedef void (APIENTRYP PFNGLUNIFORM2UI64NVPROC) (GLint location, GLuint64EXT x, GLuint64EXT y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10962 typedef void (APIENTRYP PFNGLUNIFORM3UI64NVPROC) (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10963 typedef void (APIENTRYP PFNGLUNIFORM4UI64NVPROC) (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10964 typedef void (APIENTRYP PFNGLUNIFORM1UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10965 typedef void (APIENTRYP PFNGLUNIFORM2UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10966 typedef void (APIENTRYP PFNGLUNIFORM3UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10967 typedef void (APIENTRYP PFNGLUNIFORM4UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10968 typedef void (APIENTRYP PFNGLGETUNIFORMI64VNVPROC) (GLuint program, GLint location, GLint64EXT *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10969 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1I64NVPROC) (GLuint program, GLint location, GLint64EXT x);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10970 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2I64NVPROC) (GLuint program, GLint location, GLint64EXT x, GLint64EXT y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10971 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3I64NVPROC) (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10972 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4I64NVPROC) (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10973 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10974 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10975 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10976 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10977 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10978 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10979 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10980 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10981 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10982 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10983 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10984 typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10985 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10986
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10987 #ifndef GL_NV_shader_buffer_store
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10988 #define GL_NV_shader_buffer_store 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10989 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10990
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10991 #ifndef GL_NV_tessellation_program5
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10992 #define GL_NV_tessellation_program5 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10993 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10994
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10995 #ifndef GL_NV_vertex_attrib_integer_64bit
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10996 #define GL_NV_vertex_attrib_integer_64bit 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10997 #ifdef GL_GLEXT_PROTOTYPES
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10998 GLAPI void APIENTRY glVertexAttribL1i64NV (GLuint index, GLint64EXT x);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
10999 GLAPI void APIENTRY glVertexAttribL2i64NV (GLuint index, GLint64EXT x, GLint64EXT y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11000 GLAPI void APIENTRY glVertexAttribL3i64NV (GLuint index, GLint64EXT x, GLint64EXT y, GLint64EXT z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11001 GLAPI void APIENTRY glVertexAttribL4i64NV (GLuint index, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11002 GLAPI void APIENTRY glVertexAttribL1i64vNV (GLuint index, const GLint64EXT *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11003 GLAPI void APIENTRY glVertexAttribL2i64vNV (GLuint index, const GLint64EXT *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11004 GLAPI void APIENTRY glVertexAttribL3i64vNV (GLuint index, const GLint64EXT *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11005 GLAPI void APIENTRY glVertexAttribL4i64vNV (GLuint index, const GLint64EXT *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11006 GLAPI void APIENTRY glVertexAttribL1ui64NV (GLuint index, GLuint64EXT x);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11007 GLAPI void APIENTRY glVertexAttribL2ui64NV (GLuint index, GLuint64EXT x, GLuint64EXT y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11008 GLAPI void APIENTRY glVertexAttribL3ui64NV (GLuint index, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11009 GLAPI void APIENTRY glVertexAttribL4ui64NV (GLuint index, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11010 GLAPI void APIENTRY glVertexAttribL1ui64vNV (GLuint index, const GLuint64EXT *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11011 GLAPI void APIENTRY glVertexAttribL2ui64vNV (GLuint index, const GLuint64EXT *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11012 GLAPI void APIENTRY glVertexAttribL3ui64vNV (GLuint index, const GLuint64EXT *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11013 GLAPI void APIENTRY glVertexAttribL4ui64vNV (GLuint index, const GLuint64EXT *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11014 GLAPI void APIENTRY glGetVertexAttribLi64vNV (GLuint index, GLenum pname, GLint64EXT *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11015 GLAPI void APIENTRY glGetVertexAttribLui64vNV (GLuint index, GLenum pname, GLuint64EXT *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11016 GLAPI void APIENTRY glVertexAttribLFormatNV (GLuint index, GLint size, GLenum type, GLsizei stride);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11017 #endif /* GL_GLEXT_PROTOTYPES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11018 typedef void (APIENTRYP PFNGLVERTEXATTRIBL1I64NVPROC) (GLuint index, GLint64EXT x);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11019 typedef void (APIENTRYP PFNGLVERTEXATTRIBL2I64NVPROC) (GLuint index, GLint64EXT x, GLint64EXT y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11020 typedef void (APIENTRYP PFNGLVERTEXATTRIBL3I64NVPROC) (GLuint index, GLint64EXT x, GLint64EXT y, GLint64EXT z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11021 typedef void (APIENTRYP PFNGLVERTEXATTRIBL4I64NVPROC) (GLuint index, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11022 typedef void (APIENTRYP PFNGLVERTEXATTRIBL1I64VNVPROC) (GLuint index, const GLint64EXT *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11023 typedef void (APIENTRYP PFNGLVERTEXATTRIBL2I64VNVPROC) (GLuint index, const GLint64EXT *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11024 typedef void (APIENTRYP PFNGLVERTEXATTRIBL3I64VNVPROC) (GLuint index, const GLint64EXT *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11025 typedef void (APIENTRYP PFNGLVERTEXATTRIBL4I64VNVPROC) (GLuint index, const GLint64EXT *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11026 typedef void (APIENTRYP PFNGLVERTEXATTRIBL1UI64NVPROC) (GLuint index, GLuint64EXT x);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11027 typedef void (APIENTRYP PFNGLVERTEXATTRIBL2UI64NVPROC) (GLuint index, GLuint64EXT x, GLuint64EXT y);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11028 typedef void (APIENTRYP PFNGLVERTEXATTRIBL3UI64NVPROC) (GLuint index, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11029 typedef void (APIENTRYP PFNGLVERTEXATTRIBL4UI64NVPROC) (GLuint index, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11030 typedef void (APIENTRYP PFNGLVERTEXATTRIBL1UI64VNVPROC) (GLuint index, const GLuint64EXT *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11031 typedef void (APIENTRYP PFNGLVERTEXATTRIBL2UI64VNVPROC) (GLuint index, const GLuint64EXT *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11032 typedef void (APIENTRYP PFNGLVERTEXATTRIBL3UI64VNVPROC) (GLuint index, const GLuint64EXT *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11033 typedef void (APIENTRYP PFNGLVERTEXATTRIBL4UI64VNVPROC) (GLuint index, const GLuint64EXT *v);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11034 typedef void (APIENTRYP PFNGLGETVERTEXATTRIBLI64VNVPROC) (GLuint index, GLenum pname, GLint64EXT *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11035 typedef void (APIENTRYP PFNGLGETVERTEXATTRIBLUI64VNVPROC) (GLuint index, GLenum pname, GLuint64EXT *params);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11036 typedef void (APIENTRYP PFNGLVERTEXATTRIBLFORMATNVPROC) (GLuint index, GLint size, GLenum type, GLsizei stride);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11037 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11038
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11039 #ifndef GL_NV_multisample_coverage
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11040 #define GL_NV_multisample_coverage 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11041 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11042
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11043 #ifndef GL_AMD_name_gen_delete
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11044 #define GL_AMD_name_gen_delete 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11045 #ifdef GL_GLEXT_PROTOTYPES
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11046 GLAPI void APIENTRY glGenNamesAMD (GLenum identifier, GLuint num, GLuint *names);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11047 GLAPI void APIENTRY glDeleteNamesAMD (GLenum identifier, GLuint num, const GLuint *names);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11048 GLAPI GLboolean APIENTRY glIsNameAMD (GLenum identifier, GLuint name);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11049 #endif /* GL_GLEXT_PROTOTYPES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11050 typedef void (APIENTRYP PFNGLGENNAMESAMDPROC) (GLenum identifier, GLuint num, GLuint *names);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11051 typedef void (APIENTRYP PFNGLDELETENAMESAMDPROC) (GLenum identifier, GLuint num, const GLuint *names);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11052 typedef GLboolean (APIENTRYP PFNGLISNAMEAMDPROC) (GLenum identifier, GLuint name);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11053 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11054
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11055 #ifndef GL_AMD_debug_output
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11056 #define GL_AMD_debug_output 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11057 #ifdef GL_GLEXT_PROTOTYPES
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11058 GLAPI void APIENTRY glDebugMessageEnableAMD (GLenum category, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11059 GLAPI void APIENTRY glDebugMessageInsertAMD (GLenum category, GLenum severity, GLuint id, GLsizei length, const GLchar *buf);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11060 GLAPI void APIENTRY glDebugMessageCallbackAMD (GLDEBUGPROCAMD callback, GLvoid *userParam);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11061 GLAPI GLuint APIENTRY glGetDebugMessageLogAMD (GLuint count, GLsizei bufsize, GLenum *categories, GLuint *severities, GLuint *ids, GLsizei *lengths, GLchar *message);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11062 #endif /* GL_GLEXT_PROTOTYPES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11063 typedef void (APIENTRYP PFNGLDEBUGMESSAGEENABLEAMDPROC) (GLenum category, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11064 typedef void (APIENTRYP PFNGLDEBUGMESSAGEINSERTAMDPROC) (GLenum category, GLenum severity, GLuint id, GLsizei length, const GLchar *buf);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11065 typedef void (APIENTRYP PFNGLDEBUGMESSAGECALLBACKAMDPROC) (GLDEBUGPROCAMD callback, GLvoid *userParam);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11066 typedef GLuint (APIENTRYP PFNGLGETDEBUGMESSAGELOGAMDPROC) (GLuint count, GLsizei bufsize, GLenum *categories, GLuint *severities, GLuint *ids, GLsizei *lengths, GLchar *message);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11067 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11068
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11069 #ifndef GL_NV_vdpau_interop
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11070 #define GL_NV_vdpau_interop 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11071 #ifdef GL_GLEXT_PROTOTYPES
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11072 GLAPI void APIENTRY glVDPAUInitNV (const GLvoid *vdpDevice, const GLvoid *getProcAddress);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11073 GLAPI void APIENTRY glVDPAUFiniNV (void);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11074 GLAPI GLvdpauSurfaceNV APIENTRY glVDPAURegisterVideoSurfaceNV (GLvoid *vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint *textureNames);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11075 GLAPI GLvdpauSurfaceNV APIENTRY glVDPAURegisterOutputSurfaceNV (GLvoid *vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint *textureNames);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11076 GLAPI void APIENTRY glVDPAUIsSurfaceNV (GLvdpauSurfaceNV surface);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11077 GLAPI void APIENTRY glVDPAUUnregisterSurfaceNV (GLvdpauSurfaceNV surface);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11078 GLAPI void APIENTRY glVDPAUGetSurfaceivNV (GLvdpauSurfaceNV surface, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *values);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11079 GLAPI void APIENTRY glVDPAUSurfaceAccessNV (GLvdpauSurfaceNV surface, GLenum access);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11080 GLAPI void APIENTRY glVDPAUMapSurfacesNV (GLsizei numSurfaces, const GLvdpauSurfaceNV *surfaces);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11081 GLAPI void APIENTRY glVDPAUUnmapSurfacesNV (GLsizei numSurface, const GLvdpauSurfaceNV *surfaces);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11082 #endif /* GL_GLEXT_PROTOTYPES */
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11083 typedef void (APIENTRYP PFNGLVDPAUINITNVPROC) (const GLvoid *vdpDevice, const GLvoid *getProcAddress);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11084 typedef void (APIENTRYP PFNGLVDPAUFININVPROC) (void);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11085 typedef GLvdpauSurfaceNV (APIENTRYP PFNGLVDPAUREGISTERVIDEOSURFACENVPROC) (GLvoid *vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint *textureNames);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11086 typedef GLvdpauSurfaceNV (APIENTRYP PFNGLVDPAUREGISTEROUTPUTSURFACENVPROC) (GLvoid *vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint *textureNames);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11087 typedef void (APIENTRYP PFNGLVDPAUISSURFACENVPROC) (GLvdpauSurfaceNV surface);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11088 typedef void (APIENTRYP PFNGLVDPAUUNREGISTERSURFACENVPROC) (GLvdpauSurfaceNV surface);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11089 typedef void (APIENTRYP PFNGLVDPAUGETSURFACEIVNVPROC) (GLvdpauSurfaceNV surface, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *values);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11090 typedef void (APIENTRYP PFNGLVDPAUSURFACEACCESSNVPROC) (GLvdpauSurfaceNV surface, GLenum access);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11091 typedef void (APIENTRYP PFNGLVDPAUMAPSURFACESNVPROC) (GLsizei numSurfaces, const GLvdpauSurfaceNV *surfaces);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11092 typedef void (APIENTRYP PFNGLVDPAUUNMAPSURFACESNVPROC) (GLsizei numSurface, const GLvdpauSurfaceNV *surfaces);
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11093 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11094
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11095 #ifndef GL_AMD_transform_feedback3_lines_triangles
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11096 #define GL_AMD_transform_feedback3_lines_triangles 1
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11097 #endif
242c805baf68 Updated with the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 3697
diff changeset
11098
214
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
11099
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
11100 #ifdef __cplusplus
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
11101 }
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
11102 #endif
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
11103
843
748f441d7d9f Updated SDL_opengl.h to include the latest version of glext.h
Sam Lantinga <slouken@libsdl.org>
parents: 769
diff changeset
11104 #endif
1895
c121d94672cb SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents: 1619
diff changeset
11105 /* *INDENT-ON* */
214
0e5d6dd77bda Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
11106 #endif /* NO_SDL_GLEXT */
3241
08c5964f2a34 Fixed a few issues compiling with Mac OS X 10.6
Sam Lantinga <slouken@libsdl.org>
parents: 3240
diff changeset
11107
08c5964f2a34 Fixed a few issues compiling with Mac OS X 10.6
Sam Lantinga <slouken@libsdl.org>
parents: 3240
diff changeset
11108 #endif /* _SDL_opengl_h */
08c5964f2a34 Fixed a few issues compiling with Mac OS X 10.6
Sam Lantinga <slouken@libsdl.org>
parents: 3240
diff changeset
11109
08c5964f2a34 Fixed a few issues compiling with Mac OS X 10.6
Sam Lantinga <slouken@libsdl.org>
parents: 3240
diff changeset
11110 /* vi: set ts=4 sw=4 expandtab: */