blob: 24a023e207eb2a9d30e1cf0f422d3e785461af07 [file] [log] [blame]
Brian Paul67661b01999-12-15 12:52:31 +00001/* $Id: glapitable.h,v 1.4 1999/12/15 12:52:31 brianp Exp $ */
Brian Paul1210b0d1999-11-25 18:16:13 +00002
3/*
4 * Mesa 3-D graphics library
5 * Version: 3.3
6 *
7 * Copyright (C) 1999 Brian Paul All Rights Reserved.
8 *
9 * Permission is hereby granted, free of charge, to any person obtaining a
10 * copy of this software and associated documentation files (the "Software"),
11 * to deal in the Software without restriction, including without limitation
12 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
13 * and/or sell copies of the Software, and to permit persons to whom the
14 * Software is furnished to do so, subject to the following conditions:
15 *
16 * The above copyright notice and this permission notice shall be included
17 * in all copies or substantial portions of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
20 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
23 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
24 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 */
26
27
28/*
29 * This file is not specific to Mesa. It defines a dispatch table
30 * which could be used by any number of OpenGL implementations.
31 * It's designed to be gl.h-independent as well. That is, it does
32 * not depend on any particular extensions being defined in the gl.h
33 * header. We #define extension symbols (like _GLAPI_EXT_blend_color)
34 * to determine which entry points to compile. Clients of this dispatcher
35 * (like Mesa) can #ifdef test these symbols to know how to fill in the
36 * table.
37 */
38
39
40#ifndef _GLAPI_TABLE_H
41#define _GLAPI_TABLE_H
42
43
44#include "GL/gl.h"
45
46
Brian Paul4329fd51999-11-27 21:30:10 +000047#define _GLAPI_EXTRA_SLOTS 1000
48
Brian Paul1210b0d1999-11-25 18:16:13 +000049
50/*
51 * This struct contains pointers for all the GL API entrypoints
52 * plus some reserved slots for dynamic extensions.
53 *
54 */
55struct _glapi_table
56{
57 /*
58 * OpenGL 1.0
59 */
60 void (*Accum)(GLenum, GLfloat);
61 void (*AlphaFunc)(GLenum, GLclampf);
62 void (*Begin)(GLenum);
63 void (*Bitmap)(GLsizei, GLsizei, GLfloat, GLfloat, GLfloat, GLfloat, const GLubyte *);
64 void (*BlendFunc)(GLenum, GLenum);
65 void (*CallList)(GLuint list);
66 void (*CallLists)(GLsizei, GLenum, const GLvoid *);
67 void (*Clear)(GLbitfield);
68 void (*ClearAccum)(GLfloat, GLfloat, GLfloat, GLfloat);
69 void (*ClearColor)(GLclampf, GLclampf, GLclampf, GLclampf);
70 void (*ClearDepth)(GLclampd);
71 void (*ClearIndex)(GLfloat);
72 void (*ClearStencil)(GLint);
73 void (*ClipPlane)(GLenum, const GLdouble *);
74 void (*Color3b)(GLbyte, GLbyte, GLbyte);
75 void (*Color3bv)(const GLbyte *);
76 void (*Color3d)(GLdouble, GLdouble, GLdouble);
77 void (*Color3dv)(const GLdouble *);
78 void (*Color3f)(GLfloat, GLfloat, GLfloat);
79 void (*Color3fv)(const GLfloat *);
80 void (*Color3i)(GLint, GLint, GLint);
81 void (*Color3iv)(const GLint *);
82 void (*Color3s)(GLshort, GLshort, GLshort);
83 void (*Color3sv)(const GLshort *);
84 void (*Color3ub)(GLubyte, GLubyte, GLubyte);
85 void (*Color3ubv)(const GLubyte *);
86 void (*Color3ui)(GLuint, GLuint, GLuint);
87 void (*Color3uiv)(const GLuint *);
88 void (*Color3us)(GLushort, GLushort, GLushort);
89 void (*Color3usv)(const GLushort *);
90 void (*Color4b)(GLbyte, GLbyte, GLbyte, GLbyte);
91 void (*Color4bv)(const GLbyte *);
92 void (*Color4d)(GLdouble, GLdouble, GLdouble, GLdouble);
93 void (*Color4dv)(const GLdouble *);
94 void (*Color4f)(GLfloat, GLfloat, GLfloat, GLfloat);
95 void (*Color4fv)(const GLfloat *);
96 void (*Color4i)(GLint, GLint, GLint, GLint);
97 void (*Color4iv)(const GLint *);
98 void (*Color4s)(GLshort, GLshort, GLshort, GLshort);
99 void (*Color4sv)(const GLshort *);
100 void (*Color4ub)(GLubyte, GLubyte, GLubyte, GLubyte);
101 void (*Color4ubv)(const GLubyte *);
102 void (*Color4ui)(GLuint, GLuint, GLuint, GLuint);
103 void (*Color4uiv)(const GLuint *);
104 void (*Color4us)(GLushort, GLushort, GLushort, GLushort);
105 void (*Color4usv)(const GLushort *);
106 void (*ColorMask)(GLboolean, GLboolean, GLboolean, GLboolean);
107 void (*ColorMaterial)(GLenum, GLenum);
108 void (*CopyPixels)(GLint, GLint, GLsizei, GLsizei, GLenum);
109 void (*CullFace)(GLenum);
110 void (*DeleteLists)(GLuint, GLsizei);
111 void (*DepthFunc)(GLenum);
112 void (*DepthMask)(GLboolean);
113 void (*DepthRange)(GLclampd, GLclampd);
114 void (*Disable)(GLenum);
115 void (*DrawBuffer)(GLenum);
116 void (*DrawPixels)(GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
117 void (*EdgeFlag)(GLboolean);
118 void (*EdgeFlagv)(const GLboolean *);
119 void (*Enable)(GLenum);
120 void (*End)(void);
121 void (*EndList)(void);
122 void (*EvalCoord1d)(GLdouble);
123 void (*EvalCoord1dv)(const GLdouble *);
124 void (*EvalCoord1f)(GLfloat);
125 void (*EvalCoord1fv)(const GLfloat *);
126 void (*EvalCoord2d)(GLdouble u, GLdouble);
127 void (*EvalCoord2dv)(const GLdouble *);
128 void (*EvalCoord2f)(GLfloat u, GLfloat);
129 void (*EvalCoord2fv)(const GLfloat *);
130 void (*EvalMesh1)(GLenum, GLint, GLint);
131 void (*EvalMesh2)(GLenum, GLint, GLint, GLint, GLint);
132 void (*EvalPoint1)(GLint);
133 void (*EvalPoint2)(GLint, GLint);
134 void (*FeedbackBuffer)(GLsizei, GLenum, GLfloat *);
135 void (*Finish)(void);
136 void (*Flush)(void);
137 void (*Fogf)(GLenum, GLfloat);
138 void (*Fogfv)(GLenum, const GLfloat *);
139 void (*Fogi)(GLenum, GLint);
140 void (*Fogiv)(GLenum, const GLint *);
141 void (*FrontFace)(GLenum);
142 void (*Frustum)(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble);
143 GLuint (*GenLists)(GLsizei);
144 void (*GetBooleanv)(GLenum, GLboolean *);
145 void (*GetClipPlane)(GLenum, GLdouble *);
146 void (*GetDoublev)(GLenum, GLdouble *);
147 GLenum (*GetError)(void);
148 void (*GetFloatv)(GLenum, GLfloat *);
149 void (*GetIntegerv)(GLenum, GLint *);
150 void (*GetLightfv)(GLenum light, GLenum, GLfloat *);
151 void (*GetLightiv)(GLenum light, GLenum, GLint *);
152 void (*GetMapdv)(GLenum, GLenum, GLdouble *);
153 void (*GetMapfv)(GLenum, GLenum, GLfloat *);
154 void (*GetMapiv)(GLenum, GLenum, GLint *);
155 void (*GetMaterialfv)(GLenum, GLenum, GLfloat *);
156 void (*GetMaterialiv)(GLenum, GLenum, GLint *);
157 void (*GetPixelMapfv)(GLenum, GLfloat *);
158 void (*GetPixelMapuiv)(GLenum, GLuint *);
159 void (*GetPixelMapusv)(GLenum, GLushort *);
160 void (*GetPolygonStipple)(GLubyte *);
161 const GLubyte* (*GetString)(GLenum name);
162 void (*GetTexEnvfv)(GLenum, GLenum, GLfloat *);
163 void (*GetTexEnviv)(GLenum, GLenum, GLint *);
164 void (*GetTexGendv)(GLenum coord, GLenum, GLdouble *);
165 void (*GetTexGenfv)(GLenum coord, GLenum, GLfloat *);
166 void (*GetTexGeniv)(GLenum coord, GLenum, GLint *);
167 void (*GetTexImage)(GLenum, GLint level, GLenum, GLenum, GLvoid *);
168 void (*GetTexLevelParameterfv)(GLenum, GLint, GLenum, GLfloat *);
169 void (*GetTexLevelParameteriv)(GLenum, GLint, GLenum, GLint *);
170 void (*GetTexParameterfv)(GLenum, GLenum, GLfloat *);
171 void (*GetTexParameteriv)(GLenum, GLenum, GLint *);
172 void (*Hint)(GLenum, GLenum);
173 void (*IndexMask)(GLuint);
174 void (*Indexd)(GLdouble);
175 void (*Indexdv)(const GLdouble *);
176 void (*Indexf)(GLfloat);
177 void (*Indexfv)(const GLfloat *);
178 void (*Indexi)(GLint);
179 void (*Indexiv)(const GLint *);
180 void (*Indexs)(GLshort);
181 void (*Indexsv)(const GLshort *);
182 void (*InitNames)(void);
183 GLboolean (*IsEnabled)(GLenum);
184 GLboolean (*IsList)(GLuint);
185 void (*LightModelf)(GLenum, GLfloat);
186 void (*LightModelfv)(GLenum, const GLfloat *);
187 void (*LightModeli)(GLenum, GLint);
188 void (*LightModeliv)(GLenum, const GLint *);
189 void (*Lightf)(GLenum light, GLenum, GLfloat);
190 void (*Lightfv)(GLenum light, GLenum, const GLfloat *);
191 void (*Lighti)(GLenum light, GLenum, GLint);
192 void (*Lightiv)(GLenum light, GLenum, const GLint *);
193 void (*LineStipple)(GLint factor, GLushort);
194 void (*LineWidth)(GLfloat);
195 void (*ListBase)(GLuint);
196 void (*LoadIdentity)(void);
197 void (*LoadMatrixd)(const GLdouble *);
198 void (*LoadMatrixf)(const GLfloat *);
199 void (*LoadName)(GLuint);
200 void (*LogicOp)(GLenum);
201 void (*Map1d)(GLenum, GLdouble, GLdouble, GLint, GLint, const GLdouble *);
202 void (*Map1f)(GLenum, GLfloat, GLfloat, GLint, GLint, const GLfloat *);
203 void (*Map2d)(GLenum, GLdouble, GLdouble, GLint, GLint, GLdouble, GLdouble, GLint, GLint, const GLdouble *);
204 void (*Map2f)(GLenum, GLfloat, GLfloat, GLint, GLint, GLfloat, GLfloat, GLint, GLint, const GLfloat *);
205 void (*MapGrid1d)(GLint, GLdouble, GLdouble);
206 void (*MapGrid1f)(GLint, GLfloat, GLfloat);
207 void (*MapGrid2d)(GLint, GLdouble, GLdouble, GLint, GLdouble, GLdouble);
208 void (*MapGrid2f)(GLint, GLfloat, GLfloat, GLint, GLfloat, GLfloat);
209 void (*Materialf)(GLenum, GLenum, GLfloat);
210 void (*Materialfv)(GLenum, GLenum, const GLfloat *);
211 void (*Materiali)(GLenum, GLenum, GLint);
212 void (*Materialiv)(GLenum, GLenum, const GLint *);
213 void (*MatrixMode)(GLenum);
214 void (*MultMatrixd)(const GLdouble *);
215 void (*MultMatrixf)(const GLfloat *);
216 void (*NewList)(GLuint list, GLenum);
217 void (*Normal3b)(GLbyte, GLbyte, GLbyte);
218 void (*Normal3bv)(const GLbyte *);
219 void (*Normal3d)(GLdouble, GLdouble, GLdouble);
220 void (*Normal3dv)(const GLdouble *);
221 void (*Normal3f)(GLfloat, GLfloat, GLfloat);
222 void (*Normal3fv)(const GLfloat *);
223 void (*Normal3i)(GLint, GLint, GLint);
224 void (*Normal3iv)(const GLint *);
225 void (*Normal3s)(GLshort, GLshort, GLshort);
226 void (*Normal3sv)(const GLshort *);
227 void (*Ortho)(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble);
228 void (*PassThrough)(GLfloat);
229 void (*PixelMapfv)(GLenum, GLint, const GLfloat *);
230 void (*PixelMapuiv)(GLenum, GLint, const GLuint *);
231 void (*PixelMapusv)(GLenum, GLint, const GLushort *);
232 void (*PixelStoref)(GLenum, GLfloat);
233 void (*PixelStorei)(GLenum, GLint);
234 void (*PixelTransferf)(GLenum, GLfloat);
235 void (*PixelTransferi)(GLenum, GLint);
236 void (*PixelZoom)(GLfloat, GLfloat);
237 void (*PointSize)(GLfloat);
238 void (*PolygonMode)(GLenum, GLenum);
239 void (*PolygonOffset)(GLfloat, GLfloat);
240 void (*PolygonStipple)(const GLubyte *);
241 void (*PopAttrib)(void);
242 void (*PopMatrix)(void);
243 void (*PopName)(void);
244 void (*PushAttrib)(GLbitfield);
245 void (*PushMatrix)(void);
246 void (*PushName)(GLuint);
247 void (*RasterPos2d)(GLdouble, GLdouble);
248 void (*RasterPos2dv)(const GLdouble *);
249 void (*RasterPos2f)(GLfloat, GLfloat);
250 void (*RasterPos2fv)(const GLfloat *);
251 void (*RasterPos2i)(GLint, GLint);
252 void (*RasterPos2iv)(const GLint *);
253 void (*RasterPos2s)(GLshort, GLshort);
254 void (*RasterPos2sv)(const GLshort *);
255 void (*RasterPos3d)(GLdouble, GLdouble, GLdouble);
256 void (*RasterPos3dv)(const GLdouble *);
257 void (*RasterPos3f)(GLfloat, GLfloat, GLfloat);
258 void (*RasterPos3fv)(const GLfloat *);
259 void (*RasterPos3i)(GLint, GLint, GLint);
260 void (*RasterPos3iv)(const GLint *);
261 void (*RasterPos3s)(GLshort, GLshort, GLshort);
262 void (*RasterPos3sv)(const GLshort *);
263 void (*RasterPos4d)(GLdouble, GLdouble, GLdouble, GLdouble);
264 void (*RasterPos4dv)(const GLdouble *);
265 void (*RasterPos4f)(GLfloat, GLfloat, GLfloat, GLfloat);
266 void (*RasterPos4fv)(const GLfloat *);
267 void (*RasterPos4i)(GLint, GLint, GLint, GLint);
268 void (*RasterPos4iv)(const GLint *);
269 void (*RasterPos4s)(GLshort, GLshort, GLshort, GLshort);
270 void (*RasterPos4sv)(const GLshort *);
271 void (*ReadBuffer)(GLenum);
272 void (*ReadPixels)(GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, GLvoid *);
273 void (*Rectd)(GLdouble, GLdouble, GLdouble, GLdouble);
274 void (*Rectdv)(const GLdouble *, const GLdouble *);
275 void (*Rectf)(GLfloat, GLfloat, GLfloat, GLfloat);
276 void (*Rectfv)(const GLfloat *, const GLfloat *);
277 void (*Recti)(GLint, GLint, GLint, GLint);
278 void (*Rectiv)(const GLint *, const GLint *);
279 void (*Rects)(GLshort, GLshort, GLshort, GLshort);
280 void (*Rectsv)(const GLshort *, const GLshort *);
281 GLint (*RenderMode)(GLenum);
282 void (*Rotated)(GLdouble, GLdouble, GLdouble, GLdouble);
283 void (*Rotatef)(GLfloat, GLfloat, GLfloat, GLfloat);
284 void (*Scaled)(GLdouble, GLdouble, GLdouble);
285 void (*Scalef)(GLfloat, GLfloat, GLfloat);
286 void (*Scissor)(GLint, GLint, GLsizei, GLsizei);
287 void (*SelectBuffer)(GLsizei, GLuint *);
288 void (*ShadeModel)(GLenum);
289 void (*StencilFunc)(GLenum, GLint, GLuint);
290 void (*StencilMask)(GLuint);
291 void (*StencilOp)(GLenum, GLenum, GLenum);
292 void (*TexCoord1d)(GLdouble);
293 void (*TexCoord1dv)(const GLdouble *);
294 void (*TexCoord1f)(GLfloat);
295 void (*TexCoord1fv)(const GLfloat *);
296 void (*TexCoord1i)(GLint);
297 void (*TexCoord1iv)(const GLint *);
298 void (*TexCoord1s)(GLshort);
299 void (*TexCoord1sv)(const GLshort *);
300 void (*TexCoord2d)(GLdouble, GLdouble);
301 void (*TexCoord2dv)(const GLdouble *);
302 void (*TexCoord2f)(GLfloat, GLfloat);
303 void (*TexCoord2fv)(const GLfloat *);
304 void (*TexCoord2i)(GLint, GLint);
305 void (*TexCoord2iv)(const GLint *);
306 void (*TexCoord2s)(GLshort, GLshort);
307 void (*TexCoord2sv)(const GLshort *);
308 void (*TexCoord3d)(GLdouble, GLdouble, GLdouble);
309 void (*TexCoord3dv)(const GLdouble *);
310 void (*TexCoord3f)(GLfloat, GLfloat, GLfloat);
311 void (*TexCoord3fv)(const GLfloat *);
312 void (*TexCoord3i)(GLint, GLint, GLint);
313 void (*TexCoord3iv)(const GLint *);
314 void (*TexCoord3s)(GLshort, GLshort, GLshort);
315 void (*TexCoord3sv)(const GLshort *);
316 void (*TexCoord4d)(GLdouble, GLdouble, GLdouble, GLdouble);
317 void (*TexCoord4dv)(const GLdouble *);
318 void (*TexCoord4f)(GLfloat, GLfloat, GLfloat, GLfloat);
319 void (*TexCoord4fv)(const GLfloat *);
320 void (*TexCoord4i)(GLint, GLint, GLint, GLint);
321 void (*TexCoord4iv)(const GLint *);
322 void (*TexCoord4s)(GLshort, GLshort, GLshort, GLshort);
323 void (*TexCoord4sv)(const GLshort *);
324 void (*TexEnvf)(GLenum, GLenum, GLfloat);
325 void (*TexEnvfv)(GLenum, GLenum, const GLfloat *);
326 void (*TexEnvi)(GLenum, GLenum, GLint);
327 void (*TexEnviv)(GLenum, GLenum, const GLint *);
328 void (*TexGend)(GLenum, GLenum, GLdouble);
329 void (*TexGendv)(GLenum, GLenum, const GLdouble *);
330 void (*TexGenf)(GLenum, GLenum, GLfloat);
331 void (*TexGenfv)(GLenum, GLenum, const GLfloat *);
332 void (*TexGeni)(GLenum, GLenum, GLint);
333 void (*TexGeniv)(GLenum, GLenum, const GLint *);
334 void (*TexImage1D)(GLenum, GLint, GLint, GLsizei, GLint, GLenum, GLenum, const GLvoid *);
335 void (*TexImage2D)(GLenum, GLint, GLint, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *);
336 void (*TexParameterf)(GLenum, GLenum, GLfloat);
337 void (*TexParameterfv)(GLenum, GLenum, const GLfloat *);
338 void (*TexParameteri)(GLenum, GLenum, GLint);
339 void (*TexParameteriv)(GLenum, GLenum, const GLint *);
340 void (*Translated)(GLdouble, GLdouble, GLdouble);
341 void (*Translatef)(GLfloat, GLfloat, GLfloat);
342 void (*Vertex2d)(GLdouble, GLdouble);
343 void (*Vertex2dv)(const GLdouble *);
344 void (*Vertex2f)(GLfloat, GLfloat);
345 void (*Vertex2fv)(const GLfloat *);
346 void (*Vertex2i)(GLint, GLint);
347 void (*Vertex2iv)(const GLint *);
348 void (*Vertex2s)(GLshort, GLshort);
349 void (*Vertex2sv)(const GLshort *);
350 void (*Vertex3d)(GLdouble, GLdouble, GLdouble);
351 void (*Vertex3dv)(const GLdouble *);
352 void (*Vertex3f)(GLfloat, GLfloat, GLfloat);
353 void (*Vertex3fv)(const GLfloat *);
354 void (*Vertex3i)(GLint, GLint, GLint);
355 void (*Vertex3iv)(const GLint *);
356 void (*Vertex3s)(GLshort, GLshort, GLshort);
357 void (*Vertex3sv)(const GLshort *);
358 void (*Vertex4d)(GLdouble, GLdouble, GLdouble, GLdouble);
359 void (*Vertex4dv)(const GLdouble *);
360 void (*Vertex4f)(GLfloat, GLfloat, GLfloat, GLfloat);
361 void (*Vertex4fv)(const GLfloat *);
362 void (*Vertex4i)(GLint, GLint, GLint, GLint);
363 void (*Vertex4iv)(const GLint *);
364 void (*Vertex4s)(GLshort, GLshort, GLshort, GLshort);
365 void (*Vertex4sv)(const GLshort *);
366 void (*Viewport)(GLint, GLint, GLsizei, GLsizei);
367
368 /*
369 * OpenGL 1.1
370 */
Brian Paul1210b0d1999-11-25 18:16:13 +0000371 GLboolean (*AreTexturesResident)(GLsizei, const GLuint *, GLboolean *);
372 void (*ArrayElement)(GLint);
373 void (*BindTexture)(GLenum, GLuint);
374 void (*ColorPointer)(GLint, GLenum, GLsizei, const GLvoid *);
375 void (*CopyTexImage1D)(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLint);
376 void (*CopyTexImage2D)(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLsizei, GLint);
377 void (*CopyTexSubImage1D)(GLenum, GLint, GLint, GLint, GLint, GLsizei);
378 void (*CopyTexSubImage2D)(GLenum, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei);
379 void (*DeleteTextures)(GLsizei, const GLuint *);
380 void (*DisableClientState)(GLenum);
381 void (*DrawArrays)(GLenum, GLint, GLsizei);
382 void (*DrawElements)(GLenum, GLsizei, GLenum, const GLvoid *);
383 void (*EdgeFlagPointer)(GLsizei, const GLvoid *);
384 void (*EnableClientState)(GLenum);
385 void (*GenTextures)(GLsizei, GLuint *);
386 void (*GetPointerv)(GLenum, GLvoid **);
387 void (*IndexPointer)(GLenum, GLsizei, const GLvoid *);
388 void (*Indexub)(GLubyte);
389 void (*Indexubv)(const GLubyte *);
390 void (*InterleavedArrays)(GLenum, GLsizei, const GLvoid *);
391 GLboolean (*IsTexture)(GLuint);
392 void (*NormalPointer)(GLenum, GLsizei, const GLvoid *);
393 void (*PopClientAttrib)(void);
394 void (*PrioritizeTextures)(GLsizei, const GLuint *, const GLclampf *);
395 void (*PushClientAttrib)(GLbitfield);
396 void (*TexCoordPointer)(GLint, GLenum, GLsizei, const GLvoid *);
397 void (*TexSubImage1D)(GLenum, GLint, GLint, GLsizei, GLenum, GLenum, const GLvoid *);
398 void (*TexSubImage2D)(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
399 void (*VertexPointer)(GLint, GLenum, GLsizei, const GLvoid *);
Brian Paul67661b01999-12-15 12:52:31 +0000400
Brian Paul1210b0d1999-11-25 18:16:13 +0000401
402 /*
403 * OpenGL 1.2
404 */
Brian Paul1210b0d1999-11-25 18:16:13 +0000405 void (*CopyTexSubImage3D)(GLenum, GLint, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei);
406 void (*DrawRangeElements)(GLenum, GLuint, GLuint, GLsizei, GLenum, const GLvoid *);
407 void (*TexImage3D)(GLenum, GLint, GLint, GLsizei, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *);
408 void (*TexSubImage3D)(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
409
Brian Paul67661b01999-12-15 12:52:31 +0000410
411 /*
412 * GL_ARB_imaging
413 */
Brian Paul1210b0d1999-11-25 18:16:13 +0000414 void (*BlendColor)(GLclampf, GLclampf, GLclampf, GLclampf);
415 void (*BlendEquation)(GLenum);
416 void (*ColorSubTable)(GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
417 void (*ColorTable)(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *);
418 void (*ColorTableParameterfv)(GLenum, GLenum, const GLfloat *);
419 void (*ColorTableParameteriv)(GLenum, GLenum, const GLint *);
420 void (*ConvolutionFilter1D)(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *);
421 void (*ConvolutionFilter2D)(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
422 void (*ConvolutionParameterf)(GLenum, GLenum, GLfloat);
423 void (*ConvolutionParameterfv)(GLenum, GLenum, const GLfloat *);
424 void (*ConvolutionParameteri)(GLenum, GLenum, GLint);
425 void (*ConvolutionParameteriv)(GLenum, GLenum, const GLint *);
426 void (*CopyColorSubTable)(GLenum, GLsizei, GLint, GLint, GLsizei);
427 void (*CopyColorTable)(GLenum, GLenum, GLint, GLint, GLsizei);
428 void (*CopyConvolutionFilter1D)(GLenum, GLenum, GLint x, GLint y, GLsizei);
429 void (*CopyConvolutionFilter2D)(GLenum, GLenum, GLint x, GLint y, GLsizei, GLsizei);
430 void (*GetColorTable)(GLenum, GLenum, GLenum, GLvoid *);
431 void (*GetColorTableParameterfv)(GLenum, GLenum, GLfloat *);
432 void (*GetColorTableParameteriv)(GLenum, GLenum, GLint *);
433 void (*GetConvolutionFilter)(GLenum, GLenum, GLenum, GLvoid *);
434 void (*GetConvolutionParameterfv)(GLenum, GLenum, GLfloat *);
435 void (*GetConvolutionParameteriv)(GLenum, GLenum, GLint *);
436 void (*GetHistogram)(GLenum, GLboolean, GLenum, GLenum, GLvoid *);
437 void (*GetHistogramParameterfv)(GLenum, GLenum, GLfloat *);
438 void (*GetHistogramParameteriv)(GLenum, GLenum, GLint *);
439 void (*GetMinmax)(GLenum, GLboolean, GLenum, GLenum, GLvoid *);
440 void (*GetMinmaxParameterfv)(GLenum, GLenum, GLfloat *);
441 void (*GetMinmaxParameteriv)(GLenum, GLenum, GLint *);
442 void (*GetSeparableFilter)(GLenum, GLenum, GLenum, GLvoid *, GLvoid *, GLvoid *);
443 void (*Histogram)(GLenum, GLsizei, GLenum, GLboolean);
444 void (*Minmax)(GLenum, GLenum, GLboolean);
445 void (*ResetHistogram)(GLenum);
446 void (*ResetMinmax)(GLenum);
447 void (*SeparableFilter2D)(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *, const GLvoid *);
Brian Paul1210b0d1999-11-25 18:16:13 +0000448
449 /*
Brian Paul67661b01999-12-15 12:52:31 +0000450 * GL_ARB_multitexture
Brian Paul1210b0d1999-11-25 18:16:13 +0000451 */
Brian Paul1210b0d1999-11-25 18:16:13 +0000452 void (*ActiveTextureARB)(GLenum);
453 void (*ClientActiveTextureARB)(GLenum);
454 void (*MultiTexCoord1dARB)(GLenum, GLdouble);
455 void (*MultiTexCoord1dvARB)(GLenum, const GLdouble *);
456 void (*MultiTexCoord1fARB)(GLenum, GLfloat);
457 void (*MultiTexCoord1fvARB)(GLenum, const GLfloat *);
458 void (*MultiTexCoord1iARB)(GLenum, GLint);
459 void (*MultiTexCoord1ivARB)(GLenum, const GLint *);
460 void (*MultiTexCoord1sARB)(GLenum, GLshort);
461 void (*MultiTexCoord1svARB)(GLenum, const GLshort *);
462 void (*MultiTexCoord2dARB)(GLenum, GLdouble, GLdouble);
463 void (*MultiTexCoord2dvARB)(GLenum, const GLdouble *);
464 void (*MultiTexCoord2fARB)(GLenum, GLfloat, GLfloat);
465 void (*MultiTexCoord2fvARB)(GLenum, const GLfloat *);
466 void (*MultiTexCoord2iARB)(GLenum, GLint, GLint);
467 void (*MultiTexCoord2ivARB)(GLenum, const GLint *);
468 void (*MultiTexCoord2sARB)(GLenum, GLshort, GLshort);
469 void (*MultiTexCoord2svARB)(GLenum, const GLshort *);
470 void (*MultiTexCoord3dARB)(GLenum, GLdouble, GLdouble, GLdouble);
471 void (*MultiTexCoord3dvARB)(GLenum, const GLdouble *);
472 void (*MultiTexCoord3fARB)(GLenum, GLfloat, GLfloat, GLfloat);
473 void (*MultiTexCoord3fvARB)(GLenum, const GLfloat *);
474 void (*MultiTexCoord3iARB)(GLenum, GLint, GLint, GLint);
475 void (*MultiTexCoord3ivARB)(GLenum, const GLint *);
476 void (*MultiTexCoord3sARB)(GLenum, GLshort, GLshort, GLshort);
477 void (*MultiTexCoord3svARB)(GLenum, const GLshort *);
478 void (*MultiTexCoord4dARB)(GLenum, GLdouble, GLdouble, GLdouble, GLdouble);
479 void (*MultiTexCoord4dvARB)(GLenum, const GLdouble *);
480 void (*MultiTexCoord4fARB)(GLenum, GLfloat, GLfloat, GLfloat, GLfloat);
481 void (*MultiTexCoord4fvARB)(GLenum, const GLfloat *);
482 void (*MultiTexCoord4iARB)(GLenum, GLint, GLint, GLint, GLint);
483 void (*MultiTexCoord4ivARB)(GLenum, const GLint *);
484 void (*MultiTexCoord4sARB)(GLenum, GLshort, GLshort, GLshort, GLshort);
485 void (*MultiTexCoord4svARB)(GLenum, const GLshort *);
Brian Paul1210b0d1999-11-25 18:16:13 +0000486
Brian Paul67661b01999-12-15 12:52:31 +0000487
488 /*
489 * Extensions
490 */
491
492 /* 1. GL_EXT_abgr - no functions */
493
494 /* 2. GL_EXT_blend_color */
495 void (*BlendColorEXT)(GLclampf, GLclampf, GLclampf, GLclampf);
496
497 /* 3. GL_EXT_polygon_offset */
498 void (*PolygonOffsetEXT)(GLfloat, GLfloat);
499
500 /* 4. GL_EXT_texture - no functions */
501
502 /* 5. ??? */
503
504 /* 6. GL_EXT_texture3D */
505 void (*CopyTexSubImage3DEXT)(GLenum, GLint, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei);
506 void (*TexImage3DEXT)(GLenum, GLint, GLint, GLsizei, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *);
507 void (*TexSubImage3DEXT)(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
508
509 /* 7. GL_SGI_texture_filter4 */
510 void (*GetTexFilterFuncSGIS)(GLenum, GLenum, GLsizei, const GLfloat *);
511 void (*TexFilterFuncSGIS)(GLenum, GLenum, GLfloat *);
512
513 /* 8. ??? */
514
515 /* 9. GL_EXT_subtexture */
516 void (*TexSubImage1DEXT)(GLenum, GLint, GLint, GLsizei, GLenum, GLenum, const GLvoid *);
517 void (*TexSubImage2DEXT)(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
518
519 /* 10. GL_EXT_copy_texture */
520 void (*CopyTexImage1DEXT)(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLint);
521 void (*CopyTexImage2DEXT)(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLsizei, GLint);
522 void (*CopyTexSubImage1DEXT)(GLenum, GLint, GLint, GLint, GLint, GLsizei);
523 void (*CopyTexSubImage2DEXT)(GLenum, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei);
524
525 /* 11. GL_EXT_histogram */
526 void (*GetHistogramEXT)(GLenum, GLboolean, GLenum, GLenum, GLvoid *);
527 void (*GetHistogramParameterfvEXT)(GLenum, GLenum, GLfloat *);
528 void (*GetHistogramParameterivEXT)(GLenum, GLenum, GLint *);
529 void (*GetMinmaxEXT)(GLenum, GLboolean, GLenum, GLenum, GLvoid *);
530 void (*GetMinmaxParameterfvEXT)(GLenum, GLenum, GLfloat *);
531 void (*GetMinmaxParameterivEXT)(GLenum, GLenum, GLint *);
532 void (*HistogramEXT)(GLenum, GLsizei, GLenum, GLboolean);
533 void (*MinmaxEXT)(GLenum, GLenum, GLboolean);
534 void (*ResetHistogramEXT)(GLenum);
535 void (*ResetMinmaxEXT)(GLenum);
536
537 /* 12. GL_EXT_convolution */
538 void (*ConvolutionFilter1DEXT)(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *);
539 void (*ConvolutionFilter2DEXT)(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
540 void (*ConvolutionParameterfEXT)(GLenum, GLenum, GLfloat);
541 void (*ConvolutionParameterfvEXT)(GLenum, GLenum, const GLfloat *);
542 void (*ConvolutionParameteriEXT)(GLenum, GLenum, GLint);
543 void (*ConvolutionParameterivEXT)(GLenum, GLenum, const GLint *);
544 void (*CopyConvolutionFilter1DEXT)(GLenum, GLenum, GLint x, GLint y, GLsizei);
545 void (*CopyConvolutionFilter2DEXT)(GLenum, GLenum, GLint x, GLint y, GLsizei, GLsizei);
546 void (*GetConvolutionFilterEXT)(GLenum, GLenum, GLenum, GLvoid *);
547 void (*GetConvolutionParameterfvEXT)(GLenum, GLenum, GLfloat *);
548 void (*GetConvolutionParameterivEXT)(GLenum, GLenum, GLint *);
549 void (*GetSeparableFilterEXT)(GLenum, GLenum, GLenum, GLvoid *, GLvoid *, GLvoid *);
550 void (*SeparableFilter2DEXT)(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *, const GLvoid *);
551
552 /* 13. GL_SGI_color_matrix - no functions */
553
554 /* 14. GL_SGI_color_table */
555 void (*ColorTableSGI)(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *);
556 void (*CopyColorTableSGI)(GLenum, GLenum, GLint, GLint, GLsizei);
557 void (*GetColorTableSGI)(GLenum, GLenum, GLenum, GLvoid *);
558 void (*GetColorTableParameterfvSGI)(GLenum, GLenum, GLfloat *);
559 void (*GetColorTableParameterivSGI)(GLenum, GLenum, GLint *);
560
561 /* 15. GL_SGIS_pixel_texture */
562 void (*PixelTexGenParameterfSGIS)(GLenum, GLfloat);
563 void (*PixelTexGenParameteriSGIS)(GLenum, GLint);
564 void (*GetPixelTexGenParameterfvSGIS)(GLenum, GLfloat *);
565 void (*GetPixelTexGenParameterivSGIS)(GLenum, GLint *);
566
567 /* 16. GL_SGIS_texture4D */
568 void (*TexImage4DSGIS)(GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLsizei, GLint, GLenum, GLenum, const void *);
569 void (*TexSubImage4DSGIS)(GLenum, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const void *);
570
571 /* 17. GL_SGI_texture_color_table - no functions */
572
573 /* 18. GL_EXT_cmyka - no functions */
574
575 /* 19. ??? */
576
577 /* 20. GL_EXT_texture_object */
578 GLboolean (*AreTexturesResidentEXT)(GLsizei, const GLuint *, GLboolean *);
579 void (*BindTextureEXT)(GLenum, GLuint);
580 void (*DeleteTexturesEXT)(GLsizei, const GLuint *);
581 GLboolean (*IsTextureEXT)(GLuint);
582 void (*PrioritizeTexturesEXT)(GLsizei, const GLuint *, const GLclampf *);
583
584 /* 21. GL_SGIS_detail_texture */
585 void (*DetailTexFuncSGIS)(GLenum, GLsizei, const GLfloat *);
586 void (*GetDetailTexFuncSGIS)(GLenum target, GLfloat *);
587
588 /* 22. GL_SGIS_sharpen_texture */
589 void (*GetSharpenTexFuncSGIS)(GLenum, GLfloat *);
590 void (*SharpenTexFuncSGIS)(GLenum, GLsizei, const GLfloat *);
591
592 /* 23. GL_EXT_packed_pixels - no functions */
593
594 /* 24. GL_SGIS_texture_lod - no functions */
595
596 /* 25. GL_SGIS_multisample */
597 void (*SampleMaskSGIS)(GLclampf, GLboolean);
598 void (*SamplePatternSGIS)(GLenum);
599
600 /* 26. ??? */
601
602 /* 27. GL_EXT_rescale_normal - no functions */
603
604 /* 28. GLX_EXT_visual_info - no functions */
605
606 /* 29. ??? */
607
608 /* 30. GL_EXT_vertex_array */
609 void (*ArrayElementEXT)(GLint);
610 void (*ColorPointerEXT)(GLint, GLenum, GLsizei, GLsizei, const void *);
611 void (*DrawArraysEXT)(GLenum, GLint, GLsizei);
612 void (*EdgeFlagPointerEXT)(GLsizei, GLsizei, const GLboolean *);
613 void (*GetPointervEXT)(GLenum, void **);
614 void (*IndexPointerEXT)(GLenum, GLsizei, GLsizei, const void *);
615 void (*NormalPointerEXT)(GLenum, GLsizei, GLsizei, const void *);
616 void (*TexCoordPointerEXT)(GLint, GLenum, GLsizei, GLsizei, const void *);
617 void (*VertexPointerEXT)(GLint, GLenum, GLsizei, GLsizei, const void *);
618
619 /* 31. GL_EXT_misc_attribute - no functions */
620
621 /* 32. GL_SGIS_generate_mipmap - no functions */
622
623 /* 33. GL_SGIX_clipmap - no functions */
624
625 /* 34. GL_SGIX_shadow - no functions */
626
627 /* 35. GL_SGIS_texture_edge_clamp - no functions */
628
629 /* 36. GL_SGIS_texture_border_clamp - no functions */
630
631 /* 37. GL_EXT_blend_minmax */
632 void (*BlendEquationEXT)(GLenum);
633
634 /* 38. GL_EXT_blend_subtract - no functions */
635
636 /* 39. GL_EXT_blend_logic_op - no functions */
637
638 /* 40. GLX_SGI_swap_control - GLX functions */
639
640 /* 41. GLX_SGI_video_sync - GLX functions */
641
642 /* 42. GLX_SGI_make_current_read - GLX functions */
643
644 /* 43. GLX_SGIX_video_source - GLX functions */
645
646 /* 44. GLX_EXT_visual_rating - no functions */
647
648 /* 45. GL_SGIX_interlace - no functions */
649
650 /* 46. ??? */
651
652 /* 47. GLX_EXT_import_context - GLX functions */
653
654 /* 48. ??? */
655
656 /* 49. GLX_SGIX_fbconfig - GLX functions */
657
658 /* 50. GLX_SGIX_pbuffer - GLX functions */
659
660 /* 51. GL_SGIS_texture_select - no functions */
661
662 /* 52. GL_SGIX_sprite */
663 void (*SpriteParameterfSGIX)(GLenum, GLfloat);
664 void (*SpriteParameterfvSGIX)(GLenum, const GLfloat *);
665 void (*SpriteParameteriSGIX)(GLenum, GLint);
666 void (*SpriteParameterivSGIX)(GLenum, const GLint *);
667
668 /* 53. ??? */
669
670 /* 54. GL_EXT_point_parameters */
671 void (*PointParameterfEXT)(GLenum, GLfloat);
672 void (*PointParameterfvEXT)(GLenum, const GLfloat *);
673
674 /* 55. GL_SGIX_instruments */
675 GLint (*GetInstrumentsSGIX)(void);
676 void (*InstrumentsBufferSGIX)(GLsizei, GLint *);
677 GLint (*PollInstrumentsSGIX)(GLint *);
678 void (*ReadInstrumentsSGIX)(GLint);
679 void (*StartInstrumentsSGIX)(void);
680 void (*StopInstrumentsSGIX)(GLint);
681
682 /* 56. GL_SGIX_texture_scale_bias - no functions */
683
684 /* 57. GL_SGIX_framezoom */
685 void (*FrameZoomSGIX)(GLint);
686
687 /* 58. GL_SGIX_tag_sample_buffer - no functions */
688
689 /* 59. ??? */
690
691 /* 60. GL_SGIX_reference_plane */
692 void (*ReferencePlaneSGIX)(const GLdouble *);
693
694 /* 61. GL_SGIX_flush_raster */
695 void (*FlushRasterSGIX)(void);
696
697 /* 62. GLX_SGI_cushion - GLX functions */
698
699 /* 63. GL_SGIX_depth_texture - no functions */
700
701 /* 64. ??? */
702
703 /* 65. GL_SGIX_fog_offset - no functions */
704
705 /* 66. GL_HP_image_transform */
706 void (*GetImageTransformParameterfvHP)(GLenum, GLenum, GLfloat *);
707 void (*GetImageTransformParameterivHP)(GLenum, GLenum, GLint *);
708 void (*ImageTransformParameterfHP)(GLenum, GLenum, const GLfloat);
709 void (*ImageTransformParameterfvHP)(GLenum, GLenum, const GLfloat *);
710 void (*ImageTransformParameteriHP)(GLenum, GLenum, const GLint);
711 void (*ImageTransformParameterivHP)(GLenum, GLenum, const GLint *);
712
713 /* 67. GL_HP_convolution_border_modes - no functions */
714
715 /* 68. ??? */
716
717 /* 69. GL_SGIX_texture_add_env - no functions */
718
719 /* 70. ??? */
720
721 /* 71. ??? */
722
723 /* 72. ??? */
724
725 /* 73. ??? */
726
727 /* 74. GL_EXT_color_subtable */
728 void (*ColorSubTableEXT)(GLenum, GLsizei, GLsizei, GLenum, GLenum, const void *);
729 void (*CopyColorSubTableEXT)(GLenum, GLsizei, GLint, GLint, GLsizei);
730
731 /* 75. GLU_EXT_object_space_tess - GLU functions */
732
733 /* 76. GL_PGI_vertex_hints - no functions */
734
735 /* 77. GL_PGI_misc_hints */
736 void (*HintPGI)(GLenum, GLint);
737
738 /* 78. GL_EXT_paletted_texture */
739 /* ColorSubTableEXT already defined */
740 void (*ColorTableEXT)(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *);
741 void (*GetColorTableEXT)(GLenum, GLenum, GLenum, GLvoid *);
742 void (*GetColorTableParameterfvEXT)(GLenum, GLenum, GLfloat *);
743 void (*GetColorTableParameterivEXT)(GLenum, GLenum, GLint *);
744
745 /* 79. GL_EXT_clip_volume_hint - no functions */
746
747 /* 80. GL_SGIX_list_priority */
748 void (*GetListParameterfvSGIX)(GLuint, GLenum, GLfloat *);
749 void (*GetListParameterivSGIX)(GLuint, GLenum, GLint *);
750 void (*ListParameterfSGIX)(GLuint, GLenum, GLfloat);
751 void (*ListParameterfvSGIX)(GLuint, GLenum, const GLfloat *);
752 void (*ListParameteriSGIX)(GLuint, GLenum, GLint);
753 void (*ListParameterivSGIX)(GLuint, GLenum, const GLint *);
754
755 /* 81. GL_SGIX_ir_instrument1 - no functions */
756
757 /* 82. ??? */
758
759 /* 83. GLX_SGIX_video_resize - GLX functions */
760
761 /* 84. GL_SGIX_texture_lod_bias - no functions */
762
763 /* 85. GLU_SGI_filter4_parameters - GLU functions */
764
765 /* 86. GLX_SGIX_dm_buffer - GLX functions */
766
767 /* 87. ??? */
768
769 /* 88. ??? */
770
771 /* 89. ??? */
772
773 /* 90. ??? */
774
775 /* 91. GLX_SGIX_swap_group - GLX functions */
776
777 /* 92. GLX_SGIX_swap_barrier - GLX functions */
778
779 /* 93. GL_EXT_index_texture - no functions */
780
781 /* 94. GL_EXT_index_material */
782 void (*IndexMaterialEXT)(GLenum, GLenum);
783
784 /* 95. GL_EXT_index_func */
785 void (*IndexFuncEXT)(GLenum, GLfloat);
786
787 /* 96. GL_EXT_index_array_formats - no functions */
788
789 /* 97. GL_EXT_compiled_vertex_array */
790 void (*LockArraysEXT)(GLint, GLsizei);
791 void (*UnlockArraysEXT)(void);
792
793 /* 98. GL_EXT_cull_vertex */
794 void (*CullParameterfvEXT)(GLenum, const GLfloat *);
795 void (*CullParameterdvEXT)(GLenum, const GLdouble *);
796
797 /* 99. ??? */
798
799 /* 100. GLU_EXT_nurbs_tessellator - GLU functions */
800
801 /* 173. GL_EXT/INGR_blend_func_separate */
Brian Paul1210b0d1999-11-25 18:16:13 +0000802 void (*BlendFuncSeparateINGR)(GLenum, GLenum, GLenum, GLenum);
Brian Paul1210b0d1999-11-25 18:16:13 +0000803
Brian Paul67661b01999-12-15 12:52:31 +0000804 /* GL_MESA_window_pos */
Brian Paul1210b0d1999-11-25 18:16:13 +0000805 void (*WindowPos4fMESA)(GLfloat x, GLfloat y, GLfloat z, GLfloat w);
Brian Paul1210b0d1999-11-25 18:16:13 +0000806
Brian Paul67661b01999-12-15 12:52:31 +0000807 /* GL_MESA_resize_buffers */
Brian Paul1210b0d1999-11-25 18:16:13 +0000808 void (*ResizeBuffersMESA)(void);
Brian Paul1210b0d1999-11-25 18:16:13 +0000809
Brian Paul67661b01999-12-15 12:52:31 +0000810 /* GL_ARB_transpose_matrix */
Brian Paulcd963881999-12-10 20:01:06 +0000811 void (*LoadTransposeMatrixdARB)(const GLdouble m[16]);
812 void (*LoadTransposeMatrixfARB)(const GLfloat m[16]);
813 void (*MultTransposeMatrixdARB)(const GLdouble m[16]);
814 void (*MultTransposeMatrixfARB)(const GLfloat m[16]);
Brian Paul1210b0d1999-11-25 18:16:13 +0000815
Brian Paul67661b01999-12-15 12:52:31 +0000816#if 0
Brian Paul4329fd51999-11-27 21:30:10 +0000817 void *ExtensionFuncs[_GLAPI_EXTRA_SLOTS];
Brian Paul67661b01999-12-15 12:52:31 +0000818#endif
Brian Paul1210b0d1999-11-25 18:16:13 +0000819};
820
821
822#endif