aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--X11/xtrans/Xtrans.c2
-rw-r--r--X11/xtrans/Xtransint.h2
-rwxr-xr-xX11/xtrans/Xtranssock.c34
-rwxr-xr-xfilesthatshouldbethesame.py1
-rw-r--r--gl/glext.h40
-rw-r--r--gl/glx.h27
-rw-r--r--gl/internal/dri_interface.h167
-rw-r--r--include/xcb/xcb.h41
-rw-r--r--include/xcb/xcbext.h6
-rw-r--r--mesalib/include/GL/glext.h40
-rw-r--r--mesalib/src/glsl/glsl_parser.yy1
-rw-r--r--mesalib/src/mesa/drivers/dri/common/dri_util.c12
-rw-r--r--mesalib/src/mesa/drivers/dri/swrast/swrast.c3
-rw-r--r--mesalib/src/mesa/main/imports.h1
-rw-r--r--mesalib/windows/VC8/mesa/glsl_apps_compile/glsl_apps_compile.vcxproj1
-rw-r--r--mesalib/windows/VC8/mesa/glsl_apps_compile/glsl_apps_compile.vcxproj.filters3
-rw-r--r--mesalib/windows/VC8/mesa/mesa/mesa.vcxproj5
-rw-r--r--mesalib/windows/VC8/mesa/mesa/mesa.vcxproj.filters3
-rw-r--r--xorg-server/glx/dispatch.h564
-rw-r--r--xorg-server/glx/glapitable.h488
-rw-r--r--xorg-server/glx/glprocs.h1594
-rw-r--r--xorg-server/glx/remap_helper.h3406
-rw-r--r--xorg-server/hw/xwin/glx/genheaders.py36
-rw-r--r--xorg-server/hw/xwin/glx/gl.xml74
-rw-r--r--xorg-server/hw/xwin/glx/reg.py114
-rw-r--r--xorg-server/hw/xwin/swrastwgl_dri/swrastwgl_dri.c31
26 files changed, 3543 insertions, 3153 deletions
diff --git a/X11/xtrans/Xtrans.c b/X11/xtrans/Xtrans.c
index 93358bc75..13adf59ef 100644
--- a/X11/xtrans/Xtrans.c
+++ b/X11/xtrans/Xtrans.c
@@ -884,7 +884,6 @@ TRANS(Writev) (XtransConnInfo ciptr, struct iovec *buf, int size)
return ciptr->transptr->Writev (ciptr, buf, size);
}
-#if XTRANS_SEND_FDS
int
TRANS(SendFd) (XtransConnInfo ciptr, int fd, int do_close)
{
@@ -896,7 +895,6 @@ TRANS(RecvFd) (XtransConnInfo ciptr)
{
return ciptr->transptr->RecvFd(ciptr);
}
-#endif
int
TRANS(Disconnect) (XtransConnInfo ciptr)
diff --git a/X11/xtrans/Xtransint.h b/X11/xtrans/Xtransint.h
index 96d9aa3ce..b2b6821d3 100644
--- a/X11/xtrans/Xtransint.h
+++ b/X11/xtrans/Xtransint.h
@@ -291,7 +291,6 @@ typedef struct _Xtransport {
int /* size */
);
-#if XTRANS_SEND_FDS
int (*SendFd)(
XtransConnInfo, /* connection */
int, /* fd */
@@ -301,7 +300,6 @@ typedef struct _Xtransport {
int (*RecvFd)(
XtransConnInfo /* connection */
);
-#endif
int (*Disconnect)(
XtransConnInfo /* connection */
diff --git a/X11/xtrans/Xtranssock.c b/X11/xtrans/Xtranssock.c
index b07b10b73..bbc08f4e0 100755
--- a/X11/xtrans/Xtranssock.c
+++ b/X11/xtrans/Xtranssock.c
@@ -2200,20 +2200,6 @@ TRANS(SocketSendFd) (XtransConnInfo ciptr, int fd, int do_close)
return 0;
}
-static int
-TRANS(SocketRecvFdInvalid)(XtransConnInfo ciptr)
-{
- errno = EINVAL;
- return -1;
-}
-
-static int
-TRANS(SocketSendFdInvalid)(XtransConnInfo ciptr, int fd, int do_close)
-{
- errno = EINVAL;
- return -1;
-}
-
#define MAX_FDS 128
struct fd_pass {
@@ -2240,6 +2226,20 @@ static inline void init_msg_send(struct msghdr *msg, struct iovec *iov, int niov
#endif /* XTRANS_SEND_FDS */
static int
+TRANS(SocketRecvFdInvalid)(XtransConnInfo ciptr)
+{
+ errno = EINVAL;
+ return -1;
+}
+
+static int
+TRANS(SocketSendFdInvalid)(XtransConnInfo ciptr, int fd, int do_close)
+{
+ errno = EINVAL;
+ return -1;
+}
+
+static int
TRANS(SocketRead) (XtransConnInfo ciptr, char *buf, int size)
{
@@ -2549,10 +2549,8 @@ Xtransport TRANS(SocketTCPFuncs) = {
TRANS(SocketWrite),
TRANS(SocketReadv),
TRANS(SocketWritev),
-#if XTRANS_SEND_FDS
TRANS(SocketSendFdInvalid),
TRANS(SocketRecvFdInvalid),
-#endif
TRANS(SocketDisconnect),
TRANS(SocketINETClose),
TRANS(SocketINETClose),
@@ -2593,10 +2591,8 @@ Xtransport TRANS(SocketINETFuncs) = {
TRANS(SocketWrite),
TRANS(SocketReadv),
TRANS(SocketWritev),
-#if XTRANS_SEND_FDS
TRANS(SocketSendFdInvalid),
TRANS(SocketRecvFdInvalid),
-#endif
TRANS(SocketDisconnect),
TRANS(SocketINETClose),
TRANS(SocketINETClose),
@@ -2638,10 +2634,8 @@ Xtransport TRANS(SocketINET6Funcs) = {
TRANS(SocketWrite),
TRANS(SocketReadv),
TRANS(SocketWritev),
-#if XTRANS_SEND_FDS
TRANS(SocketSendFdInvalid),
TRANS(SocketRecvFdInvalid),
-#endif
TRANS(SocketDisconnect),
TRANS(SocketINETClose),
TRANS(SocketINETClose),
diff --git a/filesthatshouldbethesame.py b/filesthatshouldbethesame.py
index a8eb92041..72ba37961 100755
--- a/filesthatshouldbethesame.py
+++ b/filesthatshouldbethesame.py
@@ -93,7 +93,6 @@ mesalib/src/mapi/glapi/gen/glapitable.h mesalib/src/mesa/main/glapit
mesalib/src/mesa/main/glapitable.h xorg-server/glx/glapitable.h
mesalib/src/mapi/glapi/gen/glprocs.h xorg-server/glx/glprocs.h
mesalib/src/mapi/glapi/gen/dispatch.h xorg-server/glx/dispatch.h
-mesalib/src/mapi/glapi/gen/glapi_gentable.c xorg-server/glx/glapi_gentable.c
mesalib/src/mapi/glapi/gen/indirect_dispatch.c xorg-server/glx/indirect_dispatch.c
mesalib/src/mapi/glapi/gen/indirect_dispatch.h xorg-server/glx/indirect_dispatch.h
mesalib/src/mapi/glapi/gen/indirect_dispatch_swap.c xorg-server/glx/indirect_dispatch_swap.c
diff --git a/gl/glext.h b/gl/glext.h
index 8808d29ef..e70266447 100644
--- a/gl/glext.h
+++ b/gl/glext.h
@@ -33,7 +33,7 @@ extern "C" {
** used to make the header, and the header can be found at
** http://www.opengl.org/registry/
**
-** Khronos $Revision: 23652 $ on $Date: 2013-10-23 01:18:54 -0700 (Wed, 23 Oct 2013) $
+** Khronos $Revision: 23855 $ on $Date: 2013-11-02 22:54:48 -0700 (Sat, 02 Nov 2013) $
*/
#if defined(_WIN32) && !defined(APIENTRY) && !defined(__CYGWIN__) && !defined(__SCITECH_SNAP__)
@@ -53,7 +53,7 @@ extern "C" {
#define GLAPI extern
#endif
-#define GL_GLEXT_VERSION 20131023
+#define GL_GLEXT_VERSION 20131102
/* Generated C header for:
* API: gl
@@ -1477,7 +1477,7 @@ typedef GLboolean (APIENTRYP PFNGLISSYNCPROC) (GLsync sync);
typedef void (APIENTRYP PFNGLDELETESYNCPROC) (GLsync sync);
typedef GLenum (APIENTRYP PFNGLCLIENTWAITSYNCPROC) (GLsync sync, GLbitfield flags, GLuint64 timeout);
typedef void (APIENTRYP PFNGLWAITSYNCPROC) (GLsync sync, GLbitfield flags, GLuint64 timeout);
-typedef void (APIENTRYP PFNGLGETINTEGER64VPROC) (GLenum pname, GLint64 *params);
+typedef void (APIENTRYP PFNGLGETINTEGER64VPROC) (GLenum pname, GLint64 *data);
typedef void (APIENTRYP PFNGLGETSYNCIVPROC) (GLsync sync, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *values);
typedef void (APIENTRYP PFNGLGETINTEGER64I_VPROC) (GLenum target, GLuint index, GLint64 *data);
typedef void (APIENTRYP PFNGLGETBUFFERPARAMETERI64VPROC) (GLenum target, GLenum pname, GLint64 *params);
@@ -1497,7 +1497,7 @@ GLAPI GLboolean APIENTRY glIsSync (GLsync sync);
GLAPI void APIENTRY glDeleteSync (GLsync sync);
GLAPI GLenum APIENTRY glClientWaitSync (GLsync sync, GLbitfield flags, GLuint64 timeout);
GLAPI void APIENTRY glWaitSync (GLsync sync, GLbitfield flags, GLuint64 timeout);
-GLAPI void APIENTRY glGetInteger64v (GLenum pname, GLint64 *params);
+GLAPI void APIENTRY glGetInteger64v (GLenum pname, GLint64 *data);
GLAPI void APIENTRY glGetSynciv (GLsync sync, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *values);
GLAPI void APIENTRY glGetInteger64i_v (GLenum target, GLuint index, GLint64 *data);
GLAPI void APIENTRY glGetBufferParameteri64v (GLenum target, GLenum pname, GLint64 *params);
@@ -5900,6 +5900,34 @@ GLAPI void APIENTRY glCullParameterfvEXT (GLenum pname, GLfloat *params);
#endif
#endif /* GL_EXT_cull_vertex */
+#ifndef GL_EXT_debug_label
+#define GL_EXT_debug_label 1
+#define GL_PROGRAM_PIPELINE_OBJECT_EXT 0x8A4F
+#define GL_PROGRAM_OBJECT_EXT 0x8B40
+#define GL_SHADER_OBJECT_EXT 0x8B48
+#define GL_BUFFER_OBJECT_EXT 0x9151
+#define GL_QUERY_OBJECT_EXT 0x9153
+#define GL_VERTEX_ARRAY_OBJECT_EXT 0x9154
+typedef void (APIENTRYP PFNGLLABELOBJECTEXTPROC) (GLenum type, GLuint object, GLsizei length, const GLchar *label);
+typedef void (APIENTRYP PFNGLGETOBJECTLABELEXTPROC) (GLenum type, GLuint object, GLsizei bufSize, GLsizei *length, GLchar *label);
+#ifdef GL_GLEXT_PROTOTYPES
+GLAPI void APIENTRY glLabelObjectEXT (GLenum type, GLuint object, GLsizei length, const GLchar *label);
+GLAPI void APIENTRY glGetObjectLabelEXT (GLenum type, GLuint object, GLsizei bufSize, GLsizei *length, GLchar *label);
+#endif
+#endif /* GL_EXT_debug_label */
+
+#ifndef GL_EXT_debug_marker
+#define GL_EXT_debug_marker 1
+typedef void (APIENTRYP PFNGLINSERTEVENTMARKEREXTPROC) (GLsizei length, const GLchar *marker);
+typedef void (APIENTRYP PFNGLPUSHGROUPMARKEREXTPROC) (GLsizei length, const GLchar *marker);
+typedef void (APIENTRYP PFNGLPOPGROUPMARKEREXTPROC) (void);
+#ifdef GL_GLEXT_PROTOTYPES
+GLAPI void APIENTRY glInsertEventMarkerEXT (GLsizei length, const GLchar *marker);
+GLAPI void APIENTRY glPushGroupMarkerEXT (GLsizei length, const GLchar *marker);
+GLAPI void APIENTRY glPopGroupMarkerEXT (void);
+#endif
+#endif /* GL_EXT_debug_marker */
+
#ifndef GL_EXT_depth_bounds_test
#define GL_EXT_depth_bounds_test 1
#define GL_DEPTH_BOUNDS_TEST_EXT 0x8890
@@ -8041,6 +8069,10 @@ GLAPI void APIENTRY glBlendFuncSeparateINGR (GLenum sfactorRGB, GLenum dfactorRG
#define GL_INTERLACE_READ_INGR 0x8568
#endif /* GL_INGR_interlace_read */
+#ifndef GL_INTEL_fragment_shader_ordering
+#define GL_INTEL_fragment_shader_ordering 1
+#endif /* GL_INTEL_fragment_shader_ordering */
+
#ifndef GL_INTEL_map_texture
#define GL_INTEL_map_texture 1
#define GL_TEXTURE_MEMORY_LAYOUT_INTEL 0x83FF
diff --git a/gl/glx.h b/gl/glx.h
index fa5a8eda9..62d0ede9e 100644
--- a/gl/glx.h
+++ b/gl/glx.h
@@ -467,7 +467,32 @@ extern void glXReleaseTexImageEXT(Display *dpy, GLXDrawable drawable, int buffer
#endif /* GLX_EXT_texture_from_pixmap */
-
+#ifndef GLX_MESA_query_renderer
+#define GLX_MESA_query_renderer 1
+
+#define GLX_RENDERER_VENDOR_ID_MESA 0x8183
+#define GLX_RENDERER_DEVICE_ID_MESA 0x8184
+#define GLX_RENDERER_VERSION_MESA 0x8185
+#define GLX_RENDERER_ACCELERATED_MESA 0x8186
+#define GLX_RENDERER_VIDEO_MEMORY_MESA 0x8187
+#define GLX_RENDERER_UNIFIED_MEMORY_ARCHITECTURE_MESA 0x8188
+#define GLX_RENDERER_PREFERRED_PROFILE_MESA 0x8189
+#define GLX_RENDERER_OPENGL_CORE_PROFILE_VERSION_MESA 0x818A
+#define GLX_RENDERER_OPENGL_COMPATIBILITY_PROFILE_VERSION_MESA 0x818B
+#define GLX_RENDERER_OPENGL_ES_PROFILE_VERSION_MESA 0x818C
+#define GLX_RENDERER_OPENGL_ES2_PROFILE_VERSION_MESA 0x818D
+#define GLX_RENDERER_ID_MESA 0x818E
+
+Bool glXQueryRendererIntegerMESA(Display *dpy, int screen, int renderer, int attribute, unsigned int *value);
+Bool glXQueryCurrentRendererIntegerMESA(int attribute, unsigned int *value);
+const char *glXQueryRendererStringMESA(Display *dpy, int screen, int renderer, int attribute);
+const char *glXQueryCurrentRendererStringMESA(int attribute);
+
+typedef Bool (*PFNGLXQUERYRENDERERINTEGERMESAPROC) (Display *dpy, int screen, int renderer, int attribute, unsigned int *value);
+typedef Bool (*PFNGLXQUERYCURRENTRENDERERINTEGERMESAPROC) (int attribute, unsigned int *value);
+typedef const char *(*PFNGLXQUERYRENDERERSTRINGMESAPROC) (Display *dpy, int screen, int renderer, int attribute);
+typedef const char *(*PFNGLXQUERYCURRENTRENDERERSTRINGMESAPROC) (int attribute);
+#endif /* GLX_MESA_query_renderer */
/*** Should these go here, or in another header? */
/*
diff --git a/gl/internal/dri_interface.h b/gl/internal/dri_interface.h
index f074dbe44..ed6142028 100644
--- a/gl/internal/dri_interface.h
+++ b/gl/internal/dri_interface.h
@@ -88,6 +88,10 @@ typedef struct __DRIdri2LoaderExtensionRec __DRIdri2LoaderExtension;
typedef struct __DRI2flushExtensionRec __DRI2flushExtension;
typedef struct __DRI2throttleExtensionRec __DRI2throttleExtension;
+
+typedef struct __DRIimageLoaderExtensionRec __DRIimageLoaderExtension;
+typedef struct __DRIimageDriverExtensionRec __DRIimageDriverExtension;
+
/*@}*/
@@ -767,6 +771,40 @@ struct __DRIswrastExtensionRec {
};
+/** Common DRI function definitions, shared among DRI2 and Image extensions
+ */
+
+typedef __DRIscreen *
+(*__DRIcreateNewScreen2Func)(int screen, int fd,
+ const __DRIextension **extensions,
+ const __DRIextension **driver_extensions,
+ const __DRIconfig ***driver_configs,
+ void *loaderPrivate);
+
+typedef __DRIdrawable *
+(*__DRIcreateNewDrawableFunc)(__DRIscreen *screen,
+ const __DRIconfig *config,
+ void *loaderPrivate);
+
+typedef __DRIcontext *
+(*__DRIcreateNewContextFunc)(__DRIscreen *screen,
+ const __DRIconfig *config,
+ __DRIcontext *shared,
+ void *loaderPrivate);
+
+typedef __DRIcontext *
+(*__DRIcreateContextAttribsFunc)(__DRIscreen *screen,
+ int api,
+ const __DRIconfig *config,
+ __DRIcontext *shared,
+ unsigned num_attribs,
+ const uint32_t *attribs,
+ unsigned *error,
+ void *loaderPrivate);
+
+typedef unsigned int
+(*__DRIgetAPIMaskFunc)(__DRIscreen *screen);
+
/**
* DRI2 Loader extension.
*/
@@ -914,17 +952,11 @@ struct __DRIdri2ExtensionRec {
const __DRIconfig ***driver_configs,
void *loaderPrivate);
- __DRIdrawable *(*createNewDrawable)(__DRIscreen *screen,
- const __DRIconfig *config,
- void *loaderPrivate);
-
- __DRIcontext *(*createNewContext)(__DRIscreen *screen,
- const __DRIconfig *config,
- __DRIcontext *shared,
- void *loaderPrivate);
+ __DRIcreateNewDrawableFunc createNewDrawable;
+ __DRIcreateNewContextFunc createNewContext;
/* Since version 2 */
- unsigned int (*getAPIMask)(__DRIscreen *screen);
+ __DRIgetAPIMaskFunc getAPIMask;
__DRIcontext *(*createNewContextForAPI)(__DRIscreen *screen,
int api,
@@ -947,25 +979,14 @@ struct __DRIdri2ExtensionRec {
*
* \sa __DRIswrastExtensionRec::createContextAttribs
*/
- __DRIcontext *(*createContextAttribs)(__DRIscreen *screen,
- int api,
- const __DRIconfig *config,
- __DRIcontext *shared,
- unsigned num_attribs,
- const uint32_t *attribs,
- unsigned *error,
- void *loaderPrivate);
+ __DRIcreateContextAttribsFunc createContextAttribs;
/**
* createNewScreen with the driver's extension list passed in.
*
* \since version 4
*/
- __DRIscreen *(*createNewScreen2)(int screen, int fd,
- const __DRIextension **loader_extensions,
- const __DRIextension **driver_extensions,
- const __DRIconfig ***driver_configs,
- void *loaderPrivate);
+ __DRIcreateNewScreen2Func createNewScreen2;
};
@@ -1000,6 +1021,7 @@ struct __DRIdri2ExtensionRec {
#define __DRI_IMAGE_FORMAT_NONE 0x1008
#define __DRI_IMAGE_FORMAT_XRGB2101010 0x1009
#define __DRI_IMAGE_FORMAT_ARGB2101010 0x100a
+#define __DRI_IMAGE_FORMAT_SARGB8 0x100b
#define __DRI_IMAGE_USE_SHARE 0x0001
#define __DRI_IMAGE_USE_SCANOUT 0x0002
@@ -1291,4 +1313,105 @@ typedef struct __DRIDriverVtableExtensionRec {
const struct __DriverAPIRec *vtable;
} __DRIDriverVtableExtension;
+/**
+ * Query renderer driver extension
+ *
+ * This allows the window system layer (either EGL or GLX) to query aspects of
+ * hardware and driver support without creating a context.
+ */
+#define __DRI2_RENDERER_QUERY "DRI_RENDERER_QUERY"
+#define __DRI2_RENDERER_QUERY_VERSION 1
+
+#define __DRI2_RENDERER_VENDOR_ID 0x0000
+#define __DRI2_RENDERER_DEVICE_ID 0x0001
+#define __DRI2_RENDERER_VERSION 0x0002
+#define __DRI2_RENDERER_ACCELERATED 0x0003
+#define __DRI2_RENDERER_VIDEO_MEMORY 0x0004
+#define __DRI2_RENDERER_UNIFIED_MEMORY_ARCHITECTURE 0x0005
+#define __DRI2_RENDERER_PREFERRED_PROFILE 0x0006
+#define __DRI2_RENDERER_OPENGL_CORE_PROFILE_VERSION 0x0007
+#define __DRI2_RENDERER_OPENGL_COMPATIBILITY_PROFILE_VERSION 0x0008
+#define __DRI2_RENDERER_OPENGL_ES_PROFILE_VERSION 0x0009
+#define __DRI2_RENDERER_OPENGL_ES2_PROFILE_VERSION 0x000a
+
+typedef struct __DRI2rendererQueryExtensionRec __DRI2rendererQueryExtension;
+struct __DRI2rendererQueryExtensionRec {
+ __DRIextension base;
+
+ int (*queryInteger)(__DRIscreen *screen, int attribute, unsigned int *val);
+ int (*queryString)(__DRIscreen *screen, int attribute, const char **val);
+};
+
+/**
+ * Image Loader extension. Drivers use this to allocate color buffers
+ */
+
+enum __DRIimageBufferMask {
+ __DRI_IMAGE_BUFFER_BACK = (1 << 0),
+ __DRI_IMAGE_BUFFER_FRONT = (1 << 1)
+};
+
+struct __DRIimageList {
+ uint32_t image_mask;
+ __DRIimage *back;
+ __DRIimage *front;
+};
+
+#define __DRI_IMAGE_LOADER "DRI_IMAGE_LOADER"
+#define __DRI_IMAGE_LOADER_VERSION 1
+
+struct __DRIimageLoaderExtensionRec {
+ __DRIextension base;
+
+ /**
+ * Allocate color buffers.
+ *
+ * \param driDrawable
+ * \param width Width of allocated buffers
+ * \param height Height of allocated buffers
+ * \param format one of __DRI_IMAGE_FORMAT_*
+ * \param stamp Address of variable to be updated when
+ * getBuffers must be called again
+ * \param loaderPrivate The loaderPrivate for driDrawable
+ * \param buffer_mask Set of buffers to allocate
+ * \param buffers Returned buffers
+ */
+ int (*getBuffers)(__DRIdrawable *driDrawable,
+ unsigned int format,
+ uint32_t *stamp,
+ void *loaderPrivate,
+ uint32_t buffer_mask,
+ struct __DRIimageList *buffers);
+
+ /**
+ * Flush pending front-buffer rendering
+ *
+ * Any rendering that has been performed to the
+ * fake front will be flushed to the front
+ *
+ * \param driDrawable Drawable whose front-buffer is to be flushed
+ * \param loaderPrivate Loader's private data that was previously passed
+ * into __DRIdri2ExtensionRec::createNewDrawable
+ */
+ void (*flushFrontBuffer)(__DRIdrawable *driDrawable, void *loaderPrivate);
+};
+
+/**
+ * DRI extension.
+ */
+
+#define __DRI_IMAGE_DRIVER "DRI_IMAGE_DRIVER"
+#define __DRI_IMAGE_DRIVER_VERSION 1
+
+struct __DRIimageDriverExtensionRec {
+ __DRIextension base;
+
+ /* Common DRI functions, shared with DRI2 */
+ __DRIcreateNewScreen2Func createNewScreen2;
+ __DRIcreateNewDrawableFunc createNewDrawable;
+ __DRIcreateNewContextFunc createNewContext;
+ __DRIcreateContextAttribsFunc createContextAttribs;
+ __DRIgetAPIMaskFunc getAPIMask;
+};
+
#endif
diff --git a/include/xcb/xcb.h b/include/xcb/xcb.h
index f4ba1de13..8cdba0550 100644
--- a/include/xcb/xcb.h
+++ b/include/xcb/xcb.h
@@ -88,6 +88,9 @@ extern "C" {
/** Connection closed because the server does not have a screen matching the display. */
#define XCB_CONN_CLOSED_INVALID_SCREEN 6
+/** Connection closed because some FD passing operation failed */
+#define XCB_CONN_CLOSED_FDPASSING_FAILED 7
+
#define XCB_TYPE_PAD(T,I) (-(I) & (sizeof(T) > 4 ? 3 : sizeof(T) - 1))
/* Opaque structures */
@@ -288,6 +291,39 @@ xcb_generic_event_t *xcb_poll_for_event(xcb_connection_t *c);
*/
xcb_generic_event_t *xcb_poll_for_queued_event(xcb_connection_t *c);
+typedef struct xcb_special_event xcb_special_event_t;
+
+/**
+ * @brief Returns the next event from a special queue
+ */
+xcb_generic_event_t *xcb_poll_for_special_event(xcb_connection_t *c,
+ xcb_special_event_t *se);
+
+/**
+ * @brief Returns the next event from a special queue, blocking until one arrives
+ */
+xcb_generic_event_t *xcb_wait_for_special_event(xcb_connection_t *c,
+ xcb_special_event_t *se);
+/**
+ * @typedef typedef struct xcb_extension_t xcb_extension_t
+ */
+typedef struct xcb_extension_t xcb_extension_t; /**< Opaque structure used as key for xcb_get_extension_data_t. */
+
+
+/**
+ * @brief Listen for a special event
+ */
+xcb_special_event_t *xcb_register_for_special_xge(xcb_connection_t *c,
+ xcb_extension_t *ext,
+ uint32_t eid,
+ uint32_t *stamp);
+
+/**
+ * @brief Stop listening for a special event
+ */
+void xcb_unregister_for_special_event(xcb_connection_t *c,
+ xcb_special_event_t *se);
+
/**
* @brief Return the error for a request, or NULL if none can ever arrive.
* @param c: The connection to the X server.
@@ -326,11 +362,6 @@ void xcb_discard_reply(xcb_connection_t *c, unsigned int sequence);
/* xcb_ext.c */
/**
- * @typedef typedef struct xcb_extension_t xcb_extension_t
- */
-typedef struct xcb_extension_t xcb_extension_t; /**< Opaque structure used as key for xcb_get_extension_data_t. */
-
-/**
* @brief Caches reply information from QueryExtension requests.
* @param c: The connection.
* @param ext: The extension data.
diff --git a/include/xcb/xcbext.h b/include/xcb/xcbext.h
index 4e1f2f73d..1eb1be77f 100644
--- a/include/xcb/xcbext.h
+++ b/include/xcb/xcbext.h
@@ -54,11 +54,14 @@ typedef struct {
enum xcb_send_request_flags_t {
XCB_REQUEST_CHECKED = 1 << 0,
XCB_REQUEST_RAW = 1 << 1,
- XCB_REQUEST_DISCARD_REPLY = 1 << 2
+ XCB_REQUEST_DISCARD_REPLY = 1 << 2,
+ XCB_REQUEST_REPLY_FDS = 1 << 3
};
unsigned int xcb_send_request(xcb_connection_t *c, int flags, struct iovec *vector, const xcb_protocol_request_t *request);
+void xcb_send_fd(xcb_connection_t *c, int fd);
+
/* xcb_take_socket allows external code to ask XCB for permission to
* take over the write side of the socket and send raw data with
* xcb_writev. xcb_take_socket provides the sequence number of the last
@@ -89,6 +92,7 @@ int xcb_writev(xcb_connection_t *c, struct iovec *vector, int count, uint64_t re
void *xcb_wait_for_reply(xcb_connection_t *c, unsigned int request, xcb_generic_error_t **e);
int xcb_poll_for_reply(xcb_connection_t *c, unsigned int request, void **reply, xcb_generic_error_t **error);
+int *xcb_get_reply_fds(xcb_connection_t *c, void *reply, size_t replylen);
/* xcb_util.c */
diff --git a/mesalib/include/GL/glext.h b/mesalib/include/GL/glext.h
index 8808d29ef..e70266447 100644
--- a/mesalib/include/GL/glext.h
+++ b/mesalib/include/GL/glext.h
@@ -33,7 +33,7 @@ extern "C" {
** used to make the header, and the header can be found at
** http://www.opengl.org/registry/
**
-** Khronos $Revision: 23652 $ on $Date: 2013-10-23 01:18:54 -0700 (Wed, 23 Oct 2013) $
+** Khronos $Revision: 23855 $ on $Date: 2013-11-02 22:54:48 -0700 (Sat, 02 Nov 2013) $
*/
#if defined(_WIN32) && !defined(APIENTRY) && !defined(__CYGWIN__) && !defined(__SCITECH_SNAP__)
@@ -53,7 +53,7 @@ extern "C" {
#define GLAPI extern
#endif
-#define GL_GLEXT_VERSION 20131023
+#define GL_GLEXT_VERSION 20131102
/* Generated C header for:
* API: gl
@@ -1477,7 +1477,7 @@ typedef GLboolean (APIENTRYP PFNGLISSYNCPROC) (GLsync sync);
typedef void (APIENTRYP PFNGLDELETESYNCPROC) (GLsync sync);
typedef GLenum (APIENTRYP PFNGLCLIENTWAITSYNCPROC) (GLsync sync, GLbitfield flags, GLuint64 timeout);
typedef void (APIENTRYP PFNGLWAITSYNCPROC) (GLsync sync, GLbitfield flags, GLuint64 timeout);
-typedef void (APIENTRYP PFNGLGETINTEGER64VPROC) (GLenum pname, GLint64 *params);
+typedef void (APIENTRYP PFNGLGETINTEGER64VPROC) (GLenum pname, GLint64 *data);
typedef void (APIENTRYP PFNGLGETSYNCIVPROC) (GLsync sync, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *values);
typedef void (APIENTRYP PFNGLGETINTEGER64I_VPROC) (GLenum target, GLuint index, GLint64 *data);
typedef void (APIENTRYP PFNGLGETBUFFERPARAMETERI64VPROC) (GLenum target, GLenum pname, GLint64 *params);
@@ -1497,7 +1497,7 @@ GLAPI GLboolean APIENTRY glIsSync (GLsync sync);
GLAPI void APIENTRY glDeleteSync (GLsync sync);
GLAPI GLenum APIENTRY glClientWaitSync (GLsync sync, GLbitfield flags, GLuint64 timeout);
GLAPI void APIENTRY glWaitSync (GLsync sync, GLbitfield flags, GLuint64 timeout);
-GLAPI void APIENTRY glGetInteger64v (GLenum pname, GLint64 *params);
+GLAPI void APIENTRY glGetInteger64v (GLenum pname, GLint64 *data);
GLAPI void APIENTRY glGetSynciv (GLsync sync, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *values);
GLAPI void APIENTRY glGetInteger64i_v (GLenum target, GLuint index, GLint64 *data);
GLAPI void APIENTRY glGetBufferParameteri64v (GLenum target, GLenum pname, GLint64 *params);
@@ -5900,6 +5900,34 @@ GLAPI void APIENTRY glCullParameterfvEXT (GLenum pname, GLfloat *params);
#endif
#endif /* GL_EXT_cull_vertex */
+#ifndef GL_EXT_debug_label
+#define GL_EXT_debug_label 1
+#define GL_PROGRAM_PIPELINE_OBJECT_EXT 0x8A4F
+#define GL_PROGRAM_OBJECT_EXT 0x8B40
+#define GL_SHADER_OBJECT_EXT 0x8B48
+#define GL_BUFFER_OBJECT_EXT 0x9151
+#define GL_QUERY_OBJECT_EXT 0x9153
+#define GL_VERTEX_ARRAY_OBJECT_EXT 0x9154
+typedef void (APIENTRYP PFNGLLABELOBJECTEXTPROC) (GLenum type, GLuint object, GLsizei length, const GLchar *label);
+typedef void (APIENTRYP PFNGLGETOBJECTLABELEXTPROC) (GLenum type, GLuint object, GLsizei bufSize, GLsizei *length, GLchar *label);
+#ifdef GL_GLEXT_PROTOTYPES
+GLAPI void APIENTRY glLabelObjectEXT (GLenum type, GLuint object, GLsizei length, const GLchar *label);
+GLAPI void APIENTRY glGetObjectLabelEXT (GLenum type, GLuint object, GLsizei bufSize, GLsizei *length, GLchar *label);
+#endif
+#endif /* GL_EXT_debug_label */
+
+#ifndef GL_EXT_debug_marker
+#define GL_EXT_debug_marker 1
+typedef void (APIENTRYP PFNGLINSERTEVENTMARKEREXTPROC) (GLsizei length, const GLchar *marker);
+typedef void (APIENTRYP PFNGLPUSHGROUPMARKEREXTPROC) (GLsizei length, const GLchar *marker);
+typedef void (APIENTRYP PFNGLPOPGROUPMARKEREXTPROC) (void);
+#ifdef GL_GLEXT_PROTOTYPES
+GLAPI void APIENTRY glInsertEventMarkerEXT (GLsizei length, const GLchar *marker);
+GLAPI void APIENTRY glPushGroupMarkerEXT (GLsizei length, const GLchar *marker);
+GLAPI void APIENTRY glPopGroupMarkerEXT (void);
+#endif
+#endif /* GL_EXT_debug_marker */
+
#ifndef GL_EXT_depth_bounds_test
#define GL_EXT_depth_bounds_test 1
#define GL_DEPTH_BOUNDS_TEST_EXT 0x8890
@@ -8041,6 +8069,10 @@ GLAPI void APIENTRY glBlendFuncSeparateINGR (GLenum sfactorRGB, GLenum dfactorRG
#define GL_INTERLACE_READ_INGR 0x8568
#endif /* GL_INGR_interlace_read */
+#ifndef GL_INTEL_fragment_shader_ordering
+#define GL_INTEL_fragment_shader_ordering 1
+#endif /* GL_INTEL_fragment_shader_ordering */
+
#ifndef GL_INTEL_map_texture
#define GL_INTEL_map_texture 1
#define GL_TEXTURE_MEMORY_LAYOUT_INTEL 0x83FF
diff --git a/mesalib/src/glsl/glsl_parser.yy b/mesalib/src/glsl/glsl_parser.yy
index ada3690f6..8ad7484fb 100644
--- a/mesalib/src/glsl/glsl_parser.yy
+++ b/mesalib/src/glsl/glsl_parser.yy
@@ -23,6 +23,7 @@
*/
#include <stdio.h>
#include <stdlib.h>
+#include <unistd.h>
#include <string.h>
#include <assert.h>
diff --git a/mesalib/src/mesa/drivers/dri/common/dri_util.c b/mesalib/src/mesa/drivers/dri/common/dri_util.c
index 6c5878452..75dc645ff 100644
--- a/mesalib/src/mesa/drivers/dri/common/dri_util.c
+++ b/mesalib/src/mesa/drivers/dri/common/dri_util.c
@@ -868,11 +868,11 @@ driImageFormatToGLFormat(uint32_t image_format)
/** Image driver interface */
const __DRIimageDriverExtension driImageDriverExtension = {
- .base = { __DRI_IMAGE_DRIVER, __DRI_IMAGE_DRIVER_VERSION },
+ /*.base = */{ __DRI_IMAGE_DRIVER, __DRI_IMAGE_DRIVER_VERSION },
- .createNewScreen2 = driCreateNewScreen2,
- .createNewDrawable = driCreateNewDrawable,
- .createNewContext = driCreateNewContext,
- .getAPIMask = driGetAPIMask,
- .createContextAttribs = driCreateContextAttribs,
+ /*.createNewScreen2 =*/ driCreateNewScreen2,
+ /*.createNewDrawable =*/ driCreateNewDrawable,
+ /*.createNewContext =*/ driCreateNewContext,
+ /*.createContextAttribs =*/ driCreateContextAttribs,
+ /*.getAPIMask =*/ driGetAPIMask,
};
diff --git a/mesalib/src/mesa/drivers/dri/swrast/swrast.c b/mesalib/src/mesa/drivers/dri/swrast/swrast.c
index 6e76b1493..f6570a5df 100644
--- a/mesalib/src/mesa/drivers/dri/swrast/swrast.c
+++ b/mesalib/src/mesa/drivers/dri/swrast/swrast.c
@@ -669,6 +669,7 @@ dri_create_context(gl_api api,
unsigned major_version,
unsigned minor_version,
uint32_t flags,
+ bool notify_reset,
unsigned *error,
void *sharedContextPrivate)
{
@@ -835,6 +836,8 @@ static const struct __DriverAPIRec swrast_driver_api = {
/*.SwapBuffers = */dri_swap_buffers,
/*.MakeCurrent = */dri_make_current,
/*.UnbindContext = */dri_unbind_context,
+ /*.AllocateBuffer = */NULL,
+ /*.ReleaseBuffer = */NULL
};
static const struct __DRIDriverVtableExtensionRec swrast_vtable = {
diff --git a/mesalib/src/mesa/main/imports.h b/mesalib/src/mesa/main/imports.h
index d79e2a339..53e40b445 100644
--- a/mesalib/src/mesa/main/imports.h
+++ b/mesalib/src/mesa/main/imports.h
@@ -141,7 +141,6 @@ static inline float acoshf(float x) { return logf(x + sqrtf(x * x - 1.0f)); }
static inline float atanhf(float x) { return (logf(1.0f + x) - logf(1.0f - x)) / 2.0f; }
static inline int isblank(int ch) { return ch == ' ' || ch == '\t'; }
#define strtoll(p, e, b) _strtoi64(p, e, b)
-#define strcasecmp(s1, s2) _stricmp(s1, s2)
#endif
/*@}*/
diff --git a/mesalib/windows/VC8/mesa/glsl_apps_compile/glsl_apps_compile.vcxproj b/mesalib/windows/VC8/mesa/glsl_apps_compile/glsl_apps_compile.vcxproj
index c5a7f0b88..f52c2402b 100644
--- a/mesalib/windows/VC8/mesa/glsl_apps_compile/glsl_apps_compile.vcxproj
+++ b/mesalib/windows/VC8/mesa/glsl_apps_compile/glsl_apps_compile.vcxproj
@@ -202,6 +202,7 @@
<ClCompile Include="..\..\..\..\src\glsl\builtin_variables.cpp" />
<ClCompile Include="..\..\..\..\src\glsl\ir_variable_refcount.cpp" />
<ClCompile Include="..\..\..\..\src\glsl\linker.cpp" />
+ <ClCompile Include="..\..\..\..\src\glsl\link_atomics.cpp" />
<ClCompile Include="..\..\..\..\src\glsl\link_functions.cpp" />
<ClCompile Include="..\..\..\..\src\glsl\link_interface_blocks.cpp" />
<ClCompile Include="..\..\..\..\src\glsl\link_uniforms.cpp" />
diff --git a/mesalib/windows/VC8/mesa/glsl_apps_compile/glsl_apps_compile.vcxproj.filters b/mesalib/windows/VC8/mesa/glsl_apps_compile/glsl_apps_compile.vcxproj.filters
index 5d8f12725..101fa4324 100644
--- a/mesalib/windows/VC8/mesa/glsl_apps_compile/glsl_apps_compile.vcxproj.filters
+++ b/mesalib/windows/VC8/mesa/glsl_apps_compile/glsl_apps_compile.vcxproj.filters
@@ -294,6 +294,9 @@
<ClCompile Include="..\..\..\..\src\glsl\opt_cse.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="..\..\..\..\src\glsl\link_atomics.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\..\..\..\src\glsl\strtod.h">
diff --git a/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj b/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj
index dc27f6461..f7ca24087 100644
--- a/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj
+++ b/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj
@@ -116,7 +116,7 @@
<InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
<OmitFramePointers>true</OmitFramePointers>
<WholeProgramOptimization>true</WholeProgramOptimization>
- <AdditionalIncludeDirectories>../../../../include;../../../../src/mesa;../../../../src/glsl;../../../../src/mapi;../../../../src/mesa/main;../../../../src/mesa/shader;../../../../src/mesa/shader/slang;../../../../../include;../../../../..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+ <AdditionalIncludeDirectories>../../../../include;../../../../src/mesa;../../../../src/glsl;../../../../src/mapi;../../../../src/mesa/main;../../../../src/mesa/shader;../../../../src/mesa/shader/slang;../../../../../include;../../../../..;../../../../src/gallium/auxiliary;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>NDEBUG;WIN32;_LIB;_DLL;_GDI32_;BUILD_GL32;WIN32_THREADS;MESA_MINWARN;_CRT_SECURE_NO_DEPRECATE;INSERVER;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
@@ -162,7 +162,7 @@
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<ClCompile>
<Optimization>Disabled</Optimization>
- <AdditionalIncludeDirectories>../../../../include;../../../../src/mesa;../../../../src/glsl;../../../../src/mapi;../../../../src/mesa/main;../../../../src/mesa/shader;../../../../src/mesa/shader/slang;../../../../../include;../../../../..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+ <AdditionalIncludeDirectories>../../../../include;../../../../src/mesa;../../../../src/glsl;../../../../src/mapi;../../../../src/mesa/main;../../../../src/mesa/shader;../../../../src/mesa/shader/slang;../../../../../include;../../../../..;../../../../src/gallium/auxiliary;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>_DEBUG;DEBUG;WIN32;_LIB;_DLL;_GDI32_;BUILD_GL32;WIN32_THREADS;MESA_MINWARN;_CRT_SECURE_NO_DEPRECATE;INSERVER;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
@@ -242,6 +242,7 @@
</ClCompile>
<ClCompile Include="..\..\..\..\src\glsl\ir_variable_refcount.cpp" />
<ClCompile Include="..\..\..\..\src\glsl\linker.cpp" />
+ <ClCompile Include="..\..\..\..\src\glsl\link_atomics.cpp" />
<ClCompile Include="..\..\..\..\src\glsl\link_functions.cpp" />
<ClCompile Include="..\..\..\..\src\glsl\link_interface_blocks.cpp" />
<ClCompile Include="..\..\..\..\src\glsl\link_uniforms.cpp" />
diff --git a/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj.filters b/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj.filters
index d406ae5d0..8fff3f313 100644
--- a/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj.filters
+++ b/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj.filters
@@ -764,6 +764,9 @@
<ClCompile Include="..\..\..\..\src\glsl\opt_cse.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="..\..\..\..\src\glsl\link_atomics.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\..\..\..\src\glsl\strtod.h">
diff --git a/xorg-server/glx/dispatch.h b/xorg-server/glx/dispatch.h
index a054416c4..c5749ac55 100644
--- a/xorg-server/glx/dispatch.h
+++ b/xorg-server/glx/dispatch.h
@@ -63,7 +63,7 @@
} while(0)
/* total number of offsets below */
-#define _gloffset_COUNT 1069
+#define _gloffset_COUNT 1075
#define _gloffset_NewList 0
#define _gloffset_EndList 1
@@ -473,7 +473,7 @@
#define _gloffset_MultiTexCoord4iv 405
#define _gloffset_MultiTexCoord4s 406
#define _gloffset_MultiTexCoord4sv 407
-#define driDispatchRemapTable_size 661
+#define driDispatchRemapTable_size 667
SERVEXTERN int driDispatchRemapTable[ driDispatchRemapTable_size ];
#define CompressedTexImage1D_remap_index 0
@@ -896,247 +896,253 @@ SERVEXTERN int driDispatchRemapTable[ driDispatchRemapTable_size ];
#define TextureStorage1DEXT_remap_index 417
#define TextureStorage2DEXT_remap_index 418
#define TextureStorage3DEXT_remap_index 419
-#define TexBufferRange_remap_index 420
-#define TexStorage2DMultisample_remap_index 421
-#define TexStorage3DMultisample_remap_index 422
-#define InvalidateBufferData_remap_index 423
-#define InvalidateBufferSubData_remap_index 424
-#define InvalidateFramebuffer_remap_index 425
-#define InvalidateSubFramebuffer_remap_index 426
-#define InvalidateTexImage_remap_index 427
-#define InvalidateTexSubImage_remap_index 428
-#define PolygonOffsetEXT_remap_index 429
-#define DrawTexfOES_remap_index 430
-#define DrawTexfvOES_remap_index 431
-#define DrawTexiOES_remap_index 432
-#define DrawTexivOES_remap_index 433
-#define DrawTexsOES_remap_index 434
-#define DrawTexsvOES_remap_index 435
-#define DrawTexxOES_remap_index 436
-#define DrawTexxvOES_remap_index 437
-#define PointSizePointerOES_remap_index 438
-#define QueryMatrixxOES_remap_index 439
-#define SampleMaskSGIS_remap_index 440
-#define SamplePatternSGIS_remap_index 441
-#define ColorPointerEXT_remap_index 442
-#define EdgeFlagPointerEXT_remap_index 443
-#define IndexPointerEXT_remap_index 444
-#define NormalPointerEXT_remap_index 445
-#define TexCoordPointerEXT_remap_index 446
-#define VertexPointerEXT_remap_index 447
-#define DiscardFramebufferEXT_remap_index 448
-#define LockArraysEXT_remap_index 449
-#define UnlockArraysEXT_remap_index 450
-#define DebugMessageCallback_remap_index 451
-#define DebugMessageControl_remap_index 452
-#define DebugMessageInsert_remap_index 453
-#define GetDebugMessageLog_remap_index 454
-#define GetObjectLabel_remap_index 455
-#define GetObjectPtrLabel_remap_index 456
-#define ObjectLabel_remap_index 457
-#define ObjectPtrLabel_remap_index 458
-#define PopDebugGroup_remap_index 459
-#define PushDebugGroup_remap_index 460
-#define SecondaryColor3fEXT_remap_index 461
-#define SecondaryColor3fvEXT_remap_index 462
-#define MultiDrawElementsEXT_remap_index 463
-#define FogCoordfEXT_remap_index 464
-#define FogCoordfvEXT_remap_index 465
-#define ResizeBuffersMESA_remap_index 466
-#define WindowPos4dMESA_remap_index 467
-#define WindowPos4dvMESA_remap_index 468
-#define WindowPos4fMESA_remap_index 469
-#define WindowPos4fvMESA_remap_index 470
-#define WindowPos4iMESA_remap_index 471
-#define WindowPos4ivMESA_remap_index 472
-#define WindowPos4sMESA_remap_index 473
-#define WindowPos4svMESA_remap_index 474
-#define MultiModeDrawArraysIBM_remap_index 475
-#define MultiModeDrawElementsIBM_remap_index 476
-#define AreProgramsResidentNV_remap_index 477
-#define ExecuteProgramNV_remap_index 478
-#define GetProgramParameterdvNV_remap_index 479
-#define GetProgramParameterfvNV_remap_index 480
-#define GetProgramStringNV_remap_index 481
-#define GetProgramivNV_remap_index 482
-#define GetTrackMatrixivNV_remap_index 483
-#define GetVertexAttribdvNV_remap_index 484
-#define GetVertexAttribfvNV_remap_index 485
-#define GetVertexAttribivNV_remap_index 486
-#define LoadProgramNV_remap_index 487
-#define ProgramParameters4dvNV_remap_index 488
-#define ProgramParameters4fvNV_remap_index 489
-#define RequestResidentProgramsNV_remap_index 490
-#define TrackMatrixNV_remap_index 491
-#define VertexAttrib1dNV_remap_index 492
-#define VertexAttrib1dvNV_remap_index 493
-#define VertexAttrib1fNV_remap_index 494
-#define VertexAttrib1fvNV_remap_index 495
-#define VertexAttrib1sNV_remap_index 496
-#define VertexAttrib1svNV_remap_index 497
-#define VertexAttrib2dNV_remap_index 498
-#define VertexAttrib2dvNV_remap_index 499
-#define VertexAttrib2fNV_remap_index 500
-#define VertexAttrib2fvNV_remap_index 501
-#define VertexAttrib2sNV_remap_index 502
-#define VertexAttrib2svNV_remap_index 503
-#define VertexAttrib3dNV_remap_index 504
-#define VertexAttrib3dvNV_remap_index 505
-#define VertexAttrib3fNV_remap_index 506
-#define VertexAttrib3fvNV_remap_index 507
-#define VertexAttrib3sNV_remap_index 508
-#define VertexAttrib3svNV_remap_index 509
-#define VertexAttrib4dNV_remap_index 510
-#define VertexAttrib4dvNV_remap_index 511
-#define VertexAttrib4fNV_remap_index 512
-#define VertexAttrib4fvNV_remap_index 513
-#define VertexAttrib4sNV_remap_index 514
-#define VertexAttrib4svNV_remap_index 515
-#define VertexAttrib4ubNV_remap_index 516
-#define VertexAttrib4ubvNV_remap_index 517
-#define VertexAttribPointerNV_remap_index 518
-#define VertexAttribs1dvNV_remap_index 519
-#define VertexAttribs1fvNV_remap_index 520
-#define VertexAttribs1svNV_remap_index 521
-#define VertexAttribs2dvNV_remap_index 522
-#define VertexAttribs2fvNV_remap_index 523
-#define VertexAttribs2svNV_remap_index 524
-#define VertexAttribs3dvNV_remap_index 525
-#define VertexAttribs3fvNV_remap_index 526
-#define VertexAttribs3svNV_remap_index 527
-#define VertexAttribs4dvNV_remap_index 528
-#define VertexAttribs4fvNV_remap_index 529
-#define VertexAttribs4svNV_remap_index 530
-#define VertexAttribs4ubvNV_remap_index 531
-#define GetTexBumpParameterfvATI_remap_index 532
-#define GetTexBumpParameterivATI_remap_index 533
-#define TexBumpParameterfvATI_remap_index 534
-#define TexBumpParameterivATI_remap_index 535
-#define AlphaFragmentOp1ATI_remap_index 536
-#define AlphaFragmentOp2ATI_remap_index 537
-#define AlphaFragmentOp3ATI_remap_index 538
-#define BeginFragmentShaderATI_remap_index 539
-#define BindFragmentShaderATI_remap_index 540
-#define ColorFragmentOp1ATI_remap_index 541
-#define ColorFragmentOp2ATI_remap_index 542
-#define ColorFragmentOp3ATI_remap_index 543
-#define DeleteFragmentShaderATI_remap_index 544
-#define EndFragmentShaderATI_remap_index 545
-#define GenFragmentShadersATI_remap_index 546
-#define PassTexCoordATI_remap_index 547
-#define SampleMapATI_remap_index 548
-#define SetFragmentShaderConstantATI_remap_index 549
-#define ActiveStencilFaceEXT_remap_index 550
-#define BindVertexArrayAPPLE_remap_index 551
-#define GenVertexArraysAPPLE_remap_index 552
-#define GetProgramNamedParameterdvNV_remap_index 553
-#define GetProgramNamedParameterfvNV_remap_index 554
-#define ProgramNamedParameter4dNV_remap_index 555
-#define ProgramNamedParameter4dvNV_remap_index 556
-#define ProgramNamedParameter4fNV_remap_index 557
-#define ProgramNamedParameter4fvNV_remap_index 558
-#define PrimitiveRestartNV_remap_index 559
-#define GetTexGenxvOES_remap_index 560
-#define TexGenxOES_remap_index 561
-#define TexGenxvOES_remap_index 562
-#define DepthBoundsEXT_remap_index 563
-#define BindFramebufferEXT_remap_index 564
-#define BindRenderbufferEXT_remap_index 565
-#define BufferParameteriAPPLE_remap_index 566
-#define FlushMappedBufferRangeAPPLE_remap_index 567
-#define VertexAttribI1iEXT_remap_index 568
-#define VertexAttribI1uiEXT_remap_index 569
-#define VertexAttribI2iEXT_remap_index 570
-#define VertexAttribI2ivEXT_remap_index 571
-#define VertexAttribI2uiEXT_remap_index 572
-#define VertexAttribI2uivEXT_remap_index 573
-#define VertexAttribI3iEXT_remap_index 574
-#define VertexAttribI3ivEXT_remap_index 575
-#define VertexAttribI3uiEXT_remap_index 576
-#define VertexAttribI3uivEXT_remap_index 577
-#define VertexAttribI4iEXT_remap_index 578
-#define VertexAttribI4ivEXT_remap_index 579
-#define VertexAttribI4uiEXT_remap_index 580
-#define VertexAttribI4uivEXT_remap_index 581
-#define ClearColorIiEXT_remap_index 582
-#define ClearColorIuiEXT_remap_index 583
-#define BindBufferOffsetEXT_remap_index 584
-#define BeginPerfMonitorAMD_remap_index 585
-#define DeletePerfMonitorsAMD_remap_index 586
-#define EndPerfMonitorAMD_remap_index 587
-#define GenPerfMonitorsAMD_remap_index 588
-#define GetPerfMonitorCounterDataAMD_remap_index 589
-#define GetPerfMonitorCounterInfoAMD_remap_index 590
-#define GetPerfMonitorCounterStringAMD_remap_index 591
-#define GetPerfMonitorCountersAMD_remap_index 592
-#define GetPerfMonitorGroupStringAMD_remap_index 593
-#define GetPerfMonitorGroupsAMD_remap_index 594
-#define SelectPerfMonitorCountersAMD_remap_index 595
-#define GetObjectParameterivAPPLE_remap_index 596
-#define ObjectPurgeableAPPLE_remap_index 597
-#define ObjectUnpurgeableAPPLE_remap_index 598
-#define ActiveProgramEXT_remap_index 599
-#define CreateShaderProgramEXT_remap_index 600
-#define UseShaderProgramEXT_remap_index 601
-#define TextureBarrierNV_remap_index 602
-#define VDPAUFiniNV_remap_index 603
-#define VDPAUGetSurfaceivNV_remap_index 604
-#define VDPAUInitNV_remap_index 605
-#define VDPAUIsSurfaceNV_remap_index 606
-#define VDPAUMapSurfacesNV_remap_index 607
-#define VDPAURegisterOutputSurfaceNV_remap_index 608
-#define VDPAURegisterVideoSurfaceNV_remap_index 609
-#define VDPAUSurfaceAccessNV_remap_index 610
-#define VDPAUUnmapSurfacesNV_remap_index 611
-#define VDPAUUnregisterSurfaceNV_remap_index 612
-#define StencilFuncSeparateATI_remap_index 613
-#define ProgramEnvParameters4fvEXT_remap_index 614
-#define ProgramLocalParameters4fvEXT_remap_index 615
-#define EGLImageTargetRenderbufferStorageOES_remap_index 616
-#define EGLImageTargetTexture2DOES_remap_index 617
-#define AlphaFuncx_remap_index 618
-#define ClearColorx_remap_index 619
-#define ClearDepthx_remap_index 620
-#define Color4x_remap_index 621
-#define DepthRangex_remap_index 622
-#define Fogx_remap_index 623
-#define Fogxv_remap_index 624
-#define Frustumf_remap_index 625
-#define Frustumx_remap_index 626
-#define LightModelx_remap_index 627
-#define LightModelxv_remap_index 628
-#define Lightx_remap_index 629
-#define Lightxv_remap_index 630
-#define LineWidthx_remap_index 631
-#define LoadMatrixx_remap_index 632
-#define Materialx_remap_index 633
-#define Materialxv_remap_index 634
-#define MultMatrixx_remap_index 635
-#define MultiTexCoord4x_remap_index 636
-#define Normal3x_remap_index 637
-#define Orthof_remap_index 638
-#define Orthox_remap_index 639
-#define PointSizex_remap_index 640
-#define PolygonOffsetx_remap_index 641
-#define Rotatex_remap_index 642
-#define SampleCoveragex_remap_index 643
-#define Scalex_remap_index 644
-#define TexEnvx_remap_index 645
-#define TexEnvxv_remap_index 646
-#define TexParameterx_remap_index 647
-#define Translatex_remap_index 648
-#define ClipPlanef_remap_index 649
-#define ClipPlanex_remap_index 650
-#define GetClipPlanef_remap_index 651
-#define GetClipPlanex_remap_index 652
-#define GetFixedv_remap_index 653
-#define GetLightxv_remap_index 654
-#define GetMaterialxv_remap_index 655
-#define GetTexEnvxv_remap_index 656
-#define GetTexParameterxv_remap_index 657
-#define PointParameterx_remap_index 658
-#define PointParameterxv_remap_index 659
-#define TexParameterxv_remap_index 660
+#define BindVertexBuffer_remap_index 420
+#define VertexAttribBinding_remap_index 421
+#define VertexAttribFormat_remap_index 422
+#define VertexAttribIFormat_remap_index 423
+#define VertexAttribLFormat_remap_index 424
+#define VertexBindingDivisor_remap_index 425
+#define TexBufferRange_remap_index 426
+#define TexStorage2DMultisample_remap_index 427
+#define TexStorage3DMultisample_remap_index 428
+#define InvalidateBufferData_remap_index 429
+#define InvalidateBufferSubData_remap_index 430
+#define InvalidateFramebuffer_remap_index 431
+#define InvalidateSubFramebuffer_remap_index 432
+#define InvalidateTexImage_remap_index 433
+#define InvalidateTexSubImage_remap_index 434
+#define PolygonOffsetEXT_remap_index 435
+#define DrawTexfOES_remap_index 436
+#define DrawTexfvOES_remap_index 437
+#define DrawTexiOES_remap_index 438
+#define DrawTexivOES_remap_index 439
+#define DrawTexsOES_remap_index 440
+#define DrawTexsvOES_remap_index 441
+#define DrawTexxOES_remap_index 442
+#define DrawTexxvOES_remap_index 443
+#define PointSizePointerOES_remap_index 444
+#define QueryMatrixxOES_remap_index 445
+#define SampleMaskSGIS_remap_index 446
+#define SamplePatternSGIS_remap_index 447
+#define ColorPointerEXT_remap_index 448
+#define EdgeFlagPointerEXT_remap_index 449
+#define IndexPointerEXT_remap_index 450
+#define NormalPointerEXT_remap_index 451
+#define TexCoordPointerEXT_remap_index 452
+#define VertexPointerEXT_remap_index 453
+#define DiscardFramebufferEXT_remap_index 454
+#define LockArraysEXT_remap_index 455
+#define UnlockArraysEXT_remap_index 456
+#define DebugMessageCallback_remap_index 457
+#define DebugMessageControl_remap_index 458
+#define DebugMessageInsert_remap_index 459
+#define GetDebugMessageLog_remap_index 460
+#define GetObjectLabel_remap_index 461
+#define GetObjectPtrLabel_remap_index 462
+#define ObjectLabel_remap_index 463
+#define ObjectPtrLabel_remap_index 464
+#define PopDebugGroup_remap_index 465
+#define PushDebugGroup_remap_index 466
+#define SecondaryColor3fEXT_remap_index 467
+#define SecondaryColor3fvEXT_remap_index 468
+#define MultiDrawElementsEXT_remap_index 469
+#define FogCoordfEXT_remap_index 470
+#define FogCoordfvEXT_remap_index 471
+#define ResizeBuffersMESA_remap_index 472
+#define WindowPos4dMESA_remap_index 473
+#define WindowPos4dvMESA_remap_index 474
+#define WindowPos4fMESA_remap_index 475
+#define WindowPos4fvMESA_remap_index 476
+#define WindowPos4iMESA_remap_index 477
+#define WindowPos4ivMESA_remap_index 478
+#define WindowPos4sMESA_remap_index 479
+#define WindowPos4svMESA_remap_index 480
+#define MultiModeDrawArraysIBM_remap_index 481
+#define MultiModeDrawElementsIBM_remap_index 482
+#define AreProgramsResidentNV_remap_index 483
+#define ExecuteProgramNV_remap_index 484
+#define GetProgramParameterdvNV_remap_index 485
+#define GetProgramParameterfvNV_remap_index 486
+#define GetProgramStringNV_remap_index 487
+#define GetProgramivNV_remap_index 488
+#define GetTrackMatrixivNV_remap_index 489
+#define GetVertexAttribdvNV_remap_index 490
+#define GetVertexAttribfvNV_remap_index 491
+#define GetVertexAttribivNV_remap_index 492
+#define LoadProgramNV_remap_index 493
+#define ProgramParameters4dvNV_remap_index 494
+#define ProgramParameters4fvNV_remap_index 495
+#define RequestResidentProgramsNV_remap_index 496
+#define TrackMatrixNV_remap_index 497
+#define VertexAttrib1dNV_remap_index 498
+#define VertexAttrib1dvNV_remap_index 499
+#define VertexAttrib1fNV_remap_index 500
+#define VertexAttrib1fvNV_remap_index 501
+#define VertexAttrib1sNV_remap_index 502
+#define VertexAttrib1svNV_remap_index 503
+#define VertexAttrib2dNV_remap_index 504
+#define VertexAttrib2dvNV_remap_index 505
+#define VertexAttrib2fNV_remap_index 506
+#define VertexAttrib2fvNV_remap_index 507
+#define VertexAttrib2sNV_remap_index 508
+#define VertexAttrib2svNV_remap_index 509
+#define VertexAttrib3dNV_remap_index 510
+#define VertexAttrib3dvNV_remap_index 511
+#define VertexAttrib3fNV_remap_index 512
+#define VertexAttrib3fvNV_remap_index 513
+#define VertexAttrib3sNV_remap_index 514
+#define VertexAttrib3svNV_remap_index 515
+#define VertexAttrib4dNV_remap_index 516
+#define VertexAttrib4dvNV_remap_index 517
+#define VertexAttrib4fNV_remap_index 518
+#define VertexAttrib4fvNV_remap_index 519
+#define VertexAttrib4sNV_remap_index 520
+#define VertexAttrib4svNV_remap_index 521
+#define VertexAttrib4ubNV_remap_index 522
+#define VertexAttrib4ubvNV_remap_index 523
+#define VertexAttribPointerNV_remap_index 524
+#define VertexAttribs1dvNV_remap_index 525
+#define VertexAttribs1fvNV_remap_index 526
+#define VertexAttribs1svNV_remap_index 527
+#define VertexAttribs2dvNV_remap_index 528
+#define VertexAttribs2fvNV_remap_index 529
+#define VertexAttribs2svNV_remap_index 530
+#define VertexAttribs3dvNV_remap_index 531
+#define VertexAttribs3fvNV_remap_index 532
+#define VertexAttribs3svNV_remap_index 533
+#define VertexAttribs4dvNV_remap_index 534
+#define VertexAttribs4fvNV_remap_index 535
+#define VertexAttribs4svNV_remap_index 536
+#define VertexAttribs4ubvNV_remap_index 537
+#define GetTexBumpParameterfvATI_remap_index 538
+#define GetTexBumpParameterivATI_remap_index 539
+#define TexBumpParameterfvATI_remap_index 540
+#define TexBumpParameterivATI_remap_index 541
+#define AlphaFragmentOp1ATI_remap_index 542
+#define AlphaFragmentOp2ATI_remap_index 543
+#define AlphaFragmentOp3ATI_remap_index 544
+#define BeginFragmentShaderATI_remap_index 545
+#define BindFragmentShaderATI_remap_index 546
+#define ColorFragmentOp1ATI_remap_index 547
+#define ColorFragmentOp2ATI_remap_index 548
+#define ColorFragmentOp3ATI_remap_index 549
+#define DeleteFragmentShaderATI_remap_index 550
+#define EndFragmentShaderATI_remap_index 551
+#define GenFragmentShadersATI_remap_index 552
+#define PassTexCoordATI_remap_index 553
+#define SampleMapATI_remap_index 554
+#define SetFragmentShaderConstantATI_remap_index 555
+#define ActiveStencilFaceEXT_remap_index 556
+#define BindVertexArrayAPPLE_remap_index 557
+#define GenVertexArraysAPPLE_remap_index 558
+#define GetProgramNamedParameterdvNV_remap_index 559
+#define GetProgramNamedParameterfvNV_remap_index 560
+#define ProgramNamedParameter4dNV_remap_index 561
+#define ProgramNamedParameter4dvNV_remap_index 562
+#define ProgramNamedParameter4fNV_remap_index 563
+#define ProgramNamedParameter4fvNV_remap_index 564
+#define PrimitiveRestartNV_remap_index 565
+#define GetTexGenxvOES_remap_index 566
+#define TexGenxOES_remap_index 567
+#define TexGenxvOES_remap_index 568
+#define DepthBoundsEXT_remap_index 569
+#define BindFramebufferEXT_remap_index 570
+#define BindRenderbufferEXT_remap_index 571
+#define BufferParameteriAPPLE_remap_index 572
+#define FlushMappedBufferRangeAPPLE_remap_index 573
+#define VertexAttribI1iEXT_remap_index 574
+#define VertexAttribI1uiEXT_remap_index 575
+#define VertexAttribI2iEXT_remap_index 576
+#define VertexAttribI2ivEXT_remap_index 577
+#define VertexAttribI2uiEXT_remap_index 578
+#define VertexAttribI2uivEXT_remap_index 579
+#define VertexAttribI3iEXT_remap_index 580
+#define VertexAttribI3ivEXT_remap_index 581
+#define VertexAttribI3uiEXT_remap_index 582
+#define VertexAttribI3uivEXT_remap_index 583
+#define VertexAttribI4iEXT_remap_index 584
+#define VertexAttribI4ivEXT_remap_index 585
+#define VertexAttribI4uiEXT_remap_index 586
+#define VertexAttribI4uivEXT_remap_index 587
+#define ClearColorIiEXT_remap_index 588
+#define ClearColorIuiEXT_remap_index 589
+#define BindBufferOffsetEXT_remap_index 590
+#define BeginPerfMonitorAMD_remap_index 591
+#define DeletePerfMonitorsAMD_remap_index 592
+#define EndPerfMonitorAMD_remap_index 593
+#define GenPerfMonitorsAMD_remap_index 594
+#define GetPerfMonitorCounterDataAMD_remap_index 595
+#define GetPerfMonitorCounterInfoAMD_remap_index 596
+#define GetPerfMonitorCounterStringAMD_remap_index 597
+#define GetPerfMonitorCountersAMD_remap_index 598
+#define GetPerfMonitorGroupStringAMD_remap_index 599
+#define GetPerfMonitorGroupsAMD_remap_index 600
+#define SelectPerfMonitorCountersAMD_remap_index 601
+#define GetObjectParameterivAPPLE_remap_index 602
+#define ObjectPurgeableAPPLE_remap_index 603
+#define ObjectUnpurgeableAPPLE_remap_index 604
+#define ActiveProgramEXT_remap_index 605
+#define CreateShaderProgramEXT_remap_index 606
+#define UseShaderProgramEXT_remap_index 607
+#define TextureBarrierNV_remap_index 608
+#define VDPAUFiniNV_remap_index 609
+#define VDPAUGetSurfaceivNV_remap_index 610
+#define VDPAUInitNV_remap_index 611
+#define VDPAUIsSurfaceNV_remap_index 612
+#define VDPAUMapSurfacesNV_remap_index 613
+#define VDPAURegisterOutputSurfaceNV_remap_index 614
+#define VDPAURegisterVideoSurfaceNV_remap_index 615
+#define VDPAUSurfaceAccessNV_remap_index 616
+#define VDPAUUnmapSurfacesNV_remap_index 617
+#define VDPAUUnregisterSurfaceNV_remap_index 618
+#define StencilFuncSeparateATI_remap_index 619
+#define ProgramEnvParameters4fvEXT_remap_index 620
+#define ProgramLocalParameters4fvEXT_remap_index 621
+#define EGLImageTargetRenderbufferStorageOES_remap_index 622
+#define EGLImageTargetTexture2DOES_remap_index 623
+#define AlphaFuncx_remap_index 624
+#define ClearColorx_remap_index 625
+#define ClearDepthx_remap_index 626
+#define Color4x_remap_index 627
+#define DepthRangex_remap_index 628
+#define Fogx_remap_index 629
+#define Fogxv_remap_index 630
+#define Frustumf_remap_index 631
+#define Frustumx_remap_index 632
+#define LightModelx_remap_index 633
+#define LightModelxv_remap_index 634
+#define Lightx_remap_index 635
+#define Lightxv_remap_index 636
+#define LineWidthx_remap_index 637
+#define LoadMatrixx_remap_index 638
+#define Materialx_remap_index 639
+#define Materialxv_remap_index 640
+#define MultMatrixx_remap_index 641
+#define MultiTexCoord4x_remap_index 642
+#define Normal3x_remap_index 643
+#define Orthof_remap_index 644
+#define Orthox_remap_index 645
+#define PointSizex_remap_index 646
+#define PolygonOffsetx_remap_index 647
+#define Rotatex_remap_index 648
+#define SampleCoveragex_remap_index 649
+#define Scalex_remap_index 650
+#define TexEnvx_remap_index 651
+#define TexEnvxv_remap_index 652
+#define TexParameterx_remap_index 653
+#define Translatex_remap_index 654
+#define ClipPlanef_remap_index 655
+#define ClipPlanex_remap_index 656
+#define GetClipPlanef_remap_index 657
+#define GetClipPlanex_remap_index 658
+#define GetFixedv_remap_index 659
+#define GetLightxv_remap_index 660
+#define GetMaterialxv_remap_index 661
+#define GetTexEnvxv_remap_index 662
+#define GetTexParameterxv_remap_index 663
+#define PointParameterx_remap_index 664
+#define PointParameterxv_remap_index 665
+#define TexParameterxv_remap_index 666
#define _gloffset_CompressedTexImage1D driDispatchRemapTable[CompressedTexImage1D_remap_index]
#define _gloffset_CompressedTexImage2D driDispatchRemapTable[CompressedTexImage2D_remap_index]
@@ -1558,6 +1564,12 @@ SERVEXTERN int driDispatchRemapTable[ driDispatchRemapTable_size ];
#define _gloffset_TextureStorage1DEXT driDispatchRemapTable[TextureStorage1DEXT_remap_index]
#define _gloffset_TextureStorage2DEXT driDispatchRemapTable[TextureStorage2DEXT_remap_index]
#define _gloffset_TextureStorage3DEXT driDispatchRemapTable[TextureStorage3DEXT_remap_index]
+#define _gloffset_BindVertexBuffer driDispatchRemapTable[BindVertexBuffer_remap_index]
+#define _gloffset_VertexAttribBinding driDispatchRemapTable[VertexAttribBinding_remap_index]
+#define _gloffset_VertexAttribFormat driDispatchRemapTable[VertexAttribFormat_remap_index]
+#define _gloffset_VertexAttribIFormat driDispatchRemapTable[VertexAttribIFormat_remap_index]
+#define _gloffset_VertexAttribLFormat driDispatchRemapTable[VertexAttribLFormat_remap_index]
+#define _gloffset_VertexBindingDivisor driDispatchRemapTable[VertexBindingDivisor_remap_index]
#define _gloffset_TexBufferRange driDispatchRemapTable[TexBufferRange_remap_index]
#define _gloffset_TexStorage2DMultisample driDispatchRemapTable[TexStorage2DMultisample_remap_index]
#define _gloffset_TexStorage3DMultisample driDispatchRemapTable[TexStorage3DMultisample_remap_index]
@@ -10908,6 +10920,72 @@ static INLINE void SET_TextureStorage3DEXT(struct _glapi_table *disp, void (GLAP
SET_by_offset(disp, _gloffset_TextureStorage3DEXT, fn);
}
+typedef void (GLAPIENTRYP _glptr_BindVertexBuffer)(GLuint, GLuint, GLintptr, GLsizei);
+#define CALL_BindVertexBuffer(disp, parameters) \
+ (* GET_BindVertexBuffer(disp)) parameters
+static INLINE _glptr_BindVertexBuffer GET_BindVertexBuffer(struct _glapi_table *disp) {
+ return (_glptr_BindVertexBuffer) (GET_by_offset(disp, _gloffset_BindVertexBuffer));
+}
+
+static INLINE void SET_BindVertexBuffer(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLintptr, GLsizei)) {
+ SET_by_offset(disp, _gloffset_BindVertexBuffer, fn);
+}
+
+typedef void (GLAPIENTRYP _glptr_VertexAttribBinding)(GLuint, GLuint);
+#define CALL_VertexAttribBinding(disp, parameters) \
+ (* GET_VertexAttribBinding(disp)) parameters
+static INLINE _glptr_VertexAttribBinding GET_VertexAttribBinding(struct _glapi_table *disp) {
+ return (_glptr_VertexAttribBinding) (GET_by_offset(disp, _gloffset_VertexAttribBinding));
+}
+
+static INLINE void SET_VertexAttribBinding(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint)) {
+ SET_by_offset(disp, _gloffset_VertexAttribBinding, fn);
+}
+
+typedef void (GLAPIENTRYP _glptr_VertexAttribFormat)(GLuint, GLint, GLenum, GLboolean, GLuint);
+#define CALL_VertexAttribFormat(disp, parameters) \
+ (* GET_VertexAttribFormat(disp)) parameters
+static INLINE _glptr_VertexAttribFormat GET_VertexAttribFormat(struct _glapi_table *disp) {
+ return (_glptr_VertexAttribFormat) (GET_by_offset(disp, _gloffset_VertexAttribFormat));
+}
+
+static INLINE void SET_VertexAttribFormat(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLenum, GLboolean, GLuint)) {
+ SET_by_offset(disp, _gloffset_VertexAttribFormat, fn);
+}
+
+typedef void (GLAPIENTRYP _glptr_VertexAttribIFormat)(GLuint, GLint, GLenum, GLuint);
+#define CALL_VertexAttribIFormat(disp, parameters) \
+ (* GET_VertexAttribIFormat(disp)) parameters
+static INLINE _glptr_VertexAttribIFormat GET_VertexAttribIFormat(struct _glapi_table *disp) {
+ return (_glptr_VertexAttribIFormat) (GET_by_offset(disp, _gloffset_VertexAttribIFormat));
+}
+
+static INLINE void SET_VertexAttribIFormat(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLenum, GLuint)) {
+ SET_by_offset(disp, _gloffset_VertexAttribIFormat, fn);
+}
+
+typedef void (GLAPIENTRYP _glptr_VertexAttribLFormat)(GLuint, GLint, GLenum, GLuint);
+#define CALL_VertexAttribLFormat(disp, parameters) \
+ (* GET_VertexAttribLFormat(disp)) parameters
+static INLINE _glptr_VertexAttribLFormat GET_VertexAttribLFormat(struct _glapi_table *disp) {
+ return (_glptr_VertexAttribLFormat) (GET_by_offset(disp, _gloffset_VertexAttribLFormat));
+}
+
+static INLINE void SET_VertexAttribLFormat(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLint, GLenum, GLuint)) {
+ SET_by_offset(disp, _gloffset_VertexAttribLFormat, fn);
+}
+
+typedef void (GLAPIENTRYP _glptr_VertexBindingDivisor)(GLuint, GLuint);
+#define CALL_VertexBindingDivisor(disp, parameters) \
+ (* GET_VertexBindingDivisor(disp)) parameters
+static INLINE _glptr_VertexBindingDivisor GET_VertexBindingDivisor(struct _glapi_table *disp) {
+ return (_glptr_VertexBindingDivisor) (GET_by_offset(disp, _gloffset_VertexBindingDivisor));
+}
+
+static INLINE void SET_VertexBindingDivisor(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint)) {
+ SET_by_offset(disp, _gloffset_VertexBindingDivisor, fn);
+}
+
typedef void (GLAPIENTRYP _glptr_TexBufferRange)(GLenum, GLenum, GLuint, GLintptr, GLsizeiptr);
#define CALL_TexBufferRange(disp, parameters) \
(* GET_TexBufferRange(disp)) parameters
diff --git a/xorg-server/glx/glapitable.h b/xorg-server/glx/glapitable.h
index 26b03cd39..1879fee58 100644
--- a/xorg-server/glx/glapitable.h
+++ b/xorg-server/glx/glapitable.h
@@ -869,247 +869,253 @@ struct _glapi_table
void (GLAPIENTRYP TextureStorage1DEXT)(GLuint texture, GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width); /* 825 */
void (GLAPIENTRYP TextureStorage2DEXT)(GLuint texture, GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height); /* 826 */
void (GLAPIENTRYP TextureStorage3DEXT)(GLuint texture, GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth); /* 827 */
- void (GLAPIENTRYP TexBufferRange)(GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); /* 828 */
- void (GLAPIENTRYP TexStorage2DMultisample)(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); /* 829 */
- void (GLAPIENTRYP TexStorage3DMultisample)(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); /* 830 */
- void (GLAPIENTRYP InvalidateBufferData)(GLuint buffer); /* 831 */
- void (GLAPIENTRYP InvalidateBufferSubData)(GLuint buffer, GLintptr offset, GLsizeiptr length); /* 832 */
- void (GLAPIENTRYP InvalidateFramebuffer)(GLenum target, GLsizei numAttachments, const GLenum * attachments); /* 833 */
- void (GLAPIENTRYP InvalidateSubFramebuffer)(GLenum target, GLsizei numAttachments, const GLenum * attachments, GLint x, GLint y, GLsizei width, GLsizei height); /* 834 */
- void (GLAPIENTRYP InvalidateTexImage)(GLuint texture, GLint level); /* 835 */
- void (GLAPIENTRYP InvalidateTexSubImage)(GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth); /* 836 */
- void (GLAPIENTRYP PolygonOffsetEXT)(GLfloat factor, GLfloat bias); /* 837 */
- void (GLAPIENTRYP DrawTexfOES)(GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height); /* 838 */
- void (GLAPIENTRYP DrawTexfvOES)(const GLfloat * coords); /* 839 */
- void (GLAPIENTRYP DrawTexiOES)(GLint x, GLint y, GLint z, GLint width, GLint height); /* 840 */
- void (GLAPIENTRYP DrawTexivOES)(const GLint * coords); /* 841 */
- void (GLAPIENTRYP DrawTexsOES)(GLshort x, GLshort y, GLshort z, GLshort width, GLshort height); /* 842 */
- void (GLAPIENTRYP DrawTexsvOES)(const GLshort * coords); /* 843 */
- void (GLAPIENTRYP DrawTexxOES)(GLfixed x, GLfixed y, GLfixed z, GLfixed width, GLfixed height); /* 844 */
- void (GLAPIENTRYP DrawTexxvOES)(const GLfixed * coords); /* 845 */
- void (GLAPIENTRYP PointSizePointerOES)(GLenum type, GLsizei stride, const GLvoid * pointer); /* 846 */
- GLbitfield (GLAPIENTRYP QueryMatrixxOES)(GLfixed * mantissa, GLint * exponent); /* 847 */
- void (GLAPIENTRYP SampleMaskSGIS)(GLclampf value, GLboolean invert); /* 848 */
- void (GLAPIENTRYP SamplePatternSGIS)(GLenum pattern); /* 849 */
- void (GLAPIENTRYP ColorPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 850 */
- void (GLAPIENTRYP EdgeFlagPointerEXT)(GLsizei stride, GLsizei count, const GLboolean * pointer); /* 851 */
- void (GLAPIENTRYP IndexPointerEXT)(GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 852 */
- void (GLAPIENTRYP NormalPointerEXT)(GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 853 */
- void (GLAPIENTRYP TexCoordPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 854 */
- void (GLAPIENTRYP VertexPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 855 */
- void (GLAPIENTRYP DiscardFramebufferEXT)(GLenum target, GLsizei numAttachments, const GLenum * attachments); /* 856 */
- void (GLAPIENTRYP LockArraysEXT)(GLint first, GLsizei count); /* 857 */
- void (GLAPIENTRYP UnlockArraysEXT)(void); /* 858 */
- void (GLAPIENTRYP DebugMessageCallback)(GLDEBUGPROC callback, const GLvoid * userParam); /* 859 */
- void (GLAPIENTRYP DebugMessageControl)(GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint * ids, GLboolean enabled); /* 860 */
- void (GLAPIENTRYP DebugMessageInsert)(GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar * buf); /* 861 */
- GLuint (GLAPIENTRYP GetDebugMessageLog)(GLuint count, GLsizei bufsize, GLenum * sources, GLenum * types, GLuint * ids, GLenum * severities, GLsizei * lengths, GLchar * messageLog); /* 862 */
- void (GLAPIENTRYP GetObjectLabel)(GLenum identifier, GLuint name, GLsizei bufSize, GLsizei * length, GLchar * label); /* 863 */
- void (GLAPIENTRYP GetObjectPtrLabel)(const GLvoid * ptr, GLsizei bufSize, GLsizei * length, GLchar * label); /* 864 */
- void (GLAPIENTRYP ObjectLabel)(GLenum identifier, GLuint name, GLsizei length, const GLchar * label); /* 865 */
- void (GLAPIENTRYP ObjectPtrLabel)(const GLvoid * ptr, GLsizei length, const GLchar * label); /* 866 */
- void (GLAPIENTRYP PopDebugGroup)(void); /* 867 */
- void (GLAPIENTRYP PushDebugGroup)(GLenum source, GLuint id, GLsizei length, const GLchar * message); /* 868 */
- void (GLAPIENTRYP SecondaryColor3fEXT)(GLfloat red, GLfloat green, GLfloat blue); /* 869 */
- void (GLAPIENTRYP SecondaryColor3fvEXT)(const GLfloat * v); /* 870 */
- void (GLAPIENTRYP MultiDrawElementsEXT)(GLenum mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount); /* 871 */
- void (GLAPIENTRYP FogCoordfEXT)(GLfloat coord); /* 872 */
- void (GLAPIENTRYP FogCoordfvEXT)(const GLfloat * coord); /* 873 */
- void (GLAPIENTRYP ResizeBuffersMESA)(void); /* 874 */
- void (GLAPIENTRYP WindowPos4dMESA)(GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 875 */
- void (GLAPIENTRYP WindowPos4dvMESA)(const GLdouble * v); /* 876 */
- void (GLAPIENTRYP WindowPos4fMESA)(GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 877 */
- void (GLAPIENTRYP WindowPos4fvMESA)(const GLfloat * v); /* 878 */
- void (GLAPIENTRYP WindowPos4iMESA)(GLint x, GLint y, GLint z, GLint w); /* 879 */
- void (GLAPIENTRYP WindowPos4ivMESA)(const GLint * v); /* 880 */
- void (GLAPIENTRYP WindowPos4sMESA)(GLshort x, GLshort y, GLshort z, GLshort w); /* 881 */
- void (GLAPIENTRYP WindowPos4svMESA)(const GLshort * v); /* 882 */
- void (GLAPIENTRYP MultiModeDrawArraysIBM)(const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride); /* 883 */
- void (GLAPIENTRYP MultiModeDrawElementsIBM)(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride); /* 884 */
- GLboolean (GLAPIENTRYP AreProgramsResidentNV)(GLsizei n, const GLuint * ids, GLboolean * residences); /* 885 */
- void (GLAPIENTRYP ExecuteProgramNV)(GLenum target, GLuint id, const GLfloat * params); /* 886 */
- void (GLAPIENTRYP GetProgramParameterdvNV)(GLenum target, GLuint index, GLenum pname, GLdouble * params); /* 887 */
- void (GLAPIENTRYP GetProgramParameterfvNV)(GLenum target, GLuint index, GLenum pname, GLfloat * params); /* 888 */
- void (GLAPIENTRYP GetProgramStringNV)(GLuint id, GLenum pname, GLubyte * program); /* 889 */
- void (GLAPIENTRYP GetProgramivNV)(GLuint id, GLenum pname, GLint * params); /* 890 */
- void (GLAPIENTRYP GetTrackMatrixivNV)(GLenum target, GLuint address, GLenum pname, GLint * params); /* 891 */
- void (GLAPIENTRYP GetVertexAttribdvNV)(GLuint index, GLenum pname, GLdouble * params); /* 892 */
- void (GLAPIENTRYP GetVertexAttribfvNV)(GLuint index, GLenum pname, GLfloat * params); /* 893 */
- void (GLAPIENTRYP GetVertexAttribivNV)(GLuint index, GLenum pname, GLint * params); /* 894 */
- void (GLAPIENTRYP LoadProgramNV)(GLenum target, GLuint id, GLsizei len, const GLubyte * program); /* 895 */
- void (GLAPIENTRYP ProgramParameters4dvNV)(GLenum target, GLuint index, GLsizei num, const GLdouble * params); /* 896 */
- void (GLAPIENTRYP ProgramParameters4fvNV)(GLenum target, GLuint index, GLsizei num, const GLfloat * params); /* 897 */
- void (GLAPIENTRYP RequestResidentProgramsNV)(GLsizei n, const GLuint * ids); /* 898 */
- void (GLAPIENTRYP TrackMatrixNV)(GLenum target, GLuint address, GLenum matrix, GLenum transform); /* 899 */
- void (GLAPIENTRYP VertexAttrib1dNV)(GLuint index, GLdouble x); /* 900 */
- void (GLAPIENTRYP VertexAttrib1dvNV)(GLuint index, const GLdouble * v); /* 901 */
- void (GLAPIENTRYP VertexAttrib1fNV)(GLuint index, GLfloat x); /* 902 */
- void (GLAPIENTRYP VertexAttrib1fvNV)(GLuint index, const GLfloat * v); /* 903 */
- void (GLAPIENTRYP VertexAttrib1sNV)(GLuint index, GLshort x); /* 904 */
- void (GLAPIENTRYP VertexAttrib1svNV)(GLuint index, const GLshort * v); /* 905 */
- void (GLAPIENTRYP VertexAttrib2dNV)(GLuint index, GLdouble x, GLdouble y); /* 906 */
- void (GLAPIENTRYP VertexAttrib2dvNV)(GLuint index, const GLdouble * v); /* 907 */
- void (GLAPIENTRYP VertexAttrib2fNV)(GLuint index, GLfloat x, GLfloat y); /* 908 */
- void (GLAPIENTRYP VertexAttrib2fvNV)(GLuint index, const GLfloat * v); /* 909 */
- void (GLAPIENTRYP VertexAttrib2sNV)(GLuint index, GLshort x, GLshort y); /* 910 */
- void (GLAPIENTRYP VertexAttrib2svNV)(GLuint index, const GLshort * v); /* 911 */
- void (GLAPIENTRYP VertexAttrib3dNV)(GLuint index, GLdouble x, GLdouble y, GLdouble z); /* 912 */
- void (GLAPIENTRYP VertexAttrib3dvNV)(GLuint index, const GLdouble * v); /* 913 */
- void (GLAPIENTRYP VertexAttrib3fNV)(GLuint index, GLfloat x, GLfloat y, GLfloat z); /* 914 */
- void (GLAPIENTRYP VertexAttrib3fvNV)(GLuint index, const GLfloat * v); /* 915 */
- void (GLAPIENTRYP VertexAttrib3sNV)(GLuint index, GLshort x, GLshort y, GLshort z); /* 916 */
- void (GLAPIENTRYP VertexAttrib3svNV)(GLuint index, const GLshort * v); /* 917 */
- void (GLAPIENTRYP VertexAttrib4dNV)(GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 918 */
- void (GLAPIENTRYP VertexAttrib4dvNV)(GLuint index, const GLdouble * v); /* 919 */
- void (GLAPIENTRYP VertexAttrib4fNV)(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 920 */
- void (GLAPIENTRYP VertexAttrib4fvNV)(GLuint index, const GLfloat * v); /* 921 */
- void (GLAPIENTRYP VertexAttrib4sNV)(GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); /* 922 */
- void (GLAPIENTRYP VertexAttrib4svNV)(GLuint index, const GLshort * v); /* 923 */
- void (GLAPIENTRYP VertexAttrib4ubNV)(GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); /* 924 */
- void (GLAPIENTRYP VertexAttrib4ubvNV)(GLuint index, const GLubyte * v); /* 925 */
- void (GLAPIENTRYP VertexAttribPointerNV)(GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid * pointer); /* 926 */
- void (GLAPIENTRYP VertexAttribs1dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 927 */
- void (GLAPIENTRYP VertexAttribs1fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 928 */
- void (GLAPIENTRYP VertexAttribs1svNV)(GLuint index, GLsizei n, const GLshort * v); /* 929 */
- void (GLAPIENTRYP VertexAttribs2dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 930 */
- void (GLAPIENTRYP VertexAttribs2fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 931 */
- void (GLAPIENTRYP VertexAttribs2svNV)(GLuint index, GLsizei n, const GLshort * v); /* 932 */
- void (GLAPIENTRYP VertexAttribs3dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 933 */
- void (GLAPIENTRYP VertexAttribs3fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 934 */
- void (GLAPIENTRYP VertexAttribs3svNV)(GLuint index, GLsizei n, const GLshort * v); /* 935 */
- void (GLAPIENTRYP VertexAttribs4dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 936 */
- void (GLAPIENTRYP VertexAttribs4fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 937 */
- void (GLAPIENTRYP VertexAttribs4svNV)(GLuint index, GLsizei n, const GLshort * v); /* 938 */
- void (GLAPIENTRYP VertexAttribs4ubvNV)(GLuint index, GLsizei n, const GLubyte * v); /* 939 */
- void (GLAPIENTRYP GetTexBumpParameterfvATI)(GLenum pname, GLfloat * param); /* 940 */
- void (GLAPIENTRYP GetTexBumpParameterivATI)(GLenum pname, GLint * param); /* 941 */
- void (GLAPIENTRYP TexBumpParameterfvATI)(GLenum pname, const GLfloat * param); /* 942 */
- void (GLAPIENTRYP TexBumpParameterivATI)(GLenum pname, const GLint * param); /* 943 */
- void (GLAPIENTRYP AlphaFragmentOp1ATI)(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); /* 944 */
- void (GLAPIENTRYP AlphaFragmentOp2ATI)(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); /* 945 */
- void (GLAPIENTRYP AlphaFragmentOp3ATI)(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod); /* 946 */
- void (GLAPIENTRYP BeginFragmentShaderATI)(void); /* 947 */
- void (GLAPIENTRYP BindFragmentShaderATI)(GLuint id); /* 948 */
- void (GLAPIENTRYP ColorFragmentOp1ATI)(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); /* 949 */
- void (GLAPIENTRYP ColorFragmentOp2ATI)(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); /* 950 */
- void (GLAPIENTRYP ColorFragmentOp3ATI)(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); /* 951 */
- void (GLAPIENTRYP DeleteFragmentShaderATI)(GLuint id); /* 952 */
- void (GLAPIENTRYP EndFragmentShaderATI)(void); /* 953 */
- GLuint (GLAPIENTRYP GenFragmentShadersATI)(GLuint range); /* 954 */
- void (GLAPIENTRYP PassTexCoordATI)(GLuint dst, GLuint coord, GLenum swizzle); /* 955 */
- void (GLAPIENTRYP SampleMapATI)(GLuint dst, GLuint interp, GLenum swizzle); /* 956 */
- void (GLAPIENTRYP SetFragmentShaderConstantATI)(GLuint dst, const GLfloat * value); /* 957 */
- void (GLAPIENTRYP ActiveStencilFaceEXT)(GLenum face); /* 958 */
- void (GLAPIENTRYP BindVertexArrayAPPLE)(GLuint array); /* 959 */
- void (GLAPIENTRYP GenVertexArraysAPPLE)(GLsizei n, GLuint * arrays); /* 960 */
- void (GLAPIENTRYP GetProgramNamedParameterdvNV)(GLuint id, GLsizei len, const GLubyte * name, GLdouble * params); /* 961 */
- void (GLAPIENTRYP GetProgramNamedParameterfvNV)(GLuint id, GLsizei len, const GLubyte * name, GLfloat * params); /* 962 */
- void (GLAPIENTRYP ProgramNamedParameter4dNV)(GLuint id, GLsizei len, const GLubyte * name, GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 963 */
- void (GLAPIENTRYP ProgramNamedParameter4dvNV)(GLuint id, GLsizei len, const GLubyte * name, const GLdouble * v); /* 964 */
- void (GLAPIENTRYP ProgramNamedParameter4fNV)(GLuint id, GLsizei len, const GLubyte * name, GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 965 */
- void (GLAPIENTRYP ProgramNamedParameter4fvNV)(GLuint id, GLsizei len, const GLubyte * name, const GLfloat * v); /* 966 */
- void (GLAPIENTRYP PrimitiveRestartNV)(void); /* 967 */
- void (GLAPIENTRYP GetTexGenxvOES)(GLenum coord, GLenum pname, GLfixed * params); /* 968 */
- void (GLAPIENTRYP TexGenxOES)(GLenum coord, GLenum pname, GLint param); /* 969 */
- void (GLAPIENTRYP TexGenxvOES)(GLenum coord, GLenum pname, const GLfixed * params); /* 970 */
- void (GLAPIENTRYP DepthBoundsEXT)(GLclampd zmin, GLclampd zmax); /* 971 */
- void (GLAPIENTRYP BindFramebufferEXT)(GLenum target, GLuint framebuffer); /* 972 */
- void (GLAPIENTRYP BindRenderbufferEXT)(GLenum target, GLuint renderbuffer); /* 973 */
- void (GLAPIENTRYP BufferParameteriAPPLE)(GLenum target, GLenum pname, GLint param); /* 974 */
- void (GLAPIENTRYP FlushMappedBufferRangeAPPLE)(GLenum target, GLintptr offset, GLsizeiptr size); /* 975 */
- void (GLAPIENTRYP VertexAttribI1iEXT)(GLuint index, GLint x); /* 976 */
- void (GLAPIENTRYP VertexAttribI1uiEXT)(GLuint index, GLuint x); /* 977 */
- void (GLAPIENTRYP VertexAttribI2iEXT)(GLuint index, GLint x, GLint y); /* 978 */
- void (GLAPIENTRYP VertexAttribI2ivEXT)(GLuint index, const GLint * v); /* 979 */
- void (GLAPIENTRYP VertexAttribI2uiEXT)(GLuint index, GLuint x, GLuint y); /* 980 */
- void (GLAPIENTRYP VertexAttribI2uivEXT)(GLuint index, const GLuint * v); /* 981 */
- void (GLAPIENTRYP VertexAttribI3iEXT)(GLuint index, GLint x, GLint y, GLint z); /* 982 */
- void (GLAPIENTRYP VertexAttribI3ivEXT)(GLuint index, const GLint * v); /* 983 */
- void (GLAPIENTRYP VertexAttribI3uiEXT)(GLuint index, GLuint x, GLuint y, GLuint z); /* 984 */
- void (GLAPIENTRYP VertexAttribI3uivEXT)(GLuint index, const GLuint * v); /* 985 */
- void (GLAPIENTRYP VertexAttribI4iEXT)(GLuint index, GLint x, GLint y, GLint z, GLint w); /* 986 */
- void (GLAPIENTRYP VertexAttribI4ivEXT)(GLuint index, const GLint * v); /* 987 */
- void (GLAPIENTRYP VertexAttribI4uiEXT)(GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); /* 988 */
- void (GLAPIENTRYP VertexAttribI4uivEXT)(GLuint index, const GLuint * v); /* 989 */
- void (GLAPIENTRYP ClearColorIiEXT)(GLint r, GLint g, GLint b, GLint a); /* 990 */
- void (GLAPIENTRYP ClearColorIuiEXT)(GLuint r, GLuint g, GLuint b, GLuint a); /* 991 */
- void (GLAPIENTRYP BindBufferOffsetEXT)(GLenum target, GLuint index, GLuint buffer, GLintptr offset); /* 992 */
- void (GLAPIENTRYP BeginPerfMonitorAMD)(GLuint monitor); /* 993 */
- void (GLAPIENTRYP DeletePerfMonitorsAMD)(GLsizei n, GLuint * monitors); /* 994 */
- void (GLAPIENTRYP EndPerfMonitorAMD)(GLuint monitor); /* 995 */
- void (GLAPIENTRYP GenPerfMonitorsAMD)(GLsizei n, GLuint * monitors); /* 996 */
- void (GLAPIENTRYP GetPerfMonitorCounterDataAMD)(GLuint monitor, GLenum pname, GLsizei dataSize, GLuint * data, GLint * bytesWritten); /* 997 */
- void (GLAPIENTRYP GetPerfMonitorCounterInfoAMD)(GLuint group, GLuint counter, GLenum pname, GLvoid * data); /* 998 */
- void (GLAPIENTRYP GetPerfMonitorCounterStringAMD)(GLuint group, GLuint counter, GLsizei bufSize, GLsizei * length, GLchar * counterString); /* 999 */
- void (GLAPIENTRYP GetPerfMonitorCountersAMD)(GLuint group, GLint * numCounters, GLint * maxActiveCounters, GLsizei countersSize, GLuint * counters); /* 1000 */
- void (GLAPIENTRYP GetPerfMonitorGroupStringAMD)(GLuint group, GLsizei bufSize, GLsizei * length, GLchar * groupString); /* 1001 */
- void (GLAPIENTRYP GetPerfMonitorGroupsAMD)(GLint * numGroups, GLsizei groupsSize, GLuint * groups); /* 1002 */
- void (GLAPIENTRYP SelectPerfMonitorCountersAMD)(GLuint monitor, GLboolean enable, GLuint group, GLint numCounters, GLuint * counterList); /* 1003 */
- void (GLAPIENTRYP GetObjectParameterivAPPLE)(GLenum objectType, GLuint name, GLenum pname, GLint * value); /* 1004 */
- GLenum (GLAPIENTRYP ObjectPurgeableAPPLE)(GLenum objectType, GLuint name, GLenum option); /* 1005 */
- GLenum (GLAPIENTRYP ObjectUnpurgeableAPPLE)(GLenum objectType, GLuint name, GLenum option); /* 1006 */
- void (GLAPIENTRYP ActiveProgramEXT)(GLuint program); /* 1007 */
- GLuint (GLAPIENTRYP CreateShaderProgramEXT)(GLenum type, const GLchar * string); /* 1008 */
- void (GLAPIENTRYP UseShaderProgramEXT)(GLenum type, GLuint program); /* 1009 */
- void (GLAPIENTRYP TextureBarrierNV)(void); /* 1010 */
- void (GLAPIENTRYP VDPAUFiniNV)(void); /* 1011 */
- void (GLAPIENTRYP VDPAUGetSurfaceivNV)(GLintptr surface, GLenum pname, GLsizei bufSize, GLsizei * length, GLint * values); /* 1012 */
- void (GLAPIENTRYP VDPAUInitNV)(const GLvoid * vdpDevice, const GLvoid * getProcAddress); /* 1013 */
- void (GLAPIENTRYP VDPAUIsSurfaceNV)(GLintptr surface); /* 1014 */
- void (GLAPIENTRYP VDPAUMapSurfacesNV)(GLsizei numSurfaces, const GLintptr * surfaces); /* 1015 */
- GLintptr (GLAPIENTRYP VDPAURegisterOutputSurfaceNV)(const GLvoid * vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint * textureNames); /* 1016 */
- GLintptr (GLAPIENTRYP VDPAURegisterVideoSurfaceNV)(const GLvoid * vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint * textureNames); /* 1017 */
- void (GLAPIENTRYP VDPAUSurfaceAccessNV)(GLintptr surface, GLenum access); /* 1018 */
- void (GLAPIENTRYP VDPAUUnmapSurfacesNV)(GLsizei numSurfaces, const GLintptr * surfaces); /* 1019 */
- void (GLAPIENTRYP VDPAUUnregisterSurfaceNV)(GLintptr surface); /* 1020 */
- void (GLAPIENTRYP StencilFuncSeparateATI)(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask); /* 1021 */
- void (GLAPIENTRYP ProgramEnvParameters4fvEXT)(GLenum target, GLuint index, GLsizei count, const GLfloat * params); /* 1022 */
- void (GLAPIENTRYP ProgramLocalParameters4fvEXT)(GLenum target, GLuint index, GLsizei count, const GLfloat * params); /* 1023 */
- void (GLAPIENTRYP EGLImageTargetRenderbufferStorageOES)(GLenum target, GLvoid * writeOffset); /* 1024 */
- void (GLAPIENTRYP EGLImageTargetTexture2DOES)(GLenum target, GLvoid * writeOffset); /* 1025 */
- void (GLAPIENTRYP AlphaFuncx)(GLenum func, GLclampx ref); /* 1026 */
- void (GLAPIENTRYP ClearColorx)(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha); /* 1027 */
- void (GLAPIENTRYP ClearDepthx)(GLclampx depth); /* 1028 */
- void (GLAPIENTRYP Color4x)(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); /* 1029 */
- void (GLAPIENTRYP DepthRangex)(GLclampx zNear, GLclampx zFar); /* 1030 */
- void (GLAPIENTRYP Fogx)(GLenum pname, GLfixed param); /* 1031 */
- void (GLAPIENTRYP Fogxv)(GLenum pname, const GLfixed * params); /* 1032 */
- void (GLAPIENTRYP Frustumf)(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar); /* 1033 */
- void (GLAPIENTRYP Frustumx)(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar); /* 1034 */
- void (GLAPIENTRYP LightModelx)(GLenum pname, GLfixed param); /* 1035 */
- void (GLAPIENTRYP LightModelxv)(GLenum pname, const GLfixed * params); /* 1036 */
- void (GLAPIENTRYP Lightx)(GLenum light, GLenum pname, GLfixed param); /* 1037 */
- void (GLAPIENTRYP Lightxv)(GLenum light, GLenum pname, const GLfixed * params); /* 1038 */
- void (GLAPIENTRYP LineWidthx)(GLfixed width); /* 1039 */
- void (GLAPIENTRYP LoadMatrixx)(const GLfixed * m); /* 1040 */
- void (GLAPIENTRYP Materialx)(GLenum face, GLenum pname, GLfixed param); /* 1041 */
- void (GLAPIENTRYP Materialxv)(GLenum face, GLenum pname, const GLfixed * params); /* 1042 */
- void (GLAPIENTRYP MultMatrixx)(const GLfixed * m); /* 1043 */
- void (GLAPIENTRYP MultiTexCoord4x)(GLenum target, GLfixed s, GLfixed t, GLfixed r, GLfixed q); /* 1044 */
- void (GLAPIENTRYP Normal3x)(GLfixed nx, GLfixed ny, GLfixed nz); /* 1045 */
- void (GLAPIENTRYP Orthof)(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar); /* 1046 */
- void (GLAPIENTRYP Orthox)(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar); /* 1047 */
- void (GLAPIENTRYP PointSizex)(GLfixed size); /* 1048 */
- void (GLAPIENTRYP PolygonOffsetx)(GLfixed factor, GLfixed units); /* 1049 */
- void (GLAPIENTRYP Rotatex)(GLfixed angle, GLfixed x, GLfixed y, GLfixed z); /* 1050 */
- void (GLAPIENTRYP SampleCoveragex)(GLclampx value, GLboolean invert); /* 1051 */
- void (GLAPIENTRYP Scalex)(GLfixed x, GLfixed y, GLfixed z); /* 1052 */
- void (GLAPIENTRYP TexEnvx)(GLenum target, GLenum pname, GLfixed param); /* 1053 */
- void (GLAPIENTRYP TexEnvxv)(GLenum target, GLenum pname, const GLfixed * params); /* 1054 */
- void (GLAPIENTRYP TexParameterx)(GLenum target, GLenum pname, GLfixed param); /* 1055 */
- void (GLAPIENTRYP Translatex)(GLfixed x, GLfixed y, GLfixed z); /* 1056 */
- void (GLAPIENTRYP ClipPlanef)(GLenum plane, const GLfloat * equation); /* 1057 */
- void (GLAPIENTRYP ClipPlanex)(GLenum plane, const GLfixed * equation); /* 1058 */
- void (GLAPIENTRYP GetClipPlanef)(GLenum plane, GLfloat * equation); /* 1059 */
- void (GLAPIENTRYP GetClipPlanex)(GLenum plane, GLfixed * equation); /* 1060 */
- void (GLAPIENTRYP GetFixedv)(GLenum pname, GLfixed * params); /* 1061 */
- void (GLAPIENTRYP GetLightxv)(GLenum light, GLenum pname, GLfixed * params); /* 1062 */
- void (GLAPIENTRYP GetMaterialxv)(GLenum face, GLenum pname, GLfixed * params); /* 1063 */
- void (GLAPIENTRYP GetTexEnvxv)(GLenum target, GLenum pname, GLfixed * params); /* 1064 */
- void (GLAPIENTRYP GetTexParameterxv)(GLenum target, GLenum pname, GLfixed * params); /* 1065 */
- void (GLAPIENTRYP PointParameterx)(GLenum pname, GLfixed param); /* 1066 */
- void (GLAPIENTRYP PointParameterxv)(GLenum pname, const GLfixed * params); /* 1067 */
- void (GLAPIENTRYP TexParameterxv)(GLenum target, GLenum pname, const GLfixed * params); /* 1068 */
+ void (GLAPIENTRYP BindVertexBuffer)(GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride); /* 828 */
+ void (GLAPIENTRYP VertexAttribBinding)(GLuint attribindex, GLuint bindingindex); /* 829 */
+ void (GLAPIENTRYP VertexAttribFormat)(GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset); /* 830 */
+ void (GLAPIENTRYP VertexAttribIFormat)(GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); /* 831 */
+ void (GLAPIENTRYP VertexAttribLFormat)(GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); /* 832 */
+ void (GLAPIENTRYP VertexBindingDivisor)(GLuint attribindex, GLuint divisor); /* 833 */
+ void (GLAPIENTRYP TexBufferRange)(GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); /* 834 */
+ void (GLAPIENTRYP TexStorage2DMultisample)(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); /* 835 */
+ void (GLAPIENTRYP TexStorage3DMultisample)(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); /* 836 */
+ void (GLAPIENTRYP InvalidateBufferData)(GLuint buffer); /* 837 */
+ void (GLAPIENTRYP InvalidateBufferSubData)(GLuint buffer, GLintptr offset, GLsizeiptr length); /* 838 */
+ void (GLAPIENTRYP InvalidateFramebuffer)(GLenum target, GLsizei numAttachments, const GLenum * attachments); /* 839 */
+ void (GLAPIENTRYP InvalidateSubFramebuffer)(GLenum target, GLsizei numAttachments, const GLenum * attachments, GLint x, GLint y, GLsizei width, GLsizei height); /* 840 */
+ void (GLAPIENTRYP InvalidateTexImage)(GLuint texture, GLint level); /* 841 */
+ void (GLAPIENTRYP InvalidateTexSubImage)(GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth); /* 842 */
+ void (GLAPIENTRYP PolygonOffsetEXT)(GLfloat factor, GLfloat bias); /* 843 */
+ void (GLAPIENTRYP DrawTexfOES)(GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height); /* 844 */
+ void (GLAPIENTRYP DrawTexfvOES)(const GLfloat * coords); /* 845 */
+ void (GLAPIENTRYP DrawTexiOES)(GLint x, GLint y, GLint z, GLint width, GLint height); /* 846 */
+ void (GLAPIENTRYP DrawTexivOES)(const GLint * coords); /* 847 */
+ void (GLAPIENTRYP DrawTexsOES)(GLshort x, GLshort y, GLshort z, GLshort width, GLshort height); /* 848 */
+ void (GLAPIENTRYP DrawTexsvOES)(const GLshort * coords); /* 849 */
+ void (GLAPIENTRYP DrawTexxOES)(GLfixed x, GLfixed y, GLfixed z, GLfixed width, GLfixed height); /* 850 */
+ void (GLAPIENTRYP DrawTexxvOES)(const GLfixed * coords); /* 851 */
+ void (GLAPIENTRYP PointSizePointerOES)(GLenum type, GLsizei stride, const GLvoid * pointer); /* 852 */
+ GLbitfield (GLAPIENTRYP QueryMatrixxOES)(GLfixed * mantissa, GLint * exponent); /* 853 */
+ void (GLAPIENTRYP SampleMaskSGIS)(GLclampf value, GLboolean invert); /* 854 */
+ void (GLAPIENTRYP SamplePatternSGIS)(GLenum pattern); /* 855 */
+ void (GLAPIENTRYP ColorPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 856 */
+ void (GLAPIENTRYP EdgeFlagPointerEXT)(GLsizei stride, GLsizei count, const GLboolean * pointer); /* 857 */
+ void (GLAPIENTRYP IndexPointerEXT)(GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 858 */
+ void (GLAPIENTRYP NormalPointerEXT)(GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 859 */
+ void (GLAPIENTRYP TexCoordPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 860 */
+ void (GLAPIENTRYP VertexPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 861 */
+ void (GLAPIENTRYP DiscardFramebufferEXT)(GLenum target, GLsizei numAttachments, const GLenum * attachments); /* 862 */
+ void (GLAPIENTRYP LockArraysEXT)(GLint first, GLsizei count); /* 863 */
+ void (GLAPIENTRYP UnlockArraysEXT)(void); /* 864 */
+ void (GLAPIENTRYP DebugMessageCallback)(GLDEBUGPROC callback, const GLvoid * userParam); /* 865 */
+ void (GLAPIENTRYP DebugMessageControl)(GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint * ids, GLboolean enabled); /* 866 */
+ void (GLAPIENTRYP DebugMessageInsert)(GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar * buf); /* 867 */
+ GLuint (GLAPIENTRYP GetDebugMessageLog)(GLuint count, GLsizei bufsize, GLenum * sources, GLenum * types, GLuint * ids, GLenum * severities, GLsizei * lengths, GLchar * messageLog); /* 868 */
+ void (GLAPIENTRYP GetObjectLabel)(GLenum identifier, GLuint name, GLsizei bufSize, GLsizei * length, GLchar * label); /* 869 */
+ void (GLAPIENTRYP GetObjectPtrLabel)(const GLvoid * ptr, GLsizei bufSize, GLsizei * length, GLchar * label); /* 870 */
+ void (GLAPIENTRYP ObjectLabel)(GLenum identifier, GLuint name, GLsizei length, const GLchar * label); /* 871 */
+ void (GLAPIENTRYP ObjectPtrLabel)(const GLvoid * ptr, GLsizei length, const GLchar * label); /* 872 */
+ void (GLAPIENTRYP PopDebugGroup)(void); /* 873 */
+ void (GLAPIENTRYP PushDebugGroup)(GLenum source, GLuint id, GLsizei length, const GLchar * message); /* 874 */
+ void (GLAPIENTRYP SecondaryColor3fEXT)(GLfloat red, GLfloat green, GLfloat blue); /* 875 */
+ void (GLAPIENTRYP SecondaryColor3fvEXT)(const GLfloat * v); /* 876 */
+ void (GLAPIENTRYP MultiDrawElementsEXT)(GLenum mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount); /* 877 */
+ void (GLAPIENTRYP FogCoordfEXT)(GLfloat coord); /* 878 */
+ void (GLAPIENTRYP FogCoordfvEXT)(const GLfloat * coord); /* 879 */
+ void (GLAPIENTRYP ResizeBuffersMESA)(void); /* 880 */
+ void (GLAPIENTRYP WindowPos4dMESA)(GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 881 */
+ void (GLAPIENTRYP WindowPos4dvMESA)(const GLdouble * v); /* 882 */
+ void (GLAPIENTRYP WindowPos4fMESA)(GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 883 */
+ void (GLAPIENTRYP WindowPos4fvMESA)(const GLfloat * v); /* 884 */
+ void (GLAPIENTRYP WindowPos4iMESA)(GLint x, GLint y, GLint z, GLint w); /* 885 */
+ void (GLAPIENTRYP WindowPos4ivMESA)(const GLint * v); /* 886 */
+ void (GLAPIENTRYP WindowPos4sMESA)(GLshort x, GLshort y, GLshort z, GLshort w); /* 887 */
+ void (GLAPIENTRYP WindowPos4svMESA)(const GLshort * v); /* 888 */
+ void (GLAPIENTRYP MultiModeDrawArraysIBM)(const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride); /* 889 */
+ void (GLAPIENTRYP MultiModeDrawElementsIBM)(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride); /* 890 */
+ GLboolean (GLAPIENTRYP AreProgramsResidentNV)(GLsizei n, const GLuint * ids, GLboolean * residences); /* 891 */
+ void (GLAPIENTRYP ExecuteProgramNV)(GLenum target, GLuint id, const GLfloat * params); /* 892 */
+ void (GLAPIENTRYP GetProgramParameterdvNV)(GLenum target, GLuint index, GLenum pname, GLdouble * params); /* 893 */
+ void (GLAPIENTRYP GetProgramParameterfvNV)(GLenum target, GLuint index, GLenum pname, GLfloat * params); /* 894 */
+ void (GLAPIENTRYP GetProgramStringNV)(GLuint id, GLenum pname, GLubyte * program); /* 895 */
+ void (GLAPIENTRYP GetProgramivNV)(GLuint id, GLenum pname, GLint * params); /* 896 */
+ void (GLAPIENTRYP GetTrackMatrixivNV)(GLenum target, GLuint address, GLenum pname, GLint * params); /* 897 */
+ void (GLAPIENTRYP GetVertexAttribdvNV)(GLuint index, GLenum pname, GLdouble * params); /* 898 */
+ void (GLAPIENTRYP GetVertexAttribfvNV)(GLuint index, GLenum pname, GLfloat * params); /* 899 */
+ void (GLAPIENTRYP GetVertexAttribivNV)(GLuint index, GLenum pname, GLint * params); /* 900 */
+ void (GLAPIENTRYP LoadProgramNV)(GLenum target, GLuint id, GLsizei len, const GLubyte * program); /* 901 */
+ void (GLAPIENTRYP ProgramParameters4dvNV)(GLenum target, GLuint index, GLsizei num, const GLdouble * params); /* 902 */
+ void (GLAPIENTRYP ProgramParameters4fvNV)(GLenum target, GLuint index, GLsizei num, const GLfloat * params); /* 903 */
+ void (GLAPIENTRYP RequestResidentProgramsNV)(GLsizei n, const GLuint * ids); /* 904 */
+ void (GLAPIENTRYP TrackMatrixNV)(GLenum target, GLuint address, GLenum matrix, GLenum transform); /* 905 */
+ void (GLAPIENTRYP VertexAttrib1dNV)(GLuint index, GLdouble x); /* 906 */
+ void (GLAPIENTRYP VertexAttrib1dvNV)(GLuint index, const GLdouble * v); /* 907 */
+ void (GLAPIENTRYP VertexAttrib1fNV)(GLuint index, GLfloat x); /* 908 */
+ void (GLAPIENTRYP VertexAttrib1fvNV)(GLuint index, const GLfloat * v); /* 909 */
+ void (GLAPIENTRYP VertexAttrib1sNV)(GLuint index, GLshort x); /* 910 */
+ void (GLAPIENTRYP VertexAttrib1svNV)(GLuint index, const GLshort * v); /* 911 */
+ void (GLAPIENTRYP VertexAttrib2dNV)(GLuint index, GLdouble x, GLdouble y); /* 912 */
+ void (GLAPIENTRYP VertexAttrib2dvNV)(GLuint index, const GLdouble * v); /* 913 */
+ void (GLAPIENTRYP VertexAttrib2fNV)(GLuint index, GLfloat x, GLfloat y); /* 914 */
+ void (GLAPIENTRYP VertexAttrib2fvNV)(GLuint index, const GLfloat * v); /* 915 */
+ void (GLAPIENTRYP VertexAttrib2sNV)(GLuint index, GLshort x, GLshort y); /* 916 */
+ void (GLAPIENTRYP VertexAttrib2svNV)(GLuint index, const GLshort * v); /* 917 */
+ void (GLAPIENTRYP VertexAttrib3dNV)(GLuint index, GLdouble x, GLdouble y, GLdouble z); /* 918 */
+ void (GLAPIENTRYP VertexAttrib3dvNV)(GLuint index, const GLdouble * v); /* 919 */
+ void (GLAPIENTRYP VertexAttrib3fNV)(GLuint index, GLfloat x, GLfloat y, GLfloat z); /* 920 */
+ void (GLAPIENTRYP VertexAttrib3fvNV)(GLuint index, const GLfloat * v); /* 921 */
+ void (GLAPIENTRYP VertexAttrib3sNV)(GLuint index, GLshort x, GLshort y, GLshort z); /* 922 */
+ void (GLAPIENTRYP VertexAttrib3svNV)(GLuint index, const GLshort * v); /* 923 */
+ void (GLAPIENTRYP VertexAttrib4dNV)(GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 924 */
+ void (GLAPIENTRYP VertexAttrib4dvNV)(GLuint index, const GLdouble * v); /* 925 */
+ void (GLAPIENTRYP VertexAttrib4fNV)(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 926 */
+ void (GLAPIENTRYP VertexAttrib4fvNV)(GLuint index, const GLfloat * v); /* 927 */
+ void (GLAPIENTRYP VertexAttrib4sNV)(GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); /* 928 */
+ void (GLAPIENTRYP VertexAttrib4svNV)(GLuint index, const GLshort * v); /* 929 */
+ void (GLAPIENTRYP VertexAttrib4ubNV)(GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); /* 930 */
+ void (GLAPIENTRYP VertexAttrib4ubvNV)(GLuint index, const GLubyte * v); /* 931 */
+ void (GLAPIENTRYP VertexAttribPointerNV)(GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid * pointer); /* 932 */
+ void (GLAPIENTRYP VertexAttribs1dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 933 */
+ void (GLAPIENTRYP VertexAttribs1fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 934 */
+ void (GLAPIENTRYP VertexAttribs1svNV)(GLuint index, GLsizei n, const GLshort * v); /* 935 */
+ void (GLAPIENTRYP VertexAttribs2dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 936 */
+ void (GLAPIENTRYP VertexAttribs2fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 937 */
+ void (GLAPIENTRYP VertexAttribs2svNV)(GLuint index, GLsizei n, const GLshort * v); /* 938 */
+ void (GLAPIENTRYP VertexAttribs3dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 939 */
+ void (GLAPIENTRYP VertexAttribs3fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 940 */
+ void (GLAPIENTRYP VertexAttribs3svNV)(GLuint index, GLsizei n, const GLshort * v); /* 941 */
+ void (GLAPIENTRYP VertexAttribs4dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 942 */
+ void (GLAPIENTRYP VertexAttribs4fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 943 */
+ void (GLAPIENTRYP VertexAttribs4svNV)(GLuint index, GLsizei n, const GLshort * v); /* 944 */
+ void (GLAPIENTRYP VertexAttribs4ubvNV)(GLuint index, GLsizei n, const GLubyte * v); /* 945 */
+ void (GLAPIENTRYP GetTexBumpParameterfvATI)(GLenum pname, GLfloat * param); /* 946 */
+ void (GLAPIENTRYP GetTexBumpParameterivATI)(GLenum pname, GLint * param); /* 947 */
+ void (GLAPIENTRYP TexBumpParameterfvATI)(GLenum pname, const GLfloat * param); /* 948 */
+ void (GLAPIENTRYP TexBumpParameterivATI)(GLenum pname, const GLint * param); /* 949 */
+ void (GLAPIENTRYP AlphaFragmentOp1ATI)(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); /* 950 */
+ void (GLAPIENTRYP AlphaFragmentOp2ATI)(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); /* 951 */
+ void (GLAPIENTRYP AlphaFragmentOp3ATI)(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod); /* 952 */
+ void (GLAPIENTRYP BeginFragmentShaderATI)(void); /* 953 */
+ void (GLAPIENTRYP BindFragmentShaderATI)(GLuint id); /* 954 */
+ void (GLAPIENTRYP ColorFragmentOp1ATI)(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); /* 955 */
+ void (GLAPIENTRYP ColorFragmentOp2ATI)(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); /* 956 */
+ void (GLAPIENTRYP ColorFragmentOp3ATI)(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); /* 957 */
+ void (GLAPIENTRYP DeleteFragmentShaderATI)(GLuint id); /* 958 */
+ void (GLAPIENTRYP EndFragmentShaderATI)(void); /* 959 */
+ GLuint (GLAPIENTRYP GenFragmentShadersATI)(GLuint range); /* 960 */
+ void (GLAPIENTRYP PassTexCoordATI)(GLuint dst, GLuint coord, GLenum swizzle); /* 961 */
+ void (GLAPIENTRYP SampleMapATI)(GLuint dst, GLuint interp, GLenum swizzle); /* 962 */
+ void (GLAPIENTRYP SetFragmentShaderConstantATI)(GLuint dst, const GLfloat * value); /* 963 */
+ void (GLAPIENTRYP ActiveStencilFaceEXT)(GLenum face); /* 964 */
+ void (GLAPIENTRYP BindVertexArrayAPPLE)(GLuint array); /* 965 */
+ void (GLAPIENTRYP GenVertexArraysAPPLE)(GLsizei n, GLuint * arrays); /* 966 */
+ void (GLAPIENTRYP GetProgramNamedParameterdvNV)(GLuint id, GLsizei len, const GLubyte * name, GLdouble * params); /* 967 */
+ void (GLAPIENTRYP GetProgramNamedParameterfvNV)(GLuint id, GLsizei len, const GLubyte * name, GLfloat * params); /* 968 */
+ void (GLAPIENTRYP ProgramNamedParameter4dNV)(GLuint id, GLsizei len, const GLubyte * name, GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 969 */
+ void (GLAPIENTRYP ProgramNamedParameter4dvNV)(GLuint id, GLsizei len, const GLubyte * name, const GLdouble * v); /* 970 */
+ void (GLAPIENTRYP ProgramNamedParameter4fNV)(GLuint id, GLsizei len, const GLubyte * name, GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 971 */
+ void (GLAPIENTRYP ProgramNamedParameter4fvNV)(GLuint id, GLsizei len, const GLubyte * name, const GLfloat * v); /* 972 */
+ void (GLAPIENTRYP PrimitiveRestartNV)(void); /* 973 */
+ void (GLAPIENTRYP GetTexGenxvOES)(GLenum coord, GLenum pname, GLfixed * params); /* 974 */
+ void (GLAPIENTRYP TexGenxOES)(GLenum coord, GLenum pname, GLint param); /* 975 */
+ void (GLAPIENTRYP TexGenxvOES)(GLenum coord, GLenum pname, const GLfixed * params); /* 976 */
+ void (GLAPIENTRYP DepthBoundsEXT)(GLclampd zmin, GLclampd zmax); /* 977 */
+ void (GLAPIENTRYP BindFramebufferEXT)(GLenum target, GLuint framebuffer); /* 978 */
+ void (GLAPIENTRYP BindRenderbufferEXT)(GLenum target, GLuint renderbuffer); /* 979 */
+ void (GLAPIENTRYP BufferParameteriAPPLE)(GLenum target, GLenum pname, GLint param); /* 980 */
+ void (GLAPIENTRYP FlushMappedBufferRangeAPPLE)(GLenum target, GLintptr offset, GLsizeiptr size); /* 981 */
+ void (GLAPIENTRYP VertexAttribI1iEXT)(GLuint index, GLint x); /* 982 */
+ void (GLAPIENTRYP VertexAttribI1uiEXT)(GLuint index, GLuint x); /* 983 */
+ void (GLAPIENTRYP VertexAttribI2iEXT)(GLuint index, GLint x, GLint y); /* 984 */
+ void (GLAPIENTRYP VertexAttribI2ivEXT)(GLuint index, const GLint * v); /* 985 */
+ void (GLAPIENTRYP VertexAttribI2uiEXT)(GLuint index, GLuint x, GLuint y); /* 986 */
+ void (GLAPIENTRYP VertexAttribI2uivEXT)(GLuint index, const GLuint * v); /* 987 */
+ void (GLAPIENTRYP VertexAttribI3iEXT)(GLuint index, GLint x, GLint y, GLint z); /* 988 */
+ void (GLAPIENTRYP VertexAttribI3ivEXT)(GLuint index, const GLint * v); /* 989 */
+ void (GLAPIENTRYP VertexAttribI3uiEXT)(GLuint index, GLuint x, GLuint y, GLuint z); /* 990 */
+ void (GLAPIENTRYP VertexAttribI3uivEXT)(GLuint index, const GLuint * v); /* 991 */
+ void (GLAPIENTRYP VertexAttribI4iEXT)(GLuint index, GLint x, GLint y, GLint z, GLint w); /* 992 */
+ void (GLAPIENTRYP VertexAttribI4ivEXT)(GLuint index, const GLint * v); /* 993 */
+ void (GLAPIENTRYP VertexAttribI4uiEXT)(GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); /* 994 */
+ void (GLAPIENTRYP VertexAttribI4uivEXT)(GLuint index, const GLuint * v); /* 995 */
+ void (GLAPIENTRYP ClearColorIiEXT)(GLint r, GLint g, GLint b, GLint a); /* 996 */
+ void (GLAPIENTRYP ClearColorIuiEXT)(GLuint r, GLuint g, GLuint b, GLuint a); /* 997 */
+ void (GLAPIENTRYP BindBufferOffsetEXT)(GLenum target, GLuint index, GLuint buffer, GLintptr offset); /* 998 */
+ void (GLAPIENTRYP BeginPerfMonitorAMD)(GLuint monitor); /* 999 */
+ void (GLAPIENTRYP DeletePerfMonitorsAMD)(GLsizei n, GLuint * monitors); /* 1000 */
+ void (GLAPIENTRYP EndPerfMonitorAMD)(GLuint monitor); /* 1001 */
+ void (GLAPIENTRYP GenPerfMonitorsAMD)(GLsizei n, GLuint * monitors); /* 1002 */
+ void (GLAPIENTRYP GetPerfMonitorCounterDataAMD)(GLuint monitor, GLenum pname, GLsizei dataSize, GLuint * data, GLint * bytesWritten); /* 1003 */
+ void (GLAPIENTRYP GetPerfMonitorCounterInfoAMD)(GLuint group, GLuint counter, GLenum pname, GLvoid * data); /* 1004 */
+ void (GLAPIENTRYP GetPerfMonitorCounterStringAMD)(GLuint group, GLuint counter, GLsizei bufSize, GLsizei * length, GLchar * counterString); /* 1005 */
+ void (GLAPIENTRYP GetPerfMonitorCountersAMD)(GLuint group, GLint * numCounters, GLint * maxActiveCounters, GLsizei countersSize, GLuint * counters); /* 1006 */
+ void (GLAPIENTRYP GetPerfMonitorGroupStringAMD)(GLuint group, GLsizei bufSize, GLsizei * length, GLchar * groupString); /* 1007 */
+ void (GLAPIENTRYP GetPerfMonitorGroupsAMD)(GLint * numGroups, GLsizei groupsSize, GLuint * groups); /* 1008 */
+ void (GLAPIENTRYP SelectPerfMonitorCountersAMD)(GLuint monitor, GLboolean enable, GLuint group, GLint numCounters, GLuint * counterList); /* 1009 */
+ void (GLAPIENTRYP GetObjectParameterivAPPLE)(GLenum objectType, GLuint name, GLenum pname, GLint * value); /* 1010 */
+ GLenum (GLAPIENTRYP ObjectPurgeableAPPLE)(GLenum objectType, GLuint name, GLenum option); /* 1011 */
+ GLenum (GLAPIENTRYP ObjectUnpurgeableAPPLE)(GLenum objectType, GLuint name, GLenum option); /* 1012 */
+ void (GLAPIENTRYP ActiveProgramEXT)(GLuint program); /* 1013 */
+ GLuint (GLAPIENTRYP CreateShaderProgramEXT)(GLenum type, const GLchar * string); /* 1014 */
+ void (GLAPIENTRYP UseShaderProgramEXT)(GLenum type, GLuint program); /* 1015 */
+ void (GLAPIENTRYP TextureBarrierNV)(void); /* 1016 */
+ void (GLAPIENTRYP VDPAUFiniNV)(void); /* 1017 */
+ void (GLAPIENTRYP VDPAUGetSurfaceivNV)(GLintptr surface, GLenum pname, GLsizei bufSize, GLsizei * length, GLint * values); /* 1018 */
+ void (GLAPIENTRYP VDPAUInitNV)(const GLvoid * vdpDevice, const GLvoid * getProcAddress); /* 1019 */
+ void (GLAPIENTRYP VDPAUIsSurfaceNV)(GLintptr surface); /* 1020 */
+ void (GLAPIENTRYP VDPAUMapSurfacesNV)(GLsizei numSurfaces, const GLintptr * surfaces); /* 1021 */
+ GLintptr (GLAPIENTRYP VDPAURegisterOutputSurfaceNV)(const GLvoid * vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint * textureNames); /* 1022 */
+ GLintptr (GLAPIENTRYP VDPAURegisterVideoSurfaceNV)(const GLvoid * vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint * textureNames); /* 1023 */
+ void (GLAPIENTRYP VDPAUSurfaceAccessNV)(GLintptr surface, GLenum access); /* 1024 */
+ void (GLAPIENTRYP VDPAUUnmapSurfacesNV)(GLsizei numSurfaces, const GLintptr * surfaces); /* 1025 */
+ void (GLAPIENTRYP VDPAUUnregisterSurfaceNV)(GLintptr surface); /* 1026 */
+ void (GLAPIENTRYP StencilFuncSeparateATI)(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask); /* 1027 */
+ void (GLAPIENTRYP ProgramEnvParameters4fvEXT)(GLenum target, GLuint index, GLsizei count, const GLfloat * params); /* 1028 */
+ void (GLAPIENTRYP ProgramLocalParameters4fvEXT)(GLenum target, GLuint index, GLsizei count, const GLfloat * params); /* 1029 */
+ void (GLAPIENTRYP EGLImageTargetRenderbufferStorageOES)(GLenum target, GLvoid * writeOffset); /* 1030 */
+ void (GLAPIENTRYP EGLImageTargetTexture2DOES)(GLenum target, GLvoid * writeOffset); /* 1031 */
+ void (GLAPIENTRYP AlphaFuncx)(GLenum func, GLclampx ref); /* 1032 */
+ void (GLAPIENTRYP ClearColorx)(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha); /* 1033 */
+ void (GLAPIENTRYP ClearDepthx)(GLclampx depth); /* 1034 */
+ void (GLAPIENTRYP Color4x)(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); /* 1035 */
+ void (GLAPIENTRYP DepthRangex)(GLclampx zNear, GLclampx zFar); /* 1036 */
+ void (GLAPIENTRYP Fogx)(GLenum pname, GLfixed param); /* 1037 */
+ void (GLAPIENTRYP Fogxv)(GLenum pname, const GLfixed * params); /* 1038 */
+ void (GLAPIENTRYP Frustumf)(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar); /* 1039 */
+ void (GLAPIENTRYP Frustumx)(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar); /* 1040 */
+ void (GLAPIENTRYP LightModelx)(GLenum pname, GLfixed param); /* 1041 */
+ void (GLAPIENTRYP LightModelxv)(GLenum pname, const GLfixed * params); /* 1042 */
+ void (GLAPIENTRYP Lightx)(GLenum light, GLenum pname, GLfixed param); /* 1043 */
+ void (GLAPIENTRYP Lightxv)(GLenum light, GLenum pname, const GLfixed * params); /* 1044 */
+ void (GLAPIENTRYP LineWidthx)(GLfixed width); /* 1045 */
+ void (GLAPIENTRYP LoadMatrixx)(const GLfixed * m); /* 1046 */
+ void (GLAPIENTRYP Materialx)(GLenum face, GLenum pname, GLfixed param); /* 1047 */
+ void (GLAPIENTRYP Materialxv)(GLenum face, GLenum pname, const GLfixed * params); /* 1048 */
+ void (GLAPIENTRYP MultMatrixx)(const GLfixed * m); /* 1049 */
+ void (GLAPIENTRYP MultiTexCoord4x)(GLenum target, GLfixed s, GLfixed t, GLfixed r, GLfixed q); /* 1050 */
+ void (GLAPIENTRYP Normal3x)(GLfixed nx, GLfixed ny, GLfixed nz); /* 1051 */
+ void (GLAPIENTRYP Orthof)(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar); /* 1052 */
+ void (GLAPIENTRYP Orthox)(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar); /* 1053 */
+ void (GLAPIENTRYP PointSizex)(GLfixed size); /* 1054 */
+ void (GLAPIENTRYP PolygonOffsetx)(GLfixed factor, GLfixed units); /* 1055 */
+ void (GLAPIENTRYP Rotatex)(GLfixed angle, GLfixed x, GLfixed y, GLfixed z); /* 1056 */
+ void (GLAPIENTRYP SampleCoveragex)(GLclampx value, GLboolean invert); /* 1057 */
+ void (GLAPIENTRYP Scalex)(GLfixed x, GLfixed y, GLfixed z); /* 1058 */
+ void (GLAPIENTRYP TexEnvx)(GLenum target, GLenum pname, GLfixed param); /* 1059 */
+ void (GLAPIENTRYP TexEnvxv)(GLenum target, GLenum pname, const GLfixed * params); /* 1060 */
+ void (GLAPIENTRYP TexParameterx)(GLenum target, GLenum pname, GLfixed param); /* 1061 */
+ void (GLAPIENTRYP Translatex)(GLfixed x, GLfixed y, GLfixed z); /* 1062 */
+ void (GLAPIENTRYP ClipPlanef)(GLenum plane, const GLfloat * equation); /* 1063 */
+ void (GLAPIENTRYP ClipPlanex)(GLenum plane, const GLfixed * equation); /* 1064 */
+ void (GLAPIENTRYP GetClipPlanef)(GLenum plane, GLfloat * equation); /* 1065 */
+ void (GLAPIENTRYP GetClipPlanex)(GLenum plane, GLfixed * equation); /* 1066 */
+ void (GLAPIENTRYP GetFixedv)(GLenum pname, GLfixed * params); /* 1067 */
+ void (GLAPIENTRYP GetLightxv)(GLenum light, GLenum pname, GLfixed * params); /* 1068 */
+ void (GLAPIENTRYP GetMaterialxv)(GLenum face, GLenum pname, GLfixed * params); /* 1069 */
+ void (GLAPIENTRYP GetTexEnvxv)(GLenum target, GLenum pname, GLfixed * params); /* 1070 */
+ void (GLAPIENTRYP GetTexParameterxv)(GLenum target, GLenum pname, GLfixed * params); /* 1071 */
+ void (GLAPIENTRYP PointParameterx)(GLenum pname, GLfixed param); /* 1072 */
+ void (GLAPIENTRYP PointParameterxv)(GLenum pname, const GLfixed * params); /* 1073 */
+ void (GLAPIENTRYP TexParameterxv)(GLenum target, GLenum pname, const GLfixed * params); /* 1074 */
#endif /* !defined HAVE_SHARED_GLAPI */
};
diff --git a/xorg-server/glx/glprocs.h b/xorg-server/glx/glprocs.h
index 32bdf9d06..933a3b09c 100644
--- a/xorg-server/glx/glprocs.h
+++ b/xorg-server/glx/glprocs.h
@@ -880,6 +880,12 @@ static const char gl_string_table[] =
"glTextureStorage1DEXT\0"
"glTextureStorage2DEXT\0"
"glTextureStorage3DEXT\0"
+ "glBindVertexBuffer\0"
+ "glVertexAttribBinding\0"
+ "glVertexAttribFormat\0"
+ "glVertexAttribIFormat\0"
+ "glVertexAttribLFormat\0"
+ "glVertexBindingDivisor\0"
"glTexBufferRange\0"
"glTexStorage2DMultisample\0"
"glTexStorage3DMultisample\0"
@@ -1600,39 +1606,33 @@ static const char gl_string_table[] =
#define gl_dispatch_stub_732 mgl_dispatch_stub_732
#define gl_dispatch_stub_733 mgl_dispatch_stub_733
#define gl_dispatch_stub_820 mgl_dispatch_stub_820
-#define gl_dispatch_stub_838 mgl_dispatch_stub_838
-#define gl_dispatch_stub_839 mgl_dispatch_stub_839
-#define gl_dispatch_stub_840 mgl_dispatch_stub_840
-#define gl_dispatch_stub_841 mgl_dispatch_stub_841
-#define gl_dispatch_stub_842 mgl_dispatch_stub_842
-#define gl_dispatch_stub_843 mgl_dispatch_stub_843
#define gl_dispatch_stub_844 mgl_dispatch_stub_844
#define gl_dispatch_stub_845 mgl_dispatch_stub_845
#define gl_dispatch_stub_846 mgl_dispatch_stub_846
#define gl_dispatch_stub_847 mgl_dispatch_stub_847
#define gl_dispatch_stub_848 mgl_dispatch_stub_848
#define gl_dispatch_stub_849 mgl_dispatch_stub_849
-#define gl_dispatch_stub_856 mgl_dispatch_stub_856
-#define gl_dispatch_stub_883 mgl_dispatch_stub_883
-#define gl_dispatch_stub_884 mgl_dispatch_stub_884
-#define gl_dispatch_stub_958 mgl_dispatch_stub_958
-#define gl_dispatch_stub_959 mgl_dispatch_stub_959
-#define gl_dispatch_stub_960 mgl_dispatch_stub_960
-#define gl_dispatch_stub_968 mgl_dispatch_stub_968
-#define gl_dispatch_stub_969 mgl_dispatch_stub_969
-#define gl_dispatch_stub_970 mgl_dispatch_stub_970
-#define gl_dispatch_stub_971 mgl_dispatch_stub_971
+#define gl_dispatch_stub_850 mgl_dispatch_stub_850
+#define gl_dispatch_stub_851 mgl_dispatch_stub_851
+#define gl_dispatch_stub_852 mgl_dispatch_stub_852
+#define gl_dispatch_stub_853 mgl_dispatch_stub_853
+#define gl_dispatch_stub_854 mgl_dispatch_stub_854
+#define gl_dispatch_stub_855 mgl_dispatch_stub_855
+#define gl_dispatch_stub_862 mgl_dispatch_stub_862
+#define gl_dispatch_stub_889 mgl_dispatch_stub_889
+#define gl_dispatch_stub_890 mgl_dispatch_stub_890
+#define gl_dispatch_stub_964 mgl_dispatch_stub_964
+#define gl_dispatch_stub_965 mgl_dispatch_stub_965
+#define gl_dispatch_stub_966 mgl_dispatch_stub_966
#define gl_dispatch_stub_974 mgl_dispatch_stub_974
#define gl_dispatch_stub_975 mgl_dispatch_stub_975
-#define gl_dispatch_stub_1021 mgl_dispatch_stub_1021
-#define gl_dispatch_stub_1022 mgl_dispatch_stub_1022
-#define gl_dispatch_stub_1023 mgl_dispatch_stub_1023
-#define gl_dispatch_stub_1026 mgl_dispatch_stub_1026
+#define gl_dispatch_stub_976 mgl_dispatch_stub_976
+#define gl_dispatch_stub_977 mgl_dispatch_stub_977
+#define gl_dispatch_stub_980 mgl_dispatch_stub_980
+#define gl_dispatch_stub_981 mgl_dispatch_stub_981
#define gl_dispatch_stub_1027 mgl_dispatch_stub_1027
#define gl_dispatch_stub_1028 mgl_dispatch_stub_1028
#define gl_dispatch_stub_1029 mgl_dispatch_stub_1029
-#define gl_dispatch_stub_1030 mgl_dispatch_stub_1030
-#define gl_dispatch_stub_1031 mgl_dispatch_stub_1031
#define gl_dispatch_stub_1032 mgl_dispatch_stub_1032
#define gl_dispatch_stub_1033 mgl_dispatch_stub_1033
#define gl_dispatch_stub_1034 mgl_dispatch_stub_1034
@@ -1670,6 +1670,12 @@ static const char gl_string_table[] =
#define gl_dispatch_stub_1066 mgl_dispatch_stub_1066
#define gl_dispatch_stub_1067 mgl_dispatch_stub_1067
#define gl_dispatch_stub_1068 mgl_dispatch_stub_1068
+#define gl_dispatch_stub_1069 mgl_dispatch_stub_1069
+#define gl_dispatch_stub_1070 mgl_dispatch_stub_1070
+#define gl_dispatch_stub_1071 mgl_dispatch_stub_1071
+#define gl_dispatch_stub_1072 mgl_dispatch_stub_1072
+#define gl_dispatch_stub_1073 mgl_dispatch_stub_1073
+#define gl_dispatch_stub_1074 mgl_dispatch_stub_1074
#endif /* USE_MGL_NAMESPACE */
@@ -1691,76 +1697,76 @@ void GLAPIENTRY gl_dispatch_stub_731(GLuint id, GLenum pname, GLint64 * params);
void GLAPIENTRY gl_dispatch_stub_732(GLuint id, GLenum pname, GLuint64 * params);
void GLAPIENTRY gl_dispatch_stub_733(GLuint id, GLenum target);
void GLAPIENTRY gl_dispatch_stub_820(GLenum target, GLenum internalformat, GLenum pname, GLsizei bufSize, GLint * params);
-void GLAPIENTRY gl_dispatch_stub_838(GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height);
-void GLAPIENTRY gl_dispatch_stub_839(const GLfloat * coords);
-void GLAPIENTRY gl_dispatch_stub_840(GLint x, GLint y, GLint z, GLint width, GLint height);
-void GLAPIENTRY gl_dispatch_stub_841(const GLint * coords);
-void GLAPIENTRY gl_dispatch_stub_842(GLshort x, GLshort y, GLshort z, GLshort width, GLshort height);
-void GLAPIENTRY gl_dispatch_stub_843(const GLshort * coords);
-void GLAPIENTRY gl_dispatch_stub_844(GLfixed x, GLfixed y, GLfixed z, GLfixed width, GLfixed height);
-void GLAPIENTRY gl_dispatch_stub_845(const GLfixed * coords);
-void GLAPIENTRY gl_dispatch_stub_846(GLenum type, GLsizei stride, const GLvoid * pointer);
-GLbitfield GLAPIENTRY gl_dispatch_stub_847(GLfixed * mantissa, GLint * exponent);
-void GLAPIENTRY gl_dispatch_stub_848(GLclampf value, GLboolean invert);
-void GLAPIENTRY gl_dispatch_stub_849(GLenum pattern);
-void GLAPIENTRY gl_dispatch_stub_856(GLenum target, GLsizei numAttachments, const GLenum * attachments);
-void GLAPIENTRY gl_dispatch_stub_883(const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride);
-void GLAPIENTRY gl_dispatch_stub_884(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride);
-void GLAPIENTRY gl_dispatch_stub_958(GLenum face);
-void GLAPIENTRY gl_dispatch_stub_959(GLuint array);
-void GLAPIENTRY gl_dispatch_stub_960(GLsizei n, GLuint * arrays);
-void GLAPIENTRY gl_dispatch_stub_968(GLenum coord, GLenum pname, GLfixed * params);
-void GLAPIENTRY gl_dispatch_stub_969(GLenum coord, GLenum pname, GLint param);
-void GLAPIENTRY gl_dispatch_stub_970(GLenum coord, GLenum pname, const GLfixed * params);
-void GLAPIENTRY gl_dispatch_stub_971(GLclampd zmin, GLclampd zmax);
-void GLAPIENTRY gl_dispatch_stub_974(GLenum target, GLenum pname, GLint param);
-void GLAPIENTRY gl_dispatch_stub_975(GLenum target, GLintptr offset, GLsizeiptr size);
-void GLAPIENTRY gl_dispatch_stub_1021(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask);
-void GLAPIENTRY gl_dispatch_stub_1022(GLenum target, GLuint index, GLsizei count, const GLfloat * params);
-void GLAPIENTRY gl_dispatch_stub_1023(GLenum target, GLuint index, GLsizei count, const GLfloat * params);
-void GLAPIENTRY gl_dispatch_stub_1026(GLenum func, GLclampx ref);
-void GLAPIENTRY gl_dispatch_stub_1027(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha);
-void GLAPIENTRY gl_dispatch_stub_1028(GLclampx depth);
-void GLAPIENTRY gl_dispatch_stub_1029(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha);
-void GLAPIENTRY gl_dispatch_stub_1030(GLclampx zNear, GLclampx zFar);
-void GLAPIENTRY gl_dispatch_stub_1031(GLenum pname, GLfixed param);
-void GLAPIENTRY gl_dispatch_stub_1032(GLenum pname, const GLfixed * params);
-void GLAPIENTRY gl_dispatch_stub_1033(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar);
-void GLAPIENTRY gl_dispatch_stub_1034(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
-void GLAPIENTRY gl_dispatch_stub_1035(GLenum pname, GLfixed param);
-void GLAPIENTRY gl_dispatch_stub_1036(GLenum pname, const GLfixed * params);
-void GLAPIENTRY gl_dispatch_stub_1037(GLenum light, GLenum pname, GLfixed param);
-void GLAPIENTRY gl_dispatch_stub_1038(GLenum light, GLenum pname, const GLfixed * params);
-void GLAPIENTRY gl_dispatch_stub_1039(GLfixed width);
-void GLAPIENTRY gl_dispatch_stub_1040(const GLfixed * m);
-void GLAPIENTRY gl_dispatch_stub_1041(GLenum face, GLenum pname, GLfixed param);
-void GLAPIENTRY gl_dispatch_stub_1042(GLenum face, GLenum pname, const GLfixed * params);
-void GLAPIENTRY gl_dispatch_stub_1043(const GLfixed * m);
-void GLAPIENTRY gl_dispatch_stub_1044(GLenum target, GLfixed s, GLfixed t, GLfixed r, GLfixed q);
-void GLAPIENTRY gl_dispatch_stub_1045(GLfixed nx, GLfixed ny, GLfixed nz);
-void GLAPIENTRY gl_dispatch_stub_1046(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar);
-void GLAPIENTRY gl_dispatch_stub_1047(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
-void GLAPIENTRY gl_dispatch_stub_1048(GLfixed size);
-void GLAPIENTRY gl_dispatch_stub_1049(GLfixed factor, GLfixed units);
-void GLAPIENTRY gl_dispatch_stub_1050(GLfixed angle, GLfixed x, GLfixed y, GLfixed z);
-void GLAPIENTRY gl_dispatch_stub_1051(GLclampx value, GLboolean invert);
-void GLAPIENTRY gl_dispatch_stub_1052(GLfixed x, GLfixed y, GLfixed z);
-void GLAPIENTRY gl_dispatch_stub_1053(GLenum target, GLenum pname, GLfixed param);
-void GLAPIENTRY gl_dispatch_stub_1054(GLenum target, GLenum pname, const GLfixed * params);
-void GLAPIENTRY gl_dispatch_stub_1055(GLenum target, GLenum pname, GLfixed param);
-void GLAPIENTRY gl_dispatch_stub_1056(GLfixed x, GLfixed y, GLfixed z);
-void GLAPIENTRY gl_dispatch_stub_1057(GLenum plane, const GLfloat * equation);
-void GLAPIENTRY gl_dispatch_stub_1058(GLenum plane, const GLfixed * equation);
-void GLAPIENTRY gl_dispatch_stub_1059(GLenum plane, GLfloat * equation);
-void GLAPIENTRY gl_dispatch_stub_1060(GLenum plane, GLfixed * equation);
-void GLAPIENTRY gl_dispatch_stub_1061(GLenum pname, GLfixed * params);
-void GLAPIENTRY gl_dispatch_stub_1062(GLenum light, GLenum pname, GLfixed * params);
-void GLAPIENTRY gl_dispatch_stub_1063(GLenum face, GLenum pname, GLfixed * params);
-void GLAPIENTRY gl_dispatch_stub_1064(GLenum target, GLenum pname, GLfixed * params);
-void GLAPIENTRY gl_dispatch_stub_1065(GLenum target, GLenum pname, GLfixed * params);
-void GLAPIENTRY gl_dispatch_stub_1066(GLenum pname, GLfixed param);
-void GLAPIENTRY gl_dispatch_stub_1067(GLenum pname, const GLfixed * params);
-void GLAPIENTRY gl_dispatch_stub_1068(GLenum target, GLenum pname, const GLfixed * params);
+void GLAPIENTRY gl_dispatch_stub_844(GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height);
+void GLAPIENTRY gl_dispatch_stub_845(const GLfloat * coords);
+void GLAPIENTRY gl_dispatch_stub_846(GLint x, GLint y, GLint z, GLint width, GLint height);
+void GLAPIENTRY gl_dispatch_stub_847(const GLint * coords);
+void GLAPIENTRY gl_dispatch_stub_848(GLshort x, GLshort y, GLshort z, GLshort width, GLshort height);
+void GLAPIENTRY gl_dispatch_stub_849(const GLshort * coords);
+void GLAPIENTRY gl_dispatch_stub_850(GLfixed x, GLfixed y, GLfixed z, GLfixed width, GLfixed height);
+void GLAPIENTRY gl_dispatch_stub_851(const GLfixed * coords);
+void GLAPIENTRY gl_dispatch_stub_852(GLenum type, GLsizei stride, const GLvoid * pointer);
+GLbitfield GLAPIENTRY gl_dispatch_stub_853(GLfixed * mantissa, GLint * exponent);
+void GLAPIENTRY gl_dispatch_stub_854(GLclampf value, GLboolean invert);
+void GLAPIENTRY gl_dispatch_stub_855(GLenum pattern);
+void GLAPIENTRY gl_dispatch_stub_862(GLenum target, GLsizei numAttachments, const GLenum * attachments);
+void GLAPIENTRY gl_dispatch_stub_889(const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride);
+void GLAPIENTRY gl_dispatch_stub_890(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride);
+void GLAPIENTRY gl_dispatch_stub_964(GLenum face);
+void GLAPIENTRY gl_dispatch_stub_965(GLuint array);
+void GLAPIENTRY gl_dispatch_stub_966(GLsizei n, GLuint * arrays);
+void GLAPIENTRY gl_dispatch_stub_974(GLenum coord, GLenum pname, GLfixed * params);
+void GLAPIENTRY gl_dispatch_stub_975(GLenum coord, GLenum pname, GLint param);
+void GLAPIENTRY gl_dispatch_stub_976(GLenum coord, GLenum pname, const GLfixed * params);
+void GLAPIENTRY gl_dispatch_stub_977(GLclampd zmin, GLclampd zmax);
+void GLAPIENTRY gl_dispatch_stub_980(GLenum target, GLenum pname, GLint param);
+void GLAPIENTRY gl_dispatch_stub_981(GLenum target, GLintptr offset, GLsizeiptr size);
+void GLAPIENTRY gl_dispatch_stub_1027(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask);
+void GLAPIENTRY gl_dispatch_stub_1028(GLenum target, GLuint index, GLsizei count, const GLfloat * params);
+void GLAPIENTRY gl_dispatch_stub_1029(GLenum target, GLuint index, GLsizei count, const GLfloat * params);
+void GLAPIENTRY gl_dispatch_stub_1032(GLenum func, GLclampx ref);
+void GLAPIENTRY gl_dispatch_stub_1033(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha);
+void GLAPIENTRY gl_dispatch_stub_1034(GLclampx depth);
+void GLAPIENTRY gl_dispatch_stub_1035(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha);
+void GLAPIENTRY gl_dispatch_stub_1036(GLclampx zNear, GLclampx zFar);
+void GLAPIENTRY gl_dispatch_stub_1037(GLenum pname, GLfixed param);
+void GLAPIENTRY gl_dispatch_stub_1038(GLenum pname, const GLfixed * params);
+void GLAPIENTRY gl_dispatch_stub_1039(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar);
+void GLAPIENTRY gl_dispatch_stub_1040(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
+void GLAPIENTRY gl_dispatch_stub_1041(GLenum pname, GLfixed param);
+void GLAPIENTRY gl_dispatch_stub_1042(GLenum pname, const GLfixed * params);
+void GLAPIENTRY gl_dispatch_stub_1043(GLenum light, GLenum pname, GLfixed param);
+void GLAPIENTRY gl_dispatch_stub_1044(GLenum light, GLenum pname, const GLfixed * params);
+void GLAPIENTRY gl_dispatch_stub_1045(GLfixed width);
+void GLAPIENTRY gl_dispatch_stub_1046(const GLfixed * m);
+void GLAPIENTRY gl_dispatch_stub_1047(GLenum face, GLenum pname, GLfixed param);
+void GLAPIENTRY gl_dispatch_stub_1048(GLenum face, GLenum pname, const GLfixed * params);
+void GLAPIENTRY gl_dispatch_stub_1049(const GLfixed * m);
+void GLAPIENTRY gl_dispatch_stub_1050(GLenum target, GLfixed s, GLfixed t, GLfixed r, GLfixed q);
+void GLAPIENTRY gl_dispatch_stub_1051(GLfixed nx, GLfixed ny, GLfixed nz);
+void GLAPIENTRY gl_dispatch_stub_1052(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar);
+void GLAPIENTRY gl_dispatch_stub_1053(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
+void GLAPIENTRY gl_dispatch_stub_1054(GLfixed size);
+void GLAPIENTRY gl_dispatch_stub_1055(GLfixed factor, GLfixed units);
+void GLAPIENTRY gl_dispatch_stub_1056(GLfixed angle, GLfixed x, GLfixed y, GLfixed z);
+void GLAPIENTRY gl_dispatch_stub_1057(GLclampx value, GLboolean invert);
+void GLAPIENTRY gl_dispatch_stub_1058(GLfixed x, GLfixed y, GLfixed z);
+void GLAPIENTRY gl_dispatch_stub_1059(GLenum target, GLenum pname, GLfixed param);
+void GLAPIENTRY gl_dispatch_stub_1060(GLenum target, GLenum pname, const GLfixed * params);
+void GLAPIENTRY gl_dispatch_stub_1061(GLenum target, GLenum pname, GLfixed param);
+void GLAPIENTRY gl_dispatch_stub_1062(GLfixed x, GLfixed y, GLfixed z);
+void GLAPIENTRY gl_dispatch_stub_1063(GLenum plane, const GLfloat * equation);
+void GLAPIENTRY gl_dispatch_stub_1064(GLenum plane, const GLfixed * equation);
+void GLAPIENTRY gl_dispatch_stub_1065(GLenum plane, GLfloat * equation);
+void GLAPIENTRY gl_dispatch_stub_1066(GLenum plane, GLfixed * equation);
+void GLAPIENTRY gl_dispatch_stub_1067(GLenum pname, GLfixed * params);
+void GLAPIENTRY gl_dispatch_stub_1068(GLenum light, GLenum pname, GLfixed * params);
+void GLAPIENTRY gl_dispatch_stub_1069(GLenum face, GLenum pname, GLfixed * params);
+void GLAPIENTRY gl_dispatch_stub_1070(GLenum target, GLenum pname, GLfixed * params);
+void GLAPIENTRY gl_dispatch_stub_1071(GLenum target, GLenum pname, GLfixed * params);
+void GLAPIENTRY gl_dispatch_stub_1072(GLenum pname, GLfixed param);
+void GLAPIENTRY gl_dispatch_stub_1073(GLenum pname, const GLfixed * params);
+void GLAPIENTRY gl_dispatch_stub_1074(GLenum target, GLenum pname, const GLfixed * params);
#endif /* defined(NEED_FUNCTION_POINTER) || defined(GLX_INDIRECT_RENDERING) */
static const glprocs_table_t static_functions[] = {
@@ -2592,705 +2598,711 @@ static const glprocs_table_t static_functions[] = {
NAME_FUNC_OFFSET(13779, glTextureStorage1DEXT, glTextureStorage1DEXT, NULL, 825),
NAME_FUNC_OFFSET(13801, glTextureStorage2DEXT, glTextureStorage2DEXT, NULL, 826),
NAME_FUNC_OFFSET(13823, glTextureStorage3DEXT, glTextureStorage3DEXT, NULL, 827),
- NAME_FUNC_OFFSET(13845, glTexBufferRange, glTexBufferRange, NULL, 828),
- NAME_FUNC_OFFSET(13862, glTexStorage2DMultisample, glTexStorage2DMultisample, NULL, 829),
- NAME_FUNC_OFFSET(13888, glTexStorage3DMultisample, glTexStorage3DMultisample, NULL, 830),
- NAME_FUNC_OFFSET(13914, glInvalidateBufferData, glInvalidateBufferData, NULL, 831),
- NAME_FUNC_OFFSET(13937, glInvalidateBufferSubData, glInvalidateBufferSubData, NULL, 832),
- NAME_FUNC_OFFSET(13963, glInvalidateFramebuffer, glInvalidateFramebuffer, NULL, 833),
- NAME_FUNC_OFFSET(13987, glInvalidateSubFramebuffer, glInvalidateSubFramebuffer, NULL, 834),
- NAME_FUNC_OFFSET(14014, glInvalidateTexImage, glInvalidateTexImage, NULL, 835),
- NAME_FUNC_OFFSET(14035, glInvalidateTexSubImage, glInvalidateTexSubImage, NULL, 836),
- NAME_FUNC_OFFSET(14059, glPolygonOffsetEXT, glPolygonOffsetEXT, NULL, 837),
- NAME_FUNC_OFFSET(14078, gl_dispatch_stub_838, gl_dispatch_stub_838, NULL, 838),
- NAME_FUNC_OFFSET(14092, gl_dispatch_stub_839, gl_dispatch_stub_839, NULL, 839),
- NAME_FUNC_OFFSET(14107, gl_dispatch_stub_840, gl_dispatch_stub_840, NULL, 840),
- NAME_FUNC_OFFSET(14121, gl_dispatch_stub_841, gl_dispatch_stub_841, NULL, 841),
- NAME_FUNC_OFFSET(14136, gl_dispatch_stub_842, gl_dispatch_stub_842, NULL, 842),
- NAME_FUNC_OFFSET(14150, gl_dispatch_stub_843, gl_dispatch_stub_843, NULL, 843),
- NAME_FUNC_OFFSET(14165, gl_dispatch_stub_844, gl_dispatch_stub_844, NULL, 844),
- NAME_FUNC_OFFSET(14179, gl_dispatch_stub_845, gl_dispatch_stub_845, NULL, 845),
- NAME_FUNC_OFFSET(14194, gl_dispatch_stub_846, gl_dispatch_stub_846, NULL, 846),
- NAME_FUNC_OFFSET(14216, gl_dispatch_stub_847, gl_dispatch_stub_847, NULL, 847),
- NAME_FUNC_OFFSET(14234, gl_dispatch_stub_848, gl_dispatch_stub_848, NULL, 848),
- NAME_FUNC_OFFSET(14251, gl_dispatch_stub_849, gl_dispatch_stub_849, NULL, 849),
- NAME_FUNC_OFFSET(14271, glColorPointerEXT, glColorPointerEXT, NULL, 850),
- NAME_FUNC_OFFSET(14289, glEdgeFlagPointerEXT, glEdgeFlagPointerEXT, NULL, 851),
- NAME_FUNC_OFFSET(14310, glIndexPointerEXT, glIndexPointerEXT, NULL, 852),
- NAME_FUNC_OFFSET(14328, glNormalPointerEXT, glNormalPointerEXT, NULL, 853),
- NAME_FUNC_OFFSET(14347, glTexCoordPointerEXT, glTexCoordPointerEXT, NULL, 854),
- NAME_FUNC_OFFSET(14368, glVertexPointerEXT, glVertexPointerEXT, NULL, 855),
- NAME_FUNC_OFFSET(14387, gl_dispatch_stub_856, gl_dispatch_stub_856, NULL, 856),
- NAME_FUNC_OFFSET(14411, glLockArraysEXT, glLockArraysEXT, NULL, 857),
- NAME_FUNC_OFFSET(14427, glUnlockArraysEXT, glUnlockArraysEXT, NULL, 858),
- NAME_FUNC_OFFSET(14445, glDebugMessageCallback, glDebugMessageCallback, NULL, 859),
- NAME_FUNC_OFFSET(14468, glDebugMessageControl, glDebugMessageControl, NULL, 860),
- NAME_FUNC_OFFSET(14490, glDebugMessageInsert, glDebugMessageInsert, NULL, 861),
- NAME_FUNC_OFFSET(14511, glGetDebugMessageLog, glGetDebugMessageLog, NULL, 862),
- NAME_FUNC_OFFSET(14532, glGetObjectLabel, glGetObjectLabel, NULL, 863),
- NAME_FUNC_OFFSET(14549, glGetObjectPtrLabel, glGetObjectPtrLabel, NULL, 864),
- NAME_FUNC_OFFSET(14569, glObjectLabel, glObjectLabel, NULL, 865),
- NAME_FUNC_OFFSET(14583, glObjectPtrLabel, glObjectPtrLabel, NULL, 866),
- NAME_FUNC_OFFSET(14600, glPopDebugGroup, glPopDebugGroup, NULL, 867),
- NAME_FUNC_OFFSET(14616, glPushDebugGroup, glPushDebugGroup, NULL, 868),
- NAME_FUNC_OFFSET(14633, glSecondaryColor3fEXT, glSecondaryColor3fEXT, NULL, 869),
- NAME_FUNC_OFFSET(14655, glSecondaryColor3fvEXT, glSecondaryColor3fvEXT, NULL, 870),
- NAME_FUNC_OFFSET(14678, glMultiDrawElementsEXT, glMultiDrawElementsEXT, NULL, 871),
- NAME_FUNC_OFFSET(14701, glFogCoordfEXT, glFogCoordfEXT, NULL, 872),
- NAME_FUNC_OFFSET(14716, glFogCoordfvEXT, glFogCoordfvEXT, NULL, 873),
- NAME_FUNC_OFFSET(14732, glResizeBuffersMESA, glResizeBuffersMESA, NULL, 874),
- NAME_FUNC_OFFSET(14752, glWindowPos4dMESA, glWindowPos4dMESA, NULL, 875),
- NAME_FUNC_OFFSET(14770, glWindowPos4dvMESA, glWindowPos4dvMESA, NULL, 876),
- NAME_FUNC_OFFSET(14789, glWindowPos4fMESA, glWindowPos4fMESA, NULL, 877),
- NAME_FUNC_OFFSET(14807, glWindowPos4fvMESA, glWindowPos4fvMESA, NULL, 878),
- NAME_FUNC_OFFSET(14826, glWindowPos4iMESA, glWindowPos4iMESA, NULL, 879),
- NAME_FUNC_OFFSET(14844, glWindowPos4ivMESA, glWindowPos4ivMESA, NULL, 880),
- NAME_FUNC_OFFSET(14863, glWindowPos4sMESA, glWindowPos4sMESA, NULL, 881),
- NAME_FUNC_OFFSET(14881, glWindowPos4svMESA, glWindowPos4svMESA, NULL, 882),
- NAME_FUNC_OFFSET(14900, gl_dispatch_stub_883, gl_dispatch_stub_883, NULL, 883),
- NAME_FUNC_OFFSET(14925, gl_dispatch_stub_884, gl_dispatch_stub_884, NULL, 884),
- NAME_FUNC_OFFSET(14952, glAreProgramsResidentNV, glAreProgramsResidentNV, NULL, 885),
- NAME_FUNC_OFFSET(14976, glExecuteProgramNV, glExecuteProgramNV, NULL, 886),
- NAME_FUNC_OFFSET(14995, glGetProgramParameterdvNV, glGetProgramParameterdvNV, NULL, 887),
- NAME_FUNC_OFFSET(15021, glGetProgramParameterfvNV, glGetProgramParameterfvNV, NULL, 888),
- NAME_FUNC_OFFSET(15047, glGetProgramStringNV, glGetProgramStringNV, NULL, 889),
- NAME_FUNC_OFFSET(15068, glGetProgramivNV, glGetProgramivNV, NULL, 890),
- NAME_FUNC_OFFSET(15085, glGetTrackMatrixivNV, glGetTrackMatrixivNV, NULL, 891),
- NAME_FUNC_OFFSET(15106, glGetVertexAttribdvNV, glGetVertexAttribdvNV, NULL, 892),
- NAME_FUNC_OFFSET(15128, glGetVertexAttribfvNV, glGetVertexAttribfvNV, NULL, 893),
- NAME_FUNC_OFFSET(15150, glGetVertexAttribivNV, glGetVertexAttribivNV, NULL, 894),
- NAME_FUNC_OFFSET(15172, glLoadProgramNV, glLoadProgramNV, NULL, 895),
- NAME_FUNC_OFFSET(15188, glProgramParameters4dvNV, glProgramParameters4dvNV, NULL, 896),
- NAME_FUNC_OFFSET(15213, glProgramParameters4fvNV, glProgramParameters4fvNV, NULL, 897),
- NAME_FUNC_OFFSET(15238, glRequestResidentProgramsNV, glRequestResidentProgramsNV, NULL, 898),
- NAME_FUNC_OFFSET(15266, glTrackMatrixNV, glTrackMatrixNV, NULL, 899),
- NAME_FUNC_OFFSET(15282, glVertexAttrib1dNV, glVertexAttrib1dNV, NULL, 900),
- NAME_FUNC_OFFSET(15301, glVertexAttrib1dvNV, glVertexAttrib1dvNV, NULL, 901),
- NAME_FUNC_OFFSET(15321, glVertexAttrib1fNV, glVertexAttrib1fNV, NULL, 902),
- NAME_FUNC_OFFSET(15340, glVertexAttrib1fvNV, glVertexAttrib1fvNV, NULL, 903),
- NAME_FUNC_OFFSET(15360, glVertexAttrib1sNV, glVertexAttrib1sNV, NULL, 904),
- NAME_FUNC_OFFSET(15379, glVertexAttrib1svNV, glVertexAttrib1svNV, NULL, 905),
- NAME_FUNC_OFFSET(15399, glVertexAttrib2dNV, glVertexAttrib2dNV, NULL, 906),
- NAME_FUNC_OFFSET(15418, glVertexAttrib2dvNV, glVertexAttrib2dvNV, NULL, 907),
- NAME_FUNC_OFFSET(15438, glVertexAttrib2fNV, glVertexAttrib2fNV, NULL, 908),
- NAME_FUNC_OFFSET(15457, glVertexAttrib2fvNV, glVertexAttrib2fvNV, NULL, 909),
- NAME_FUNC_OFFSET(15477, glVertexAttrib2sNV, glVertexAttrib2sNV, NULL, 910),
- NAME_FUNC_OFFSET(15496, glVertexAttrib2svNV, glVertexAttrib2svNV, NULL, 911),
- NAME_FUNC_OFFSET(15516, glVertexAttrib3dNV, glVertexAttrib3dNV, NULL, 912),
- NAME_FUNC_OFFSET(15535, glVertexAttrib3dvNV, glVertexAttrib3dvNV, NULL, 913),
- NAME_FUNC_OFFSET(15555, glVertexAttrib3fNV, glVertexAttrib3fNV, NULL, 914),
- NAME_FUNC_OFFSET(15574, glVertexAttrib3fvNV, glVertexAttrib3fvNV, NULL, 915),
- NAME_FUNC_OFFSET(15594, glVertexAttrib3sNV, glVertexAttrib3sNV, NULL, 916),
- NAME_FUNC_OFFSET(15613, glVertexAttrib3svNV, glVertexAttrib3svNV, NULL, 917),
- NAME_FUNC_OFFSET(15633, glVertexAttrib4dNV, glVertexAttrib4dNV, NULL, 918),
- NAME_FUNC_OFFSET(15652, glVertexAttrib4dvNV, glVertexAttrib4dvNV, NULL, 919),
- NAME_FUNC_OFFSET(15672, glVertexAttrib4fNV, glVertexAttrib4fNV, NULL, 920),
- NAME_FUNC_OFFSET(15691, glVertexAttrib4fvNV, glVertexAttrib4fvNV, NULL, 921),
- NAME_FUNC_OFFSET(15711, glVertexAttrib4sNV, glVertexAttrib4sNV, NULL, 922),
- NAME_FUNC_OFFSET(15730, glVertexAttrib4svNV, glVertexAttrib4svNV, NULL, 923),
- NAME_FUNC_OFFSET(15750, glVertexAttrib4ubNV, glVertexAttrib4ubNV, NULL, 924),
- NAME_FUNC_OFFSET(15770, glVertexAttrib4ubvNV, glVertexAttrib4ubvNV, NULL, 925),
- NAME_FUNC_OFFSET(15791, glVertexAttribPointerNV, glVertexAttribPointerNV, NULL, 926),
- NAME_FUNC_OFFSET(15815, glVertexAttribs1dvNV, glVertexAttribs1dvNV, NULL, 927),
- NAME_FUNC_OFFSET(15836, glVertexAttribs1fvNV, glVertexAttribs1fvNV, NULL, 928),
- NAME_FUNC_OFFSET(15857, glVertexAttribs1svNV, glVertexAttribs1svNV, NULL, 929),
- NAME_FUNC_OFFSET(15878, glVertexAttribs2dvNV, glVertexAttribs2dvNV, NULL, 930),
- NAME_FUNC_OFFSET(15899, glVertexAttribs2fvNV, glVertexAttribs2fvNV, NULL, 931),
- NAME_FUNC_OFFSET(15920, glVertexAttribs2svNV, glVertexAttribs2svNV, NULL, 932),
- NAME_FUNC_OFFSET(15941, glVertexAttribs3dvNV, glVertexAttribs3dvNV, NULL, 933),
- NAME_FUNC_OFFSET(15962, glVertexAttribs3fvNV, glVertexAttribs3fvNV, NULL, 934),
- NAME_FUNC_OFFSET(15983, glVertexAttribs3svNV, glVertexAttribs3svNV, NULL, 935),
- NAME_FUNC_OFFSET(16004, glVertexAttribs4dvNV, glVertexAttribs4dvNV, NULL, 936),
- NAME_FUNC_OFFSET(16025, glVertexAttribs4fvNV, glVertexAttribs4fvNV, NULL, 937),
- NAME_FUNC_OFFSET(16046, glVertexAttribs4svNV, glVertexAttribs4svNV, NULL, 938),
- NAME_FUNC_OFFSET(16067, glVertexAttribs4ubvNV, glVertexAttribs4ubvNV, NULL, 939),
- NAME_FUNC_OFFSET(16089, glGetTexBumpParameterfvATI, glGetTexBumpParameterfvATI, NULL, 940),
- NAME_FUNC_OFFSET(16116, glGetTexBumpParameterivATI, glGetTexBumpParameterivATI, NULL, 941),
- NAME_FUNC_OFFSET(16143, glTexBumpParameterfvATI, glTexBumpParameterfvATI, NULL, 942),
- NAME_FUNC_OFFSET(16167, glTexBumpParameterivATI, glTexBumpParameterivATI, NULL, 943),
- NAME_FUNC_OFFSET(16191, glAlphaFragmentOp1ATI, glAlphaFragmentOp1ATI, NULL, 944),
- NAME_FUNC_OFFSET(16213, glAlphaFragmentOp2ATI, glAlphaFragmentOp2ATI, NULL, 945),
- NAME_FUNC_OFFSET(16235, glAlphaFragmentOp3ATI, glAlphaFragmentOp3ATI, NULL, 946),
- NAME_FUNC_OFFSET(16257, glBeginFragmentShaderATI, glBeginFragmentShaderATI, NULL, 947),
- NAME_FUNC_OFFSET(16282, glBindFragmentShaderATI, glBindFragmentShaderATI, NULL, 948),
- NAME_FUNC_OFFSET(16306, glColorFragmentOp1ATI, glColorFragmentOp1ATI, NULL, 949),
- NAME_FUNC_OFFSET(16328, glColorFragmentOp2ATI, glColorFragmentOp2ATI, NULL, 950),
- NAME_FUNC_OFFSET(16350, glColorFragmentOp3ATI, glColorFragmentOp3ATI, NULL, 951),
- NAME_FUNC_OFFSET(16372, glDeleteFragmentShaderATI, glDeleteFragmentShaderATI, NULL, 952),
- NAME_FUNC_OFFSET(16398, glEndFragmentShaderATI, glEndFragmentShaderATI, NULL, 953),
- NAME_FUNC_OFFSET(16421, glGenFragmentShadersATI, glGenFragmentShadersATI, NULL, 954),
- NAME_FUNC_OFFSET(16445, glPassTexCoordATI, glPassTexCoordATI, NULL, 955),
- NAME_FUNC_OFFSET(16463, glSampleMapATI, glSampleMapATI, NULL, 956),
- NAME_FUNC_OFFSET(16478, glSetFragmentShaderConstantATI, glSetFragmentShaderConstantATI, NULL, 957),
- NAME_FUNC_OFFSET(16509, gl_dispatch_stub_958, gl_dispatch_stub_958, NULL, 958),
- NAME_FUNC_OFFSET(16532, gl_dispatch_stub_959, gl_dispatch_stub_959, NULL, 959),
- NAME_FUNC_OFFSET(16555, gl_dispatch_stub_960, gl_dispatch_stub_960, NULL, 960),
- NAME_FUNC_OFFSET(16578, glGetProgramNamedParameterdvNV, glGetProgramNamedParameterdvNV, NULL, 961),
- NAME_FUNC_OFFSET(16609, glGetProgramNamedParameterfvNV, glGetProgramNamedParameterfvNV, NULL, 962),
- NAME_FUNC_OFFSET(16640, glProgramNamedParameter4dNV, glProgramNamedParameter4dNV, NULL, 963),
- NAME_FUNC_OFFSET(16668, glProgramNamedParameter4dvNV, glProgramNamedParameter4dvNV, NULL, 964),
- NAME_FUNC_OFFSET(16697, glProgramNamedParameter4fNV, glProgramNamedParameter4fNV, NULL, 965),
- NAME_FUNC_OFFSET(16725, glProgramNamedParameter4fvNV, glProgramNamedParameter4fvNV, NULL, 966),
- NAME_FUNC_OFFSET(16754, glPrimitiveRestartNV, glPrimitiveRestartNV, NULL, 967),
- NAME_FUNC_OFFSET(16775, gl_dispatch_stub_968, gl_dispatch_stub_968, NULL, 968),
- NAME_FUNC_OFFSET(16792, gl_dispatch_stub_969, gl_dispatch_stub_969, NULL, 969),
- NAME_FUNC_OFFSET(16805, gl_dispatch_stub_970, gl_dispatch_stub_970, NULL, 970),
- NAME_FUNC_OFFSET(16819, gl_dispatch_stub_971, gl_dispatch_stub_971, NULL, 971),
- NAME_FUNC_OFFSET(16836, glBindFramebufferEXT, glBindFramebufferEXT, NULL, 972),
- NAME_FUNC_OFFSET(16857, glBindRenderbufferEXT, glBindRenderbufferEXT, NULL, 973),
- NAME_FUNC_OFFSET(16879, gl_dispatch_stub_974, gl_dispatch_stub_974, NULL, 974),
- NAME_FUNC_OFFSET(16903, gl_dispatch_stub_975, gl_dispatch_stub_975, NULL, 975),
- NAME_FUNC_OFFSET(16933, glVertexAttribI1iEXT, glVertexAttribI1iEXT, NULL, 976),
- NAME_FUNC_OFFSET(16954, glVertexAttribI1uiEXT, glVertexAttribI1uiEXT, NULL, 977),
- NAME_FUNC_OFFSET(16976, glVertexAttribI2iEXT, glVertexAttribI2iEXT, NULL, 978),
- NAME_FUNC_OFFSET(16997, glVertexAttribI2ivEXT, glVertexAttribI2ivEXT, NULL, 979),
- NAME_FUNC_OFFSET(17019, glVertexAttribI2uiEXT, glVertexAttribI2uiEXT, NULL, 980),
- NAME_FUNC_OFFSET(17041, glVertexAttribI2uivEXT, glVertexAttribI2uivEXT, NULL, 981),
- NAME_FUNC_OFFSET(17064, glVertexAttribI3iEXT, glVertexAttribI3iEXT, NULL, 982),
- NAME_FUNC_OFFSET(17085, glVertexAttribI3ivEXT, glVertexAttribI3ivEXT, NULL, 983),
- NAME_FUNC_OFFSET(17107, glVertexAttribI3uiEXT, glVertexAttribI3uiEXT, NULL, 984),
- NAME_FUNC_OFFSET(17129, glVertexAttribI3uivEXT, glVertexAttribI3uivEXT, NULL, 985),
- NAME_FUNC_OFFSET(17152, glVertexAttribI4iEXT, glVertexAttribI4iEXT, NULL, 986),
- NAME_FUNC_OFFSET(17173, glVertexAttribI4ivEXT, glVertexAttribI4ivEXT, NULL, 987),
- NAME_FUNC_OFFSET(17195, glVertexAttribI4uiEXT, glVertexAttribI4uiEXT, NULL, 988),
- NAME_FUNC_OFFSET(17217, glVertexAttribI4uivEXT, glVertexAttribI4uivEXT, NULL, 989),
- NAME_FUNC_OFFSET(17240, glClearColorIiEXT, glClearColorIiEXT, NULL, 990),
- NAME_FUNC_OFFSET(17258, glClearColorIuiEXT, glClearColorIuiEXT, NULL, 991),
- NAME_FUNC_OFFSET(17277, glBindBufferOffsetEXT, glBindBufferOffsetEXT, NULL, 992),
- NAME_FUNC_OFFSET(17299, glBeginPerfMonitorAMD, glBeginPerfMonitorAMD, NULL, 993),
- NAME_FUNC_OFFSET(17321, glDeletePerfMonitorsAMD, glDeletePerfMonitorsAMD, NULL, 994),
- NAME_FUNC_OFFSET(17345, glEndPerfMonitorAMD, glEndPerfMonitorAMD, NULL, 995),
- NAME_FUNC_OFFSET(17365, glGenPerfMonitorsAMD, glGenPerfMonitorsAMD, NULL, 996),
- NAME_FUNC_OFFSET(17386, glGetPerfMonitorCounterDataAMD, glGetPerfMonitorCounterDataAMD, NULL, 997),
- NAME_FUNC_OFFSET(17417, glGetPerfMonitorCounterInfoAMD, glGetPerfMonitorCounterInfoAMD, NULL, 998),
- NAME_FUNC_OFFSET(17448, glGetPerfMonitorCounterStringAMD, glGetPerfMonitorCounterStringAMD, NULL, 999),
- NAME_FUNC_OFFSET(17481, glGetPerfMonitorCountersAMD, glGetPerfMonitorCountersAMD, NULL, 1000),
- NAME_FUNC_OFFSET(17509, glGetPerfMonitorGroupStringAMD, glGetPerfMonitorGroupStringAMD, NULL, 1001),
- NAME_FUNC_OFFSET(17540, glGetPerfMonitorGroupsAMD, glGetPerfMonitorGroupsAMD, NULL, 1002),
- NAME_FUNC_OFFSET(17566, glSelectPerfMonitorCountersAMD, glSelectPerfMonitorCountersAMD, NULL, 1003),
- NAME_FUNC_OFFSET(17597, glGetObjectParameterivAPPLE, glGetObjectParameterivAPPLE, NULL, 1004),
- NAME_FUNC_OFFSET(17625, glObjectPurgeableAPPLE, glObjectPurgeableAPPLE, NULL, 1005),
- NAME_FUNC_OFFSET(17648, glObjectUnpurgeableAPPLE, glObjectUnpurgeableAPPLE, NULL, 1006),
- NAME_FUNC_OFFSET(17673, glActiveProgramEXT, glActiveProgramEXT, NULL, 1007),
- NAME_FUNC_OFFSET(17692, glCreateShaderProgramEXT, glCreateShaderProgramEXT, NULL, 1008),
- NAME_FUNC_OFFSET(17717, glUseShaderProgramEXT, glUseShaderProgramEXT, NULL, 1009),
- NAME_FUNC_OFFSET(17739, glTextureBarrierNV, glTextureBarrierNV, NULL, 1010),
- NAME_FUNC_OFFSET(17758, glVDPAUFiniNV, glVDPAUFiniNV, NULL, 1011),
- NAME_FUNC_OFFSET(17772, glVDPAUGetSurfaceivNV, glVDPAUGetSurfaceivNV, NULL, 1012),
- NAME_FUNC_OFFSET(17794, glVDPAUInitNV, glVDPAUInitNV, NULL, 1013),
- NAME_FUNC_OFFSET(17808, glVDPAUIsSurfaceNV, glVDPAUIsSurfaceNV, NULL, 1014),
- NAME_FUNC_OFFSET(17827, glVDPAUMapSurfacesNV, glVDPAUMapSurfacesNV, NULL, 1015),
- NAME_FUNC_OFFSET(17848, glVDPAURegisterOutputSurfaceNV, glVDPAURegisterOutputSurfaceNV, NULL, 1016),
- NAME_FUNC_OFFSET(17879, glVDPAURegisterVideoSurfaceNV, glVDPAURegisterVideoSurfaceNV, NULL, 1017),
- NAME_FUNC_OFFSET(17909, glVDPAUSurfaceAccessNV, glVDPAUSurfaceAccessNV, NULL, 1018),
- NAME_FUNC_OFFSET(17932, glVDPAUUnmapSurfacesNV, glVDPAUUnmapSurfacesNV, NULL, 1019),
- NAME_FUNC_OFFSET(17955, glVDPAUUnregisterSurfaceNV, glVDPAUUnregisterSurfaceNV, NULL, 1020),
- NAME_FUNC_OFFSET(17982, gl_dispatch_stub_1021, gl_dispatch_stub_1021, NULL, 1021),
- NAME_FUNC_OFFSET(18007, gl_dispatch_stub_1022, gl_dispatch_stub_1022, NULL, 1022),
- NAME_FUNC_OFFSET(18036, gl_dispatch_stub_1023, gl_dispatch_stub_1023, NULL, 1023),
- NAME_FUNC_OFFSET(18067, glEGLImageTargetRenderbufferStorageOES, glEGLImageTargetRenderbufferStorageOES, NULL, 1024),
- NAME_FUNC_OFFSET(18106, glEGLImageTargetTexture2DOES, glEGLImageTargetTexture2DOES, NULL, 1025),
- NAME_FUNC_OFFSET(18135, gl_dispatch_stub_1026, gl_dispatch_stub_1026, NULL, 1026),
- NAME_FUNC_OFFSET(18148, gl_dispatch_stub_1027, gl_dispatch_stub_1027, NULL, 1027),
- NAME_FUNC_OFFSET(18162, gl_dispatch_stub_1028, gl_dispatch_stub_1028, NULL, 1028),
- NAME_FUNC_OFFSET(18176, gl_dispatch_stub_1029, gl_dispatch_stub_1029, NULL, 1029),
- NAME_FUNC_OFFSET(18186, gl_dispatch_stub_1030, gl_dispatch_stub_1030, NULL, 1030),
- NAME_FUNC_OFFSET(18200, gl_dispatch_stub_1031, gl_dispatch_stub_1031, NULL, 1031),
- NAME_FUNC_OFFSET(18207, gl_dispatch_stub_1032, gl_dispatch_stub_1032, NULL, 1032),
- NAME_FUNC_OFFSET(18215, gl_dispatch_stub_1033, gl_dispatch_stub_1033, NULL, 1033),
- NAME_FUNC_OFFSET(18226, gl_dispatch_stub_1034, gl_dispatch_stub_1034, NULL, 1034),
- NAME_FUNC_OFFSET(18237, gl_dispatch_stub_1035, gl_dispatch_stub_1035, NULL, 1035),
- NAME_FUNC_OFFSET(18251, gl_dispatch_stub_1036, gl_dispatch_stub_1036, NULL, 1036),
- NAME_FUNC_OFFSET(18266, gl_dispatch_stub_1037, gl_dispatch_stub_1037, NULL, 1037),
- NAME_FUNC_OFFSET(18275, gl_dispatch_stub_1038, gl_dispatch_stub_1038, NULL, 1038),
- NAME_FUNC_OFFSET(18285, gl_dispatch_stub_1039, gl_dispatch_stub_1039, NULL, 1039),
- NAME_FUNC_OFFSET(18298, gl_dispatch_stub_1040, gl_dispatch_stub_1040, NULL, 1040),
- NAME_FUNC_OFFSET(18312, gl_dispatch_stub_1041, gl_dispatch_stub_1041, NULL, 1041),
- NAME_FUNC_OFFSET(18324, gl_dispatch_stub_1042, gl_dispatch_stub_1042, NULL, 1042),
- NAME_FUNC_OFFSET(18337, gl_dispatch_stub_1043, gl_dispatch_stub_1043, NULL, 1043),
- NAME_FUNC_OFFSET(18351, gl_dispatch_stub_1044, gl_dispatch_stub_1044, NULL, 1044),
- NAME_FUNC_OFFSET(18369, gl_dispatch_stub_1045, gl_dispatch_stub_1045, NULL, 1045),
- NAME_FUNC_OFFSET(18380, gl_dispatch_stub_1046, gl_dispatch_stub_1046, NULL, 1046),
- NAME_FUNC_OFFSET(18389, gl_dispatch_stub_1047, gl_dispatch_stub_1047, NULL, 1047),
- NAME_FUNC_OFFSET(18398, gl_dispatch_stub_1048, gl_dispatch_stub_1048, NULL, 1048),
- NAME_FUNC_OFFSET(18411, gl_dispatch_stub_1049, gl_dispatch_stub_1049, NULL, 1049),
- NAME_FUNC_OFFSET(18428, gl_dispatch_stub_1050, gl_dispatch_stub_1050, NULL, 1050),
- NAME_FUNC_OFFSET(18438, gl_dispatch_stub_1051, gl_dispatch_stub_1051, NULL, 1051),
- NAME_FUNC_OFFSET(18456, gl_dispatch_stub_1052, gl_dispatch_stub_1052, NULL, 1052),
- NAME_FUNC_OFFSET(18465, gl_dispatch_stub_1053, gl_dispatch_stub_1053, NULL, 1053),
- NAME_FUNC_OFFSET(18475, gl_dispatch_stub_1054, gl_dispatch_stub_1054, NULL, 1054),
- NAME_FUNC_OFFSET(18486, gl_dispatch_stub_1055, gl_dispatch_stub_1055, NULL, 1055),
- NAME_FUNC_OFFSET(18502, gl_dispatch_stub_1056, gl_dispatch_stub_1056, NULL, 1056),
- NAME_FUNC_OFFSET(18515, gl_dispatch_stub_1057, gl_dispatch_stub_1057, NULL, 1057),
- NAME_FUNC_OFFSET(18528, gl_dispatch_stub_1058, gl_dispatch_stub_1058, NULL, 1058),
- NAME_FUNC_OFFSET(18541, gl_dispatch_stub_1059, gl_dispatch_stub_1059, NULL, 1059),
- NAME_FUNC_OFFSET(18557, gl_dispatch_stub_1060, gl_dispatch_stub_1060, NULL, 1060),
- NAME_FUNC_OFFSET(18573, gl_dispatch_stub_1061, gl_dispatch_stub_1061, NULL, 1061),
- NAME_FUNC_OFFSET(18585, gl_dispatch_stub_1062, gl_dispatch_stub_1062, NULL, 1062),
- NAME_FUNC_OFFSET(18598, gl_dispatch_stub_1063, gl_dispatch_stub_1063, NULL, 1063),
- NAME_FUNC_OFFSET(18614, gl_dispatch_stub_1064, gl_dispatch_stub_1064, NULL, 1064),
- NAME_FUNC_OFFSET(18628, gl_dispatch_stub_1065, gl_dispatch_stub_1065, NULL, 1065),
- NAME_FUNC_OFFSET(18648, gl_dispatch_stub_1066, gl_dispatch_stub_1066, NULL, 1066),
- NAME_FUNC_OFFSET(18666, gl_dispatch_stub_1067, gl_dispatch_stub_1067, NULL, 1067),
- NAME_FUNC_OFFSET(18685, gl_dispatch_stub_1068, gl_dispatch_stub_1068, NULL, 1068),
- NAME_FUNC_OFFSET(18702, glTexGenf, glTexGenf, NULL, 190),
- NAME_FUNC_OFFSET(18715, glTexGenfv, glTexGenfv, NULL, 191),
- NAME_FUNC_OFFSET(18729, glTexGeni, glTexGeni, NULL, 192),
- NAME_FUNC_OFFSET(18742, glTexGeniv, glTexGeniv, NULL, 193),
- NAME_FUNC_OFFSET(18756, glReadBuffer, glReadBuffer, NULL, 254),
- NAME_FUNC_OFFSET(18771, glGetTexGenfv, glGetTexGenfv, NULL, 279),
- NAME_FUNC_OFFSET(18788, glGetTexGeniv, glGetTexGeniv, NULL, 280),
- NAME_FUNC_OFFSET(18805, glArrayElement, glArrayElement, NULL, 306),
- NAME_FUNC_OFFSET(18823, glBindTexture, glBindTexture, NULL, 307),
- NAME_FUNC_OFFSET(18840, glDrawArrays, glDrawArrays, NULL, 310),
- NAME_FUNC_OFFSET(18856, glAreTexturesResident, glAreTexturesResidentEXT, glAreTexturesResidentEXT, 322),
- NAME_FUNC_OFFSET(18881, glCopyTexImage1D, glCopyTexImage1D, NULL, 323),
- NAME_FUNC_OFFSET(18901, glCopyTexImage2D, glCopyTexImage2D, NULL, 324),
- NAME_FUNC_OFFSET(18921, glCopyTexSubImage1D, glCopyTexSubImage1D, NULL, 325),
- NAME_FUNC_OFFSET(18944, glCopyTexSubImage2D, glCopyTexSubImage2D, NULL, 326),
- NAME_FUNC_OFFSET(18967, glDeleteTextures, glDeleteTexturesEXT, glDeleteTexturesEXT, 327),
- NAME_FUNC_OFFSET(18987, glGenTextures, glGenTexturesEXT, glGenTexturesEXT, 328),
- NAME_FUNC_OFFSET(19004, glGetPointerv, glGetPointerv, NULL, 329),
- NAME_FUNC_OFFSET(19021, glIsTexture, glIsTextureEXT, glIsTextureEXT, 330),
- NAME_FUNC_OFFSET(19036, glPrioritizeTextures, glPrioritizeTextures, NULL, 331),
- NAME_FUNC_OFFSET(19060, glTexSubImage1D, glTexSubImage1D, NULL, 332),
- NAME_FUNC_OFFSET(19079, glTexSubImage2D, glTexSubImage2D, NULL, 333),
- NAME_FUNC_OFFSET(19098, glBlendColor, glBlendColor, NULL, 336),
- NAME_FUNC_OFFSET(19114, glBlendEquation, glBlendEquation, NULL, 337),
- NAME_FUNC_OFFSET(19133, glBlendEquation, glBlendEquation, NULL, 337),
- NAME_FUNC_OFFSET(19152, glDrawRangeElements, glDrawRangeElements, NULL, 338),
- NAME_FUNC_OFFSET(19175, glColorTable, glColorTable, NULL, 339),
- NAME_FUNC_OFFSET(19191, glColorTable, glColorTable, NULL, 339),
- NAME_FUNC_OFFSET(19207, glColorTableParameterfv, glColorTableParameterfv, NULL, 340),
- NAME_FUNC_OFFSET(19234, glColorTableParameteriv, glColorTableParameteriv, NULL, 341),
- NAME_FUNC_OFFSET(19261, glCopyColorTable, glCopyColorTable, NULL, 342),
- NAME_FUNC_OFFSET(19281, glGetColorTable, glGetColorTableEXT, glGetColorTableEXT, 343),
- NAME_FUNC_OFFSET(19300, glGetColorTable, glGetColorTableEXT, glGetColorTableEXT, 343),
- NAME_FUNC_OFFSET(19319, glGetColorTableParameterfv, glGetColorTableParameterfvEXT, glGetColorTableParameterfvEXT, 344),
- NAME_FUNC_OFFSET(19349, glGetColorTableParameterfv, glGetColorTableParameterfvEXT, glGetColorTableParameterfvEXT, 344),
- NAME_FUNC_OFFSET(19379, glGetColorTableParameteriv, glGetColorTableParameterivEXT, glGetColorTableParameterivEXT, 345),
- NAME_FUNC_OFFSET(19409, glGetColorTableParameteriv, glGetColorTableParameterivEXT, glGetColorTableParameterivEXT, 345),
- NAME_FUNC_OFFSET(19439, glColorSubTable, glColorSubTable, NULL, 346),
- NAME_FUNC_OFFSET(19458, glCopyColorSubTable, glCopyColorSubTable, NULL, 347),
- NAME_FUNC_OFFSET(19481, glConvolutionFilter1D, glConvolutionFilter1D, NULL, 348),
- NAME_FUNC_OFFSET(19506, glConvolutionFilter2D, glConvolutionFilter2D, NULL, 349),
- NAME_FUNC_OFFSET(19531, glConvolutionParameterf, glConvolutionParameterf, NULL, 350),
- NAME_FUNC_OFFSET(19558, glConvolutionParameterfv, glConvolutionParameterfv, NULL, 351),
- NAME_FUNC_OFFSET(19586, glConvolutionParameteri, glConvolutionParameteri, NULL, 352),
- NAME_FUNC_OFFSET(19613, glConvolutionParameteriv, glConvolutionParameteriv, NULL, 353),
- NAME_FUNC_OFFSET(19641, glCopyConvolutionFilter1D, glCopyConvolutionFilter1D, NULL, 354),
- NAME_FUNC_OFFSET(19670, glCopyConvolutionFilter2D, glCopyConvolutionFilter2D, NULL, 355),
- NAME_FUNC_OFFSET(19699, glGetConvolutionFilter, gl_dispatch_stub_356, gl_dispatch_stub_356, 356),
- NAME_FUNC_OFFSET(19725, glGetConvolutionParameterfv, gl_dispatch_stub_357, gl_dispatch_stub_357, 357),
- NAME_FUNC_OFFSET(19756, glGetConvolutionParameteriv, gl_dispatch_stub_358, gl_dispatch_stub_358, 358),
- NAME_FUNC_OFFSET(19787, glGetSeparableFilter, gl_dispatch_stub_359, gl_dispatch_stub_359, 359),
- NAME_FUNC_OFFSET(19811, glSeparableFilter2D, glSeparableFilter2D, NULL, 360),
- NAME_FUNC_OFFSET(19834, glGetHistogram, gl_dispatch_stub_361, gl_dispatch_stub_361, 361),
- NAME_FUNC_OFFSET(19852, glGetHistogramParameterfv, gl_dispatch_stub_362, gl_dispatch_stub_362, 362),
- NAME_FUNC_OFFSET(19881, glGetHistogramParameteriv, gl_dispatch_stub_363, gl_dispatch_stub_363, 363),
- NAME_FUNC_OFFSET(19910, glGetMinmax, gl_dispatch_stub_364, gl_dispatch_stub_364, 364),
- NAME_FUNC_OFFSET(19925, glGetMinmaxParameterfv, gl_dispatch_stub_365, gl_dispatch_stub_365, 365),
- NAME_FUNC_OFFSET(19951, glGetMinmaxParameteriv, gl_dispatch_stub_366, gl_dispatch_stub_366, 366),
- NAME_FUNC_OFFSET(19977, glHistogram, glHistogram, NULL, 367),
- NAME_FUNC_OFFSET(19992, glMinmax, glMinmax, NULL, 368),
- NAME_FUNC_OFFSET(20004, glResetHistogram, glResetHistogram, NULL, 369),
- NAME_FUNC_OFFSET(20024, glResetMinmax, glResetMinmax, NULL, 370),
- NAME_FUNC_OFFSET(20041, glTexImage3D, glTexImage3D, NULL, 371),
- NAME_FUNC_OFFSET(20057, glTexImage3D, glTexImage3D, NULL, 371),
- NAME_FUNC_OFFSET(20073, glTexSubImage3D, glTexSubImage3D, NULL, 372),
- NAME_FUNC_OFFSET(20092, glTexSubImage3D, glTexSubImage3D, NULL, 372),
- NAME_FUNC_OFFSET(20111, glCopyTexSubImage3D, glCopyTexSubImage3D, NULL, 373),
- NAME_FUNC_OFFSET(20134, glCopyTexSubImage3D, glCopyTexSubImage3D, NULL, 373),
- NAME_FUNC_OFFSET(20157, glActiveTexture, glActiveTexture, NULL, 374),
- NAME_FUNC_OFFSET(20176, glClientActiveTexture, glClientActiveTexture, NULL, 375),
- NAME_FUNC_OFFSET(20201, glMultiTexCoord1d, glMultiTexCoord1d, NULL, 376),
- NAME_FUNC_OFFSET(20222, glMultiTexCoord1dv, glMultiTexCoord1dv, NULL, 377),
- NAME_FUNC_OFFSET(20244, glMultiTexCoord1fARB, glMultiTexCoord1fARB, NULL, 378),
- NAME_FUNC_OFFSET(20262, glMultiTexCoord1fvARB, glMultiTexCoord1fvARB, NULL, 379),
- NAME_FUNC_OFFSET(20281, glMultiTexCoord1i, glMultiTexCoord1i, NULL, 380),
- NAME_FUNC_OFFSET(20302, glMultiTexCoord1iv, glMultiTexCoord1iv, NULL, 381),
- NAME_FUNC_OFFSET(20324, glMultiTexCoord1s, glMultiTexCoord1s, NULL, 382),
- NAME_FUNC_OFFSET(20345, glMultiTexCoord1sv, glMultiTexCoord1sv, NULL, 383),
- NAME_FUNC_OFFSET(20367, glMultiTexCoord2d, glMultiTexCoord2d, NULL, 384),
- NAME_FUNC_OFFSET(20388, glMultiTexCoord2dv, glMultiTexCoord2dv, NULL, 385),
- NAME_FUNC_OFFSET(20410, glMultiTexCoord2fARB, glMultiTexCoord2fARB, NULL, 386),
- NAME_FUNC_OFFSET(20428, glMultiTexCoord2fvARB, glMultiTexCoord2fvARB, NULL, 387),
- NAME_FUNC_OFFSET(20447, glMultiTexCoord2i, glMultiTexCoord2i, NULL, 388),
- NAME_FUNC_OFFSET(20468, glMultiTexCoord2iv, glMultiTexCoord2iv, NULL, 389),
- NAME_FUNC_OFFSET(20490, glMultiTexCoord2s, glMultiTexCoord2s, NULL, 390),
- NAME_FUNC_OFFSET(20511, glMultiTexCoord2sv, glMultiTexCoord2sv, NULL, 391),
- NAME_FUNC_OFFSET(20533, glMultiTexCoord3d, glMultiTexCoord3d, NULL, 392),
- NAME_FUNC_OFFSET(20554, glMultiTexCoord3dv, glMultiTexCoord3dv, NULL, 393),
- NAME_FUNC_OFFSET(20576, glMultiTexCoord3fARB, glMultiTexCoord3fARB, NULL, 394),
- NAME_FUNC_OFFSET(20594, glMultiTexCoord3fvARB, glMultiTexCoord3fvARB, NULL, 395),
- NAME_FUNC_OFFSET(20613, glMultiTexCoord3i, glMultiTexCoord3i, NULL, 396),
- NAME_FUNC_OFFSET(20634, glMultiTexCoord3iv, glMultiTexCoord3iv, NULL, 397),
- NAME_FUNC_OFFSET(20656, glMultiTexCoord3s, glMultiTexCoord3s, NULL, 398),
- NAME_FUNC_OFFSET(20677, glMultiTexCoord3sv, glMultiTexCoord3sv, NULL, 399),
- NAME_FUNC_OFFSET(20699, glMultiTexCoord4d, glMultiTexCoord4d, NULL, 400),
- NAME_FUNC_OFFSET(20720, glMultiTexCoord4dv, glMultiTexCoord4dv, NULL, 401),
- NAME_FUNC_OFFSET(20742, glMultiTexCoord4fARB, glMultiTexCoord4fARB, NULL, 402),
- NAME_FUNC_OFFSET(20760, glMultiTexCoord4fvARB, glMultiTexCoord4fvARB, NULL, 403),
- NAME_FUNC_OFFSET(20779, glMultiTexCoord4i, glMultiTexCoord4i, NULL, 404),
- NAME_FUNC_OFFSET(20800, glMultiTexCoord4iv, glMultiTexCoord4iv, NULL, 405),
- NAME_FUNC_OFFSET(20822, glMultiTexCoord4s, glMultiTexCoord4s, NULL, 406),
- NAME_FUNC_OFFSET(20843, glMultiTexCoord4sv, glMultiTexCoord4sv, NULL, 407),
- NAME_FUNC_OFFSET(20865, glCompressedTexImage1D, glCompressedTexImage1D, NULL, 408),
- NAME_FUNC_OFFSET(20891, glCompressedTexImage2D, glCompressedTexImage2D, NULL, 409),
- NAME_FUNC_OFFSET(20917, glCompressedTexImage3D, glCompressedTexImage3D, NULL, 410),
- NAME_FUNC_OFFSET(20943, glCompressedTexImage3D, glCompressedTexImage3D, NULL, 410),
- NAME_FUNC_OFFSET(20969, glCompressedTexSubImage1D, glCompressedTexSubImage1D, NULL, 411),
- NAME_FUNC_OFFSET(20998, glCompressedTexSubImage2D, glCompressedTexSubImage2D, NULL, 412),
- NAME_FUNC_OFFSET(21027, glCompressedTexSubImage3D, glCompressedTexSubImage3D, NULL, 413),
- NAME_FUNC_OFFSET(21056, glCompressedTexSubImage3D, glCompressedTexSubImage3D, NULL, 413),
- NAME_FUNC_OFFSET(21085, glGetCompressedTexImage, glGetCompressedTexImage, NULL, 414),
- NAME_FUNC_OFFSET(21112, glLoadTransposeMatrixd, glLoadTransposeMatrixd, NULL, 415),
- NAME_FUNC_OFFSET(21138, glLoadTransposeMatrixf, glLoadTransposeMatrixf, NULL, 416),
- NAME_FUNC_OFFSET(21164, glMultTransposeMatrixd, glMultTransposeMatrixd, NULL, 417),
- NAME_FUNC_OFFSET(21190, glMultTransposeMatrixf, glMultTransposeMatrixf, NULL, 418),
- NAME_FUNC_OFFSET(21216, glSampleCoverage, glSampleCoverage, NULL, 419),
- NAME_FUNC_OFFSET(21236, glBlendFuncSeparate, glBlendFuncSeparate, NULL, 420),
- NAME_FUNC_OFFSET(21259, glBlendFuncSeparate, glBlendFuncSeparate, NULL, 420),
- NAME_FUNC_OFFSET(21283, glBlendFuncSeparate, glBlendFuncSeparate, NULL, 420),
- NAME_FUNC_OFFSET(21306, glFogCoordPointer, glFogCoordPointer, NULL, 421),
- NAME_FUNC_OFFSET(21327, glFogCoordd, glFogCoordd, NULL, 422),
- NAME_FUNC_OFFSET(21342, glFogCoorddv, glFogCoorddv, NULL, 423),
- NAME_FUNC_OFFSET(21358, glMultiDrawArrays, glMultiDrawArrays, NULL, 424),
- NAME_FUNC_OFFSET(21379, glPointParameterf, glPointParameterf, NULL, 425),
- NAME_FUNC_OFFSET(21400, glPointParameterf, glPointParameterf, NULL, 425),
- NAME_FUNC_OFFSET(21421, glPointParameterf, glPointParameterf, NULL, 425),
- NAME_FUNC_OFFSET(21443, glPointParameterfv, glPointParameterfv, NULL, 426),
- NAME_FUNC_OFFSET(21465, glPointParameterfv, glPointParameterfv, NULL, 426),
- NAME_FUNC_OFFSET(21487, glPointParameterfv, glPointParameterfv, NULL, 426),
- NAME_FUNC_OFFSET(21510, glPointParameteri, glPointParameteri, NULL, 427),
- NAME_FUNC_OFFSET(21530, glPointParameteriv, glPointParameteriv, NULL, 428),
- NAME_FUNC_OFFSET(21551, glSecondaryColor3b, glSecondaryColor3b, NULL, 429),
- NAME_FUNC_OFFSET(21573, glSecondaryColor3bv, glSecondaryColor3bv, NULL, 430),
- NAME_FUNC_OFFSET(21596, glSecondaryColor3d, glSecondaryColor3d, NULL, 431),
- NAME_FUNC_OFFSET(21618, glSecondaryColor3dv, glSecondaryColor3dv, NULL, 432),
- NAME_FUNC_OFFSET(21641, glSecondaryColor3i, glSecondaryColor3i, NULL, 433),
- NAME_FUNC_OFFSET(21663, glSecondaryColor3iv, glSecondaryColor3iv, NULL, 434),
- NAME_FUNC_OFFSET(21686, glSecondaryColor3s, glSecondaryColor3s, NULL, 435),
- NAME_FUNC_OFFSET(21708, glSecondaryColor3sv, glSecondaryColor3sv, NULL, 436),
- NAME_FUNC_OFFSET(21731, glSecondaryColor3ub, glSecondaryColor3ub, NULL, 437),
- NAME_FUNC_OFFSET(21754, glSecondaryColor3ubv, glSecondaryColor3ubv, NULL, 438),
- NAME_FUNC_OFFSET(21778, glSecondaryColor3ui, glSecondaryColor3ui, NULL, 439),
- NAME_FUNC_OFFSET(21801, glSecondaryColor3uiv, glSecondaryColor3uiv, NULL, 440),
- NAME_FUNC_OFFSET(21825, glSecondaryColor3us, glSecondaryColor3us, NULL, 441),
- NAME_FUNC_OFFSET(21848, glSecondaryColor3usv, glSecondaryColor3usv, NULL, 442),
- NAME_FUNC_OFFSET(21872, glSecondaryColorPointer, glSecondaryColorPointer, NULL, 443),
- NAME_FUNC_OFFSET(21899, glWindowPos2d, glWindowPos2d, NULL, 444),
- NAME_FUNC_OFFSET(21916, glWindowPos2d, glWindowPos2d, NULL, 444),
- NAME_FUNC_OFFSET(21934, glWindowPos2dv, glWindowPos2dv, NULL, 445),
- NAME_FUNC_OFFSET(21952, glWindowPos2dv, glWindowPos2dv, NULL, 445),
- NAME_FUNC_OFFSET(21971, glWindowPos2f, glWindowPos2f, NULL, 446),
- NAME_FUNC_OFFSET(21988, glWindowPos2f, glWindowPos2f, NULL, 446),
- NAME_FUNC_OFFSET(22006, glWindowPos2fv, glWindowPos2fv, NULL, 447),
- NAME_FUNC_OFFSET(22024, glWindowPos2fv, glWindowPos2fv, NULL, 447),
- NAME_FUNC_OFFSET(22043, glWindowPos2i, glWindowPos2i, NULL, 448),
- NAME_FUNC_OFFSET(22060, glWindowPos2i, glWindowPos2i, NULL, 448),
- NAME_FUNC_OFFSET(22078, glWindowPos2iv, glWindowPos2iv, NULL, 449),
- NAME_FUNC_OFFSET(22096, glWindowPos2iv, glWindowPos2iv, NULL, 449),
- NAME_FUNC_OFFSET(22115, glWindowPos2s, glWindowPos2s, NULL, 450),
- NAME_FUNC_OFFSET(22132, glWindowPos2s, glWindowPos2s, NULL, 450),
- NAME_FUNC_OFFSET(22150, glWindowPos2sv, glWindowPos2sv, NULL, 451),
- NAME_FUNC_OFFSET(22168, glWindowPos2sv, glWindowPos2sv, NULL, 451),
- NAME_FUNC_OFFSET(22187, glWindowPos3d, glWindowPos3d, NULL, 452),
- NAME_FUNC_OFFSET(22204, glWindowPos3d, glWindowPos3d, NULL, 452),
- NAME_FUNC_OFFSET(22222, glWindowPos3dv, glWindowPos3dv, NULL, 453),
- NAME_FUNC_OFFSET(22240, glWindowPos3dv, glWindowPos3dv, NULL, 453),
- NAME_FUNC_OFFSET(22259, glWindowPos3f, glWindowPos3f, NULL, 454),
- NAME_FUNC_OFFSET(22276, glWindowPos3f, glWindowPos3f, NULL, 454),
- NAME_FUNC_OFFSET(22294, glWindowPos3fv, glWindowPos3fv, NULL, 455),
- NAME_FUNC_OFFSET(22312, glWindowPos3fv, glWindowPos3fv, NULL, 455),
- NAME_FUNC_OFFSET(22331, glWindowPos3i, glWindowPos3i, NULL, 456),
- NAME_FUNC_OFFSET(22348, glWindowPos3i, glWindowPos3i, NULL, 456),
- NAME_FUNC_OFFSET(22366, glWindowPos3iv, glWindowPos3iv, NULL, 457),
- NAME_FUNC_OFFSET(22384, glWindowPos3iv, glWindowPos3iv, NULL, 457),
- NAME_FUNC_OFFSET(22403, glWindowPos3s, glWindowPos3s, NULL, 458),
- NAME_FUNC_OFFSET(22420, glWindowPos3s, glWindowPos3s, NULL, 458),
- NAME_FUNC_OFFSET(22438, glWindowPos3sv, glWindowPos3sv, NULL, 459),
- NAME_FUNC_OFFSET(22456, glWindowPos3sv, glWindowPos3sv, NULL, 459),
- NAME_FUNC_OFFSET(22475, glBeginQuery, glBeginQuery, NULL, 460),
- NAME_FUNC_OFFSET(22491, glBindBuffer, glBindBuffer, NULL, 461),
- NAME_FUNC_OFFSET(22507, glBufferData, glBufferData, NULL, 462),
- NAME_FUNC_OFFSET(22523, glBufferSubData, glBufferSubData, NULL, 463),
- NAME_FUNC_OFFSET(22542, glDeleteBuffers, glDeleteBuffers, NULL, 464),
- NAME_FUNC_OFFSET(22561, glDeleteQueries, glDeleteQueries, NULL, 465),
- NAME_FUNC_OFFSET(22580, glEndQuery, glEndQuery, NULL, 466),
- NAME_FUNC_OFFSET(22594, glGenBuffers, glGenBuffers, NULL, 467),
- NAME_FUNC_OFFSET(22610, glGenQueries, glGenQueries, NULL, 468),
- NAME_FUNC_OFFSET(22626, glGetBufferParameteriv, glGetBufferParameteriv, NULL, 469),
- NAME_FUNC_OFFSET(22652, glGetBufferPointerv, glGetBufferPointerv, NULL, 470),
- NAME_FUNC_OFFSET(22675, glGetBufferPointerv, glGetBufferPointerv, NULL, 470),
- NAME_FUNC_OFFSET(22698, glGetBufferSubData, glGetBufferSubData, NULL, 471),
- NAME_FUNC_OFFSET(22720, glGetQueryObjectiv, glGetQueryObjectiv, NULL, 472),
- NAME_FUNC_OFFSET(22742, glGetQueryObjectuiv, glGetQueryObjectuiv, NULL, 473),
- NAME_FUNC_OFFSET(22765, glGetQueryiv, glGetQueryiv, NULL, 474),
- NAME_FUNC_OFFSET(22781, glIsBuffer, glIsBuffer, NULL, 475),
- NAME_FUNC_OFFSET(22795, glIsQuery, glIsQuery, NULL, 476),
- NAME_FUNC_OFFSET(22808, glMapBuffer, glMapBuffer, NULL, 477),
- NAME_FUNC_OFFSET(22823, glMapBuffer, glMapBuffer, NULL, 477),
- NAME_FUNC_OFFSET(22838, glUnmapBuffer, glUnmapBuffer, NULL, 478),
- NAME_FUNC_OFFSET(22855, glUnmapBuffer, glUnmapBuffer, NULL, 478),
- NAME_FUNC_OFFSET(22872, glBindAttribLocation, glBindAttribLocation, NULL, 480),
- NAME_FUNC_OFFSET(22896, glBlendEquationSeparate, glBlendEquationSeparate, NULL, 481),
- NAME_FUNC_OFFSET(22923, glBlendEquationSeparate, glBlendEquationSeparate, NULL, 481),
- NAME_FUNC_OFFSET(22950, glBlendEquationSeparate, glBlendEquationSeparate, NULL, 481),
- NAME_FUNC_OFFSET(22977, glCompileShader, glCompileShader, NULL, 482),
- NAME_FUNC_OFFSET(22996, glDisableVertexAttribArray, glDisableVertexAttribArray, NULL, 488),
- NAME_FUNC_OFFSET(23026, glDrawBuffers, glDrawBuffers, NULL, 489),
- NAME_FUNC_OFFSET(23043, glDrawBuffers, glDrawBuffers, NULL, 489),
- NAME_FUNC_OFFSET(23060, glDrawBuffers, glDrawBuffers, NULL, 489),
- NAME_FUNC_OFFSET(23076, glEnableVertexAttribArray, glEnableVertexAttribArray, NULL, 490),
- NAME_FUNC_OFFSET(23105, glGetActiveAttrib, glGetActiveAttrib, NULL, 491),
- NAME_FUNC_OFFSET(23126, glGetActiveUniform, glGetActiveUniform, NULL, 492),
- NAME_FUNC_OFFSET(23148, glGetAttribLocation, glGetAttribLocation, NULL, 494),
- NAME_FUNC_OFFSET(23171, glGetShaderSource, glGetShaderSource, NULL, 498),
- NAME_FUNC_OFFSET(23192, glGetUniformLocation, glGetUniformLocation, NULL, 500),
- NAME_FUNC_OFFSET(23216, glGetUniformfv, glGetUniformfv, NULL, 501),
- NAME_FUNC_OFFSET(23234, glGetUniformiv, glGetUniformiv, NULL, 502),
- NAME_FUNC_OFFSET(23252, glGetVertexAttribPointerv, glGetVertexAttribPointerv, NULL, 503),
- NAME_FUNC_OFFSET(23281, glGetVertexAttribPointerv, glGetVertexAttribPointerv, NULL, 503),
- NAME_FUNC_OFFSET(23309, glGetVertexAttribdv, glGetVertexAttribdv, NULL, 504),
- NAME_FUNC_OFFSET(23332, glGetVertexAttribfv, glGetVertexAttribfv, NULL, 505),
- NAME_FUNC_OFFSET(23355, glGetVertexAttribiv, glGetVertexAttribiv, NULL, 506),
- NAME_FUNC_OFFSET(23378, glLinkProgram, glLinkProgram, NULL, 509),
- NAME_FUNC_OFFSET(23395, glShaderSource, glShaderSource, NULL, 510),
- NAME_FUNC_OFFSET(23413, glStencilOpSeparate, glStencilOpSeparate, NULL, 513),
- NAME_FUNC_OFFSET(23436, glUniform1f, glUniform1f, NULL, 514),
- NAME_FUNC_OFFSET(23451, glUniform1fv, glUniform1fv, NULL, 515),
- NAME_FUNC_OFFSET(23467, glUniform1i, glUniform1i, NULL, 516),
- NAME_FUNC_OFFSET(23482, glUniform1iv, glUniform1iv, NULL, 517),
- NAME_FUNC_OFFSET(23498, glUniform2f, glUniform2f, NULL, 518),
- NAME_FUNC_OFFSET(23513, glUniform2fv, glUniform2fv, NULL, 519),
- NAME_FUNC_OFFSET(23529, glUniform2i, glUniform2i, NULL, 520),
- NAME_FUNC_OFFSET(23544, glUniform2iv, glUniform2iv, NULL, 521),
- NAME_FUNC_OFFSET(23560, glUniform3f, glUniform3f, NULL, 522),
- NAME_FUNC_OFFSET(23575, glUniform3fv, glUniform3fv, NULL, 523),
- NAME_FUNC_OFFSET(23591, glUniform3i, glUniform3i, NULL, 524),
- NAME_FUNC_OFFSET(23606, glUniform3iv, glUniform3iv, NULL, 525),
- NAME_FUNC_OFFSET(23622, glUniform4f, glUniform4f, NULL, 526),
- NAME_FUNC_OFFSET(23637, glUniform4fv, glUniform4fv, NULL, 527),
- NAME_FUNC_OFFSET(23653, glUniform4i, glUniform4i, NULL, 528),
- NAME_FUNC_OFFSET(23668, glUniform4iv, glUniform4iv, NULL, 529),
- NAME_FUNC_OFFSET(23684, glUniformMatrix2fv, glUniformMatrix2fv, NULL, 530),
- NAME_FUNC_OFFSET(23706, glUniformMatrix3fv, glUniformMatrix3fv, NULL, 531),
- NAME_FUNC_OFFSET(23728, glUniformMatrix4fv, glUniformMatrix4fv, NULL, 532),
- NAME_FUNC_OFFSET(23750, glUseProgram, glUseProgram, NULL, 533),
- NAME_FUNC_OFFSET(23772, glValidateProgram, glValidateProgram, NULL, 534),
- NAME_FUNC_OFFSET(23793, glVertexAttrib1d, glVertexAttrib1d, NULL, 535),
- NAME_FUNC_OFFSET(23813, glVertexAttrib1dv, glVertexAttrib1dv, NULL, 536),
- NAME_FUNC_OFFSET(23834, glVertexAttrib1s, glVertexAttrib1s, NULL, 537),
- NAME_FUNC_OFFSET(23854, glVertexAttrib1sv, glVertexAttrib1sv, NULL, 538),
- NAME_FUNC_OFFSET(23875, glVertexAttrib2d, glVertexAttrib2d, NULL, 539),
- NAME_FUNC_OFFSET(23895, glVertexAttrib2dv, glVertexAttrib2dv, NULL, 540),
- NAME_FUNC_OFFSET(23916, glVertexAttrib2s, glVertexAttrib2s, NULL, 541),
- NAME_FUNC_OFFSET(23936, glVertexAttrib2sv, glVertexAttrib2sv, NULL, 542),
- NAME_FUNC_OFFSET(23957, glVertexAttrib3d, glVertexAttrib3d, NULL, 543),
- NAME_FUNC_OFFSET(23977, glVertexAttrib3dv, glVertexAttrib3dv, NULL, 544),
- NAME_FUNC_OFFSET(23998, glVertexAttrib3s, glVertexAttrib3s, NULL, 545),
- NAME_FUNC_OFFSET(24018, glVertexAttrib3sv, glVertexAttrib3sv, NULL, 546),
- NAME_FUNC_OFFSET(24039, glVertexAttrib4Nbv, glVertexAttrib4Nbv, NULL, 547),
- NAME_FUNC_OFFSET(24061, glVertexAttrib4Niv, glVertexAttrib4Niv, NULL, 548),
- NAME_FUNC_OFFSET(24083, glVertexAttrib4Nsv, glVertexAttrib4Nsv, NULL, 549),
- NAME_FUNC_OFFSET(24105, glVertexAttrib4Nub, glVertexAttrib4Nub, NULL, 550),
- NAME_FUNC_OFFSET(24127, glVertexAttrib4Nubv, glVertexAttrib4Nubv, NULL, 551),
- NAME_FUNC_OFFSET(24150, glVertexAttrib4Nuiv, glVertexAttrib4Nuiv, NULL, 552),
- NAME_FUNC_OFFSET(24173, glVertexAttrib4Nusv, glVertexAttrib4Nusv, NULL, 553),
- NAME_FUNC_OFFSET(24196, glVertexAttrib4bv, glVertexAttrib4bv, NULL, 554),
- NAME_FUNC_OFFSET(24217, glVertexAttrib4d, glVertexAttrib4d, NULL, 555),
- NAME_FUNC_OFFSET(24237, glVertexAttrib4dv, glVertexAttrib4dv, NULL, 556),
- NAME_FUNC_OFFSET(24258, glVertexAttrib4iv, glVertexAttrib4iv, NULL, 557),
- NAME_FUNC_OFFSET(24279, glVertexAttrib4s, glVertexAttrib4s, NULL, 558),
- NAME_FUNC_OFFSET(24299, glVertexAttrib4sv, glVertexAttrib4sv, NULL, 559),
- NAME_FUNC_OFFSET(24320, glVertexAttrib4ubv, glVertexAttrib4ubv, NULL, 560),
- NAME_FUNC_OFFSET(24342, glVertexAttrib4uiv, glVertexAttrib4uiv, NULL, 561),
- NAME_FUNC_OFFSET(24364, glVertexAttrib4usv, glVertexAttrib4usv, NULL, 562),
- NAME_FUNC_OFFSET(24386, glVertexAttribPointer, glVertexAttribPointer, NULL, 563),
- NAME_FUNC_OFFSET(24411, glBeginConditionalRender, glBeginConditionalRender, NULL, 570),
- NAME_FUNC_OFFSET(24438, glBeginTransformFeedback, glBeginTransformFeedback, NULL, 571),
- NAME_FUNC_OFFSET(24466, glBindBufferBase, glBindBufferBase, NULL, 572),
- NAME_FUNC_OFFSET(24486, glBindBufferRange, glBindBufferRange, NULL, 573),
- NAME_FUNC_OFFSET(24507, glBindFragDataLocation, glBindFragDataLocation, NULL, 574),
- NAME_FUNC_OFFSET(24533, glClampColor, glClampColor, NULL, 575),
- NAME_FUNC_OFFSET(24549, glColorMaski, glColorMaski, NULL, 580),
- NAME_FUNC_OFFSET(24571, glDisablei, glDisablei, NULL, 581),
- NAME_FUNC_OFFSET(24591, glEnablei, glEnablei, NULL, 582),
- NAME_FUNC_OFFSET(24610, glEndConditionalRender, glEndConditionalRender, NULL, 583),
- NAME_FUNC_OFFSET(24635, glEndTransformFeedback, glEndTransformFeedback, NULL, 584),
- NAME_FUNC_OFFSET(24661, glGetBooleani_v, glGetBooleani_v, NULL, 585),
- NAME_FUNC_OFFSET(24685, glGetFragDataLocation, glGetFragDataLocation, NULL, 586),
- NAME_FUNC_OFFSET(24710, glGetIntegeri_v, glGetIntegeri_v, NULL, 587),
- NAME_FUNC_OFFSET(24734, glGetTexParameterIiv, glGetTexParameterIiv, NULL, 589),
- NAME_FUNC_OFFSET(24758, glGetTexParameterIuiv, glGetTexParameterIuiv, NULL, 590),
- NAME_FUNC_OFFSET(24783, glGetTransformFeedbackVarying, glGetTransformFeedbackVarying, NULL, 591),
- NAME_FUNC_OFFSET(24816, glGetUniformuiv, glGetUniformuiv, NULL, 592),
- NAME_FUNC_OFFSET(24835, glGetVertexAttribIiv, glGetVertexAttribIiv, NULL, 593),
- NAME_FUNC_OFFSET(24859, glGetVertexAttribIuiv, glGetVertexAttribIuiv, NULL, 594),
- NAME_FUNC_OFFSET(24884, glIsEnabledi, glIsEnabledi, NULL, 595),
- NAME_FUNC_OFFSET(24906, glTexParameterIiv, glTexParameterIiv, NULL, 596),
- NAME_FUNC_OFFSET(24927, glTexParameterIuiv, glTexParameterIuiv, NULL, 597),
- NAME_FUNC_OFFSET(24949, glTransformFeedbackVaryings, glTransformFeedbackVaryings, NULL, 598),
- NAME_FUNC_OFFSET(24980, glUniform1ui, glUniform1ui, NULL, 599),
- NAME_FUNC_OFFSET(24996, glUniform1uiv, glUniform1uiv, NULL, 600),
- NAME_FUNC_OFFSET(25013, glUniform2ui, glUniform2ui, NULL, 601),
- NAME_FUNC_OFFSET(25029, glUniform2uiv, glUniform2uiv, NULL, 602),
- NAME_FUNC_OFFSET(25046, glUniform3ui, glUniform3ui, NULL, 603),
- NAME_FUNC_OFFSET(25062, glUniform3uiv, glUniform3uiv, NULL, 604),
- NAME_FUNC_OFFSET(25079, glUniform4ui, glUniform4ui, NULL, 605),
- NAME_FUNC_OFFSET(25095, glUniform4uiv, glUniform4uiv, NULL, 606),
- NAME_FUNC_OFFSET(25112, glVertexAttribI1iv, glVertexAttribI1iv, NULL, 607),
- NAME_FUNC_OFFSET(25134, glVertexAttribI1uiv, glVertexAttribI1uiv, NULL, 608),
- NAME_FUNC_OFFSET(25157, glVertexAttribI4bv, glVertexAttribI4bv, NULL, 609),
- NAME_FUNC_OFFSET(25179, glVertexAttribI4sv, glVertexAttribI4sv, NULL, 610),
- NAME_FUNC_OFFSET(25201, glVertexAttribI4ubv, glVertexAttribI4ubv, NULL, 611),
- NAME_FUNC_OFFSET(25224, glVertexAttribI4usv, glVertexAttribI4usv, NULL, 612),
- NAME_FUNC_OFFSET(25247, glVertexAttribIPointer, glVertexAttribIPointer, NULL, 613),
- NAME_FUNC_OFFSET(25273, glPrimitiveRestartIndex, glPrimitiveRestartIndex, NULL, 614),
- NAME_FUNC_OFFSET(25299, glTexBuffer, glTexBuffer, NULL, 615),
- NAME_FUNC_OFFSET(25314, glFramebufferTexture, glFramebufferTexture, NULL, 616),
- NAME_FUNC_OFFSET(25338, glVertexAttribDivisor, glVertexAttribDivisor, NULL, 619),
- NAME_FUNC_OFFSET(25363, glMinSampleShading, glMinSampleShading, NULL, 620),
- NAME_FUNC_OFFSET(25385, glBindProgramARB, glBindProgramARB, NULL, 621),
- NAME_FUNC_OFFSET(25401, glDeleteProgramsARB, glDeleteProgramsARB, NULL, 622),
- NAME_FUNC_OFFSET(25420, glGenProgramsARB, glGenProgramsARB, NULL, 623),
- NAME_FUNC_OFFSET(25436, glIsProgramARB, glIsProgramARB, NULL, 630),
- NAME_FUNC_OFFSET(25450, glProgramEnvParameter4dARB, glProgramEnvParameter4dARB, NULL, 631),
- NAME_FUNC_OFFSET(25473, glProgramEnvParameter4dvARB, glProgramEnvParameter4dvARB, NULL, 632),
- NAME_FUNC_OFFSET(25497, glProgramEnvParameter4fARB, glProgramEnvParameter4fARB, NULL, 633),
- NAME_FUNC_OFFSET(25520, glProgramEnvParameter4fvARB, glProgramEnvParameter4fvARB, NULL, 634),
- NAME_FUNC_OFFSET(25544, glVertexAttrib1fARB, glVertexAttrib1fARB, NULL, 640),
- NAME_FUNC_OFFSET(25561, glVertexAttrib1fvARB, glVertexAttrib1fvARB, NULL, 641),
- NAME_FUNC_OFFSET(25579, glVertexAttrib2fARB, glVertexAttrib2fARB, NULL, 642),
- NAME_FUNC_OFFSET(25596, glVertexAttrib2fvARB, glVertexAttrib2fvARB, NULL, 643),
- NAME_FUNC_OFFSET(25614, glVertexAttrib3fARB, glVertexAttrib3fARB, NULL, 644),
- NAME_FUNC_OFFSET(25631, glVertexAttrib3fvARB, glVertexAttrib3fvARB, NULL, 645),
- NAME_FUNC_OFFSET(25649, glVertexAttrib4fARB, glVertexAttrib4fARB, NULL, 646),
- NAME_FUNC_OFFSET(25666, glVertexAttrib4fvARB, glVertexAttrib4fvARB, NULL, 647),
- NAME_FUNC_OFFSET(25684, glDrawArraysInstancedARB, glDrawArraysInstancedARB, NULL, 658),
- NAME_FUNC_OFFSET(25709, glDrawArraysInstancedARB, glDrawArraysInstancedARB, NULL, 658),
- NAME_FUNC_OFFSET(25731, glDrawElementsInstancedARB, glDrawElementsInstancedARB, NULL, 659),
- NAME_FUNC_OFFSET(25758, glDrawElementsInstancedARB, glDrawElementsInstancedARB, NULL, 659),
- NAME_FUNC_OFFSET(25782, glBindFramebuffer, glBindFramebuffer, NULL, 660),
- NAME_FUNC_OFFSET(25803, glBindRenderbuffer, glBindRenderbuffer, NULL, 661),
- NAME_FUNC_OFFSET(25825, glBlitFramebuffer, glBlitFramebuffer, NULL, 662),
- NAME_FUNC_OFFSET(25846, glCheckFramebufferStatus, glCheckFramebufferStatus, NULL, 663),
- NAME_FUNC_OFFSET(25874, glCheckFramebufferStatus, glCheckFramebufferStatus, NULL, 663),
- NAME_FUNC_OFFSET(25902, glDeleteFramebuffers, glDeleteFramebuffers, NULL, 664),
- NAME_FUNC_OFFSET(25926, glDeleteFramebuffers, glDeleteFramebuffers, NULL, 664),
- NAME_FUNC_OFFSET(25950, glDeleteRenderbuffers, glDeleteRenderbuffers, NULL, 665),
- NAME_FUNC_OFFSET(25975, glDeleteRenderbuffers, glDeleteRenderbuffers, NULL, 665),
- NAME_FUNC_OFFSET(26000, glFramebufferRenderbuffer, glFramebufferRenderbuffer, NULL, 666),
- NAME_FUNC_OFFSET(26029, glFramebufferRenderbuffer, glFramebufferRenderbuffer, NULL, 666),
- NAME_FUNC_OFFSET(26058, glFramebufferTexture1D, glFramebufferTexture1D, NULL, 667),
- NAME_FUNC_OFFSET(26084, glFramebufferTexture2D, glFramebufferTexture2D, NULL, 668),
- NAME_FUNC_OFFSET(26110, glFramebufferTexture2D, glFramebufferTexture2D, NULL, 668),
- NAME_FUNC_OFFSET(26136, glFramebufferTexture3D, glFramebufferTexture3D, NULL, 669),
- NAME_FUNC_OFFSET(26162, glFramebufferTexture3D, glFramebufferTexture3D, NULL, 669),
- NAME_FUNC_OFFSET(26188, glFramebufferTextureLayer, glFramebufferTextureLayer, NULL, 670),
- NAME_FUNC_OFFSET(26217, glFramebufferTextureLayer, glFramebufferTextureLayer, NULL, 670),
- NAME_FUNC_OFFSET(26246, glGenFramebuffers, glGenFramebuffers, NULL, 671),
- NAME_FUNC_OFFSET(26267, glGenFramebuffers, glGenFramebuffers, NULL, 671),
- NAME_FUNC_OFFSET(26288, glGenRenderbuffers, glGenRenderbuffers, NULL, 672),
- NAME_FUNC_OFFSET(26310, glGenRenderbuffers, glGenRenderbuffers, NULL, 672),
- NAME_FUNC_OFFSET(26332, glGenerateMipmap, glGenerateMipmap, NULL, 673),
- NAME_FUNC_OFFSET(26352, glGenerateMipmap, glGenerateMipmap, NULL, 673),
- NAME_FUNC_OFFSET(26372, glGetFramebufferAttachmentParameteriv, glGetFramebufferAttachmentParameteriv, NULL, 674),
- NAME_FUNC_OFFSET(26413, glGetFramebufferAttachmentParameteriv, glGetFramebufferAttachmentParameteriv, NULL, 674),
- NAME_FUNC_OFFSET(26454, glGetRenderbufferParameteriv, glGetRenderbufferParameteriv, NULL, 675),
- NAME_FUNC_OFFSET(26486, glGetRenderbufferParameteriv, glGetRenderbufferParameteriv, NULL, 675),
- NAME_FUNC_OFFSET(26518, glIsFramebuffer, glIsFramebuffer, NULL, 676),
- NAME_FUNC_OFFSET(26537, glIsFramebuffer, glIsFramebuffer, NULL, 676),
- NAME_FUNC_OFFSET(26556, glIsRenderbuffer, glIsRenderbuffer, NULL, 677),
- NAME_FUNC_OFFSET(26576, glIsRenderbuffer, glIsRenderbuffer, NULL, 677),
- NAME_FUNC_OFFSET(26596, glRenderbufferStorage, glRenderbufferStorage, NULL, 678),
- NAME_FUNC_OFFSET(26621, glRenderbufferStorage, glRenderbufferStorage, NULL, 678),
- NAME_FUNC_OFFSET(26646, glRenderbufferStorageMultisample, glRenderbufferStorageMultisample, NULL, 679),
- NAME_FUNC_OFFSET(26682, glFlushMappedBufferRange, glFlushMappedBufferRange, NULL, 681),
- NAME_FUNC_OFFSET(26710, glMapBufferRange, glMapBufferRange, NULL, 682),
- NAME_FUNC_OFFSET(26730, glBindVertexArray, glBindVertexArray, NULL, 683),
- NAME_FUNC_OFFSET(26751, glDeleteVertexArrays, glDeleteVertexArrays, NULL, 684),
- NAME_FUNC_OFFSET(26777, glDeleteVertexArrays, glDeleteVertexArrays, NULL, 684),
- NAME_FUNC_OFFSET(26801, glGenVertexArrays, glGenVertexArrays, NULL, 685),
- NAME_FUNC_OFFSET(26822, glIsVertexArray, glIsVertexArray, NULL, 686),
- NAME_FUNC_OFFSET(26843, glIsVertexArray, glIsVertexArray, NULL, 686),
- NAME_FUNC_OFFSET(26862, glProvokingVertex, glProvokingVertex, NULL, 706),
- NAME_FUNC_OFFSET(26883, glBlendEquationSeparateiARB, glBlendEquationSeparateiARB, NULL, 711),
- NAME_FUNC_OFFSET(26917, glBlendEquationiARB, glBlendEquationiARB, NULL, 712),
- NAME_FUNC_OFFSET(26943, glBlendFuncSeparateiARB, glBlendFuncSeparateiARB, NULL, 713),
- NAME_FUNC_OFFSET(26973, glBlendFunciARB, glBlendFunciARB, NULL, 714),
- NAME_FUNC_OFFSET(26995, gl_dispatch_stub_731, gl_dispatch_stub_731, NULL, 731),
- NAME_FUNC_OFFSET(27019, gl_dispatch_stub_732, gl_dispatch_stub_732, NULL, 732),
- NAME_FUNC_OFFSET(27044, glClearDepthf, glClearDepthf, NULL, 783),
- NAME_FUNC_OFFSET(27061, glDepthRangef, glDepthRangef, NULL, 784),
- NAME_FUNC_OFFSET(27078, glGetProgramBinary, glGetProgramBinary, NULL, 788),
- NAME_FUNC_OFFSET(27100, glProgramBinary, glProgramBinary, NULL, 789),
- NAME_FUNC_OFFSET(27119, glProgramParameteri, glProgramParameteri, NULL, 790),
- NAME_FUNC_OFFSET(27142, gl_dispatch_stub_848, gl_dispatch_stub_848, NULL, 848),
- NAME_FUNC_OFFSET(27158, gl_dispatch_stub_849, gl_dispatch_stub_849, NULL, 849),
- NAME_FUNC_OFFSET(27177, glSecondaryColor3fEXT, glSecondaryColor3fEXT, NULL, 869),
- NAME_FUNC_OFFSET(27196, glSecondaryColor3fvEXT, glSecondaryColor3fvEXT, NULL, 870),
- NAME_FUNC_OFFSET(27216, glMultiDrawElementsEXT, glMultiDrawElementsEXT, NULL, 871),
- NAME_FUNC_OFFSET(27236, glFogCoordfEXT, glFogCoordfEXT, NULL, 872),
- NAME_FUNC_OFFSET(27248, glFogCoordfvEXT, glFogCoordfvEXT, NULL, 873),
- NAME_FUNC_OFFSET(27261, glVertexAttribI1iEXT, glVertexAttribI1iEXT, NULL, 976),
- NAME_FUNC_OFFSET(27279, glVertexAttribI1uiEXT, glVertexAttribI1uiEXT, NULL, 977),
- NAME_FUNC_OFFSET(27298, glVertexAttribI2iEXT, glVertexAttribI2iEXT, NULL, 978),
- NAME_FUNC_OFFSET(27316, glVertexAttribI2ivEXT, glVertexAttribI2ivEXT, NULL, 979),
- NAME_FUNC_OFFSET(27335, glVertexAttribI2uiEXT, glVertexAttribI2uiEXT, NULL, 980),
- NAME_FUNC_OFFSET(27354, glVertexAttribI2uivEXT, glVertexAttribI2uivEXT, NULL, 981),
- NAME_FUNC_OFFSET(27374, glVertexAttribI3iEXT, glVertexAttribI3iEXT, NULL, 982),
- NAME_FUNC_OFFSET(27392, glVertexAttribI3ivEXT, glVertexAttribI3ivEXT, NULL, 983),
- NAME_FUNC_OFFSET(27411, glVertexAttribI3uiEXT, glVertexAttribI3uiEXT, NULL, 984),
- NAME_FUNC_OFFSET(27430, glVertexAttribI3uivEXT, glVertexAttribI3uivEXT, NULL, 985),
- NAME_FUNC_OFFSET(27450, glVertexAttribI4iEXT, glVertexAttribI4iEXT, NULL, 986),
- NAME_FUNC_OFFSET(27468, glVertexAttribI4ivEXT, glVertexAttribI4ivEXT, NULL, 987),
- NAME_FUNC_OFFSET(27487, glVertexAttribI4uiEXT, glVertexAttribI4uiEXT, NULL, 988),
- NAME_FUNC_OFFSET(27506, glVertexAttribI4uivEXT, glVertexAttribI4uivEXT, NULL, 989),
- NAME_FUNC_OFFSET(27526, gl_dispatch_stub_1026, gl_dispatch_stub_1026, NULL, 1026),
- NAME_FUNC_OFFSET(27542, gl_dispatch_stub_1027, gl_dispatch_stub_1027, NULL, 1027),
- NAME_FUNC_OFFSET(27559, gl_dispatch_stub_1028, gl_dispatch_stub_1028, NULL, 1028),
- NAME_FUNC_OFFSET(27576, gl_dispatch_stub_1029, gl_dispatch_stub_1029, NULL, 1029),
- NAME_FUNC_OFFSET(27589, gl_dispatch_stub_1030, gl_dispatch_stub_1030, NULL, 1030),
- NAME_FUNC_OFFSET(27606, gl_dispatch_stub_1031, gl_dispatch_stub_1031, NULL, 1031),
- NAME_FUNC_OFFSET(27616, gl_dispatch_stub_1032, gl_dispatch_stub_1032, NULL, 1032),
- NAME_FUNC_OFFSET(27627, gl_dispatch_stub_1033, gl_dispatch_stub_1033, NULL, 1033),
- NAME_FUNC_OFFSET(27641, gl_dispatch_stub_1034, gl_dispatch_stub_1034, NULL, 1034),
- NAME_FUNC_OFFSET(27655, gl_dispatch_stub_1035, gl_dispatch_stub_1035, NULL, 1035),
- NAME_FUNC_OFFSET(27672, gl_dispatch_stub_1036, gl_dispatch_stub_1036, NULL, 1036),
- NAME_FUNC_OFFSET(27690, gl_dispatch_stub_1037, gl_dispatch_stub_1037, NULL, 1037),
- NAME_FUNC_OFFSET(27702, gl_dispatch_stub_1038, gl_dispatch_stub_1038, NULL, 1038),
- NAME_FUNC_OFFSET(27715, gl_dispatch_stub_1039, gl_dispatch_stub_1039, NULL, 1039),
- NAME_FUNC_OFFSET(27731, gl_dispatch_stub_1040, gl_dispatch_stub_1040, NULL, 1040),
- NAME_FUNC_OFFSET(27748, gl_dispatch_stub_1041, gl_dispatch_stub_1041, NULL, 1041),
- NAME_FUNC_OFFSET(27763, gl_dispatch_stub_1042, gl_dispatch_stub_1042, NULL, 1042),
- NAME_FUNC_OFFSET(27779, gl_dispatch_stub_1043, gl_dispatch_stub_1043, NULL, 1043),
- NAME_FUNC_OFFSET(27796, gl_dispatch_stub_1044, gl_dispatch_stub_1044, NULL, 1044),
- NAME_FUNC_OFFSET(27817, gl_dispatch_stub_1045, gl_dispatch_stub_1045, NULL, 1045),
- NAME_FUNC_OFFSET(27831, gl_dispatch_stub_1046, gl_dispatch_stub_1046, NULL, 1046),
- NAME_FUNC_OFFSET(27843, gl_dispatch_stub_1047, gl_dispatch_stub_1047, NULL, 1047),
- NAME_FUNC_OFFSET(27855, gl_dispatch_stub_1048, gl_dispatch_stub_1048, NULL, 1048),
- NAME_FUNC_OFFSET(27871, gl_dispatch_stub_1049, gl_dispatch_stub_1049, NULL, 1049),
- NAME_FUNC_OFFSET(27891, gl_dispatch_stub_1050, gl_dispatch_stub_1050, NULL, 1050),
- NAME_FUNC_OFFSET(27904, gl_dispatch_stub_1051, gl_dispatch_stub_1051, NULL, 1051),
- NAME_FUNC_OFFSET(27925, gl_dispatch_stub_1052, gl_dispatch_stub_1052, NULL, 1052),
- NAME_FUNC_OFFSET(27937, gl_dispatch_stub_1053, gl_dispatch_stub_1053, NULL, 1053),
- NAME_FUNC_OFFSET(27950, gl_dispatch_stub_1054, gl_dispatch_stub_1054, NULL, 1054),
- NAME_FUNC_OFFSET(27964, gl_dispatch_stub_1055, gl_dispatch_stub_1055, NULL, 1055),
- NAME_FUNC_OFFSET(27983, gl_dispatch_stub_1056, gl_dispatch_stub_1056, NULL, 1056),
- NAME_FUNC_OFFSET(27999, gl_dispatch_stub_1057, gl_dispatch_stub_1057, NULL, 1057),
- NAME_FUNC_OFFSET(28015, gl_dispatch_stub_1058, gl_dispatch_stub_1058, NULL, 1058),
- NAME_FUNC_OFFSET(28031, gl_dispatch_stub_1059, gl_dispatch_stub_1059, NULL, 1059),
- NAME_FUNC_OFFSET(28050, gl_dispatch_stub_1060, gl_dispatch_stub_1060, NULL, 1060),
- NAME_FUNC_OFFSET(28069, gl_dispatch_stub_1061, gl_dispatch_stub_1061, NULL, 1061),
- NAME_FUNC_OFFSET(28084, gl_dispatch_stub_1062, gl_dispatch_stub_1062, NULL, 1062),
- NAME_FUNC_OFFSET(28100, gl_dispatch_stub_1063, gl_dispatch_stub_1063, NULL, 1063),
- NAME_FUNC_OFFSET(28119, gl_dispatch_stub_1064, gl_dispatch_stub_1064, NULL, 1064),
- NAME_FUNC_OFFSET(28136, gl_dispatch_stub_1065, gl_dispatch_stub_1065, NULL, 1065),
- NAME_FUNC_OFFSET(28159, gl_dispatch_stub_1066, gl_dispatch_stub_1066, NULL, 1066),
- NAME_FUNC_OFFSET(28180, gl_dispatch_stub_1067, gl_dispatch_stub_1067, NULL, 1067),
- NAME_FUNC_OFFSET(28202, gl_dispatch_stub_1068, gl_dispatch_stub_1068, NULL, 1068),
+ NAME_FUNC_OFFSET(13845, glBindVertexBuffer, glBindVertexBuffer, NULL, 828),
+ NAME_FUNC_OFFSET(13864, glVertexAttribBinding, glVertexAttribBinding, NULL, 829),
+ NAME_FUNC_OFFSET(13886, glVertexAttribFormat, glVertexAttribFormat, NULL, 830),
+ NAME_FUNC_OFFSET(13907, glVertexAttribIFormat, glVertexAttribIFormat, NULL, 831),
+ NAME_FUNC_OFFSET(13929, glVertexAttribLFormat, glVertexAttribLFormat, NULL, 832),
+ NAME_FUNC_OFFSET(13951, glVertexBindingDivisor, glVertexBindingDivisor, NULL, 833),
+ NAME_FUNC_OFFSET(13974, glTexBufferRange, glTexBufferRange, NULL, 834),
+ NAME_FUNC_OFFSET(13991, glTexStorage2DMultisample, glTexStorage2DMultisample, NULL, 835),
+ NAME_FUNC_OFFSET(14017, glTexStorage3DMultisample, glTexStorage3DMultisample, NULL, 836),
+ NAME_FUNC_OFFSET(14043, glInvalidateBufferData, glInvalidateBufferData, NULL, 837),
+ NAME_FUNC_OFFSET(14066, glInvalidateBufferSubData, glInvalidateBufferSubData, NULL, 838),
+ NAME_FUNC_OFFSET(14092, glInvalidateFramebuffer, glInvalidateFramebuffer, NULL, 839),
+ NAME_FUNC_OFFSET(14116, glInvalidateSubFramebuffer, glInvalidateSubFramebuffer, NULL, 840),
+ NAME_FUNC_OFFSET(14143, glInvalidateTexImage, glInvalidateTexImage, NULL, 841),
+ NAME_FUNC_OFFSET(14164, glInvalidateTexSubImage, glInvalidateTexSubImage, NULL, 842),
+ NAME_FUNC_OFFSET(14188, glPolygonOffsetEXT, glPolygonOffsetEXT, NULL, 843),
+ NAME_FUNC_OFFSET(14207, gl_dispatch_stub_844, gl_dispatch_stub_844, NULL, 844),
+ NAME_FUNC_OFFSET(14221, gl_dispatch_stub_845, gl_dispatch_stub_845, NULL, 845),
+ NAME_FUNC_OFFSET(14236, gl_dispatch_stub_846, gl_dispatch_stub_846, NULL, 846),
+ NAME_FUNC_OFFSET(14250, gl_dispatch_stub_847, gl_dispatch_stub_847, NULL, 847),
+ NAME_FUNC_OFFSET(14265, gl_dispatch_stub_848, gl_dispatch_stub_848, NULL, 848),
+ NAME_FUNC_OFFSET(14279, gl_dispatch_stub_849, gl_dispatch_stub_849, NULL, 849),
+ NAME_FUNC_OFFSET(14294, gl_dispatch_stub_850, gl_dispatch_stub_850, NULL, 850),
+ NAME_FUNC_OFFSET(14308, gl_dispatch_stub_851, gl_dispatch_stub_851, NULL, 851),
+ NAME_FUNC_OFFSET(14323, gl_dispatch_stub_852, gl_dispatch_stub_852, NULL, 852),
+ NAME_FUNC_OFFSET(14345, gl_dispatch_stub_853, gl_dispatch_stub_853, NULL, 853),
+ NAME_FUNC_OFFSET(14363, gl_dispatch_stub_854, gl_dispatch_stub_854, NULL, 854),
+ NAME_FUNC_OFFSET(14380, gl_dispatch_stub_855, gl_dispatch_stub_855, NULL, 855),
+ NAME_FUNC_OFFSET(14400, glColorPointerEXT, glColorPointerEXT, NULL, 856),
+ NAME_FUNC_OFFSET(14418, glEdgeFlagPointerEXT, glEdgeFlagPointerEXT, NULL, 857),
+ NAME_FUNC_OFFSET(14439, glIndexPointerEXT, glIndexPointerEXT, NULL, 858),
+ NAME_FUNC_OFFSET(14457, glNormalPointerEXT, glNormalPointerEXT, NULL, 859),
+ NAME_FUNC_OFFSET(14476, glTexCoordPointerEXT, glTexCoordPointerEXT, NULL, 860),
+ NAME_FUNC_OFFSET(14497, glVertexPointerEXT, glVertexPointerEXT, NULL, 861),
+ NAME_FUNC_OFFSET(14516, gl_dispatch_stub_862, gl_dispatch_stub_862, NULL, 862),
+ NAME_FUNC_OFFSET(14540, glLockArraysEXT, glLockArraysEXT, NULL, 863),
+ NAME_FUNC_OFFSET(14556, glUnlockArraysEXT, glUnlockArraysEXT, NULL, 864),
+ NAME_FUNC_OFFSET(14574, glDebugMessageCallback, glDebugMessageCallback, NULL, 865),
+ NAME_FUNC_OFFSET(14597, glDebugMessageControl, glDebugMessageControl, NULL, 866),
+ NAME_FUNC_OFFSET(14619, glDebugMessageInsert, glDebugMessageInsert, NULL, 867),
+ NAME_FUNC_OFFSET(14640, glGetDebugMessageLog, glGetDebugMessageLog, NULL, 868),
+ NAME_FUNC_OFFSET(14661, glGetObjectLabel, glGetObjectLabel, NULL, 869),
+ NAME_FUNC_OFFSET(14678, glGetObjectPtrLabel, glGetObjectPtrLabel, NULL, 870),
+ NAME_FUNC_OFFSET(14698, glObjectLabel, glObjectLabel, NULL, 871),
+ NAME_FUNC_OFFSET(14712, glObjectPtrLabel, glObjectPtrLabel, NULL, 872),
+ NAME_FUNC_OFFSET(14729, glPopDebugGroup, glPopDebugGroup, NULL, 873),
+ NAME_FUNC_OFFSET(14745, glPushDebugGroup, glPushDebugGroup, NULL, 874),
+ NAME_FUNC_OFFSET(14762, glSecondaryColor3fEXT, glSecondaryColor3fEXT, NULL, 875),
+ NAME_FUNC_OFFSET(14784, glSecondaryColor3fvEXT, glSecondaryColor3fvEXT, NULL, 876),
+ NAME_FUNC_OFFSET(14807, glMultiDrawElementsEXT, glMultiDrawElementsEXT, NULL, 877),
+ NAME_FUNC_OFFSET(14830, glFogCoordfEXT, glFogCoordfEXT, NULL, 878),
+ NAME_FUNC_OFFSET(14845, glFogCoordfvEXT, glFogCoordfvEXT, NULL, 879),
+ NAME_FUNC_OFFSET(14861, glResizeBuffersMESA, glResizeBuffersMESA, NULL, 880),
+ NAME_FUNC_OFFSET(14881, glWindowPos4dMESA, glWindowPos4dMESA, NULL, 881),
+ NAME_FUNC_OFFSET(14899, glWindowPos4dvMESA, glWindowPos4dvMESA, NULL, 882),
+ NAME_FUNC_OFFSET(14918, glWindowPos4fMESA, glWindowPos4fMESA, NULL, 883),
+ NAME_FUNC_OFFSET(14936, glWindowPos4fvMESA, glWindowPos4fvMESA, NULL, 884),
+ NAME_FUNC_OFFSET(14955, glWindowPos4iMESA, glWindowPos4iMESA, NULL, 885),
+ NAME_FUNC_OFFSET(14973, glWindowPos4ivMESA, glWindowPos4ivMESA, NULL, 886),
+ NAME_FUNC_OFFSET(14992, glWindowPos4sMESA, glWindowPos4sMESA, NULL, 887),
+ NAME_FUNC_OFFSET(15010, glWindowPos4svMESA, glWindowPos4svMESA, NULL, 888),
+ NAME_FUNC_OFFSET(15029, gl_dispatch_stub_889, gl_dispatch_stub_889, NULL, 889),
+ NAME_FUNC_OFFSET(15054, gl_dispatch_stub_890, gl_dispatch_stub_890, NULL, 890),
+ NAME_FUNC_OFFSET(15081, glAreProgramsResidentNV, glAreProgramsResidentNV, NULL, 891),
+ NAME_FUNC_OFFSET(15105, glExecuteProgramNV, glExecuteProgramNV, NULL, 892),
+ NAME_FUNC_OFFSET(15124, glGetProgramParameterdvNV, glGetProgramParameterdvNV, NULL, 893),
+ NAME_FUNC_OFFSET(15150, glGetProgramParameterfvNV, glGetProgramParameterfvNV, NULL, 894),
+ NAME_FUNC_OFFSET(15176, glGetProgramStringNV, glGetProgramStringNV, NULL, 895),
+ NAME_FUNC_OFFSET(15197, glGetProgramivNV, glGetProgramivNV, NULL, 896),
+ NAME_FUNC_OFFSET(15214, glGetTrackMatrixivNV, glGetTrackMatrixivNV, NULL, 897),
+ NAME_FUNC_OFFSET(15235, glGetVertexAttribdvNV, glGetVertexAttribdvNV, NULL, 898),
+ NAME_FUNC_OFFSET(15257, glGetVertexAttribfvNV, glGetVertexAttribfvNV, NULL, 899),
+ NAME_FUNC_OFFSET(15279, glGetVertexAttribivNV, glGetVertexAttribivNV, NULL, 900),
+ NAME_FUNC_OFFSET(15301, glLoadProgramNV, glLoadProgramNV, NULL, 901),
+ NAME_FUNC_OFFSET(15317, glProgramParameters4dvNV, glProgramParameters4dvNV, NULL, 902),
+ NAME_FUNC_OFFSET(15342, glProgramParameters4fvNV, glProgramParameters4fvNV, NULL, 903),
+ NAME_FUNC_OFFSET(15367, glRequestResidentProgramsNV, glRequestResidentProgramsNV, NULL, 904),
+ NAME_FUNC_OFFSET(15395, glTrackMatrixNV, glTrackMatrixNV, NULL, 905),
+ NAME_FUNC_OFFSET(15411, glVertexAttrib1dNV, glVertexAttrib1dNV, NULL, 906),
+ NAME_FUNC_OFFSET(15430, glVertexAttrib1dvNV, glVertexAttrib1dvNV, NULL, 907),
+ NAME_FUNC_OFFSET(15450, glVertexAttrib1fNV, glVertexAttrib1fNV, NULL, 908),
+ NAME_FUNC_OFFSET(15469, glVertexAttrib1fvNV, glVertexAttrib1fvNV, NULL, 909),
+ NAME_FUNC_OFFSET(15489, glVertexAttrib1sNV, glVertexAttrib1sNV, NULL, 910),
+ NAME_FUNC_OFFSET(15508, glVertexAttrib1svNV, glVertexAttrib1svNV, NULL, 911),
+ NAME_FUNC_OFFSET(15528, glVertexAttrib2dNV, glVertexAttrib2dNV, NULL, 912),
+ NAME_FUNC_OFFSET(15547, glVertexAttrib2dvNV, glVertexAttrib2dvNV, NULL, 913),
+ NAME_FUNC_OFFSET(15567, glVertexAttrib2fNV, glVertexAttrib2fNV, NULL, 914),
+ NAME_FUNC_OFFSET(15586, glVertexAttrib2fvNV, glVertexAttrib2fvNV, NULL, 915),
+ NAME_FUNC_OFFSET(15606, glVertexAttrib2sNV, glVertexAttrib2sNV, NULL, 916),
+ NAME_FUNC_OFFSET(15625, glVertexAttrib2svNV, glVertexAttrib2svNV, NULL, 917),
+ NAME_FUNC_OFFSET(15645, glVertexAttrib3dNV, glVertexAttrib3dNV, NULL, 918),
+ NAME_FUNC_OFFSET(15664, glVertexAttrib3dvNV, glVertexAttrib3dvNV, NULL, 919),
+ NAME_FUNC_OFFSET(15684, glVertexAttrib3fNV, glVertexAttrib3fNV, NULL, 920),
+ NAME_FUNC_OFFSET(15703, glVertexAttrib3fvNV, glVertexAttrib3fvNV, NULL, 921),
+ NAME_FUNC_OFFSET(15723, glVertexAttrib3sNV, glVertexAttrib3sNV, NULL, 922),
+ NAME_FUNC_OFFSET(15742, glVertexAttrib3svNV, glVertexAttrib3svNV, NULL, 923),
+ NAME_FUNC_OFFSET(15762, glVertexAttrib4dNV, glVertexAttrib4dNV, NULL, 924),
+ NAME_FUNC_OFFSET(15781, glVertexAttrib4dvNV, glVertexAttrib4dvNV, NULL, 925),
+ NAME_FUNC_OFFSET(15801, glVertexAttrib4fNV, glVertexAttrib4fNV, NULL, 926),
+ NAME_FUNC_OFFSET(15820, glVertexAttrib4fvNV, glVertexAttrib4fvNV, NULL, 927),
+ NAME_FUNC_OFFSET(15840, glVertexAttrib4sNV, glVertexAttrib4sNV, NULL, 928),
+ NAME_FUNC_OFFSET(15859, glVertexAttrib4svNV, glVertexAttrib4svNV, NULL, 929),
+ NAME_FUNC_OFFSET(15879, glVertexAttrib4ubNV, glVertexAttrib4ubNV, NULL, 930),
+ NAME_FUNC_OFFSET(15899, glVertexAttrib4ubvNV, glVertexAttrib4ubvNV, NULL, 931),
+ NAME_FUNC_OFFSET(15920, glVertexAttribPointerNV, glVertexAttribPointerNV, NULL, 932),
+ NAME_FUNC_OFFSET(15944, glVertexAttribs1dvNV, glVertexAttribs1dvNV, NULL, 933),
+ NAME_FUNC_OFFSET(15965, glVertexAttribs1fvNV, glVertexAttribs1fvNV, NULL, 934),
+ NAME_FUNC_OFFSET(15986, glVertexAttribs1svNV, glVertexAttribs1svNV, NULL, 935),
+ NAME_FUNC_OFFSET(16007, glVertexAttribs2dvNV, glVertexAttribs2dvNV, NULL, 936),
+ NAME_FUNC_OFFSET(16028, glVertexAttribs2fvNV, glVertexAttribs2fvNV, NULL, 937),
+ NAME_FUNC_OFFSET(16049, glVertexAttribs2svNV, glVertexAttribs2svNV, NULL, 938),
+ NAME_FUNC_OFFSET(16070, glVertexAttribs3dvNV, glVertexAttribs3dvNV, NULL, 939),
+ NAME_FUNC_OFFSET(16091, glVertexAttribs3fvNV, glVertexAttribs3fvNV, NULL, 940),
+ NAME_FUNC_OFFSET(16112, glVertexAttribs3svNV, glVertexAttribs3svNV, NULL, 941),
+ NAME_FUNC_OFFSET(16133, glVertexAttribs4dvNV, glVertexAttribs4dvNV, NULL, 942),
+ NAME_FUNC_OFFSET(16154, glVertexAttribs4fvNV, glVertexAttribs4fvNV, NULL, 943),
+ NAME_FUNC_OFFSET(16175, glVertexAttribs4svNV, glVertexAttribs4svNV, NULL, 944),
+ NAME_FUNC_OFFSET(16196, glVertexAttribs4ubvNV, glVertexAttribs4ubvNV, NULL, 945),
+ NAME_FUNC_OFFSET(16218, glGetTexBumpParameterfvATI, glGetTexBumpParameterfvATI, NULL, 946),
+ NAME_FUNC_OFFSET(16245, glGetTexBumpParameterivATI, glGetTexBumpParameterivATI, NULL, 947),
+ NAME_FUNC_OFFSET(16272, glTexBumpParameterfvATI, glTexBumpParameterfvATI, NULL, 948),
+ NAME_FUNC_OFFSET(16296, glTexBumpParameterivATI, glTexBumpParameterivATI, NULL, 949),
+ NAME_FUNC_OFFSET(16320, glAlphaFragmentOp1ATI, glAlphaFragmentOp1ATI, NULL, 950),
+ NAME_FUNC_OFFSET(16342, glAlphaFragmentOp2ATI, glAlphaFragmentOp2ATI, NULL, 951),
+ NAME_FUNC_OFFSET(16364, glAlphaFragmentOp3ATI, glAlphaFragmentOp3ATI, NULL, 952),
+ NAME_FUNC_OFFSET(16386, glBeginFragmentShaderATI, glBeginFragmentShaderATI, NULL, 953),
+ NAME_FUNC_OFFSET(16411, glBindFragmentShaderATI, glBindFragmentShaderATI, NULL, 954),
+ NAME_FUNC_OFFSET(16435, glColorFragmentOp1ATI, glColorFragmentOp1ATI, NULL, 955),
+ NAME_FUNC_OFFSET(16457, glColorFragmentOp2ATI, glColorFragmentOp2ATI, NULL, 956),
+ NAME_FUNC_OFFSET(16479, glColorFragmentOp3ATI, glColorFragmentOp3ATI, NULL, 957),
+ NAME_FUNC_OFFSET(16501, glDeleteFragmentShaderATI, glDeleteFragmentShaderATI, NULL, 958),
+ NAME_FUNC_OFFSET(16527, glEndFragmentShaderATI, glEndFragmentShaderATI, NULL, 959),
+ NAME_FUNC_OFFSET(16550, glGenFragmentShadersATI, glGenFragmentShadersATI, NULL, 960),
+ NAME_FUNC_OFFSET(16574, glPassTexCoordATI, glPassTexCoordATI, NULL, 961),
+ NAME_FUNC_OFFSET(16592, glSampleMapATI, glSampleMapATI, NULL, 962),
+ NAME_FUNC_OFFSET(16607, glSetFragmentShaderConstantATI, glSetFragmentShaderConstantATI, NULL, 963),
+ NAME_FUNC_OFFSET(16638, gl_dispatch_stub_964, gl_dispatch_stub_964, NULL, 964),
+ NAME_FUNC_OFFSET(16661, gl_dispatch_stub_965, gl_dispatch_stub_965, NULL, 965),
+ NAME_FUNC_OFFSET(16684, gl_dispatch_stub_966, gl_dispatch_stub_966, NULL, 966),
+ NAME_FUNC_OFFSET(16707, glGetProgramNamedParameterdvNV, glGetProgramNamedParameterdvNV, NULL, 967),
+ NAME_FUNC_OFFSET(16738, glGetProgramNamedParameterfvNV, glGetProgramNamedParameterfvNV, NULL, 968),
+ NAME_FUNC_OFFSET(16769, glProgramNamedParameter4dNV, glProgramNamedParameter4dNV, NULL, 969),
+ NAME_FUNC_OFFSET(16797, glProgramNamedParameter4dvNV, glProgramNamedParameter4dvNV, NULL, 970),
+ NAME_FUNC_OFFSET(16826, glProgramNamedParameter4fNV, glProgramNamedParameter4fNV, NULL, 971),
+ NAME_FUNC_OFFSET(16854, glProgramNamedParameter4fvNV, glProgramNamedParameter4fvNV, NULL, 972),
+ NAME_FUNC_OFFSET(16883, glPrimitiveRestartNV, glPrimitiveRestartNV, NULL, 973),
+ NAME_FUNC_OFFSET(16904, gl_dispatch_stub_974, gl_dispatch_stub_974, NULL, 974),
+ NAME_FUNC_OFFSET(16921, gl_dispatch_stub_975, gl_dispatch_stub_975, NULL, 975),
+ NAME_FUNC_OFFSET(16934, gl_dispatch_stub_976, gl_dispatch_stub_976, NULL, 976),
+ NAME_FUNC_OFFSET(16948, gl_dispatch_stub_977, gl_dispatch_stub_977, NULL, 977),
+ NAME_FUNC_OFFSET(16965, glBindFramebufferEXT, glBindFramebufferEXT, NULL, 978),
+ NAME_FUNC_OFFSET(16986, glBindRenderbufferEXT, glBindRenderbufferEXT, NULL, 979),
+ NAME_FUNC_OFFSET(17008, gl_dispatch_stub_980, gl_dispatch_stub_980, NULL, 980),
+ NAME_FUNC_OFFSET(17032, gl_dispatch_stub_981, gl_dispatch_stub_981, NULL, 981),
+ NAME_FUNC_OFFSET(17062, glVertexAttribI1iEXT, glVertexAttribI1iEXT, NULL, 982),
+ NAME_FUNC_OFFSET(17083, glVertexAttribI1uiEXT, glVertexAttribI1uiEXT, NULL, 983),
+ NAME_FUNC_OFFSET(17105, glVertexAttribI2iEXT, glVertexAttribI2iEXT, NULL, 984),
+ NAME_FUNC_OFFSET(17126, glVertexAttribI2ivEXT, glVertexAttribI2ivEXT, NULL, 985),
+ NAME_FUNC_OFFSET(17148, glVertexAttribI2uiEXT, glVertexAttribI2uiEXT, NULL, 986),
+ NAME_FUNC_OFFSET(17170, glVertexAttribI2uivEXT, glVertexAttribI2uivEXT, NULL, 987),
+ NAME_FUNC_OFFSET(17193, glVertexAttribI3iEXT, glVertexAttribI3iEXT, NULL, 988),
+ NAME_FUNC_OFFSET(17214, glVertexAttribI3ivEXT, glVertexAttribI3ivEXT, NULL, 989),
+ NAME_FUNC_OFFSET(17236, glVertexAttribI3uiEXT, glVertexAttribI3uiEXT, NULL, 990),
+ NAME_FUNC_OFFSET(17258, glVertexAttribI3uivEXT, glVertexAttribI3uivEXT, NULL, 991),
+ NAME_FUNC_OFFSET(17281, glVertexAttribI4iEXT, glVertexAttribI4iEXT, NULL, 992),
+ NAME_FUNC_OFFSET(17302, glVertexAttribI4ivEXT, glVertexAttribI4ivEXT, NULL, 993),
+ NAME_FUNC_OFFSET(17324, glVertexAttribI4uiEXT, glVertexAttribI4uiEXT, NULL, 994),
+ NAME_FUNC_OFFSET(17346, glVertexAttribI4uivEXT, glVertexAttribI4uivEXT, NULL, 995),
+ NAME_FUNC_OFFSET(17369, glClearColorIiEXT, glClearColorIiEXT, NULL, 996),
+ NAME_FUNC_OFFSET(17387, glClearColorIuiEXT, glClearColorIuiEXT, NULL, 997),
+ NAME_FUNC_OFFSET(17406, glBindBufferOffsetEXT, glBindBufferOffsetEXT, NULL, 998),
+ NAME_FUNC_OFFSET(17428, glBeginPerfMonitorAMD, glBeginPerfMonitorAMD, NULL, 999),
+ NAME_FUNC_OFFSET(17450, glDeletePerfMonitorsAMD, glDeletePerfMonitorsAMD, NULL, 1000),
+ NAME_FUNC_OFFSET(17474, glEndPerfMonitorAMD, glEndPerfMonitorAMD, NULL, 1001),
+ NAME_FUNC_OFFSET(17494, glGenPerfMonitorsAMD, glGenPerfMonitorsAMD, NULL, 1002),
+ NAME_FUNC_OFFSET(17515, glGetPerfMonitorCounterDataAMD, glGetPerfMonitorCounterDataAMD, NULL, 1003),
+ NAME_FUNC_OFFSET(17546, glGetPerfMonitorCounterInfoAMD, glGetPerfMonitorCounterInfoAMD, NULL, 1004),
+ NAME_FUNC_OFFSET(17577, glGetPerfMonitorCounterStringAMD, glGetPerfMonitorCounterStringAMD, NULL, 1005),
+ NAME_FUNC_OFFSET(17610, glGetPerfMonitorCountersAMD, glGetPerfMonitorCountersAMD, NULL, 1006),
+ NAME_FUNC_OFFSET(17638, glGetPerfMonitorGroupStringAMD, glGetPerfMonitorGroupStringAMD, NULL, 1007),
+ NAME_FUNC_OFFSET(17669, glGetPerfMonitorGroupsAMD, glGetPerfMonitorGroupsAMD, NULL, 1008),
+ NAME_FUNC_OFFSET(17695, glSelectPerfMonitorCountersAMD, glSelectPerfMonitorCountersAMD, NULL, 1009),
+ NAME_FUNC_OFFSET(17726, glGetObjectParameterivAPPLE, glGetObjectParameterivAPPLE, NULL, 1010),
+ NAME_FUNC_OFFSET(17754, glObjectPurgeableAPPLE, glObjectPurgeableAPPLE, NULL, 1011),
+ NAME_FUNC_OFFSET(17777, glObjectUnpurgeableAPPLE, glObjectUnpurgeableAPPLE, NULL, 1012),
+ NAME_FUNC_OFFSET(17802, glActiveProgramEXT, glActiveProgramEXT, NULL, 1013),
+ NAME_FUNC_OFFSET(17821, glCreateShaderProgramEXT, glCreateShaderProgramEXT, NULL, 1014),
+ NAME_FUNC_OFFSET(17846, glUseShaderProgramEXT, glUseShaderProgramEXT, NULL, 1015),
+ NAME_FUNC_OFFSET(17868, glTextureBarrierNV, glTextureBarrierNV, NULL, 1016),
+ NAME_FUNC_OFFSET(17887, glVDPAUFiniNV, glVDPAUFiniNV, NULL, 1017),
+ NAME_FUNC_OFFSET(17901, glVDPAUGetSurfaceivNV, glVDPAUGetSurfaceivNV, NULL, 1018),
+ NAME_FUNC_OFFSET(17923, glVDPAUInitNV, glVDPAUInitNV, NULL, 1019),
+ NAME_FUNC_OFFSET(17937, glVDPAUIsSurfaceNV, glVDPAUIsSurfaceNV, NULL, 1020),
+ NAME_FUNC_OFFSET(17956, glVDPAUMapSurfacesNV, glVDPAUMapSurfacesNV, NULL, 1021),
+ NAME_FUNC_OFFSET(17977, glVDPAURegisterOutputSurfaceNV, glVDPAURegisterOutputSurfaceNV, NULL, 1022),
+ NAME_FUNC_OFFSET(18008, glVDPAURegisterVideoSurfaceNV, glVDPAURegisterVideoSurfaceNV, NULL, 1023),
+ NAME_FUNC_OFFSET(18038, glVDPAUSurfaceAccessNV, glVDPAUSurfaceAccessNV, NULL, 1024),
+ NAME_FUNC_OFFSET(18061, glVDPAUUnmapSurfacesNV, glVDPAUUnmapSurfacesNV, NULL, 1025),
+ NAME_FUNC_OFFSET(18084, glVDPAUUnregisterSurfaceNV, glVDPAUUnregisterSurfaceNV, NULL, 1026),
+ NAME_FUNC_OFFSET(18111, gl_dispatch_stub_1027, gl_dispatch_stub_1027, NULL, 1027),
+ NAME_FUNC_OFFSET(18136, gl_dispatch_stub_1028, gl_dispatch_stub_1028, NULL, 1028),
+ NAME_FUNC_OFFSET(18165, gl_dispatch_stub_1029, gl_dispatch_stub_1029, NULL, 1029),
+ NAME_FUNC_OFFSET(18196, glEGLImageTargetRenderbufferStorageOES, glEGLImageTargetRenderbufferStorageOES, NULL, 1030),
+ NAME_FUNC_OFFSET(18235, glEGLImageTargetTexture2DOES, glEGLImageTargetTexture2DOES, NULL, 1031),
+ NAME_FUNC_OFFSET(18264, gl_dispatch_stub_1032, gl_dispatch_stub_1032, NULL, 1032),
+ NAME_FUNC_OFFSET(18277, gl_dispatch_stub_1033, gl_dispatch_stub_1033, NULL, 1033),
+ NAME_FUNC_OFFSET(18291, gl_dispatch_stub_1034, gl_dispatch_stub_1034, NULL, 1034),
+ NAME_FUNC_OFFSET(18305, gl_dispatch_stub_1035, gl_dispatch_stub_1035, NULL, 1035),
+ NAME_FUNC_OFFSET(18315, gl_dispatch_stub_1036, gl_dispatch_stub_1036, NULL, 1036),
+ NAME_FUNC_OFFSET(18329, gl_dispatch_stub_1037, gl_dispatch_stub_1037, NULL, 1037),
+ NAME_FUNC_OFFSET(18336, gl_dispatch_stub_1038, gl_dispatch_stub_1038, NULL, 1038),
+ NAME_FUNC_OFFSET(18344, gl_dispatch_stub_1039, gl_dispatch_stub_1039, NULL, 1039),
+ NAME_FUNC_OFFSET(18355, gl_dispatch_stub_1040, gl_dispatch_stub_1040, NULL, 1040),
+ NAME_FUNC_OFFSET(18366, gl_dispatch_stub_1041, gl_dispatch_stub_1041, NULL, 1041),
+ NAME_FUNC_OFFSET(18380, gl_dispatch_stub_1042, gl_dispatch_stub_1042, NULL, 1042),
+ NAME_FUNC_OFFSET(18395, gl_dispatch_stub_1043, gl_dispatch_stub_1043, NULL, 1043),
+ NAME_FUNC_OFFSET(18404, gl_dispatch_stub_1044, gl_dispatch_stub_1044, NULL, 1044),
+ NAME_FUNC_OFFSET(18414, gl_dispatch_stub_1045, gl_dispatch_stub_1045, NULL, 1045),
+ NAME_FUNC_OFFSET(18427, gl_dispatch_stub_1046, gl_dispatch_stub_1046, NULL, 1046),
+ NAME_FUNC_OFFSET(18441, gl_dispatch_stub_1047, gl_dispatch_stub_1047, NULL, 1047),
+ NAME_FUNC_OFFSET(18453, gl_dispatch_stub_1048, gl_dispatch_stub_1048, NULL, 1048),
+ NAME_FUNC_OFFSET(18466, gl_dispatch_stub_1049, gl_dispatch_stub_1049, NULL, 1049),
+ NAME_FUNC_OFFSET(18480, gl_dispatch_stub_1050, gl_dispatch_stub_1050, NULL, 1050),
+ NAME_FUNC_OFFSET(18498, gl_dispatch_stub_1051, gl_dispatch_stub_1051, NULL, 1051),
+ NAME_FUNC_OFFSET(18509, gl_dispatch_stub_1052, gl_dispatch_stub_1052, NULL, 1052),
+ NAME_FUNC_OFFSET(18518, gl_dispatch_stub_1053, gl_dispatch_stub_1053, NULL, 1053),
+ NAME_FUNC_OFFSET(18527, gl_dispatch_stub_1054, gl_dispatch_stub_1054, NULL, 1054),
+ NAME_FUNC_OFFSET(18540, gl_dispatch_stub_1055, gl_dispatch_stub_1055, NULL, 1055),
+ NAME_FUNC_OFFSET(18557, gl_dispatch_stub_1056, gl_dispatch_stub_1056, NULL, 1056),
+ NAME_FUNC_OFFSET(18567, gl_dispatch_stub_1057, gl_dispatch_stub_1057, NULL, 1057),
+ NAME_FUNC_OFFSET(18585, gl_dispatch_stub_1058, gl_dispatch_stub_1058, NULL, 1058),
+ NAME_FUNC_OFFSET(18594, gl_dispatch_stub_1059, gl_dispatch_stub_1059, NULL, 1059),
+ NAME_FUNC_OFFSET(18604, gl_dispatch_stub_1060, gl_dispatch_stub_1060, NULL, 1060),
+ NAME_FUNC_OFFSET(18615, gl_dispatch_stub_1061, gl_dispatch_stub_1061, NULL, 1061),
+ NAME_FUNC_OFFSET(18631, gl_dispatch_stub_1062, gl_dispatch_stub_1062, NULL, 1062),
+ NAME_FUNC_OFFSET(18644, gl_dispatch_stub_1063, gl_dispatch_stub_1063, NULL, 1063),
+ NAME_FUNC_OFFSET(18657, gl_dispatch_stub_1064, gl_dispatch_stub_1064, NULL, 1064),
+ NAME_FUNC_OFFSET(18670, gl_dispatch_stub_1065, gl_dispatch_stub_1065, NULL, 1065),
+ NAME_FUNC_OFFSET(18686, gl_dispatch_stub_1066, gl_dispatch_stub_1066, NULL, 1066),
+ NAME_FUNC_OFFSET(18702, gl_dispatch_stub_1067, gl_dispatch_stub_1067, NULL, 1067),
+ NAME_FUNC_OFFSET(18714, gl_dispatch_stub_1068, gl_dispatch_stub_1068, NULL, 1068),
+ NAME_FUNC_OFFSET(18727, gl_dispatch_stub_1069, gl_dispatch_stub_1069, NULL, 1069),
+ NAME_FUNC_OFFSET(18743, gl_dispatch_stub_1070, gl_dispatch_stub_1070, NULL, 1070),
+ NAME_FUNC_OFFSET(18757, gl_dispatch_stub_1071, gl_dispatch_stub_1071, NULL, 1071),
+ NAME_FUNC_OFFSET(18777, gl_dispatch_stub_1072, gl_dispatch_stub_1072, NULL, 1072),
+ NAME_FUNC_OFFSET(18795, gl_dispatch_stub_1073, gl_dispatch_stub_1073, NULL, 1073),
+ NAME_FUNC_OFFSET(18814, gl_dispatch_stub_1074, gl_dispatch_stub_1074, NULL, 1074),
+ NAME_FUNC_OFFSET(18831, glTexGenf, glTexGenf, NULL, 190),
+ NAME_FUNC_OFFSET(18844, glTexGenfv, glTexGenfv, NULL, 191),
+ NAME_FUNC_OFFSET(18858, glTexGeni, glTexGeni, NULL, 192),
+ NAME_FUNC_OFFSET(18871, glTexGeniv, glTexGeniv, NULL, 193),
+ NAME_FUNC_OFFSET(18885, glReadBuffer, glReadBuffer, NULL, 254),
+ NAME_FUNC_OFFSET(18900, glGetTexGenfv, glGetTexGenfv, NULL, 279),
+ NAME_FUNC_OFFSET(18917, glGetTexGeniv, glGetTexGeniv, NULL, 280),
+ NAME_FUNC_OFFSET(18934, glArrayElement, glArrayElement, NULL, 306),
+ NAME_FUNC_OFFSET(18952, glBindTexture, glBindTexture, NULL, 307),
+ NAME_FUNC_OFFSET(18969, glDrawArrays, glDrawArrays, NULL, 310),
+ NAME_FUNC_OFFSET(18985, glAreTexturesResident, glAreTexturesResidentEXT, glAreTexturesResidentEXT, 322),
+ NAME_FUNC_OFFSET(19010, glCopyTexImage1D, glCopyTexImage1D, NULL, 323),
+ NAME_FUNC_OFFSET(19030, glCopyTexImage2D, glCopyTexImage2D, NULL, 324),
+ NAME_FUNC_OFFSET(19050, glCopyTexSubImage1D, glCopyTexSubImage1D, NULL, 325),
+ NAME_FUNC_OFFSET(19073, glCopyTexSubImage2D, glCopyTexSubImage2D, NULL, 326),
+ NAME_FUNC_OFFSET(19096, glDeleteTextures, glDeleteTexturesEXT, glDeleteTexturesEXT, 327),
+ NAME_FUNC_OFFSET(19116, glGenTextures, glGenTexturesEXT, glGenTexturesEXT, 328),
+ NAME_FUNC_OFFSET(19133, glGetPointerv, glGetPointerv, NULL, 329),
+ NAME_FUNC_OFFSET(19150, glIsTexture, glIsTextureEXT, glIsTextureEXT, 330),
+ NAME_FUNC_OFFSET(19165, glPrioritizeTextures, glPrioritizeTextures, NULL, 331),
+ NAME_FUNC_OFFSET(19189, glTexSubImage1D, glTexSubImage1D, NULL, 332),
+ NAME_FUNC_OFFSET(19208, glTexSubImage2D, glTexSubImage2D, NULL, 333),
+ NAME_FUNC_OFFSET(19227, glBlendColor, glBlendColor, NULL, 336),
+ NAME_FUNC_OFFSET(19243, glBlendEquation, glBlendEquation, NULL, 337),
+ NAME_FUNC_OFFSET(19262, glBlendEquation, glBlendEquation, NULL, 337),
+ NAME_FUNC_OFFSET(19281, glDrawRangeElements, glDrawRangeElements, NULL, 338),
+ NAME_FUNC_OFFSET(19304, glColorTable, glColorTable, NULL, 339),
+ NAME_FUNC_OFFSET(19320, glColorTable, glColorTable, NULL, 339),
+ NAME_FUNC_OFFSET(19336, glColorTableParameterfv, glColorTableParameterfv, NULL, 340),
+ NAME_FUNC_OFFSET(19363, glColorTableParameteriv, glColorTableParameteriv, NULL, 341),
+ NAME_FUNC_OFFSET(19390, glCopyColorTable, glCopyColorTable, NULL, 342),
+ NAME_FUNC_OFFSET(19410, glGetColorTable, glGetColorTableEXT, glGetColorTableEXT, 343),
+ NAME_FUNC_OFFSET(19429, glGetColorTable, glGetColorTableEXT, glGetColorTableEXT, 343),
+ NAME_FUNC_OFFSET(19448, glGetColorTableParameterfv, glGetColorTableParameterfvEXT, glGetColorTableParameterfvEXT, 344),
+ NAME_FUNC_OFFSET(19478, glGetColorTableParameterfv, glGetColorTableParameterfvEXT, glGetColorTableParameterfvEXT, 344),
+ NAME_FUNC_OFFSET(19508, glGetColorTableParameteriv, glGetColorTableParameterivEXT, glGetColorTableParameterivEXT, 345),
+ NAME_FUNC_OFFSET(19538, glGetColorTableParameteriv, glGetColorTableParameterivEXT, glGetColorTableParameterivEXT, 345),
+ NAME_FUNC_OFFSET(19568, glColorSubTable, glColorSubTable, NULL, 346),
+ NAME_FUNC_OFFSET(19587, glCopyColorSubTable, glCopyColorSubTable, NULL, 347),
+ NAME_FUNC_OFFSET(19610, glConvolutionFilter1D, glConvolutionFilter1D, NULL, 348),
+ NAME_FUNC_OFFSET(19635, glConvolutionFilter2D, glConvolutionFilter2D, NULL, 349),
+ NAME_FUNC_OFFSET(19660, glConvolutionParameterf, glConvolutionParameterf, NULL, 350),
+ NAME_FUNC_OFFSET(19687, glConvolutionParameterfv, glConvolutionParameterfv, NULL, 351),
+ NAME_FUNC_OFFSET(19715, glConvolutionParameteri, glConvolutionParameteri, NULL, 352),
+ NAME_FUNC_OFFSET(19742, glConvolutionParameteriv, glConvolutionParameteriv, NULL, 353),
+ NAME_FUNC_OFFSET(19770, glCopyConvolutionFilter1D, glCopyConvolutionFilter1D, NULL, 354),
+ NAME_FUNC_OFFSET(19799, glCopyConvolutionFilter2D, glCopyConvolutionFilter2D, NULL, 355),
+ NAME_FUNC_OFFSET(19828, glGetConvolutionFilter, gl_dispatch_stub_356, gl_dispatch_stub_356, 356),
+ NAME_FUNC_OFFSET(19854, glGetConvolutionParameterfv, gl_dispatch_stub_357, gl_dispatch_stub_357, 357),
+ NAME_FUNC_OFFSET(19885, glGetConvolutionParameteriv, gl_dispatch_stub_358, gl_dispatch_stub_358, 358),
+ NAME_FUNC_OFFSET(19916, glGetSeparableFilter, gl_dispatch_stub_359, gl_dispatch_stub_359, 359),
+ NAME_FUNC_OFFSET(19940, glSeparableFilter2D, glSeparableFilter2D, NULL, 360),
+ NAME_FUNC_OFFSET(19963, glGetHistogram, gl_dispatch_stub_361, gl_dispatch_stub_361, 361),
+ NAME_FUNC_OFFSET(19981, glGetHistogramParameterfv, gl_dispatch_stub_362, gl_dispatch_stub_362, 362),
+ NAME_FUNC_OFFSET(20010, glGetHistogramParameteriv, gl_dispatch_stub_363, gl_dispatch_stub_363, 363),
+ NAME_FUNC_OFFSET(20039, glGetMinmax, gl_dispatch_stub_364, gl_dispatch_stub_364, 364),
+ NAME_FUNC_OFFSET(20054, glGetMinmaxParameterfv, gl_dispatch_stub_365, gl_dispatch_stub_365, 365),
+ NAME_FUNC_OFFSET(20080, glGetMinmaxParameteriv, gl_dispatch_stub_366, gl_dispatch_stub_366, 366),
+ NAME_FUNC_OFFSET(20106, glHistogram, glHistogram, NULL, 367),
+ NAME_FUNC_OFFSET(20121, glMinmax, glMinmax, NULL, 368),
+ NAME_FUNC_OFFSET(20133, glResetHistogram, glResetHistogram, NULL, 369),
+ NAME_FUNC_OFFSET(20153, glResetMinmax, glResetMinmax, NULL, 370),
+ NAME_FUNC_OFFSET(20170, glTexImage3D, glTexImage3D, NULL, 371),
+ NAME_FUNC_OFFSET(20186, glTexImage3D, glTexImage3D, NULL, 371),
+ NAME_FUNC_OFFSET(20202, glTexSubImage3D, glTexSubImage3D, NULL, 372),
+ NAME_FUNC_OFFSET(20221, glTexSubImage3D, glTexSubImage3D, NULL, 372),
+ NAME_FUNC_OFFSET(20240, glCopyTexSubImage3D, glCopyTexSubImage3D, NULL, 373),
+ NAME_FUNC_OFFSET(20263, glCopyTexSubImage3D, glCopyTexSubImage3D, NULL, 373),
+ NAME_FUNC_OFFSET(20286, glActiveTexture, glActiveTexture, NULL, 374),
+ NAME_FUNC_OFFSET(20305, glClientActiveTexture, glClientActiveTexture, NULL, 375),
+ NAME_FUNC_OFFSET(20330, glMultiTexCoord1d, glMultiTexCoord1d, NULL, 376),
+ NAME_FUNC_OFFSET(20351, glMultiTexCoord1dv, glMultiTexCoord1dv, NULL, 377),
+ NAME_FUNC_OFFSET(20373, glMultiTexCoord1fARB, glMultiTexCoord1fARB, NULL, 378),
+ NAME_FUNC_OFFSET(20391, glMultiTexCoord1fvARB, glMultiTexCoord1fvARB, NULL, 379),
+ NAME_FUNC_OFFSET(20410, glMultiTexCoord1i, glMultiTexCoord1i, NULL, 380),
+ NAME_FUNC_OFFSET(20431, glMultiTexCoord1iv, glMultiTexCoord1iv, NULL, 381),
+ NAME_FUNC_OFFSET(20453, glMultiTexCoord1s, glMultiTexCoord1s, NULL, 382),
+ NAME_FUNC_OFFSET(20474, glMultiTexCoord1sv, glMultiTexCoord1sv, NULL, 383),
+ NAME_FUNC_OFFSET(20496, glMultiTexCoord2d, glMultiTexCoord2d, NULL, 384),
+ NAME_FUNC_OFFSET(20517, glMultiTexCoord2dv, glMultiTexCoord2dv, NULL, 385),
+ NAME_FUNC_OFFSET(20539, glMultiTexCoord2fARB, glMultiTexCoord2fARB, NULL, 386),
+ NAME_FUNC_OFFSET(20557, glMultiTexCoord2fvARB, glMultiTexCoord2fvARB, NULL, 387),
+ NAME_FUNC_OFFSET(20576, glMultiTexCoord2i, glMultiTexCoord2i, NULL, 388),
+ NAME_FUNC_OFFSET(20597, glMultiTexCoord2iv, glMultiTexCoord2iv, NULL, 389),
+ NAME_FUNC_OFFSET(20619, glMultiTexCoord2s, glMultiTexCoord2s, NULL, 390),
+ NAME_FUNC_OFFSET(20640, glMultiTexCoord2sv, glMultiTexCoord2sv, NULL, 391),
+ NAME_FUNC_OFFSET(20662, glMultiTexCoord3d, glMultiTexCoord3d, NULL, 392),
+ NAME_FUNC_OFFSET(20683, glMultiTexCoord3dv, glMultiTexCoord3dv, NULL, 393),
+ NAME_FUNC_OFFSET(20705, glMultiTexCoord3fARB, glMultiTexCoord3fARB, NULL, 394),
+ NAME_FUNC_OFFSET(20723, glMultiTexCoord3fvARB, glMultiTexCoord3fvARB, NULL, 395),
+ NAME_FUNC_OFFSET(20742, glMultiTexCoord3i, glMultiTexCoord3i, NULL, 396),
+ NAME_FUNC_OFFSET(20763, glMultiTexCoord3iv, glMultiTexCoord3iv, NULL, 397),
+ NAME_FUNC_OFFSET(20785, glMultiTexCoord3s, glMultiTexCoord3s, NULL, 398),
+ NAME_FUNC_OFFSET(20806, glMultiTexCoord3sv, glMultiTexCoord3sv, NULL, 399),
+ NAME_FUNC_OFFSET(20828, glMultiTexCoord4d, glMultiTexCoord4d, NULL, 400),
+ NAME_FUNC_OFFSET(20849, glMultiTexCoord4dv, glMultiTexCoord4dv, NULL, 401),
+ NAME_FUNC_OFFSET(20871, glMultiTexCoord4fARB, glMultiTexCoord4fARB, NULL, 402),
+ NAME_FUNC_OFFSET(20889, glMultiTexCoord4fvARB, glMultiTexCoord4fvARB, NULL, 403),
+ NAME_FUNC_OFFSET(20908, glMultiTexCoord4i, glMultiTexCoord4i, NULL, 404),
+ NAME_FUNC_OFFSET(20929, glMultiTexCoord4iv, glMultiTexCoord4iv, NULL, 405),
+ NAME_FUNC_OFFSET(20951, glMultiTexCoord4s, glMultiTexCoord4s, NULL, 406),
+ NAME_FUNC_OFFSET(20972, glMultiTexCoord4sv, glMultiTexCoord4sv, NULL, 407),
+ NAME_FUNC_OFFSET(20994, glCompressedTexImage1D, glCompressedTexImage1D, NULL, 408),
+ NAME_FUNC_OFFSET(21020, glCompressedTexImage2D, glCompressedTexImage2D, NULL, 409),
+ NAME_FUNC_OFFSET(21046, glCompressedTexImage3D, glCompressedTexImage3D, NULL, 410),
+ NAME_FUNC_OFFSET(21072, glCompressedTexImage3D, glCompressedTexImage3D, NULL, 410),
+ NAME_FUNC_OFFSET(21098, glCompressedTexSubImage1D, glCompressedTexSubImage1D, NULL, 411),
+ NAME_FUNC_OFFSET(21127, glCompressedTexSubImage2D, glCompressedTexSubImage2D, NULL, 412),
+ NAME_FUNC_OFFSET(21156, glCompressedTexSubImage3D, glCompressedTexSubImage3D, NULL, 413),
+ NAME_FUNC_OFFSET(21185, glCompressedTexSubImage3D, glCompressedTexSubImage3D, NULL, 413),
+ NAME_FUNC_OFFSET(21214, glGetCompressedTexImage, glGetCompressedTexImage, NULL, 414),
+ NAME_FUNC_OFFSET(21241, glLoadTransposeMatrixd, glLoadTransposeMatrixd, NULL, 415),
+ NAME_FUNC_OFFSET(21267, glLoadTransposeMatrixf, glLoadTransposeMatrixf, NULL, 416),
+ NAME_FUNC_OFFSET(21293, glMultTransposeMatrixd, glMultTransposeMatrixd, NULL, 417),
+ NAME_FUNC_OFFSET(21319, glMultTransposeMatrixf, glMultTransposeMatrixf, NULL, 418),
+ NAME_FUNC_OFFSET(21345, glSampleCoverage, glSampleCoverage, NULL, 419),
+ NAME_FUNC_OFFSET(21365, glBlendFuncSeparate, glBlendFuncSeparate, NULL, 420),
+ NAME_FUNC_OFFSET(21388, glBlendFuncSeparate, glBlendFuncSeparate, NULL, 420),
+ NAME_FUNC_OFFSET(21412, glBlendFuncSeparate, glBlendFuncSeparate, NULL, 420),
+ NAME_FUNC_OFFSET(21435, glFogCoordPointer, glFogCoordPointer, NULL, 421),
+ NAME_FUNC_OFFSET(21456, glFogCoordd, glFogCoordd, NULL, 422),
+ NAME_FUNC_OFFSET(21471, glFogCoorddv, glFogCoorddv, NULL, 423),
+ NAME_FUNC_OFFSET(21487, glMultiDrawArrays, glMultiDrawArrays, NULL, 424),
+ NAME_FUNC_OFFSET(21508, glPointParameterf, glPointParameterf, NULL, 425),
+ NAME_FUNC_OFFSET(21529, glPointParameterf, glPointParameterf, NULL, 425),
+ NAME_FUNC_OFFSET(21550, glPointParameterf, glPointParameterf, NULL, 425),
+ NAME_FUNC_OFFSET(21572, glPointParameterfv, glPointParameterfv, NULL, 426),
+ NAME_FUNC_OFFSET(21594, glPointParameterfv, glPointParameterfv, NULL, 426),
+ NAME_FUNC_OFFSET(21616, glPointParameterfv, glPointParameterfv, NULL, 426),
+ NAME_FUNC_OFFSET(21639, glPointParameteri, glPointParameteri, NULL, 427),
+ NAME_FUNC_OFFSET(21659, glPointParameteriv, glPointParameteriv, NULL, 428),
+ NAME_FUNC_OFFSET(21680, glSecondaryColor3b, glSecondaryColor3b, NULL, 429),
+ NAME_FUNC_OFFSET(21702, glSecondaryColor3bv, glSecondaryColor3bv, NULL, 430),
+ NAME_FUNC_OFFSET(21725, glSecondaryColor3d, glSecondaryColor3d, NULL, 431),
+ NAME_FUNC_OFFSET(21747, glSecondaryColor3dv, glSecondaryColor3dv, NULL, 432),
+ NAME_FUNC_OFFSET(21770, glSecondaryColor3i, glSecondaryColor3i, NULL, 433),
+ NAME_FUNC_OFFSET(21792, glSecondaryColor3iv, glSecondaryColor3iv, NULL, 434),
+ NAME_FUNC_OFFSET(21815, glSecondaryColor3s, glSecondaryColor3s, NULL, 435),
+ NAME_FUNC_OFFSET(21837, glSecondaryColor3sv, glSecondaryColor3sv, NULL, 436),
+ NAME_FUNC_OFFSET(21860, glSecondaryColor3ub, glSecondaryColor3ub, NULL, 437),
+ NAME_FUNC_OFFSET(21883, glSecondaryColor3ubv, glSecondaryColor3ubv, NULL, 438),
+ NAME_FUNC_OFFSET(21907, glSecondaryColor3ui, glSecondaryColor3ui, NULL, 439),
+ NAME_FUNC_OFFSET(21930, glSecondaryColor3uiv, glSecondaryColor3uiv, NULL, 440),
+ NAME_FUNC_OFFSET(21954, glSecondaryColor3us, glSecondaryColor3us, NULL, 441),
+ NAME_FUNC_OFFSET(21977, glSecondaryColor3usv, glSecondaryColor3usv, NULL, 442),
+ NAME_FUNC_OFFSET(22001, glSecondaryColorPointer, glSecondaryColorPointer, NULL, 443),
+ NAME_FUNC_OFFSET(22028, glWindowPos2d, glWindowPos2d, NULL, 444),
+ NAME_FUNC_OFFSET(22045, glWindowPos2d, glWindowPos2d, NULL, 444),
+ NAME_FUNC_OFFSET(22063, glWindowPos2dv, glWindowPos2dv, NULL, 445),
+ NAME_FUNC_OFFSET(22081, glWindowPos2dv, glWindowPos2dv, NULL, 445),
+ NAME_FUNC_OFFSET(22100, glWindowPos2f, glWindowPos2f, NULL, 446),
+ NAME_FUNC_OFFSET(22117, glWindowPos2f, glWindowPos2f, NULL, 446),
+ NAME_FUNC_OFFSET(22135, glWindowPos2fv, glWindowPos2fv, NULL, 447),
+ NAME_FUNC_OFFSET(22153, glWindowPos2fv, glWindowPos2fv, NULL, 447),
+ NAME_FUNC_OFFSET(22172, glWindowPos2i, glWindowPos2i, NULL, 448),
+ NAME_FUNC_OFFSET(22189, glWindowPos2i, glWindowPos2i, NULL, 448),
+ NAME_FUNC_OFFSET(22207, glWindowPos2iv, glWindowPos2iv, NULL, 449),
+ NAME_FUNC_OFFSET(22225, glWindowPos2iv, glWindowPos2iv, NULL, 449),
+ NAME_FUNC_OFFSET(22244, glWindowPos2s, glWindowPos2s, NULL, 450),
+ NAME_FUNC_OFFSET(22261, glWindowPos2s, glWindowPos2s, NULL, 450),
+ NAME_FUNC_OFFSET(22279, glWindowPos2sv, glWindowPos2sv, NULL, 451),
+ NAME_FUNC_OFFSET(22297, glWindowPos2sv, glWindowPos2sv, NULL, 451),
+ NAME_FUNC_OFFSET(22316, glWindowPos3d, glWindowPos3d, NULL, 452),
+ NAME_FUNC_OFFSET(22333, glWindowPos3d, glWindowPos3d, NULL, 452),
+ NAME_FUNC_OFFSET(22351, glWindowPos3dv, glWindowPos3dv, NULL, 453),
+ NAME_FUNC_OFFSET(22369, glWindowPos3dv, glWindowPos3dv, NULL, 453),
+ NAME_FUNC_OFFSET(22388, glWindowPos3f, glWindowPos3f, NULL, 454),
+ NAME_FUNC_OFFSET(22405, glWindowPos3f, glWindowPos3f, NULL, 454),
+ NAME_FUNC_OFFSET(22423, glWindowPos3fv, glWindowPos3fv, NULL, 455),
+ NAME_FUNC_OFFSET(22441, glWindowPos3fv, glWindowPos3fv, NULL, 455),
+ NAME_FUNC_OFFSET(22460, glWindowPos3i, glWindowPos3i, NULL, 456),
+ NAME_FUNC_OFFSET(22477, glWindowPos3i, glWindowPos3i, NULL, 456),
+ NAME_FUNC_OFFSET(22495, glWindowPos3iv, glWindowPos3iv, NULL, 457),
+ NAME_FUNC_OFFSET(22513, glWindowPos3iv, glWindowPos3iv, NULL, 457),
+ NAME_FUNC_OFFSET(22532, glWindowPos3s, glWindowPos3s, NULL, 458),
+ NAME_FUNC_OFFSET(22549, glWindowPos3s, glWindowPos3s, NULL, 458),
+ NAME_FUNC_OFFSET(22567, glWindowPos3sv, glWindowPos3sv, NULL, 459),
+ NAME_FUNC_OFFSET(22585, glWindowPos3sv, glWindowPos3sv, NULL, 459),
+ NAME_FUNC_OFFSET(22604, glBeginQuery, glBeginQuery, NULL, 460),
+ NAME_FUNC_OFFSET(22620, glBindBuffer, glBindBuffer, NULL, 461),
+ NAME_FUNC_OFFSET(22636, glBufferData, glBufferData, NULL, 462),
+ NAME_FUNC_OFFSET(22652, glBufferSubData, glBufferSubData, NULL, 463),
+ NAME_FUNC_OFFSET(22671, glDeleteBuffers, glDeleteBuffers, NULL, 464),
+ NAME_FUNC_OFFSET(22690, glDeleteQueries, glDeleteQueries, NULL, 465),
+ NAME_FUNC_OFFSET(22709, glEndQuery, glEndQuery, NULL, 466),
+ NAME_FUNC_OFFSET(22723, glGenBuffers, glGenBuffers, NULL, 467),
+ NAME_FUNC_OFFSET(22739, glGenQueries, glGenQueries, NULL, 468),
+ NAME_FUNC_OFFSET(22755, glGetBufferParameteriv, glGetBufferParameteriv, NULL, 469),
+ NAME_FUNC_OFFSET(22781, glGetBufferPointerv, glGetBufferPointerv, NULL, 470),
+ NAME_FUNC_OFFSET(22804, glGetBufferPointerv, glGetBufferPointerv, NULL, 470),
+ NAME_FUNC_OFFSET(22827, glGetBufferSubData, glGetBufferSubData, NULL, 471),
+ NAME_FUNC_OFFSET(22849, glGetQueryObjectiv, glGetQueryObjectiv, NULL, 472),
+ NAME_FUNC_OFFSET(22871, glGetQueryObjectuiv, glGetQueryObjectuiv, NULL, 473),
+ NAME_FUNC_OFFSET(22894, glGetQueryiv, glGetQueryiv, NULL, 474),
+ NAME_FUNC_OFFSET(22910, glIsBuffer, glIsBuffer, NULL, 475),
+ NAME_FUNC_OFFSET(22924, glIsQuery, glIsQuery, NULL, 476),
+ NAME_FUNC_OFFSET(22937, glMapBuffer, glMapBuffer, NULL, 477),
+ NAME_FUNC_OFFSET(22952, glMapBuffer, glMapBuffer, NULL, 477),
+ NAME_FUNC_OFFSET(22967, glUnmapBuffer, glUnmapBuffer, NULL, 478),
+ NAME_FUNC_OFFSET(22984, glUnmapBuffer, glUnmapBuffer, NULL, 478),
+ NAME_FUNC_OFFSET(23001, glBindAttribLocation, glBindAttribLocation, NULL, 480),
+ NAME_FUNC_OFFSET(23025, glBlendEquationSeparate, glBlendEquationSeparate, NULL, 481),
+ NAME_FUNC_OFFSET(23052, glBlendEquationSeparate, glBlendEquationSeparate, NULL, 481),
+ NAME_FUNC_OFFSET(23079, glBlendEquationSeparate, glBlendEquationSeparate, NULL, 481),
+ NAME_FUNC_OFFSET(23106, glCompileShader, glCompileShader, NULL, 482),
+ NAME_FUNC_OFFSET(23125, glDisableVertexAttribArray, glDisableVertexAttribArray, NULL, 488),
+ NAME_FUNC_OFFSET(23155, glDrawBuffers, glDrawBuffers, NULL, 489),
+ NAME_FUNC_OFFSET(23172, glDrawBuffers, glDrawBuffers, NULL, 489),
+ NAME_FUNC_OFFSET(23189, glDrawBuffers, glDrawBuffers, NULL, 489),
+ NAME_FUNC_OFFSET(23205, glEnableVertexAttribArray, glEnableVertexAttribArray, NULL, 490),
+ NAME_FUNC_OFFSET(23234, glGetActiveAttrib, glGetActiveAttrib, NULL, 491),
+ NAME_FUNC_OFFSET(23255, glGetActiveUniform, glGetActiveUniform, NULL, 492),
+ NAME_FUNC_OFFSET(23277, glGetAttribLocation, glGetAttribLocation, NULL, 494),
+ NAME_FUNC_OFFSET(23300, glGetShaderSource, glGetShaderSource, NULL, 498),
+ NAME_FUNC_OFFSET(23321, glGetUniformLocation, glGetUniformLocation, NULL, 500),
+ NAME_FUNC_OFFSET(23345, glGetUniformfv, glGetUniformfv, NULL, 501),
+ NAME_FUNC_OFFSET(23363, glGetUniformiv, glGetUniformiv, NULL, 502),
+ NAME_FUNC_OFFSET(23381, glGetVertexAttribPointerv, glGetVertexAttribPointerv, NULL, 503),
+ NAME_FUNC_OFFSET(23410, glGetVertexAttribPointerv, glGetVertexAttribPointerv, NULL, 503),
+ NAME_FUNC_OFFSET(23438, glGetVertexAttribdv, glGetVertexAttribdv, NULL, 504),
+ NAME_FUNC_OFFSET(23461, glGetVertexAttribfv, glGetVertexAttribfv, NULL, 505),
+ NAME_FUNC_OFFSET(23484, glGetVertexAttribiv, glGetVertexAttribiv, NULL, 506),
+ NAME_FUNC_OFFSET(23507, glLinkProgram, glLinkProgram, NULL, 509),
+ NAME_FUNC_OFFSET(23524, glShaderSource, glShaderSource, NULL, 510),
+ NAME_FUNC_OFFSET(23542, glStencilOpSeparate, glStencilOpSeparate, NULL, 513),
+ NAME_FUNC_OFFSET(23565, glUniform1f, glUniform1f, NULL, 514),
+ NAME_FUNC_OFFSET(23580, glUniform1fv, glUniform1fv, NULL, 515),
+ NAME_FUNC_OFFSET(23596, glUniform1i, glUniform1i, NULL, 516),
+ NAME_FUNC_OFFSET(23611, glUniform1iv, glUniform1iv, NULL, 517),
+ NAME_FUNC_OFFSET(23627, glUniform2f, glUniform2f, NULL, 518),
+ NAME_FUNC_OFFSET(23642, glUniform2fv, glUniform2fv, NULL, 519),
+ NAME_FUNC_OFFSET(23658, glUniform2i, glUniform2i, NULL, 520),
+ NAME_FUNC_OFFSET(23673, glUniform2iv, glUniform2iv, NULL, 521),
+ NAME_FUNC_OFFSET(23689, glUniform3f, glUniform3f, NULL, 522),
+ NAME_FUNC_OFFSET(23704, glUniform3fv, glUniform3fv, NULL, 523),
+ NAME_FUNC_OFFSET(23720, glUniform3i, glUniform3i, NULL, 524),
+ NAME_FUNC_OFFSET(23735, glUniform3iv, glUniform3iv, NULL, 525),
+ NAME_FUNC_OFFSET(23751, glUniform4f, glUniform4f, NULL, 526),
+ NAME_FUNC_OFFSET(23766, glUniform4fv, glUniform4fv, NULL, 527),
+ NAME_FUNC_OFFSET(23782, glUniform4i, glUniform4i, NULL, 528),
+ NAME_FUNC_OFFSET(23797, glUniform4iv, glUniform4iv, NULL, 529),
+ NAME_FUNC_OFFSET(23813, glUniformMatrix2fv, glUniformMatrix2fv, NULL, 530),
+ NAME_FUNC_OFFSET(23835, glUniformMatrix3fv, glUniformMatrix3fv, NULL, 531),
+ NAME_FUNC_OFFSET(23857, glUniformMatrix4fv, glUniformMatrix4fv, NULL, 532),
+ NAME_FUNC_OFFSET(23879, glUseProgram, glUseProgram, NULL, 533),
+ NAME_FUNC_OFFSET(23901, glValidateProgram, glValidateProgram, NULL, 534),
+ NAME_FUNC_OFFSET(23922, glVertexAttrib1d, glVertexAttrib1d, NULL, 535),
+ NAME_FUNC_OFFSET(23942, glVertexAttrib1dv, glVertexAttrib1dv, NULL, 536),
+ NAME_FUNC_OFFSET(23963, glVertexAttrib1s, glVertexAttrib1s, NULL, 537),
+ NAME_FUNC_OFFSET(23983, glVertexAttrib1sv, glVertexAttrib1sv, NULL, 538),
+ NAME_FUNC_OFFSET(24004, glVertexAttrib2d, glVertexAttrib2d, NULL, 539),
+ NAME_FUNC_OFFSET(24024, glVertexAttrib2dv, glVertexAttrib2dv, NULL, 540),
+ NAME_FUNC_OFFSET(24045, glVertexAttrib2s, glVertexAttrib2s, NULL, 541),
+ NAME_FUNC_OFFSET(24065, glVertexAttrib2sv, glVertexAttrib2sv, NULL, 542),
+ NAME_FUNC_OFFSET(24086, glVertexAttrib3d, glVertexAttrib3d, NULL, 543),
+ NAME_FUNC_OFFSET(24106, glVertexAttrib3dv, glVertexAttrib3dv, NULL, 544),
+ NAME_FUNC_OFFSET(24127, glVertexAttrib3s, glVertexAttrib3s, NULL, 545),
+ NAME_FUNC_OFFSET(24147, glVertexAttrib3sv, glVertexAttrib3sv, NULL, 546),
+ NAME_FUNC_OFFSET(24168, glVertexAttrib4Nbv, glVertexAttrib4Nbv, NULL, 547),
+ NAME_FUNC_OFFSET(24190, glVertexAttrib4Niv, glVertexAttrib4Niv, NULL, 548),
+ NAME_FUNC_OFFSET(24212, glVertexAttrib4Nsv, glVertexAttrib4Nsv, NULL, 549),
+ NAME_FUNC_OFFSET(24234, glVertexAttrib4Nub, glVertexAttrib4Nub, NULL, 550),
+ NAME_FUNC_OFFSET(24256, glVertexAttrib4Nubv, glVertexAttrib4Nubv, NULL, 551),
+ NAME_FUNC_OFFSET(24279, glVertexAttrib4Nuiv, glVertexAttrib4Nuiv, NULL, 552),
+ NAME_FUNC_OFFSET(24302, glVertexAttrib4Nusv, glVertexAttrib4Nusv, NULL, 553),
+ NAME_FUNC_OFFSET(24325, glVertexAttrib4bv, glVertexAttrib4bv, NULL, 554),
+ NAME_FUNC_OFFSET(24346, glVertexAttrib4d, glVertexAttrib4d, NULL, 555),
+ NAME_FUNC_OFFSET(24366, glVertexAttrib4dv, glVertexAttrib4dv, NULL, 556),
+ NAME_FUNC_OFFSET(24387, glVertexAttrib4iv, glVertexAttrib4iv, NULL, 557),
+ NAME_FUNC_OFFSET(24408, glVertexAttrib4s, glVertexAttrib4s, NULL, 558),
+ NAME_FUNC_OFFSET(24428, glVertexAttrib4sv, glVertexAttrib4sv, NULL, 559),
+ NAME_FUNC_OFFSET(24449, glVertexAttrib4ubv, glVertexAttrib4ubv, NULL, 560),
+ NAME_FUNC_OFFSET(24471, glVertexAttrib4uiv, glVertexAttrib4uiv, NULL, 561),
+ NAME_FUNC_OFFSET(24493, glVertexAttrib4usv, glVertexAttrib4usv, NULL, 562),
+ NAME_FUNC_OFFSET(24515, glVertexAttribPointer, glVertexAttribPointer, NULL, 563),
+ NAME_FUNC_OFFSET(24540, glBeginConditionalRender, glBeginConditionalRender, NULL, 570),
+ NAME_FUNC_OFFSET(24567, glBeginTransformFeedback, glBeginTransformFeedback, NULL, 571),
+ NAME_FUNC_OFFSET(24595, glBindBufferBase, glBindBufferBase, NULL, 572),
+ NAME_FUNC_OFFSET(24615, glBindBufferRange, glBindBufferRange, NULL, 573),
+ NAME_FUNC_OFFSET(24636, glBindFragDataLocation, glBindFragDataLocation, NULL, 574),
+ NAME_FUNC_OFFSET(24662, glClampColor, glClampColor, NULL, 575),
+ NAME_FUNC_OFFSET(24678, glColorMaski, glColorMaski, NULL, 580),
+ NAME_FUNC_OFFSET(24700, glDisablei, glDisablei, NULL, 581),
+ NAME_FUNC_OFFSET(24720, glEnablei, glEnablei, NULL, 582),
+ NAME_FUNC_OFFSET(24739, glEndConditionalRender, glEndConditionalRender, NULL, 583),
+ NAME_FUNC_OFFSET(24764, glEndTransformFeedback, glEndTransformFeedback, NULL, 584),
+ NAME_FUNC_OFFSET(24790, glGetBooleani_v, glGetBooleani_v, NULL, 585),
+ NAME_FUNC_OFFSET(24814, glGetFragDataLocation, glGetFragDataLocation, NULL, 586),
+ NAME_FUNC_OFFSET(24839, glGetIntegeri_v, glGetIntegeri_v, NULL, 587),
+ NAME_FUNC_OFFSET(24863, glGetTexParameterIiv, glGetTexParameterIiv, NULL, 589),
+ NAME_FUNC_OFFSET(24887, glGetTexParameterIuiv, glGetTexParameterIuiv, NULL, 590),
+ NAME_FUNC_OFFSET(24912, glGetTransformFeedbackVarying, glGetTransformFeedbackVarying, NULL, 591),
+ NAME_FUNC_OFFSET(24945, glGetUniformuiv, glGetUniformuiv, NULL, 592),
+ NAME_FUNC_OFFSET(24964, glGetVertexAttribIiv, glGetVertexAttribIiv, NULL, 593),
+ NAME_FUNC_OFFSET(24988, glGetVertexAttribIuiv, glGetVertexAttribIuiv, NULL, 594),
+ NAME_FUNC_OFFSET(25013, glIsEnabledi, glIsEnabledi, NULL, 595),
+ NAME_FUNC_OFFSET(25035, glTexParameterIiv, glTexParameterIiv, NULL, 596),
+ NAME_FUNC_OFFSET(25056, glTexParameterIuiv, glTexParameterIuiv, NULL, 597),
+ NAME_FUNC_OFFSET(25078, glTransformFeedbackVaryings, glTransformFeedbackVaryings, NULL, 598),
+ NAME_FUNC_OFFSET(25109, glUniform1ui, glUniform1ui, NULL, 599),
+ NAME_FUNC_OFFSET(25125, glUniform1uiv, glUniform1uiv, NULL, 600),
+ NAME_FUNC_OFFSET(25142, glUniform2ui, glUniform2ui, NULL, 601),
+ NAME_FUNC_OFFSET(25158, glUniform2uiv, glUniform2uiv, NULL, 602),
+ NAME_FUNC_OFFSET(25175, glUniform3ui, glUniform3ui, NULL, 603),
+ NAME_FUNC_OFFSET(25191, glUniform3uiv, glUniform3uiv, NULL, 604),
+ NAME_FUNC_OFFSET(25208, glUniform4ui, glUniform4ui, NULL, 605),
+ NAME_FUNC_OFFSET(25224, glUniform4uiv, glUniform4uiv, NULL, 606),
+ NAME_FUNC_OFFSET(25241, glVertexAttribI1iv, glVertexAttribI1iv, NULL, 607),
+ NAME_FUNC_OFFSET(25263, glVertexAttribI1uiv, glVertexAttribI1uiv, NULL, 608),
+ NAME_FUNC_OFFSET(25286, glVertexAttribI4bv, glVertexAttribI4bv, NULL, 609),
+ NAME_FUNC_OFFSET(25308, glVertexAttribI4sv, glVertexAttribI4sv, NULL, 610),
+ NAME_FUNC_OFFSET(25330, glVertexAttribI4ubv, glVertexAttribI4ubv, NULL, 611),
+ NAME_FUNC_OFFSET(25353, glVertexAttribI4usv, glVertexAttribI4usv, NULL, 612),
+ NAME_FUNC_OFFSET(25376, glVertexAttribIPointer, glVertexAttribIPointer, NULL, 613),
+ NAME_FUNC_OFFSET(25402, glPrimitiveRestartIndex, glPrimitiveRestartIndex, NULL, 614),
+ NAME_FUNC_OFFSET(25428, glTexBuffer, glTexBuffer, NULL, 615),
+ NAME_FUNC_OFFSET(25443, glFramebufferTexture, glFramebufferTexture, NULL, 616),
+ NAME_FUNC_OFFSET(25467, glVertexAttribDivisor, glVertexAttribDivisor, NULL, 619),
+ NAME_FUNC_OFFSET(25492, glMinSampleShading, glMinSampleShading, NULL, 620),
+ NAME_FUNC_OFFSET(25514, glBindProgramARB, glBindProgramARB, NULL, 621),
+ NAME_FUNC_OFFSET(25530, glDeleteProgramsARB, glDeleteProgramsARB, NULL, 622),
+ NAME_FUNC_OFFSET(25549, glGenProgramsARB, glGenProgramsARB, NULL, 623),
+ NAME_FUNC_OFFSET(25565, glIsProgramARB, glIsProgramARB, NULL, 630),
+ NAME_FUNC_OFFSET(25579, glProgramEnvParameter4dARB, glProgramEnvParameter4dARB, NULL, 631),
+ NAME_FUNC_OFFSET(25602, glProgramEnvParameter4dvARB, glProgramEnvParameter4dvARB, NULL, 632),
+ NAME_FUNC_OFFSET(25626, glProgramEnvParameter4fARB, glProgramEnvParameter4fARB, NULL, 633),
+ NAME_FUNC_OFFSET(25649, glProgramEnvParameter4fvARB, glProgramEnvParameter4fvARB, NULL, 634),
+ NAME_FUNC_OFFSET(25673, glVertexAttrib1fARB, glVertexAttrib1fARB, NULL, 640),
+ NAME_FUNC_OFFSET(25690, glVertexAttrib1fvARB, glVertexAttrib1fvARB, NULL, 641),
+ NAME_FUNC_OFFSET(25708, glVertexAttrib2fARB, glVertexAttrib2fARB, NULL, 642),
+ NAME_FUNC_OFFSET(25725, glVertexAttrib2fvARB, glVertexAttrib2fvARB, NULL, 643),
+ NAME_FUNC_OFFSET(25743, glVertexAttrib3fARB, glVertexAttrib3fARB, NULL, 644),
+ NAME_FUNC_OFFSET(25760, glVertexAttrib3fvARB, glVertexAttrib3fvARB, NULL, 645),
+ NAME_FUNC_OFFSET(25778, glVertexAttrib4fARB, glVertexAttrib4fARB, NULL, 646),
+ NAME_FUNC_OFFSET(25795, glVertexAttrib4fvARB, glVertexAttrib4fvARB, NULL, 647),
+ NAME_FUNC_OFFSET(25813, glDrawArraysInstancedARB, glDrawArraysInstancedARB, NULL, 658),
+ NAME_FUNC_OFFSET(25838, glDrawArraysInstancedARB, glDrawArraysInstancedARB, NULL, 658),
+ NAME_FUNC_OFFSET(25860, glDrawElementsInstancedARB, glDrawElementsInstancedARB, NULL, 659),
+ NAME_FUNC_OFFSET(25887, glDrawElementsInstancedARB, glDrawElementsInstancedARB, NULL, 659),
+ NAME_FUNC_OFFSET(25911, glBindFramebuffer, glBindFramebuffer, NULL, 660),
+ NAME_FUNC_OFFSET(25932, glBindRenderbuffer, glBindRenderbuffer, NULL, 661),
+ NAME_FUNC_OFFSET(25954, glBlitFramebuffer, glBlitFramebuffer, NULL, 662),
+ NAME_FUNC_OFFSET(25975, glCheckFramebufferStatus, glCheckFramebufferStatus, NULL, 663),
+ NAME_FUNC_OFFSET(26003, glCheckFramebufferStatus, glCheckFramebufferStatus, NULL, 663),
+ NAME_FUNC_OFFSET(26031, glDeleteFramebuffers, glDeleteFramebuffers, NULL, 664),
+ NAME_FUNC_OFFSET(26055, glDeleteFramebuffers, glDeleteFramebuffers, NULL, 664),
+ NAME_FUNC_OFFSET(26079, glDeleteRenderbuffers, glDeleteRenderbuffers, NULL, 665),
+ NAME_FUNC_OFFSET(26104, glDeleteRenderbuffers, glDeleteRenderbuffers, NULL, 665),
+ NAME_FUNC_OFFSET(26129, glFramebufferRenderbuffer, glFramebufferRenderbuffer, NULL, 666),
+ NAME_FUNC_OFFSET(26158, glFramebufferRenderbuffer, glFramebufferRenderbuffer, NULL, 666),
+ NAME_FUNC_OFFSET(26187, glFramebufferTexture1D, glFramebufferTexture1D, NULL, 667),
+ NAME_FUNC_OFFSET(26213, glFramebufferTexture2D, glFramebufferTexture2D, NULL, 668),
+ NAME_FUNC_OFFSET(26239, glFramebufferTexture2D, glFramebufferTexture2D, NULL, 668),
+ NAME_FUNC_OFFSET(26265, glFramebufferTexture3D, glFramebufferTexture3D, NULL, 669),
+ NAME_FUNC_OFFSET(26291, glFramebufferTexture3D, glFramebufferTexture3D, NULL, 669),
+ NAME_FUNC_OFFSET(26317, glFramebufferTextureLayer, glFramebufferTextureLayer, NULL, 670),
+ NAME_FUNC_OFFSET(26346, glFramebufferTextureLayer, glFramebufferTextureLayer, NULL, 670),
+ NAME_FUNC_OFFSET(26375, glGenFramebuffers, glGenFramebuffers, NULL, 671),
+ NAME_FUNC_OFFSET(26396, glGenFramebuffers, glGenFramebuffers, NULL, 671),
+ NAME_FUNC_OFFSET(26417, glGenRenderbuffers, glGenRenderbuffers, NULL, 672),
+ NAME_FUNC_OFFSET(26439, glGenRenderbuffers, glGenRenderbuffers, NULL, 672),
+ NAME_FUNC_OFFSET(26461, glGenerateMipmap, glGenerateMipmap, NULL, 673),
+ NAME_FUNC_OFFSET(26481, glGenerateMipmap, glGenerateMipmap, NULL, 673),
+ NAME_FUNC_OFFSET(26501, glGetFramebufferAttachmentParameteriv, glGetFramebufferAttachmentParameteriv, NULL, 674),
+ NAME_FUNC_OFFSET(26542, glGetFramebufferAttachmentParameteriv, glGetFramebufferAttachmentParameteriv, NULL, 674),
+ NAME_FUNC_OFFSET(26583, glGetRenderbufferParameteriv, glGetRenderbufferParameteriv, NULL, 675),
+ NAME_FUNC_OFFSET(26615, glGetRenderbufferParameteriv, glGetRenderbufferParameteriv, NULL, 675),
+ NAME_FUNC_OFFSET(26647, glIsFramebuffer, glIsFramebuffer, NULL, 676),
+ NAME_FUNC_OFFSET(26666, glIsFramebuffer, glIsFramebuffer, NULL, 676),
+ NAME_FUNC_OFFSET(26685, glIsRenderbuffer, glIsRenderbuffer, NULL, 677),
+ NAME_FUNC_OFFSET(26705, glIsRenderbuffer, glIsRenderbuffer, NULL, 677),
+ NAME_FUNC_OFFSET(26725, glRenderbufferStorage, glRenderbufferStorage, NULL, 678),
+ NAME_FUNC_OFFSET(26750, glRenderbufferStorage, glRenderbufferStorage, NULL, 678),
+ NAME_FUNC_OFFSET(26775, glRenderbufferStorageMultisample, glRenderbufferStorageMultisample, NULL, 679),
+ NAME_FUNC_OFFSET(26811, glFlushMappedBufferRange, glFlushMappedBufferRange, NULL, 681),
+ NAME_FUNC_OFFSET(26839, glMapBufferRange, glMapBufferRange, NULL, 682),
+ NAME_FUNC_OFFSET(26859, glBindVertexArray, glBindVertexArray, NULL, 683),
+ NAME_FUNC_OFFSET(26880, glDeleteVertexArrays, glDeleteVertexArrays, NULL, 684),
+ NAME_FUNC_OFFSET(26906, glDeleteVertexArrays, glDeleteVertexArrays, NULL, 684),
+ NAME_FUNC_OFFSET(26930, glGenVertexArrays, glGenVertexArrays, NULL, 685),
+ NAME_FUNC_OFFSET(26951, glIsVertexArray, glIsVertexArray, NULL, 686),
+ NAME_FUNC_OFFSET(26972, glIsVertexArray, glIsVertexArray, NULL, 686),
+ NAME_FUNC_OFFSET(26991, glProvokingVertex, glProvokingVertex, NULL, 706),
+ NAME_FUNC_OFFSET(27012, glBlendEquationSeparateiARB, glBlendEquationSeparateiARB, NULL, 711),
+ NAME_FUNC_OFFSET(27046, glBlendEquationiARB, glBlendEquationiARB, NULL, 712),
+ NAME_FUNC_OFFSET(27072, glBlendFuncSeparateiARB, glBlendFuncSeparateiARB, NULL, 713),
+ NAME_FUNC_OFFSET(27102, glBlendFunciARB, glBlendFunciARB, NULL, 714),
+ NAME_FUNC_OFFSET(27124, gl_dispatch_stub_731, gl_dispatch_stub_731, NULL, 731),
+ NAME_FUNC_OFFSET(27148, gl_dispatch_stub_732, gl_dispatch_stub_732, NULL, 732),
+ NAME_FUNC_OFFSET(27173, glClearDepthf, glClearDepthf, NULL, 783),
+ NAME_FUNC_OFFSET(27190, glDepthRangef, glDepthRangef, NULL, 784),
+ NAME_FUNC_OFFSET(27207, glGetProgramBinary, glGetProgramBinary, NULL, 788),
+ NAME_FUNC_OFFSET(27229, glProgramBinary, glProgramBinary, NULL, 789),
+ NAME_FUNC_OFFSET(27248, glProgramParameteri, glProgramParameteri, NULL, 790),
+ NAME_FUNC_OFFSET(27271, gl_dispatch_stub_854, gl_dispatch_stub_854, NULL, 854),
+ NAME_FUNC_OFFSET(27287, gl_dispatch_stub_855, gl_dispatch_stub_855, NULL, 855),
+ NAME_FUNC_OFFSET(27306, glSecondaryColor3fEXT, glSecondaryColor3fEXT, NULL, 875),
+ NAME_FUNC_OFFSET(27325, glSecondaryColor3fvEXT, glSecondaryColor3fvEXT, NULL, 876),
+ NAME_FUNC_OFFSET(27345, glMultiDrawElementsEXT, glMultiDrawElementsEXT, NULL, 877),
+ NAME_FUNC_OFFSET(27365, glFogCoordfEXT, glFogCoordfEXT, NULL, 878),
+ NAME_FUNC_OFFSET(27377, glFogCoordfvEXT, glFogCoordfvEXT, NULL, 879),
+ NAME_FUNC_OFFSET(27390, glVertexAttribI1iEXT, glVertexAttribI1iEXT, NULL, 982),
+ NAME_FUNC_OFFSET(27408, glVertexAttribI1uiEXT, glVertexAttribI1uiEXT, NULL, 983),
+ NAME_FUNC_OFFSET(27427, glVertexAttribI2iEXT, glVertexAttribI2iEXT, NULL, 984),
+ NAME_FUNC_OFFSET(27445, glVertexAttribI2ivEXT, glVertexAttribI2ivEXT, NULL, 985),
+ NAME_FUNC_OFFSET(27464, glVertexAttribI2uiEXT, glVertexAttribI2uiEXT, NULL, 986),
+ NAME_FUNC_OFFSET(27483, glVertexAttribI2uivEXT, glVertexAttribI2uivEXT, NULL, 987),
+ NAME_FUNC_OFFSET(27503, glVertexAttribI3iEXT, glVertexAttribI3iEXT, NULL, 988),
+ NAME_FUNC_OFFSET(27521, glVertexAttribI3ivEXT, glVertexAttribI3ivEXT, NULL, 989),
+ NAME_FUNC_OFFSET(27540, glVertexAttribI3uiEXT, glVertexAttribI3uiEXT, NULL, 990),
+ NAME_FUNC_OFFSET(27559, glVertexAttribI3uivEXT, glVertexAttribI3uivEXT, NULL, 991),
+ NAME_FUNC_OFFSET(27579, glVertexAttribI4iEXT, glVertexAttribI4iEXT, NULL, 992),
+ NAME_FUNC_OFFSET(27597, glVertexAttribI4ivEXT, glVertexAttribI4ivEXT, NULL, 993),
+ NAME_FUNC_OFFSET(27616, glVertexAttribI4uiEXT, glVertexAttribI4uiEXT, NULL, 994),
+ NAME_FUNC_OFFSET(27635, glVertexAttribI4uivEXT, glVertexAttribI4uivEXT, NULL, 995),
+ NAME_FUNC_OFFSET(27655, gl_dispatch_stub_1032, gl_dispatch_stub_1032, NULL, 1032),
+ NAME_FUNC_OFFSET(27671, gl_dispatch_stub_1033, gl_dispatch_stub_1033, NULL, 1033),
+ NAME_FUNC_OFFSET(27688, gl_dispatch_stub_1034, gl_dispatch_stub_1034, NULL, 1034),
+ NAME_FUNC_OFFSET(27705, gl_dispatch_stub_1035, gl_dispatch_stub_1035, NULL, 1035),
+ NAME_FUNC_OFFSET(27718, gl_dispatch_stub_1036, gl_dispatch_stub_1036, NULL, 1036),
+ NAME_FUNC_OFFSET(27735, gl_dispatch_stub_1037, gl_dispatch_stub_1037, NULL, 1037),
+ NAME_FUNC_OFFSET(27745, gl_dispatch_stub_1038, gl_dispatch_stub_1038, NULL, 1038),
+ NAME_FUNC_OFFSET(27756, gl_dispatch_stub_1039, gl_dispatch_stub_1039, NULL, 1039),
+ NAME_FUNC_OFFSET(27770, gl_dispatch_stub_1040, gl_dispatch_stub_1040, NULL, 1040),
+ NAME_FUNC_OFFSET(27784, gl_dispatch_stub_1041, gl_dispatch_stub_1041, NULL, 1041),
+ NAME_FUNC_OFFSET(27801, gl_dispatch_stub_1042, gl_dispatch_stub_1042, NULL, 1042),
+ NAME_FUNC_OFFSET(27819, gl_dispatch_stub_1043, gl_dispatch_stub_1043, NULL, 1043),
+ NAME_FUNC_OFFSET(27831, gl_dispatch_stub_1044, gl_dispatch_stub_1044, NULL, 1044),
+ NAME_FUNC_OFFSET(27844, gl_dispatch_stub_1045, gl_dispatch_stub_1045, NULL, 1045),
+ NAME_FUNC_OFFSET(27860, gl_dispatch_stub_1046, gl_dispatch_stub_1046, NULL, 1046),
+ NAME_FUNC_OFFSET(27877, gl_dispatch_stub_1047, gl_dispatch_stub_1047, NULL, 1047),
+ NAME_FUNC_OFFSET(27892, gl_dispatch_stub_1048, gl_dispatch_stub_1048, NULL, 1048),
+ NAME_FUNC_OFFSET(27908, gl_dispatch_stub_1049, gl_dispatch_stub_1049, NULL, 1049),
+ NAME_FUNC_OFFSET(27925, gl_dispatch_stub_1050, gl_dispatch_stub_1050, NULL, 1050),
+ NAME_FUNC_OFFSET(27946, gl_dispatch_stub_1051, gl_dispatch_stub_1051, NULL, 1051),
+ NAME_FUNC_OFFSET(27960, gl_dispatch_stub_1052, gl_dispatch_stub_1052, NULL, 1052),
+ NAME_FUNC_OFFSET(27972, gl_dispatch_stub_1053, gl_dispatch_stub_1053, NULL, 1053),
+ NAME_FUNC_OFFSET(27984, gl_dispatch_stub_1054, gl_dispatch_stub_1054, NULL, 1054),
+ NAME_FUNC_OFFSET(28000, gl_dispatch_stub_1055, gl_dispatch_stub_1055, NULL, 1055),
+ NAME_FUNC_OFFSET(28020, gl_dispatch_stub_1056, gl_dispatch_stub_1056, NULL, 1056),
+ NAME_FUNC_OFFSET(28033, gl_dispatch_stub_1057, gl_dispatch_stub_1057, NULL, 1057),
+ NAME_FUNC_OFFSET(28054, gl_dispatch_stub_1058, gl_dispatch_stub_1058, NULL, 1058),
+ NAME_FUNC_OFFSET(28066, gl_dispatch_stub_1059, gl_dispatch_stub_1059, NULL, 1059),
+ NAME_FUNC_OFFSET(28079, gl_dispatch_stub_1060, gl_dispatch_stub_1060, NULL, 1060),
+ NAME_FUNC_OFFSET(28093, gl_dispatch_stub_1061, gl_dispatch_stub_1061, NULL, 1061),
+ NAME_FUNC_OFFSET(28112, gl_dispatch_stub_1062, gl_dispatch_stub_1062, NULL, 1062),
+ NAME_FUNC_OFFSET(28128, gl_dispatch_stub_1063, gl_dispatch_stub_1063, NULL, 1063),
+ NAME_FUNC_OFFSET(28144, gl_dispatch_stub_1064, gl_dispatch_stub_1064, NULL, 1064),
+ NAME_FUNC_OFFSET(28160, gl_dispatch_stub_1065, gl_dispatch_stub_1065, NULL, 1065),
+ NAME_FUNC_OFFSET(28179, gl_dispatch_stub_1066, gl_dispatch_stub_1066, NULL, 1066),
+ NAME_FUNC_OFFSET(28198, gl_dispatch_stub_1067, gl_dispatch_stub_1067, NULL, 1067),
+ NAME_FUNC_OFFSET(28213, gl_dispatch_stub_1068, gl_dispatch_stub_1068, NULL, 1068),
+ NAME_FUNC_OFFSET(28229, gl_dispatch_stub_1069, gl_dispatch_stub_1069, NULL, 1069),
+ NAME_FUNC_OFFSET(28248, gl_dispatch_stub_1070, gl_dispatch_stub_1070, NULL, 1070),
+ NAME_FUNC_OFFSET(28265, gl_dispatch_stub_1071, gl_dispatch_stub_1071, NULL, 1071),
+ NAME_FUNC_OFFSET(28288, gl_dispatch_stub_1072, gl_dispatch_stub_1072, NULL, 1072),
+ NAME_FUNC_OFFSET(28309, gl_dispatch_stub_1073, gl_dispatch_stub_1073, NULL, 1073),
+ NAME_FUNC_OFFSET(28331, gl_dispatch_stub_1074, gl_dispatch_stub_1074, NULL, 1074),
NAME_FUNC_OFFSET(-1, NULL, NULL, NULL, 0)
};
diff --git a/xorg-server/glx/remap_helper.h b/xorg-server/glx/remap_helper.h
index bc8bb2014..7a23f84d8 100644
--- a/xorg-server/glx/remap_helper.h
+++ b/xorg-server/glx/remap_helper.h
@@ -1003,4699 +1003,4723 @@ static const char _mesa_function_pool[] =
"ff\0"
"glPolygonOffsetEXT\0"
"\0"
- /* _mesa_function_pool[7011]: VertexAttribI4uivEXT (will be remapped) */
- "ip\0"
- "glVertexAttribI4uivEXT\0"
- "glVertexAttribI4uiv\0"
+ /* _mesa_function_pool[7011]: WindowPos4dvMESA (will be remapped) */
+ "p\0"
+ "glWindowPos4dvMESA\0"
"\0"
- /* _mesa_function_pool[7058]: Scalex (will be remapped) */
+ /* _mesa_function_pool[7033]: Scalex (will be remapped) */
"iii\0"
"glScalexOES\0"
"glScalex\0"
"\0"
- /* _mesa_function_pool[7084]: PollAsyncSGIX (dynamic) */
+ /* _mesa_function_pool[7059]: PollAsyncSGIX (dynamic) */
"p\0"
"glPollAsyncSGIX\0"
"\0"
- /* _mesa_function_pool[7103]: WindowPos3sv (will be remapped) */
+ /* _mesa_function_pool[7078]: WindowPos3sv (will be remapped) */
"p\0"
"glWindowPos3sv\0"
"glWindowPos3svARB\0"
"glWindowPos3svMESA\0"
"\0"
- /* _mesa_function_pool[7158]: DeleteFragmentShaderATI (will be remapped) */
+ /* _mesa_function_pool[7133]: DeleteFragmentShaderATI (will be remapped) */
"i\0"
"glDeleteFragmentShaderATI\0"
"\0"
- /* _mesa_function_pool[7187]: Scaled (offset 301) */
+ /* _mesa_function_pool[7162]: Scaled (offset 301) */
"ddd\0"
"glScaled\0"
"\0"
- /* _mesa_function_pool[7201]: TangentPointerEXT (dynamic) */
+ /* _mesa_function_pool[7176]: TangentPointerEXT (dynamic) */
"iip\0"
"glTangentPointerEXT\0"
"\0"
- /* _mesa_function_pool[7226]: Scalef (offset 302) */
+ /* _mesa_function_pool[7201]: Scalef (offset 302) */
"fff\0"
"glScalef\0"
"\0"
- /* _mesa_function_pool[7240]: IndexPointerEXT (will be remapped) */
+ /* _mesa_function_pool[7215]: IndexPointerEXT (will be remapped) */
"iiip\0"
"glIndexPointerEXT\0"
"\0"
- /* _mesa_function_pool[7264]: VertexAttribI1iv (will be remapped) */
+ /* _mesa_function_pool[7239]: VertexAttribI1iv (will be remapped) */
"ip\0"
"glVertexAttribI1ivEXT\0"
"glVertexAttribI1iv\0"
"\0"
- /* _mesa_function_pool[7309]: ListParameterfvSGIX (dynamic) */
+ /* _mesa_function_pool[7284]: ListParameterfvSGIX (dynamic) */
"iip\0"
"glListParameterfvSGIX\0"
"\0"
- /* _mesa_function_pool[7336]: ColorFragmentOp1ATI (will be remapped) */
+ /* _mesa_function_pool[7311]: ColorFragmentOp1ATI (will be remapped) */
"iiiiiii\0"
"glColorFragmentOp1ATI\0"
"\0"
- /* _mesa_function_pool[7367]: GetUniformfv (will be remapped) */
+ /* _mesa_function_pool[7342]: GetUniformfv (will be remapped) */
"iip\0"
"glGetUniformfv\0"
"glGetUniformfvARB\0"
"\0"
- /* _mesa_function_pool[7405]: ObjectUnpurgeableAPPLE (will be remapped) */
+ /* _mesa_function_pool[7380]: ObjectUnpurgeableAPPLE (will be remapped) */
"iii\0"
"glObjectUnpurgeableAPPLE\0"
"\0"
- /* _mesa_function_pool[7435]: AlphaFunc (offset 240) */
+ /* _mesa_function_pool[7410]: AlphaFunc (offset 240) */
"if\0"
"glAlphaFunc\0"
"\0"
- /* _mesa_function_pool[7451]: ColorFragmentOp2ATI (will be remapped) */
+ /* _mesa_function_pool[7426]: ColorFragmentOp2ATI (will be remapped) */
"iiiiiiiiii\0"
"glColorFragmentOp2ATI\0"
"\0"
- /* _mesa_function_pool[7485]: IsShader (will be remapped) */
+ /* _mesa_function_pool[7460]: IsShader (will be remapped) */
"i\0"
"glIsShader\0"
"\0"
- /* _mesa_function_pool[7499]: EdgeFlag (offset 41) */
+ /* _mesa_function_pool[7474]: EdgeFlag (offset 41) */
"i\0"
"glEdgeFlag\0"
"\0"
- /* _mesa_function_pool[7513]: TexCoord2iv (offset 107) */
+ /* _mesa_function_pool[7488]: TexCoord2iv (offset 107) */
"p\0"
"glTexCoord2iv\0"
"\0"
- /* _mesa_function_pool[7530]: TexImage2DMultisample (will be remapped) */
+ /* _mesa_function_pool[7505]: TexImage2DMultisample (will be remapped) */
"iiiiii\0"
"glTexImage2DMultisample\0"
"\0"
- /* _mesa_function_pool[7562]: Rotated (offset 299) */
+ /* _mesa_function_pool[7537]: Rotated (offset 299) */
"dddd\0"
"glRotated\0"
"\0"
- /* _mesa_function_pool[7578]: VertexAttrib2sNV (will be remapped) */
+ /* _mesa_function_pool[7553]: VertexAttrib2sNV (will be remapped) */
"iii\0"
"glVertexAttrib2sNV\0"
"\0"
- /* _mesa_function_pool[7602]: ReadPixels (offset 256) */
+ /* _mesa_function_pool[7577]: ReadPixels (offset 256) */
"iiiiiip\0"
"glReadPixels\0"
"\0"
- /* _mesa_function_pool[7624]: EdgeFlagv (offset 42) */
+ /* _mesa_function_pool[7599]: EdgeFlagv (offset 42) */
"p\0"
"glEdgeFlagv\0"
"\0"
- /* _mesa_function_pool[7639]: NormalPointerListIBM (dynamic) */
+ /* _mesa_function_pool[7614]: NormalPointerListIBM (dynamic) */
"iipi\0"
"glNormalPointerListIBM\0"
"\0"
- /* _mesa_function_pool[7668]: CompressedTexSubImage1D (will be remapped) */
+ /* _mesa_function_pool[7643]: CompressedTexSubImage1D (will be remapped) */
"iiiiiip\0"
"glCompressedTexSubImage1D\0"
"glCompressedTexSubImage1DARB\0"
"\0"
- /* _mesa_function_pool[7732]: QueryCounter (will be remapped) */
+ /* _mesa_function_pool[7707]: QueryCounter (will be remapped) */
"ii\0"
"glQueryCounter\0"
"\0"
- /* _mesa_function_pool[7751]: Color4iv (offset 32) */
+ /* _mesa_function_pool[7726]: Color4iv (offset 32) */
"p\0"
"glColor4iv\0"
"\0"
- /* _mesa_function_pool[7765]: DebugMessageCallback (will be remapped) */
+ /* _mesa_function_pool[7740]: DebugMessageCallback (will be remapped) */
"pp\0"
"glDebugMessageCallback\0"
"\0"
- /* _mesa_function_pool[7792]: TexParameterf (offset 178) */
+ /* _mesa_function_pool[7767]: TexParameterf (offset 178) */
"iif\0"
"glTexParameterf\0"
"\0"
- /* _mesa_function_pool[7813]: TexParameteri (offset 180) */
+ /* _mesa_function_pool[7788]: TexParameteri (offset 180) */
"iii\0"
"glTexParameteri\0"
"\0"
- /* _mesa_function_pool[7834]: NormalPointerEXT (will be remapped) */
+ /* _mesa_function_pool[7809]: NormalPointerEXT (will be remapped) */
"iiip\0"
"glNormalPointerEXT\0"
"\0"
- /* _mesa_function_pool[7859]: GetTransformFeedbackVarying (will be remapped) */
+ /* _mesa_function_pool[7834]: GetTransformFeedbackVarying (will be remapped) */
"iiipppp\0"
"glGetTransformFeedbackVarying\0"
"glGetTransformFeedbackVaryingEXT\0"
"\0"
- /* _mesa_function_pool[7931]: GetUniformiv (will be remapped) */
+ /* _mesa_function_pool[7906]: GetUniformiv (will be remapped) */
"iip\0"
"glGetUniformiv\0"
"glGetUniformivARB\0"
"\0"
- /* _mesa_function_pool[7969]: DrawPixels (offset 257) */
+ /* _mesa_function_pool[7944]: DrawPixels (offset 257) */
"iiiip\0"
"glDrawPixels\0"
"\0"
- /* _mesa_function_pool[7989]: ReplacementCodeuiTexCoord2fNormal3fVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[7964]: ReplacementCodeuiTexCoord2fNormal3fVertex3fSUN (dynamic) */
"iffffffff\0"
"glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[8049]: DepthRangex (will be remapped) */
+ /* _mesa_function_pool[8024]: DepthRangex (will be remapped) */
"ii\0"
"glDepthRangexOES\0"
"glDepthRangex\0"
"\0"
- /* _mesa_function_pool[8084]: ImageTransformParameterivHP (dynamic) */
+ /* _mesa_function_pool[8059]: ImageTransformParameterivHP (dynamic) */
"iip\0"
"glImageTransformParameterivHP\0"
"\0"
- /* _mesa_function_pool[8119]: VDPAUFiniNV (will be remapped) */
+ /* _mesa_function_pool[8094]: VDPAUFiniNV (will be remapped) */
"\0"
"glVDPAUFiniNV\0"
"\0"
- /* _mesa_function_pool[8135]: DrawTransformFeedback (will be remapped) */
+ /* _mesa_function_pool[8110]: DrawTransformFeedback (will be remapped) */
"ii\0"
"glDrawTransformFeedback\0"
"\0"
- /* _mesa_function_pool[8163]: DrawElementsInstancedARB (will be remapped) */
+ /* _mesa_function_pool[8138]: DrawElementsInstancedARB (will be remapped) */
"iiipi\0"
"glDrawElementsInstancedARB\0"
"glDrawElementsInstancedEXT\0"
"glDrawElementsInstanced\0"
"\0"
- /* _mesa_function_pool[8248]: MultiTexCoord3sv (offset 399) */
+ /* _mesa_function_pool[8223]: MultiTexCoord3sv (offset 399) */
"ip\0"
"glMultiTexCoord3sv\0"
"glMultiTexCoord3svARB\0"
"\0"
- /* _mesa_function_pool[8293]: EndConditionalRender (will be remapped) */
- "\0"
- "glEndConditionalRender\0"
- "glEndConditionalRenderNV\0"
+ /* _mesa_function_pool[8268]: VertexAttribBinding (will be remapped) */
+ "ii\0"
+ "glVertexAttribBinding\0"
"\0"
- /* _mesa_function_pool[8343]: WeightivARB (dynamic) */
+ /* _mesa_function_pool[8294]: WeightivARB (dynamic) */
"ip\0"
"glWeightivARB\0"
"\0"
- /* _mesa_function_pool[8361]: GlobalAlphaFactordSUN (dynamic) */
+ /* _mesa_function_pool[8312]: GlobalAlphaFactordSUN (dynamic) */
"d\0"
"glGlobalAlphaFactordSUN\0"
"\0"
- /* _mesa_function_pool[8388]: GetFinalCombinerInputParameterfvNV (dynamic) */
+ /* _mesa_function_pool[8339]: GetFinalCombinerInputParameterfvNV (dynamic) */
"iip\0"
"glGetFinalCombinerInputParameterfvNV\0"
"\0"
- /* _mesa_function_pool[8430]: GenLists (offset 5) */
+ /* _mesa_function_pool[8381]: GenLists (offset 5) */
"i\0"
"glGenLists\0"
"\0"
- /* _mesa_function_pool[8444]: DepthRangef (will be remapped) */
+ /* _mesa_function_pool[8395]: DepthRangef (will be remapped) */
"ff\0"
"glDepthRangef\0"
"glDepthRangefOES\0"
"\0"
- /* _mesa_function_pool[8479]: Color3fVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[8430]: Color3fVertex3fvSUN (dynamic) */
"pp\0"
"glColor3fVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[8505]: SampleCoveragex (will be remapped) */
+ /* _mesa_function_pool[8456]: SampleCoveragex (will be remapped) */
"ii\0"
"glSampleCoveragexOES\0"
"glSampleCoveragex\0"
"\0"
- /* _mesa_function_pool[8548]: GetMapAttribParameterivNV (dynamic) */
+ /* _mesa_function_pool[8499]: GetMapAttribParameterivNV (dynamic) */
"iiip\0"
"glGetMapAttribParameterivNV\0"
"\0"
- /* _mesa_function_pool[8582]: GetCombinerInputParameterfvNV (dynamic) */
+ /* _mesa_function_pool[8533]: GetCombinerInputParameterfvNV (dynamic) */
"iiiip\0"
"glGetCombinerInputParameterfvNV\0"
"\0"
- /* _mesa_function_pool[8621]: GetSharpenTexFuncSGIS (dynamic) */
+ /* _mesa_function_pool[8572]: GetSharpenTexFuncSGIS (dynamic) */
"ip\0"
"glGetSharpenTexFuncSGIS\0"
"\0"
- /* _mesa_function_pool[8649]: PixelTransformParameterfvEXT (dynamic) */
+ /* _mesa_function_pool[8600]: PixelTransformParameterfvEXT (dynamic) */
"iip\0"
"glPixelTransformParameterfvEXT\0"
"\0"
- /* _mesa_function_pool[8685]: MapGrid2d (offset 226) */
+ /* _mesa_function_pool[8636]: MapGrid2d (offset 226) */
"iddidd\0"
"glMapGrid2d\0"
"\0"
- /* _mesa_function_pool[8705]: MapGrid2f (offset 227) */
+ /* _mesa_function_pool[8656]: MapGrid2f (offset 227) */
"iffiff\0"
"glMapGrid2f\0"
"\0"
- /* _mesa_function_pool[8725]: SampleMapATI (will be remapped) */
+ /* _mesa_function_pool[8676]: SampleMapATI (will be remapped) */
"iii\0"
"glSampleMapATI\0"
"\0"
- /* _mesa_function_pool[8745]: ValidateProgram (will be remapped) */
+ /* _mesa_function_pool[8696]: ValidateProgram (will be remapped) */
"i\0"
"glValidateProgram\0"
"glValidateProgramARB\0"
"\0"
- /* _mesa_function_pool[8787]: VertexPointerEXT (will be remapped) */
+ /* _mesa_function_pool[8738]: VertexPointerEXT (will be remapped) */
"iiiip\0"
"glVertexPointerEXT\0"
"\0"
- /* _mesa_function_pool[8813]: GetTexFilterFuncSGIS (dynamic) */
+ /* _mesa_function_pool[8764]: GetTexFilterFuncSGIS (dynamic) */
"iip\0"
"glGetTexFilterFuncSGIS\0"
"\0"
- /* _mesa_function_pool[8841]: VertexAttribI4sv (will be remapped) */
+ /* _mesa_function_pool[8792]: VertexAttribI4sv (will be remapped) */
"ip\0"
"glVertexAttribI4svEXT\0"
"glVertexAttribI4sv\0"
"\0"
- /* _mesa_function_pool[8886]: Scissor (offset 176) */
+ /* _mesa_function_pool[8837]: Scissor (offset 176) */
"iiii\0"
"glScissor\0"
"\0"
- /* _mesa_function_pool[8902]: Fogf (offset 153) */
+ /* _mesa_function_pool[8853]: Fogf (offset 153) */
"if\0"
"glFogf\0"
"\0"
- /* _mesa_function_pool[8913]: ReplacementCodeubvSUN (dynamic) */
+ /* _mesa_function_pool[8864]: ReplacementCodeubvSUN (dynamic) */
"p\0"
"glReplacementCodeubvSUN\0"
"\0"
- /* _mesa_function_pool[8940]: TexSubImage1D (offset 332) */
+ /* _mesa_function_pool[8891]: TexSubImage1D (offset 332) */
"iiiiiip\0"
"glTexSubImage1D\0"
"glTexSubImage1DEXT\0"
"\0"
- /* _mesa_function_pool[8984]: BeginTransformFeedback (will be remapped) */
+ /* _mesa_function_pool[8935]: BeginTransformFeedback (will be remapped) */
"i\0"
"glBeginTransformFeedback\0"
"glBeginTransformFeedbackEXT\0"
"\0"
- /* _mesa_function_pool[9040]: FenceSync (will be remapped) */
+ /* _mesa_function_pool[8991]: FenceSync (will be remapped) */
"ii\0"
"glFenceSync\0"
"\0"
- /* _mesa_function_pool[9056]: Color4usv (offset 40) */
+ /* _mesa_function_pool[9007]: Color4usv (offset 40) */
"p\0"
"glColor4usv\0"
"\0"
- /* _mesa_function_pool[9071]: GetnUniformfvARB (will be remapped) */
+ /* _mesa_function_pool[9022]: GetnUniformfvARB (will be remapped) */
"iiip\0"
"glGetnUniformfvARB\0"
"\0"
- /* _mesa_function_pool[9096]: Fogi (offset 155) */
+ /* _mesa_function_pool[9047]: Fogi (offset 155) */
"ii\0"
"glFogi\0"
"\0"
- /* _mesa_function_pool[9107]: DepthRange (offset 288) */
+ /* _mesa_function_pool[9058]: DepthRange (offset 288) */
"dd\0"
"glDepthRange\0"
"\0"
- /* _mesa_function_pool[9124]: RasterPos3iv (offset 75) */
+ /* _mesa_function_pool[9075]: RasterPos3iv (offset 75) */
"p\0"
"glRasterPos3iv\0"
"\0"
- /* _mesa_function_pool[9142]: ColorMaski (will be remapped) */
+ /* _mesa_function_pool[9093]: ColorMaski (will be remapped) */
"iiiii\0"
"glColorMaskIndexedEXT\0"
"glColorMaski\0"
"\0"
- /* _mesa_function_pool[9184]: GetActiveAttrib (will be remapped) */
+ /* _mesa_function_pool[9135]: GetActiveAttrib (will be remapped) */
"iiipppp\0"
"glGetActiveAttrib\0"
"glGetActiveAttribARB\0"
"\0"
- /* _mesa_function_pool[9232]: TexCoord2i (offset 106) */
+ /* _mesa_function_pool[9183]: TexCoord2i (offset 106) */
"ii\0"
"glTexCoord2i\0"
"\0"
- /* _mesa_function_pool[9249]: PixelMapfv (offset 251) */
+ /* _mesa_function_pool[9200]: PixelMapfv (offset 251) */
"iip\0"
"glPixelMapfv\0"
"\0"
- /* _mesa_function_pool[9267]: Color4ui (offset 37) */
+ /* _mesa_function_pool[9218]: Color4ui (offset 37) */
"iiii\0"
"glColor4ui\0"
"\0"
- /* _mesa_function_pool[9284]: RasterPos3s (offset 76) */
+ /* _mesa_function_pool[9235]: RasterPos3s (offset 76) */
"iii\0"
"glRasterPos3s\0"
"\0"
- /* _mesa_function_pool[9303]: Color3usv (offset 24) */
+ /* _mesa_function_pool[9254]: Color3usv (offset 24) */
"p\0"
"glColor3usv\0"
"\0"
- /* _mesa_function_pool[9318]: MultiTexCoord2iv (offset 389) */
+ /* _mesa_function_pool[9269]: MultiTexCoord2iv (offset 389) */
"ip\0"
"glMultiTexCoord2iv\0"
"glMultiTexCoord2ivARB\0"
"\0"
- /* _mesa_function_pool[9363]: TexCoord2f (offset 104) */
+ /* _mesa_function_pool[9314]: TexCoord2f (offset 104) */
"ff\0"
"glTexCoord2f\0"
"\0"
- /* _mesa_function_pool[9380]: ReplacementCodeuiTexCoord2fVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[9331]: ReplacementCodeuiTexCoord2fVertex3fSUN (dynamic) */
"ifffff\0"
"glReplacementCodeuiTexCoord2fVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[9429]: TexCoord2d (offset 102) */
+ /* _mesa_function_pool[9380]: TexCoord2d (offset 102) */
"dd\0"
"glTexCoord2d\0"
"\0"
- /* _mesa_function_pool[9446]: RasterPos3d (offset 70) */
+ /* _mesa_function_pool[9397]: RasterPos3d (offset 70) */
"ddd\0"
"glRasterPos3d\0"
"\0"
- /* _mesa_function_pool[9465]: RasterPos3f (offset 72) */
+ /* _mesa_function_pool[9416]: RasterPos3f (offset 72) */
"fff\0"
"glRasterPos3f\0"
"\0"
- /* _mesa_function_pool[9484]: AreTexturesResident (offset 322) */
+ /* _mesa_function_pool[9435]: AreTexturesResident (offset 322) */
"ipp\0"
"glAreTexturesResident\0"
"glAreTexturesResidentEXT\0"
"\0"
- /* _mesa_function_pool[9536]: DrawElementsInstancedBaseVertexBaseInstance (will be remapped) */
+ /* _mesa_function_pool[9487]: DrawElementsInstancedBaseVertexBaseInstance (will be remapped) */
"iiipiii\0"
"glDrawElementsInstancedBaseVertexBaseInstance\0"
"\0"
- /* _mesa_function_pool[9591]: TexCoord2s (offset 108) */
+ /* _mesa_function_pool[9542]: TexCoord2s (offset 108) */
"ii\0"
"glTexCoord2s\0"
"\0"
- /* _mesa_function_pool[9608]: StencilOpSeparate (will be remapped) */
+ /* _mesa_function_pool[9559]: StencilOpSeparate (will be remapped) */
"iiii\0"
"glStencilOpSeparate\0"
"glStencilOpSeparateATI\0"
"\0"
- /* _mesa_function_pool[9657]: ColorTableParameteriv (offset 341) */
+ /* _mesa_function_pool[9608]: ColorTableParameteriv (offset 341) */
"iip\0"
"glColorTableParameteriv\0"
"glColorTableParameterivSGI\0"
"\0"
- /* _mesa_function_pool[9713]: VertexAttribP2ui (will be remapped) */
+ /* _mesa_function_pool[9664]: VertexAttribP2ui (will be remapped) */
"iiii\0"
"glVertexAttribP2ui\0"
"\0"
- /* _mesa_function_pool[9738]: GenSamplers (will be remapped) */
+ /* _mesa_function_pool[9689]: GenSamplers (will be remapped) */
"ip\0"
"glGenSamplers\0"
"\0"
- /* _mesa_function_pool[9756]: Color4us (offset 39) */
+ /* _mesa_function_pool[9707]: Color4us (offset 39) */
"iiii\0"
"glColor4us\0"
"\0"
- /* _mesa_function_pool[9773]: Color3bv (offset 10) */
+ /* _mesa_function_pool[9724]: Color3bv (offset 10) */
"p\0"
"glColor3bv\0"
"\0"
- /* _mesa_function_pool[9787]: GetnCompressedTexImageARB (will be remapped) */
+ /* _mesa_function_pool[9738]: GetnCompressedTexImageARB (will be remapped) */
"iiip\0"
"glGetnCompressedTexImageARB\0"
"\0"
- /* _mesa_function_pool[9821]: DrawTransformFeedbackStreamInstanced (will be remapped) */
+ /* _mesa_function_pool[9772]: DrawTransformFeedbackStreamInstanced (will be remapped) */
"iiii\0"
"glDrawTransformFeedbackStreamInstanced\0"
"\0"
- /* _mesa_function_pool[9866]: VertexAttrib2fvARB (will be remapped) */
+ /* _mesa_function_pool[9817]: VertexAttrib2fvARB (will be remapped) */
"ip\0"
"glVertexAttrib2fv\0"
"glVertexAttrib2fvARB\0"
"\0"
- /* _mesa_function_pool[9909]: VertexPointerListIBM (dynamic) */
+ /* _mesa_function_pool[9860]: VertexPointerListIBM (dynamic) */
"iiipi\0"
"glVertexPointerListIBM\0"
"\0"
- /* _mesa_function_pool[9939]: GetProgramLocalParameterfvARB (will be remapped) */
+ /* _mesa_function_pool[9890]: GetProgramLocalParameterfvARB (will be remapped) */
"iip\0"
"glGetProgramLocalParameterfvARB\0"
"\0"
- /* _mesa_function_pool[9976]: FragmentMaterialfSGIX (dynamic) */
+ /* _mesa_function_pool[9927]: FragmentMaterialfSGIX (dynamic) */
"iif\0"
"glFragmentMaterialfSGIX\0"
"\0"
- /* _mesa_function_pool[10005]: BindSampler (will be remapped) */
+ /* _mesa_function_pool[9956]: BindSampler (will be remapped) */
"ii\0"
"glBindSampler\0"
"\0"
- /* _mesa_function_pool[10023]: GetUniformuiv (will be remapped) */
+ /* _mesa_function_pool[9974]: GetUniformuiv (will be remapped) */
"iip\0"
"glGetUniformuivEXT\0"
"glGetUniformuiv\0"
"\0"
- /* _mesa_function_pool[10063]: BindBufferOffsetEXT (will be remapped) */
+ /* _mesa_function_pool[10014]: BindBufferOffsetEXT (will be remapped) */
"iiii\0"
"glBindBufferOffsetEXT\0"
"\0"
- /* _mesa_function_pool[10091]: IsFenceNV (dynamic) */
+ /* _mesa_function_pool[10042]: IsFenceNV (dynamic) */
"i\0"
"glIsFenceNV\0"
"\0"
- /* _mesa_function_pool[10106]: ColorPointerListIBM (dynamic) */
+ /* _mesa_function_pool[10057]: ColorPointerListIBM (dynamic) */
"iiipi\0"
"glColorPointerListIBM\0"
"\0"
- /* _mesa_function_pool[10135]: AttachObjectARB (will be remapped) */
+ /* _mesa_function_pool[10086]: AttachObjectARB (will be remapped) */
"ii\0"
"glAttachObjectARB\0"
"\0"
- /* _mesa_function_pool[10157]: GetFragmentLightivSGIX (dynamic) */
+ /* _mesa_function_pool[10108]: GetFragmentLightivSGIX (dynamic) */
"iip\0"
"glGetFragmentLightivSGIX\0"
"\0"
- /* _mesa_function_pool[10187]: MultiTexCoord2fARB (offset 386) */
+ /* _mesa_function_pool[10138]: MultiTexCoord2fARB (offset 386) */
"iff\0"
"glMultiTexCoord2f\0"
"glMultiTexCoord2fARB\0"
"\0"
- /* _mesa_function_pool[10231]: ColorTable (offset 339) */
+ /* _mesa_function_pool[10182]: ColorTable (offset 339) */
"iiiiip\0"
"glColorTable\0"
"glColorTableSGI\0"
"glColorTableEXT\0"
"\0"
- /* _mesa_function_pool[10284]: IndexPointer (offset 314) */
+ /* _mesa_function_pool[10235]: IndexPointer (offset 314) */
"iip\0"
"glIndexPointer\0"
"\0"
- /* _mesa_function_pool[10304]: Accum (offset 213) */
+ /* _mesa_function_pool[10255]: Accum (offset 213) */
"if\0"
"glAccum\0"
"\0"
- /* _mesa_function_pool[10316]: GetTexImage (offset 281) */
+ /* _mesa_function_pool[10267]: GetTexImage (offset 281) */
"iiiip\0"
"glGetTexImage\0"
"\0"
- /* _mesa_function_pool[10337]: MapControlPointsNV (dynamic) */
+ /* _mesa_function_pool[10288]: MapControlPointsNV (dynamic) */
"iiiiiiiip\0"
"glMapControlPointsNV\0"
"\0"
- /* _mesa_function_pool[10369]: ConvolutionFilter2D (offset 349) */
+ /* _mesa_function_pool[10320]: ConvolutionFilter2D (offset 349) */
"iiiiiip\0"
"glConvolutionFilter2D\0"
"glConvolutionFilter2DEXT\0"
"\0"
- /* _mesa_function_pool[10425]: TexParameterIiv (will be remapped) */
+ /* _mesa_function_pool[10376]: TexParameterIiv (will be remapped) */
"iip\0"
"glTexParameterIivEXT\0"
"glTexParameterIiv\0"
"\0"
- /* _mesa_function_pool[10469]: Finish (offset 216) */
+ /* _mesa_function_pool[10420]: Finish (offset 216) */
"\0"
"glFinish\0"
"\0"
- /* _mesa_function_pool[10480]: MapParameterfvNV (dynamic) */
+ /* _mesa_function_pool[10431]: MapParameterfvNV (dynamic) */
"iip\0"
"glMapParameterfvNV\0"
"\0"
- /* _mesa_function_pool[10504]: ClearStencil (offset 207) */
+ /* _mesa_function_pool[10455]: ClearStencil (offset 207) */
"i\0"
"glClearStencil\0"
"\0"
- /* _mesa_function_pool[10522]: Color4x (will be remapped) */
+ /* _mesa_function_pool[10473]: Color4x (will be remapped) */
"iiii\0"
"glColor4xOES\0"
"glColor4x\0"
"\0"
- /* _mesa_function_pool[10551]: HintPGI (dynamic) */
+ /* _mesa_function_pool[10502]: HintPGI (dynamic) */
"ii\0"
"glHintPGI\0"
"\0"
- /* _mesa_function_pool[10565]: ConvolutionParameteriv (offset 353) */
+ /* _mesa_function_pool[10516]: ConvolutionParameteriv (offset 353) */
"iip\0"
"glConvolutionParameteriv\0"
"glConvolutionParameterivEXT\0"
"\0"
- /* _mesa_function_pool[10623]: Color4s (offset 33) */
+ /* _mesa_function_pool[10574]: Color4s (offset 33) */
"iiii\0"
"glColor4s\0"
"\0"
- /* _mesa_function_pool[10639]: InterleavedArrays (offset 317) */
+ /* _mesa_function_pool[10590]: InterleavedArrays (offset 317) */
"iip\0"
"glInterleavedArrays\0"
"\0"
- /* _mesa_function_pool[10664]: RasterPos2fv (offset 65) */
+ /* _mesa_function_pool[10615]: RasterPos2fv (offset 65) */
"p\0"
"glRasterPos2fv\0"
"\0"
- /* _mesa_function_pool[10682]: TexCoord1fv (offset 97) */
+ /* _mesa_function_pool[10633]: TexCoord1fv (offset 97) */
"p\0"
"glTexCoord1fv\0"
"\0"
- /* _mesa_function_pool[10699]: Vertex2d (offset 126) */
+ /* _mesa_function_pool[10650]: Vertex2d (offset 126) */
"dd\0"
"glVertex2d\0"
"\0"
- /* _mesa_function_pool[10714]: CullParameterdvEXT (dynamic) */
+ /* _mesa_function_pool[10665]: CullParameterdvEXT (dynamic) */
"ip\0"
"glCullParameterdvEXT\0"
"\0"
- /* _mesa_function_pool[10739]: ProgramNamedParameter4fNV (will be remapped) */
+ /* _mesa_function_pool[10690]: ProgramNamedParameter4fNV (will be remapped) */
"iipffff\0"
"glProgramNamedParameter4fNV\0"
"\0"
- /* _mesa_function_pool[10776]: Orthof (will be remapped) */
+ /* _mesa_function_pool[10727]: Orthof (will be remapped) */
"ffffff\0"
"glOrthofOES\0"
"glOrthof\0"
"\0"
- /* _mesa_function_pool[10805]: MultiTexCoord4dv (offset 401) */
+ /* _mesa_function_pool[10756]: MultiTexCoord4dv (offset 401) */
"ip\0"
"glMultiTexCoord4dv\0"
"glMultiTexCoord4dvARB\0"
"\0"
- /* _mesa_function_pool[10850]: ProgramEnvParameter4fvARB (will be remapped) */
+ /* _mesa_function_pool[10801]: ProgramEnvParameter4fvARB (will be remapped) */
"iip\0"
"glProgramEnvParameter4fvARB\0"
"glProgramParameter4fvNV\0"
"\0"
- /* _mesa_function_pool[10907]: Color4i (offset 31) */
+ /* _mesa_function_pool[10858]: Color4i (offset 31) */
"iiii\0"
"glColor4i\0"
"\0"
- /* _mesa_function_pool[10923]: Color4f (offset 29) */
+ /* _mesa_function_pool[10874]: Color4f (offset 29) */
"ffff\0"
"glColor4f\0"
"\0"
- /* _mesa_function_pool[10939]: RasterPos4fv (offset 81) */
+ /* _mesa_function_pool[10890]: RasterPos4fv (offset 81) */
"p\0"
"glRasterPos4fv\0"
"\0"
- /* _mesa_function_pool[10957]: Color4d (offset 27) */
+ /* _mesa_function_pool[10908]: Color4d (offset 27) */
"dddd\0"
"glColor4d\0"
"\0"
- /* _mesa_function_pool[10973]: ClearIndex (offset 205) */
+ /* _mesa_function_pool[10924]: ClearIndex (offset 205) */
"f\0"
"glClearIndex\0"
"\0"
- /* _mesa_function_pool[10989]: Color4b (offset 25) */
+ /* _mesa_function_pool[10940]: Color4b (offset 25) */
"iiii\0"
"glColor4b\0"
"\0"
- /* _mesa_function_pool[11005]: LoadMatrixd (offset 292) */
+ /* _mesa_function_pool[10956]: LoadMatrixd (offset 292) */
"p\0"
"glLoadMatrixd\0"
"\0"
- /* _mesa_function_pool[11022]: FragmentLightModeliSGIX (dynamic) */
+ /* _mesa_function_pool[10973]: FragmentLightModeliSGIX (dynamic) */
"ii\0"
"glFragmentLightModeliSGIX\0"
"\0"
- /* _mesa_function_pool[11052]: RasterPos2dv (offset 63) */
+ /* _mesa_function_pool[11003]: RasterPos2dv (offset 63) */
"p\0"
"glRasterPos2dv\0"
"\0"
- /* _mesa_function_pool[11070]: ConvolutionParameterfv (offset 351) */
+ /* _mesa_function_pool[11021]: ConvolutionParameterfv (offset 351) */
"iip\0"
"glConvolutionParameterfv\0"
"glConvolutionParameterfvEXT\0"
"\0"
- /* _mesa_function_pool[11128]: TbufferMask3DFX (dynamic) */
+ /* _mesa_function_pool[11079]: TbufferMask3DFX (dynamic) */
"i\0"
"glTbufferMask3DFX\0"
"\0"
- /* _mesa_function_pool[11149]: VDPAURegisterOutputSurfaceNV (will be remapped) */
+ /* _mesa_function_pool[11100]: VDPAURegisterOutputSurfaceNV (will be remapped) */
"piip\0"
"glVDPAURegisterOutputSurfaceNV\0"
"\0"
- /* _mesa_function_pool[11186]: GetTexGendv (offset 278) */
+ /* _mesa_function_pool[11137]: GetTexGendv (offset 278) */
"iip\0"
"glGetTexGendv\0"
"\0"
- /* _mesa_function_pool[11205]: FragmentLightModelfSGIX (dynamic) */
+ /* _mesa_function_pool[11156]: FragmentLightModelfSGIX (dynamic) */
"if\0"
"glFragmentLightModelfSGIX\0"
"\0"
- /* _mesa_function_pool[11235]: LoadProgramNV (will be remapped) */
+ /* _mesa_function_pool[11186]: LoadProgramNV (will be remapped) */
"iiip\0"
"glLoadProgramNV\0"
"\0"
- /* _mesa_function_pool[11257]: EndList (offset 1) */
+ /* _mesa_function_pool[11208]: EndList (offset 1) */
"\0"
"glEndList\0"
"\0"
- /* _mesa_function_pool[11269]: VertexP4ui (will be remapped) */
+ /* _mesa_function_pool[11220]: VertexP4ui (will be remapped) */
"ii\0"
"glVertexP4ui\0"
"\0"
- /* _mesa_function_pool[11286]: MultiTexCoordP1ui (will be remapped) */
+ /* _mesa_function_pool[11237]: MultiTexCoordP1ui (will be remapped) */
"iii\0"
"glMultiTexCoordP1ui\0"
"\0"
- /* _mesa_function_pool[11311]: GetAttachedObjectsARB (will be remapped) */
+ /* _mesa_function_pool[11262]: GetAttachedObjectsARB (will be remapped) */
"iipp\0"
"glGetAttachedObjectsARB\0"
"\0"
- /* _mesa_function_pool[11341]: EvalCoord1fv (offset 231) */
+ /* _mesa_function_pool[11292]: EvalCoord1fv (offset 231) */
"p\0"
"glEvalCoord1fv\0"
"\0"
- /* _mesa_function_pool[11359]: DrawRangeElements (offset 338) */
+ /* _mesa_function_pool[11310]: DrawRangeElements (offset 338) */
"iiiiip\0"
"glDrawRangeElements\0"
"glDrawRangeElementsEXT\0"
"\0"
- /* _mesa_function_pool[11410]: EvalMesh2 (offset 238) */
+ /* _mesa_function_pool[11361]: EvalMesh2 (offset 238) */
"iiiii\0"
"glEvalMesh2\0"
"\0"
- /* _mesa_function_pool[11429]: TexCoordPointerListIBM (dynamic) */
+ /* _mesa_function_pool[11380]: TexCoordPointerListIBM (dynamic) */
"iiipi\0"
"glTexCoordPointerListIBM\0"
"\0"
- /* _mesa_function_pool[11461]: Vertex4fv (offset 145) */
+ /* _mesa_function_pool[11412]: Vertex4fv (offset 145) */
"p\0"
"glVertex4fv\0"
"\0"
- /* _mesa_function_pool[11476]: GenTransformFeedbacks (will be remapped) */
+ /* _mesa_function_pool[11427]: VertexAttribLFormat (will be remapped) */
+ "iiii\0"
+ "glVertexAttribLFormat\0"
+ "\0"
+ /* _mesa_function_pool[11455]: GenTransformFeedbacks (will be remapped) */
"ip\0"
"glGenTransformFeedbacks\0"
"\0"
- /* _mesa_function_pool[11504]: SpriteParameterfvSGIX (dynamic) */
+ /* _mesa_function_pool[11483]: SpriteParameterfvSGIX (dynamic) */
"ip\0"
"glSpriteParameterfvSGIX\0"
"\0"
- /* _mesa_function_pool[11532]: VertexAttribs3fvNV (will be remapped) */
+ /* _mesa_function_pool[11511]: VertexAttribs3fvNV (will be remapped) */
"iip\0"
"glVertexAttribs3fvNV\0"
"\0"
- /* _mesa_function_pool[11558]: GlobalAlphaFactoruiSUN (dynamic) */
+ /* _mesa_function_pool[11537]: GlobalAlphaFactoruiSUN (dynamic) */
"i\0"
"glGlobalAlphaFactoruiSUN\0"
"\0"
- /* _mesa_function_pool[11586]: GetHandleARB (will be remapped) */
+ /* _mesa_function_pool[11565]: GetHandleARB (will be remapped) */
"i\0"
"glGetHandleARB\0"
"\0"
- /* _mesa_function_pool[11604]: DebugMessageControlARB (will be remapped) */
+ /* _mesa_function_pool[11583]: DebugMessageControlARB (will be remapped) */
"iiiipi\0"
"glDebugMessageControlARB\0"
"\0"
- /* _mesa_function_pool[11637]: DrawTexfvOES (will be remapped) */
+ /* _mesa_function_pool[11616]: DrawTexfvOES (will be remapped) */
"p\0"
"glDrawTexfvOES\0"
"\0"
- /* _mesa_function_pool[11655]: BlendFunciARB (will be remapped) */
+ /* _mesa_function_pool[11634]: BlendFunciARB (will be remapped) */
"iii\0"
"glBlendFunciARB\0"
"glBlendFuncIndexedAMD\0"
"\0"
- /* _mesa_function_pool[11698]: GetProgramEnvParameterdvARB (will be remapped) */
+ /* _mesa_function_pool[11677]: GetProgramEnvParameterdvARB (will be remapped) */
"iip\0"
"glGetProgramEnvParameterdvARB\0"
"\0"
- /* _mesa_function_pool[11733]: GetnUniformivARB (will be remapped) */
+ /* _mesa_function_pool[11712]: GetnUniformivARB (will be remapped) */
"iiip\0"
"glGetnUniformivARB\0"
"\0"
- /* _mesa_function_pool[11758]: ClearColorIiEXT (will be remapped) */
+ /* _mesa_function_pool[11737]: ClearColorIiEXT (will be remapped) */
"iiii\0"
"glClearColorIiEXT\0"
"\0"
- /* _mesa_function_pool[11782]: BindFramebuffer (will be remapped) */
+ /* _mesa_function_pool[11761]: BindFramebuffer (will be remapped) */
"ii\0"
"glBindFramebuffer\0"
"glBindFramebufferOES\0"
"\0"
- /* _mesa_function_pool[11825]: CreateProgram (will be remapped) */
+ /* _mesa_function_pool[11804]: CreateProgram (will be remapped) */
"\0"
"glCreateProgram\0"
"\0"
- /* _mesa_function_pool[11843]: ReleaseShaderCompiler (will be remapped) */
+ /* _mesa_function_pool[11822]: ReleaseShaderCompiler (will be remapped) */
"\0"
"glReleaseShaderCompiler\0"
"\0"
- /* _mesa_function_pool[11869]: GetMinmax (offset 364) */
+ /* _mesa_function_pool[11848]: GetMinmax (offset 364) */
"iiiip\0"
"glGetMinmax\0"
"glGetMinmaxEXT\0"
"\0"
- /* _mesa_function_pool[11903]: BlendFuncSeparate (will be remapped) */
+ /* _mesa_function_pool[11882]: BlendFuncSeparate (will be remapped) */
"iiii\0"
"glBlendFuncSeparate\0"
"glBlendFuncSeparateEXT\0"
"glBlendFuncSeparateINGR\0"
"glBlendFuncSeparateOES\0"
"\0"
- /* _mesa_function_pool[11999]: StencilFuncSeparate (will be remapped) */
+ /* _mesa_function_pool[11978]: StencilFuncSeparate (will be remapped) */
"iiii\0"
"glStencilFuncSeparate\0"
"\0"
- /* _mesa_function_pool[12027]: ShaderSource (will be remapped) */
+ /* _mesa_function_pool[12006]: ShaderSource (will be remapped) */
"iipp\0"
"glShaderSource\0"
"glShaderSourceARB\0"
"\0"
- /* _mesa_function_pool[12066]: GetInteger64i_v (will be remapped) */
+ /* _mesa_function_pool[12045]: GetInteger64i_v (will be remapped) */
"iip\0"
"glGetInteger64i_v\0"
"\0"
- /* _mesa_function_pool[12089]: GetVertexAttribdvNV (will be remapped) */
+ /* _mesa_function_pool[12068]: GetVertexAttribdvNV (will be remapped) */
"iip\0"
"glGetVertexAttribdvNV\0"
"\0"
- /* _mesa_function_pool[12116]: DeleteTransformFeedbacks (will be remapped) */
+ /* _mesa_function_pool[12095]: DeleteTransformFeedbacks (will be remapped) */
"ip\0"
"glDeleteTransformFeedbacks\0"
"\0"
- /* _mesa_function_pool[12147]: Normal3fv (offset 57) */
+ /* _mesa_function_pool[12126]: Normal3fv (offset 57) */
"p\0"
"glNormal3fv\0"
"\0"
- /* _mesa_function_pool[12162]: GlobalAlphaFactorbSUN (dynamic) */
+ /* _mesa_function_pool[12141]: GlobalAlphaFactorbSUN (dynamic) */
"i\0"
"glGlobalAlphaFactorbSUN\0"
"\0"
- /* _mesa_function_pool[12189]: Color3us (offset 23) */
+ /* _mesa_function_pool[12168]: Color3us (offset 23) */
"iii\0"
"glColor3us\0"
"\0"
- /* _mesa_function_pool[12205]: ImageTransformParameterfvHP (dynamic) */
+ /* _mesa_function_pool[12184]: ImageTransformParameterfvHP (dynamic) */
"iip\0"
"glImageTransformParameterfvHP\0"
"\0"
- /* _mesa_function_pool[12240]: NormalP3ui (will be remapped) */
+ /* _mesa_function_pool[12219]: NormalP3ui (will be remapped) */
"ii\0"
"glNormalP3ui\0"
"\0"
- /* _mesa_function_pool[12257]: End (offset 43) */
+ /* _mesa_function_pool[12236]: End (offset 43) */
"\0"
"glEnd\0"
"\0"
- /* _mesa_function_pool[12265]: VertexAttribs3svNV (will be remapped) */
+ /* _mesa_function_pool[12244]: VertexAttribs3svNV (will be remapped) */
"iip\0"
"glVertexAttribs3svNV\0"
"\0"
- /* _mesa_function_pool[12291]: MultiTexCoordP3uiv (will be remapped) */
+ /* _mesa_function_pool[12270]: VertexAttribFormat (will be remapped) */
+ "iiiii\0"
+ "glVertexAttribFormat\0"
+ "\0"
+ /* _mesa_function_pool[12298]: MultiTexCoordP3uiv (will be remapped) */
"iip\0"
"glMultiTexCoordP3uiv\0"
"\0"
- /* _mesa_function_pool[12317]: VertexAttribs2dvNV (will be remapped) */
+ /* _mesa_function_pool[12324]: VertexAttribs2dvNV (will be remapped) */
"iip\0"
"glVertexAttribs2dvNV\0"
"\0"
- /* _mesa_function_pool[12343]: MultiTexCoord3fvARB (offset 395) */
+ /* _mesa_function_pool[12350]: MultiTexCoord3fvARB (offset 395) */
"ip\0"
"glMultiTexCoord3fv\0"
"glMultiTexCoord3fvARB\0"
"\0"
- /* _mesa_function_pool[12388]: Color3ub (offset 19) */
+ /* _mesa_function_pool[12395]: Color3ub (offset 19) */
"iii\0"
"glColor3ub\0"
"\0"
- /* _mesa_function_pool[12404]: GetProgramParameterfvNV (will be remapped) */
+ /* _mesa_function_pool[12411]: GetProgramParameterfvNV (will be remapped) */
"iiip\0"
"glGetProgramParameterfvNV\0"
"\0"
- /* _mesa_function_pool[12436]: GetActiveUniformsiv (will be remapped) */
+ /* _mesa_function_pool[12443]: GetActiveUniformsiv (will be remapped) */
"iipip\0"
"glGetActiveUniformsiv\0"
"\0"
- /* _mesa_function_pool[12465]: BindBuffer (will be remapped) */
+ /* _mesa_function_pool[12472]: BindBuffer (will be remapped) */
"ii\0"
"glBindBuffer\0"
"glBindBufferARB\0"
"\0"
- /* _mesa_function_pool[12498]: GetInstrumentsSGIX (dynamic) */
+ /* _mesa_function_pool[12505]: GetInstrumentsSGIX (dynamic) */
"\0"
"glGetInstrumentsSGIX\0"
"\0"
- /* _mesa_function_pool[12521]: DrawTexxOES (will be remapped) */
+ /* _mesa_function_pool[12528]: DrawTexxOES (will be remapped) */
"iiiii\0"
"glDrawTexxOES\0"
"\0"
- /* _mesa_function_pool[12542]: VertexAttrib2sv (will be remapped) */
+ /* _mesa_function_pool[12549]: VertexAttrib2sv (will be remapped) */
"ip\0"
"glVertexAttrib2sv\0"
"glVertexAttrib2svARB\0"
"\0"
- /* _mesa_function_pool[12585]: Color3ui (offset 21) */
+ /* _mesa_function_pool[12592]: Color3ui (offset 21) */
"iii\0"
"glColor3ui\0"
"\0"
- /* _mesa_function_pool[12601]: EvalMapsNV (dynamic) */
+ /* _mesa_function_pool[12608]: EvalMapsNV (dynamic) */
"ii\0"
"glEvalMapsNV\0"
"\0"
- /* _mesa_function_pool[12618]: DrawTexxvOES (will be remapped) */
+ /* _mesa_function_pool[12625]: DrawTexxvOES (will be remapped) */
"p\0"
"glDrawTexxvOES\0"
"\0"
- /* _mesa_function_pool[12636]: TexSubImage2D (offset 333) */
+ /* _mesa_function_pool[12643]: TexSubImage2D (offset 333) */
"iiiiiiiip\0"
"glTexSubImage2D\0"
"glTexSubImage2DEXT\0"
"\0"
- /* _mesa_function_pool[12682]: FragmentLightivSGIX (dynamic) */
+ /* _mesa_function_pool[12689]: FragmentLightivSGIX (dynamic) */
"iip\0"
"glFragmentLightivSGIX\0"
"\0"
- /* _mesa_function_pool[12709]: IndexPointerListIBM (dynamic) */
+ /* _mesa_function_pool[12716]: IndexPointerListIBM (dynamic) */
"iipi\0"
"glIndexPointerListIBM\0"
"\0"
- /* _mesa_function_pool[12737]: GetTexParameterPointervAPPLE (dynamic) */
+ /* _mesa_function_pool[12744]: GetTexParameterPointervAPPLE (dynamic) */
"iip\0"
"glGetTexParameterPointervAPPLE\0"
"\0"
- /* _mesa_function_pool[12773]: TexGenfv (offset 191) */
+ /* _mesa_function_pool[12780]: TexGenfv (offset 191) */
"iip\0"
"glTexGenfv\0"
"glTexGenfvOES\0"
"\0"
- /* _mesa_function_pool[12803]: VertexAttrib1dNV (will be remapped) */
+ /* _mesa_function_pool[12810]: VertexAttrib1dNV (will be remapped) */
"id\0"
"glVertexAttrib1dNV\0"
"\0"
- /* _mesa_function_pool[12826]: VertexAttrib4dvNV (will be remapped) */
+ /* _mesa_function_pool[12833]: VertexAttrib4dvNV (will be remapped) */
"ip\0"
"glVertexAttrib4dvNV\0"
"\0"
- /* _mesa_function_pool[12850]: GetVertexAttribiv (will be remapped) */
+ /* _mesa_function_pool[12857]: GetVertexAttribiv (will be remapped) */
"iip\0"
"glGetVertexAttribiv\0"
"glGetVertexAttribivARB\0"
"\0"
- /* _mesa_function_pool[12898]: QueryMatrixxOES (will be remapped) */
+ /* _mesa_function_pool[12905]: QueryMatrixxOES (will be remapped) */
"pp\0"
"glQueryMatrixxOES\0"
"\0"
- /* _mesa_function_pool[12920]: ShaderBinary (will be remapped) */
+ /* _mesa_function_pool[12927]: ShaderBinary (will be remapped) */
"ipipi\0"
"glShaderBinary\0"
"\0"
- /* _mesa_function_pool[12942]: TexCoordP2uiv (will be remapped) */
+ /* _mesa_function_pool[12949]: TexCoordP2uiv (will be remapped) */
"ip\0"
"glTexCoordP2uiv\0"
"\0"
- /* _mesa_function_pool[12962]: FragmentMaterialfvSGIX (dynamic) */
+ /* _mesa_function_pool[12969]: FragmentMaterialfvSGIX (dynamic) */
"iip\0"
"glFragmentMaterialfvSGIX\0"
"\0"
- /* _mesa_function_pool[12992]: GetFragmentMaterialivSGIX (dynamic) */
+ /* _mesa_function_pool[12999]: GetFragmentMaterialivSGIX (dynamic) */
"iip\0"
"glGetFragmentMaterialivSGIX\0"
"\0"
- /* _mesa_function_pool[13025]: WindowPos4dMESA (will be remapped) */
+ /* _mesa_function_pool[13032]: WindowPos4dMESA (will be remapped) */
"dddd\0"
"glWindowPos4dMESA\0"
"\0"
- /* _mesa_function_pool[13049]: DrawBuffers (will be remapped) */
+ /* _mesa_function_pool[13056]: DrawBuffers (will be remapped) */
"ip\0"
"glDrawBuffers\0"
"glDrawBuffersARB\0"
"glDrawBuffersATI\0"
"glDrawBuffersNV\0"
"\0"
- /* _mesa_function_pool[13117]: Lightxv (will be remapped) */
+ /* _mesa_function_pool[13124]: Lightxv (will be remapped) */
"iip\0"
"glLightxvOES\0"
"glLightxv\0"
"\0"
- /* _mesa_function_pool[13145]: Uniform3fv (will be remapped) */
+ /* _mesa_function_pool[13152]: Uniform3fv (will be remapped) */
"iip\0"
"glUniform3fv\0"
"glUniform3fvARB\0"
"\0"
- /* _mesa_function_pool[13179]: BlendEquation (offset 337) */
+ /* _mesa_function_pool[13186]: BlendEquation (offset 337) */
"i\0"
"glBlendEquation\0"
"glBlendEquationEXT\0"
"glBlendEquationOES\0"
"\0"
- /* _mesa_function_pool[13236]: VertexAttrib3dNV (will be remapped) */
+ /* _mesa_function_pool[13243]: VertexAttrib3dNV (will be remapped) */
"iddd\0"
"glVertexAttrib3dNV\0"
"\0"
- /* _mesa_function_pool[13261]: Normal3x (will be remapped) */
+ /* _mesa_function_pool[13268]: Normal3x (will be remapped) */
"iii\0"
"glNormal3xOES\0"
"glNormal3x\0"
"\0"
- /* _mesa_function_pool[13291]: ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[13298]: ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN (dynamic) */
"ppppp\0"
"glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[13355]: VertexAttrib4fARB (will be remapped) */
+ /* _mesa_function_pool[13362]: VertexAttrib4fARB (will be remapped) */
"iffff\0"
"glVertexAttrib4f\0"
"glVertexAttrib4fARB\0"
"\0"
- /* _mesa_function_pool[13399]: GetPerfMonitorGroupStringAMD (will be remapped) */
+ /* _mesa_function_pool[13406]: GetPerfMonitorGroupStringAMD (will be remapped) */
"iipp\0"
"glGetPerfMonitorGroupStringAMD\0"
"\0"
- /* _mesa_function_pool[13436]: GetError (offset 261) */
+ /* _mesa_function_pool[13443]: GetError (offset 261) */
"\0"
"glGetError\0"
"\0"
- /* _mesa_function_pool[13449]: IndexFuncEXT (dynamic) */
+ /* _mesa_function_pool[13456]: IndexFuncEXT (dynamic) */
"if\0"
"glIndexFuncEXT\0"
"\0"
- /* _mesa_function_pool[13468]: TexCoord3dv (offset 111) */
+ /* _mesa_function_pool[13475]: TexCoord3dv (offset 111) */
"p\0"
"glTexCoord3dv\0"
"\0"
- /* _mesa_function_pool[13485]: Indexdv (offset 45) */
+ /* _mesa_function_pool[13492]: Indexdv (offset 45) */
"p\0"
"glIndexdv\0"
"\0"
- /* _mesa_function_pool[13498]: InvalidateTexSubImage (will be remapped) */
+ /* _mesa_function_pool[13505]: InvalidateTexSubImage (will be remapped) */
"iiiiiiii\0"
"glInvalidateTexSubImage\0"
"\0"
- /* _mesa_function_pool[13532]: Normal3s (offset 60) */
+ /* _mesa_function_pool[13539]: Normal3s (offset 60) */
"iii\0"
"glNormal3s\0"
"\0"
- /* _mesa_function_pool[13548]: GetObjectParameterivAPPLE (will be remapped) */
+ /* _mesa_function_pool[13555]: GetObjectParameterivAPPLE (will be remapped) */
"iiip\0"
"glGetObjectParameterivAPPLE\0"
"\0"
- /* _mesa_function_pool[13582]: PushName (offset 201) */
+ /* _mesa_function_pool[13589]: PushName (offset 201) */
"i\0"
"glPushName\0"
"\0"
- /* _mesa_function_pool[13596]: GetTexParameterIuiv (will be remapped) */
+ /* _mesa_function_pool[13603]: GetTexParameterIuiv (will be remapped) */
"iip\0"
"glGetTexParameterIuivEXT\0"
"glGetTexParameterIuiv\0"
"\0"
- /* _mesa_function_pool[13648]: GetActiveUniformBlockName (will be remapped) */
+ /* _mesa_function_pool[13655]: GetActiveUniformBlockName (will be remapped) */
"iiipp\0"
"glGetActiveUniformBlockName\0"
"\0"
- /* _mesa_function_pool[13683]: CullParameterfvEXT (dynamic) */
+ /* _mesa_function_pool[13690]: CullParameterfvEXT (dynamic) */
"ip\0"
"glCullParameterfvEXT\0"
"\0"
- /* _mesa_function_pool[13708]: Normal3i (offset 58) */
+ /* _mesa_function_pool[13715]: Normal3i (offset 58) */
"iii\0"
"glNormal3i\0"
"\0"
- /* _mesa_function_pool[13724]: ProgramNamedParameter4fvNV (will be remapped) */
+ /* _mesa_function_pool[13731]: ProgramNamedParameter4fvNV (will be remapped) */
"iipp\0"
"glProgramNamedParameter4fvNV\0"
"\0"
- /* _mesa_function_pool[13759]: VertexAttrib4fvARB (will be remapped) */
+ /* _mesa_function_pool[13766]: VertexAttrib4fvARB (will be remapped) */
"ip\0"
"glVertexAttrib4fv\0"
"glVertexAttrib4fvARB\0"
"\0"
- /* _mesa_function_pool[13802]: VertexAttrib1dv (will be remapped) */
+ /* _mesa_function_pool[13809]: VertexAttrib1dv (will be remapped) */
"ip\0"
"glVertexAttrib1dv\0"
"glVertexAttrib1dvARB\0"
"\0"
- /* _mesa_function_pool[13845]: PixelTexGenSGIX (dynamic) */
+ /* _mesa_function_pool[13852]: PixelTexGenSGIX (dynamic) */
"i\0"
"glPixelTexGenSGIX\0"
"\0"
- /* _mesa_function_pool[13866]: GetnPixelMapfvARB (will be remapped) */
+ /* _mesa_function_pool[13873]: GetnPixelMapfvARB (will be remapped) */
"iip\0"
"glGetnPixelMapfvARB\0"
"\0"
- /* _mesa_function_pool[13891]: ImageTransformParameteriHP (dynamic) */
+ /* _mesa_function_pool[13898]: ImageTransformParameteriHP (dynamic) */
"iii\0"
"glImageTransformParameteriHP\0"
"\0"
- /* _mesa_function_pool[13925]: Normal3b (offset 52) */
+ /* _mesa_function_pool[13932]: Normal3b (offset 52) */
"iii\0"
"glNormal3b\0"
"\0"
- /* _mesa_function_pool[13941]: WindowPos3dv (will be remapped) */
+ /* _mesa_function_pool[13948]: WindowPos3dv (will be remapped) */
"p\0"
"glWindowPos3dv\0"
"glWindowPos3dvARB\0"
"glWindowPos3dvMESA\0"
"\0"
- /* _mesa_function_pool[13996]: Normal3d (offset 54) */
+ /* _mesa_function_pool[14003]: Normal3d (offset 54) */
"ddd\0"
"glNormal3d\0"
"\0"
- /* _mesa_function_pool[14012]: TexGenxOES (will be remapped) */
+ /* _mesa_function_pool[14019]: TexGenxOES (will be remapped) */
"iii\0"
"glTexGenxOES\0"
"\0"
- /* _mesa_function_pool[14030]: Normal3f (offset 56) */
+ /* _mesa_function_pool[14037]: Normal3f (offset 56) */
"fff\0"
"glNormal3f\0"
"\0"
- /* _mesa_function_pool[14046]: FogCoordPointer (will be remapped) */
+ /* _mesa_function_pool[14053]: FogCoordPointer (will be remapped) */
"iip\0"
"glFogCoordPointer\0"
"glFogCoordPointerEXT\0"
"\0"
- /* _mesa_function_pool[14090]: Indexi (offset 48) */
+ /* _mesa_function_pool[14097]: Indexi (offset 48) */
"i\0"
"glIndexi\0"
"\0"
- /* _mesa_function_pool[14102]: EGLImageTargetTexture2DOES (will be remapped) */
+ /* _mesa_function_pool[14109]: EGLImageTargetTexture2DOES (will be remapped) */
"ip\0"
"glEGLImageTargetTexture2DOES\0"
"\0"
- /* _mesa_function_pool[14135]: VertexAttribI2uiEXT (will be remapped) */
+ /* _mesa_function_pool[14142]: VertexAttribI2uiEXT (will be remapped) */
"iii\0"
"glVertexAttribI2uiEXT\0"
"glVertexAttribI2ui\0"
"\0"
- /* _mesa_function_pool[14181]: DeleteFencesNV (dynamic) */
+ /* _mesa_function_pool[14188]: DeleteFencesNV (dynamic) */
"ip\0"
"glDeleteFencesNV\0"
"\0"
- /* _mesa_function_pool[14202]: IsRenderbuffer (will be remapped) */
+ /* _mesa_function_pool[14209]: IsRenderbuffer (will be remapped) */
"i\0"
"glIsRenderbuffer\0"
"glIsRenderbufferEXT\0"
"glIsRenderbufferOES\0"
"\0"
- /* _mesa_function_pool[14262]: DepthMask (offset 211) */
+ /* _mesa_function_pool[14269]: DepthMask (offset 211) */
"i\0"
"glDepthMask\0"
"\0"
- /* _mesa_function_pool[14277]: SecondaryColor3us (will be remapped) */
+ /* _mesa_function_pool[14284]: SecondaryColor3us (will be remapped) */
"iii\0"
"glSecondaryColor3us\0"
"glSecondaryColor3usEXT\0"
"\0"
- /* _mesa_function_pool[14325]: Indexf (offset 46) */
+ /* _mesa_function_pool[14332]: Indexf (offset 46) */
"f\0"
"glIndexf\0"
"\0"
- /* _mesa_function_pool[14337]: GetImageTransformParameterivHP (dynamic) */
+ /* _mesa_function_pool[14344]: GetImageTransformParameterivHP (dynamic) */
"iip\0"
"glGetImageTransformParameterivHP\0"
"\0"
- /* _mesa_function_pool[14375]: Indexd (offset 44) */
+ /* _mesa_function_pool[14382]: Indexd (offset 44) */
"d\0"
"glIndexd\0"
"\0"
- /* _mesa_function_pool[14387]: GetMaterialiv (offset 270) */
+ /* _mesa_function_pool[14394]: GetMaterialiv (offset 270) */
"iip\0"
"glGetMaterialiv\0"
"\0"
- /* _mesa_function_pool[14408]: StencilOp (offset 244) */
+ /* _mesa_function_pool[14415]: StencilOp (offset 244) */
"iii\0"
"glStencilOp\0"
"\0"
- /* _mesa_function_pool[14425]: WindowPos4ivMESA (will be remapped) */
+ /* _mesa_function_pool[14432]: WindowPos4ivMESA (will be remapped) */
"p\0"
"glWindowPos4ivMESA\0"
"\0"
- /* _mesa_function_pool[14447]: FramebufferTextureLayer (will be remapped) */
+ /* _mesa_function_pool[14454]: FramebufferTextureLayer (will be remapped) */
"iiiii\0"
"glFramebufferTextureLayer\0"
"glFramebufferTextureLayerARB\0"
"glFramebufferTextureLayerEXT\0"
"\0"
- /* _mesa_function_pool[14538]: GetShaderInfoLog (will be remapped) */
+ /* _mesa_function_pool[14545]: GetShaderInfoLog (will be remapped) */
"iipp\0"
"glGetShaderInfoLog\0"
"\0"
- /* _mesa_function_pool[14563]: TexEnvfv (offset 185) */
+ /* _mesa_function_pool[14570]: TexEnvfv (offset 185) */
"iip\0"
"glTexEnvfv\0"
"\0"
- /* _mesa_function_pool[14579]: DrawTexfOES (will be remapped) */
+ /* _mesa_function_pool[14586]: DrawTexfOES (will be remapped) */
"fffff\0"
"glDrawTexfOES\0"
"\0"
- /* _mesa_function_pool[14600]: Indexs (offset 50) */
+ /* _mesa_function_pool[14607]: Indexs (offset 50) */
"i\0"
"glIndexs\0"
"\0"
- /* _mesa_function_pool[14612]: TexCoordP3ui (will be remapped) */
+ /* _mesa_function_pool[14619]: TexCoordP3ui (will be remapped) */
"ii\0"
"glTexCoordP3ui\0"
"\0"
- /* _mesa_function_pool[14631]: ResizeBuffersMESA (will be remapped) */
+ /* _mesa_function_pool[14638]: ResizeBuffersMESA (will be remapped) */
"\0"
"glResizeBuffersMESA\0"
"\0"
- /* _mesa_function_pool[14653]: MultiTexCoordP1uiv (will be remapped) */
+ /* _mesa_function_pool[14660]: MultiTexCoordP1uiv (will be remapped) */
"iip\0"
"glMultiTexCoordP1uiv\0"
"\0"
- /* _mesa_function_pool[14679]: BlendFuncSeparateiARB (will be remapped) */
+ /* _mesa_function_pool[14686]: BlendFuncSeparateiARB (will be remapped) */
"iiiii\0"
"glBlendFuncSeparateiARB\0"
"glBlendFuncSeparateIndexedAMD\0"
"\0"
- /* _mesa_function_pool[14740]: PixelTexGenParameteriSGIS (dynamic) */
+ /* _mesa_function_pool[14747]: PixelTexGenParameteriSGIS (dynamic) */
"ii\0"
"glPixelTexGenParameteriSGIS\0"
"\0"
- /* _mesa_function_pool[14772]: MultiTexCoordP2uiv (will be remapped) */
+ /* _mesa_function_pool[14779]: MultiTexCoordP2uiv (will be remapped) */
"iip\0"
"glMultiTexCoordP2uiv\0"
"\0"
- /* _mesa_function_pool[14798]: VertexPointervINTEL (dynamic) */
+ /* _mesa_function_pool[14805]: VertexPointervINTEL (dynamic) */
"iip\0"
"glVertexPointervINTEL\0"
"\0"
- /* _mesa_function_pool[14825]: Vertex2i (offset 130) */
+ /* _mesa_function_pool[14832]: Vertex2i (offset 130) */
"ii\0"
"glVertex2i\0"
"\0"
- /* _mesa_function_pool[14840]: GetFragDataIndex (will be remapped) */
+ /* _mesa_function_pool[14847]: GetFragDataIndex (will be remapped) */
"ip\0"
"glGetFragDataIndex\0"
"\0"
- /* _mesa_function_pool[14863]: LoadMatrixf (offset 291) */
+ /* _mesa_function_pool[14870]: LoadMatrixf (offset 291) */
"p\0"
"glLoadMatrixf\0"
"\0"
- /* _mesa_function_pool[14880]: Vertex2f (offset 128) */
+ /* _mesa_function_pool[14887]: Vertex2f (offset 128) */
"ff\0"
"glVertex2f\0"
"\0"
- /* _mesa_function_pool[14895]: ReplacementCodeuiColor4fNormal3fVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[14902]: ReplacementCodeuiColor4fNormal3fVertex3fvSUN (dynamic) */
"pppp\0"
"glReplacementCodeuiColor4fNormal3fVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[14948]: Color4bv (offset 26) */
+ /* _mesa_function_pool[14955]: Color4bv (offset 26) */
"p\0"
"glColor4bv\0"
"\0"
- /* _mesa_function_pool[14962]: VertexPointer (offset 321) */
+ /* _mesa_function_pool[14969]: VertexPointer (offset 321) */
"iiip\0"
"glVertexPointer\0"
"\0"
- /* _mesa_function_pool[14984]: VertexAttribP1ui (will be remapped) */
+ /* _mesa_function_pool[14991]: VertexAttribP1ui (will be remapped) */
"iiii\0"
"glVertexAttribP1ui\0"
"\0"
- /* _mesa_function_pool[15009]: StartInstrumentsSGIX (dynamic) */
+ /* _mesa_function_pool[15016]: StartInstrumentsSGIX (dynamic) */
"\0"
"glStartInstrumentsSGIX\0"
"\0"
- /* _mesa_function_pool[15034]: LoadMatrixx (will be remapped) */
+ /* _mesa_function_pool[15041]: LoadMatrixx (will be remapped) */
"p\0"
"glLoadMatrixxOES\0"
"glLoadMatrixx\0"
"\0"
- /* _mesa_function_pool[15068]: GetCompressedTexImage (will be remapped) */
+ /* _mesa_function_pool[15075]: GetCompressedTexImage (will be remapped) */
"iip\0"
"glGetCompressedTexImage\0"
"glGetCompressedTexImageARB\0"
"\0"
- /* _mesa_function_pool[15124]: VertexAttrib2fvNV (will be remapped) */
+ /* _mesa_function_pool[15131]: VertexAttrib2fvNV (will be remapped) */
"ip\0"
"glVertexAttrib2fvNV\0"
"\0"
- /* _mesa_function_pool[15148]: ProgramLocalParameter4dvARB (will be remapped) */
+ /* _mesa_function_pool[15155]: ProgramLocalParameter4dvARB (will be remapped) */
"iip\0"
"glProgramLocalParameter4dvARB\0"
"\0"
- /* _mesa_function_pool[15183]: DeleteLists (offset 4) */
+ /* _mesa_function_pool[15190]: DeleteLists (offset 4) */
"ii\0"
"glDeleteLists\0"
"\0"
- /* _mesa_function_pool[15201]: LogicOp (offset 242) */
+ /* _mesa_function_pool[15208]: LogicOp (offset 242) */
"i\0"
"glLogicOp\0"
"\0"
- /* _mesa_function_pool[15214]: MatrixIndexuivARB (dynamic) */
+ /* _mesa_function_pool[15221]: MatrixIndexuivARB (dynamic) */
"ip\0"
"glMatrixIndexuivARB\0"
"\0"
- /* _mesa_function_pool[15238]: Vertex2s (offset 132) */
+ /* _mesa_function_pool[15245]: Vertex2s (offset 132) */
"ii\0"
"glVertex2s\0"
"\0"
- /* _mesa_function_pool[15253]: RenderbufferStorageMultisample (will be remapped) */
+ /* _mesa_function_pool[15260]: RenderbufferStorageMultisample (will be remapped) */
"iiiii\0"
"glRenderbufferStorageMultisample\0"
"glRenderbufferStorageMultisampleEXT\0"
"\0"
- /* _mesa_function_pool[15329]: TexCoord4fv (offset 121) */
+ /* _mesa_function_pool[15336]: TexCoord4fv (offset 121) */
"p\0"
"glTexCoord4fv\0"
"\0"
- /* _mesa_function_pool[15346]: ActiveTexture (offset 374) */
+ /* _mesa_function_pool[15353]: ActiveTexture (offset 374) */
"i\0"
"glActiveTexture\0"
"glActiveTextureARB\0"
"\0"
- /* _mesa_function_pool[15384]: GlobalAlphaFactorfSUN (dynamic) */
+ /* _mesa_function_pool[15391]: GlobalAlphaFactorfSUN (dynamic) */
"f\0"
"glGlobalAlphaFactorfSUN\0"
"\0"
- /* _mesa_function_pool[15411]: VertexAttribP1uiv (will be remapped) */
+ /* _mesa_function_pool[15418]: VertexAttribP1uiv (will be remapped) */
"iiip\0"
"glVertexAttribP1uiv\0"
"\0"
- /* _mesa_function_pool[15437]: IsProgram (will be remapped) */
+ /* _mesa_function_pool[15444]: IsProgram (will be remapped) */
"i\0"
"glIsProgram\0"
"\0"
- /* _mesa_function_pool[15452]: SecondaryColor3bv (will be remapped) */
+ /* _mesa_function_pool[15459]: SecondaryColor3bv (will be remapped) */
"p\0"
"glSecondaryColor3bv\0"
"glSecondaryColor3bvEXT\0"
"\0"
- /* _mesa_function_pool[15498]: GlobalAlphaFactorusSUN (dynamic) */
+ /* _mesa_function_pool[15505]: GlobalAlphaFactorusSUN (dynamic) */
"i\0"
"glGlobalAlphaFactorusSUN\0"
"\0"
- /* _mesa_function_pool[15526]: Uniform2uiv (will be remapped) */
+ /* _mesa_function_pool[15533]: Uniform2uiv (will be remapped) */
"iip\0"
"glUniform2uivEXT\0"
"glUniform2uiv\0"
"\0"
- /* _mesa_function_pool[15562]: ColorP4uiv (will be remapped) */
+ /* _mesa_function_pool[15569]: ColorP4uiv (will be remapped) */
"ip\0"
"glColorP4uiv\0"
"\0"
- /* _mesa_function_pool[15579]: TextureRangeAPPLE (dynamic) */
+ /* _mesa_function_pool[15586]: TextureRangeAPPLE (dynamic) */
"iip\0"
"glTextureRangeAPPLE\0"
"\0"
- /* _mesa_function_pool[15604]: ClearBufferuiv (will be remapped) */
+ /* _mesa_function_pool[15611]: ClearBufferuiv (will be remapped) */
"iip\0"
"glClearBufferuiv\0"
"\0"
- /* _mesa_function_pool[15626]: VertexAttrib1dvNV (will be remapped) */
+ /* _mesa_function_pool[15633]: VertexAttrib1dvNV (will be remapped) */
"ip\0"
"glVertexAttrib1dvNV\0"
"\0"
- /* _mesa_function_pool[15650]: VertexAttrib1fvNV (will be remapped) */
+ /* _mesa_function_pool[15657]: VertexAttrib1fvNV (will be remapped) */
"ip\0"
"glVertexAttrib1fvNV\0"
"\0"
- /* _mesa_function_pool[15674]: Uniform1ui (will be remapped) */
+ /* _mesa_function_pool[15681]: Uniform1ui (will be remapped) */
"ii\0"
"glUniform1uiEXT\0"
"glUniform1ui\0"
"\0"
- /* _mesa_function_pool[15707]: GenTextures (offset 328) */
+ /* _mesa_function_pool[15714]: GenTextures (offset 328) */
"ip\0"
"glGenTextures\0"
"glGenTexturesEXT\0"
"\0"
- /* _mesa_function_pool[15742]: MultiTexCoordP4uiv (will be remapped) */
+ /* _mesa_function_pool[15749]: MultiTexCoordP4uiv (will be remapped) */
"iip\0"
"glMultiTexCoordP4uiv\0"
"\0"
- /* _mesa_function_pool[15768]: GetCombinerOutputParameterivNV (dynamic) */
+ /* _mesa_function_pool[15775]: GetCombinerOutputParameterivNV (dynamic) */
"iiip\0"
"glGetCombinerOutputParameterivNV\0"
"\0"
- /* _mesa_function_pool[15807]: PixelTexGenParameterivSGIS (dynamic) */
+ /* _mesa_function_pool[15814]: PixelTexGenParameterivSGIS (dynamic) */
"ip\0"
"glPixelTexGenParameterivSGIS\0"
"\0"
- /* _mesa_function_pool[15840]: TextureNormalEXT (dynamic) */
+ /* _mesa_function_pool[15847]: TextureNormalEXT (dynamic) */
"i\0"
"glTextureNormalEXT\0"
"\0"
- /* _mesa_function_pool[15862]: WindowPos3d (will be remapped) */
+ /* _mesa_function_pool[15869]: WindowPos3d (will be remapped) */
"ddd\0"
"glWindowPos3d\0"
"glWindowPos3dARB\0"
"glWindowPos3dMESA\0"
"\0"
- /* _mesa_function_pool[15916]: Enablei (will be remapped) */
+ /* _mesa_function_pool[15923]: Enablei (will be remapped) */
"ii\0"
"glEnableIndexedEXT\0"
"glEnablei\0"
"\0"
- /* _mesa_function_pool[15949]: WindowPos3f (will be remapped) */
+ /* _mesa_function_pool[15956]: WindowPos3f (will be remapped) */
"fff\0"
"glWindowPos3f\0"
"glWindowPos3fARB\0"
"glWindowPos3fMESA\0"
"\0"
- /* _mesa_function_pool[16003]: SecondaryColor3ub (will be remapped) */
+ /* _mesa_function_pool[16010]: SecondaryColor3ub (will be remapped) */
"iii\0"
"glSecondaryColor3ub\0"
"glSecondaryColor3ubEXT\0"
"\0"
- /* _mesa_function_pool[16051]: FinalCombinerInputNV (dynamic) */
+ /* _mesa_function_pool[16058]: FinalCombinerInputNV (dynamic) */
"iiii\0"
"glFinalCombinerInputNV\0"
"\0"
- /* _mesa_function_pool[16080]: GenProgramsARB (will be remapped) */
+ /* _mesa_function_pool[16087]: GenProgramsARB (will be remapped) */
"ip\0"
"glGenProgramsARB\0"
"glGenProgramsNV\0"
"\0"
- /* _mesa_function_pool[16117]: MultiTexCoordP3ui (will be remapped) */
+ /* _mesa_function_pool[16124]: MultiTexCoordP3ui (will be remapped) */
"iii\0"
"glMultiTexCoordP3ui\0"
"\0"
- /* _mesa_function_pool[16142]: RasterPos2sv (offset 69) */
+ /* _mesa_function_pool[16149]: RasterPos2sv (offset 69) */
"p\0"
"glRasterPos2sv\0"
"\0"
- /* _mesa_function_pool[16160]: Color4ubv (offset 36) */
+ /* _mesa_function_pool[16167]: Color4ubv (offset 36) */
"p\0"
"glColor4ubv\0"
"\0"
- /* _mesa_function_pool[16175]: DrawBuffer (offset 202) */
+ /* _mesa_function_pool[16182]: DrawBuffer (offset 202) */
"i\0"
"glDrawBuffer\0"
"\0"
- /* _mesa_function_pool[16191]: TexCoord2fv (offset 105) */
+ /* _mesa_function_pool[16198]: TexCoord2fv (offset 105) */
"p\0"
"glTexCoord2fv\0"
"\0"
- /* _mesa_function_pool[16208]: BeginFragmentShaderATI (will be remapped) */
+ /* _mesa_function_pool[16215]: BeginFragmentShaderATI (will be remapped) */
"\0"
"glBeginFragmentShaderATI\0"
"\0"
- /* _mesa_function_pool[16235]: WindowPos4fMESA (will be remapped) */
+ /* _mesa_function_pool[16242]: WindowPos4fMESA (will be remapped) */
"ffff\0"
"glWindowPos4fMESA\0"
"\0"
- /* _mesa_function_pool[16259]: MultiTexCoord4iv (offset 405) */
+ /* _mesa_function_pool[16266]: MultiTexCoord4iv (offset 405) */
"ip\0"
"glMultiTexCoord4iv\0"
"glMultiTexCoord4ivARB\0"
"\0"
- /* _mesa_function_pool[16304]: TexCoord1sv (offset 101) */
+ /* _mesa_function_pool[16311]: TexCoord1sv (offset 101) */
"p\0"
"glTexCoord1sv\0"
"\0"
- /* _mesa_function_pool[16321]: WindowPos2i (will be remapped) */
+ /* _mesa_function_pool[16328]: WindowPos2i (will be remapped) */
"ii\0"
"glWindowPos2i\0"
"glWindowPos2iARB\0"
"glWindowPos2iMESA\0"
"\0"
- /* _mesa_function_pool[16374]: WindowPos3s (will be remapped) */
+ /* _mesa_function_pool[16381]: WindowPos3s (will be remapped) */
"iii\0"
"glWindowPos3s\0"
"glWindowPos3sARB\0"
"glWindowPos3sMESA\0"
"\0"
- /* _mesa_function_pool[16428]: VertexAttribP4ui (will be remapped) */
+ /* _mesa_function_pool[16435]: VertexAttribP4ui (will be remapped) */
"iiii\0"
"glVertexAttribP4ui\0"
"\0"
- /* _mesa_function_pool[16453]: DepthFunc (offset 245) */
+ /* _mesa_function_pool[16460]: DepthFunc (offset 245) */
"i\0"
"glDepthFunc\0"
"\0"
- /* _mesa_function_pool[16468]: PixelMapusv (offset 253) */
+ /* _mesa_function_pool[16475]: PixelMapusv (offset 253) */
"iip\0"
"glPixelMapusv\0"
"\0"
- /* _mesa_function_pool[16487]: GetSamplerParameterIiv (will be remapped) */
+ /* _mesa_function_pool[16494]: GetSamplerParameterIiv (will be remapped) */
"iip\0"
"glGetSamplerParameterIiv\0"
"\0"
- /* _mesa_function_pool[16517]: IsSampler (will be remapped) */
+ /* _mesa_function_pool[16524]: IsSampler (will be remapped) */
"i\0"
"glIsSampler\0"
"\0"
- /* _mesa_function_pool[16532]: BlendFunc (offset 241) */
+ /* _mesa_function_pool[16539]: BlendFunc (offset 241) */
"ii\0"
"glBlendFunc\0"
"\0"
- /* _mesa_function_pool[16548]: Uniform4i (will be remapped) */
+ /* _mesa_function_pool[16555]: Uniform4i (will be remapped) */
"iiiii\0"
"glUniform4i\0"
"glUniform4iARB\0"
"\0"
- /* _mesa_function_pool[16582]: ColorP3ui (will be remapped) */
+ /* _mesa_function_pool[16589]: ColorP3ui (will be remapped) */
"ii\0"
"glColorP3ui\0"
"\0"
- /* _mesa_function_pool[16598]: BufferParameteriAPPLE (will be remapped) */
+ /* _mesa_function_pool[16605]: BufferParameteriAPPLE (will be remapped) */
"iii\0"
"glBufferParameteriAPPLE\0"
"\0"
- /* _mesa_function_pool[16627]: CompressedTexImage2D (will be remapped) */
+ /* _mesa_function_pool[16634]: CompressedTexImage2D (will be remapped) */
"iiiiiiip\0"
"glCompressedTexImage2D\0"
"glCompressedTexImage2DARB\0"
"\0"
- /* _mesa_function_pool[16686]: Materialxv (will be remapped) */
+ /* _mesa_function_pool[16693]: Materialxv (will be remapped) */
"iip\0"
"glMaterialxvOES\0"
"glMaterialxv\0"
"\0"
- /* _mesa_function_pool[16720]: DeleteObjectARB (will be remapped) */
+ /* _mesa_function_pool[16727]: DeleteObjectARB (will be remapped) */
"i\0"
"glDeleteObjectARB\0"
"\0"
- /* _mesa_function_pool[16741]: GetShaderPrecisionFormat (will be remapped) */
+ /* _mesa_function_pool[16748]: GetShaderPrecisionFormat (will be remapped) */
"iipp\0"
"glGetShaderPrecisionFormat\0"
"\0"
- /* _mesa_function_pool[16774]: GetBooleani_v (will be remapped) */
+ /* _mesa_function_pool[16781]: GetBooleani_v (will be remapped) */
"iip\0"
"glGetBooleanIndexedvEXT\0"
"glGetBooleani_v\0"
"\0"
- /* _mesa_function_pool[16819]: ProgramNamedParameter4dvNV (will be remapped) */
+ /* _mesa_function_pool[16826]: ProgramNamedParameter4dvNV (will be remapped) */
"iipp\0"
"glProgramNamedParameter4dvNV\0"
"\0"
- /* _mesa_function_pool[16854]: Tangent3fvEXT (dynamic) */
+ /* _mesa_function_pool[16861]: Tangent3fvEXT (dynamic) */
"p\0"
"glTangent3fvEXT\0"
"\0"
- /* _mesa_function_pool[16873]: Flush (offset 217) */
+ /* _mesa_function_pool[16880]: Flush (offset 217) */
"\0"
"glFlush\0"
"\0"
- /* _mesa_function_pool[16883]: Color4uiv (offset 38) */
+ /* _mesa_function_pool[16890]: Color4uiv (offset 38) */
"p\0"
"glColor4uiv\0"
"\0"
- /* _mesa_function_pool[16898]: MultiTexCoord1sv (offset 383) */
+ /* _mesa_function_pool[16905]: MultiTexCoord1sv (offset 383) */
"ip\0"
"glMultiTexCoord1sv\0"
"glMultiTexCoord1svARB\0"
"\0"
- /* _mesa_function_pool[16943]: VDPAUIsSurfaceNV (will be remapped) */
+ /* _mesa_function_pool[16950]: VDPAUIsSurfaceNV (will be remapped) */
"i\0"
"glVDPAUIsSurfaceNV\0"
"\0"
- /* _mesa_function_pool[16965]: FogCoordd (will be remapped) */
+ /* _mesa_function_pool[16972]: FogCoordd (will be remapped) */
"d\0"
"glFogCoordd\0"
"glFogCoorddEXT\0"
"\0"
- /* _mesa_function_pool[16995]: RasterPos3sv (offset 77) */
+ /* _mesa_function_pool[17002]: RasterPos3sv (offset 77) */
"p\0"
"glRasterPos3sv\0"
"\0"
- /* _mesa_function_pool[17013]: TexCoordP2ui (will be remapped) */
+ /* _mesa_function_pool[17020]: TexCoordP2ui (will be remapped) */
"ii\0"
"glTexCoordP2ui\0"
"\0"
- /* _mesa_function_pool[17032]: BindFramebufferEXT (will be remapped) */
+ /* _mesa_function_pool[17039]: BindFramebufferEXT (will be remapped) */
"ii\0"
"glBindFramebufferEXT\0"
"\0"
- /* _mesa_function_pool[17057]: Uniform1uiv (will be remapped) */
+ /* _mesa_function_pool[17064]: Uniform1uiv (will be remapped) */
"iip\0"
"glUniform1uivEXT\0"
"glUniform1uiv\0"
"\0"
- /* _mesa_function_pool[17093]: ReferencePlaneSGIX (dynamic) */
+ /* _mesa_function_pool[17100]: ReferencePlaneSGIX (dynamic) */
"p\0"
"glReferencePlaneSGIX\0"
"\0"
- /* _mesa_function_pool[17117]: PushAttrib (offset 219) */
+ /* _mesa_function_pool[17124]: PushAttrib (offset 219) */
"i\0"
"glPushAttrib\0"
"\0"
- /* _mesa_function_pool[17133]: RasterPos2i (offset 66) */
+ /* _mesa_function_pool[17140]: RasterPos2i (offset 66) */
"ii\0"
"glRasterPos2i\0"
"\0"
- /* _mesa_function_pool[17151]: Uniform3iv (will be remapped) */
+ /* _mesa_function_pool[17158]: Uniform3iv (will be remapped) */
"iip\0"
"glUniform3iv\0"
"glUniform3ivARB\0"
"\0"
- /* _mesa_function_pool[17185]: SamplerParameteriv (will be remapped) */
+ /* _mesa_function_pool[17192]: SamplerParameteriv (will be remapped) */
"iip\0"
"glSamplerParameteriv\0"
"\0"
- /* _mesa_function_pool[17211]: TexParameteriv (offset 181) */
+ /* _mesa_function_pool[17218]: TexParameteriv (offset 181) */
"iip\0"
"glTexParameteriv\0"
"\0"
- /* _mesa_function_pool[17233]: GetAttribLocation (will be remapped) */
+ /* _mesa_function_pool[17240]: GetAttribLocation (will be remapped) */
"ip\0"
"glGetAttribLocation\0"
"glGetAttribLocationARB\0"
"\0"
- /* _mesa_function_pool[17280]: TexCoord2fColor3fVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[17287]: TexCoord2fColor3fVertex3fSUN (dynamic) */
"ffffffff\0"
"glTexCoord2fColor3fVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[17321]: DeleteAsyncMarkersSGIX (dynamic) */
+ /* _mesa_function_pool[17328]: DeleteAsyncMarkersSGIX (dynamic) */
"ii\0"
"glDeleteAsyncMarkersSGIX\0"
"\0"
- /* _mesa_function_pool[17350]: RasterPos2f (offset 64) */
+ /* _mesa_function_pool[17357]: RasterPos2f (offset 64) */
"ff\0"
"glRasterPos2f\0"
"\0"
- /* _mesa_function_pool[17368]: TexCoord4fVertex4fSUN (dynamic) */
+ /* _mesa_function_pool[17375]: TexCoord4fVertex4fSUN (dynamic) */
"ffffffff\0"
"glTexCoord4fVertex4fSUN\0"
"\0"
- /* _mesa_function_pool[17402]: RasterPos2d (offset 62) */
+ /* _mesa_function_pool[17409]: RasterPos2d (offset 62) */
"dd\0"
"glRasterPos2d\0"
"\0"
- /* _mesa_function_pool[17420]: VertexAttrib4iv (will be remapped) */
+ /* _mesa_function_pool[17427]: VertexAttrib4iv (will be remapped) */
"ip\0"
"glVertexAttrib4iv\0"
"glVertexAttrib4ivARB\0"
"\0"
- /* _mesa_function_pool[17463]: RasterPos3fv (offset 73) */
+ /* _mesa_function_pool[17470]: RasterPos3fv (offset 73) */
"p\0"
"glRasterPos3fv\0"
"\0"
- /* _mesa_function_pool[17481]: CopyTexSubImage3D (offset 373) */
+ /* _mesa_function_pool[17488]: CopyTexSubImage3D (offset 373) */
"iiiiiiiii\0"
"glCopyTexSubImage3D\0"
"glCopyTexSubImage3DEXT\0"
"glCopyTexSubImage3DOES\0"
"\0"
- /* _mesa_function_pool[17558]: Color4ub (offset 35) */
+ /* _mesa_function_pool[17565]: Color4ub (offset 35) */
"iiii\0"
"glColor4ub\0"
"\0"
- /* _mesa_function_pool[17575]: GetInteger64v (will be remapped) */
+ /* _mesa_function_pool[17582]: GetInteger64v (will be remapped) */
"ip\0"
"glGetInteger64v\0"
"\0"
- /* _mesa_function_pool[17595]: TextureColorMaskSGIS (dynamic) */
+ /* _mesa_function_pool[17602]: TextureColorMaskSGIS (dynamic) */
"iiii\0"
"glTextureColorMaskSGIS\0"
"\0"
- /* _mesa_function_pool[17624]: RasterPos2s (offset 68) */
+ /* _mesa_function_pool[17631]: RasterPos2s (offset 68) */
"ii\0"
"glRasterPos2s\0"
"\0"
- /* _mesa_function_pool[17642]: GetColorTable (offset 343) */
+ /* _mesa_function_pool[17649]: GetColorTable (offset 343) */
"iiip\0"
"glGetColorTable\0"
"glGetColorTableSGI\0"
"glGetColorTableEXT\0"
"\0"
- /* _mesa_function_pool[17702]: EndQueryIndexed (will be remapped) */
+ /* _mesa_function_pool[17709]: EndQueryIndexed (will be remapped) */
"ii\0"
"glEndQueryIndexed\0"
"\0"
- /* _mesa_function_pool[17724]: SelectBuffer (offset 195) */
+ /* _mesa_function_pool[17731]: SelectBuffer (offset 195) */
"ip\0"
"glSelectBuffer\0"
"\0"
- /* _mesa_function_pool[17743]: Indexiv (offset 49) */
+ /* _mesa_function_pool[17750]: Indexiv (offset 49) */
"p\0"
"glIndexiv\0"
"\0"
- /* _mesa_function_pool[17756]: TexCoord3i (offset 114) */
+ /* _mesa_function_pool[17763]: TexCoord3i (offset 114) */
"iii\0"
"glTexCoord3i\0"
"\0"
- /* _mesa_function_pool[17774]: CopyColorTable (offset 342) */
+ /* _mesa_function_pool[17781]: CopyColorTable (offset 342) */
"iiiii\0"
"glCopyColorTable\0"
"glCopyColorTableSGI\0"
"\0"
- /* _mesa_function_pool[17818]: PointParameterfv (will be remapped) */
+ /* _mesa_function_pool[17825]: PointParameterfv (will be remapped) */
"ip\0"
"glPointParameterfv\0"
"glPointParameterfvARB\0"
"glPointParameterfvEXT\0"
"glPointParameterfvSGIS\0"
"\0"
- /* _mesa_function_pool[17908]: GetHistogramParameterfv (offset 362) */
+ /* _mesa_function_pool[17915]: GetHistogramParameterfv (offset 362) */
"iip\0"
"glGetHistogramParameterfv\0"
"glGetHistogramParameterfvEXT\0"
"\0"
- /* _mesa_function_pool[17968]: Frustum (offset 289) */
+ /* _mesa_function_pool[17975]: Frustum (offset 289) */
"dddddd\0"
"glFrustum\0"
"\0"
- /* _mesa_function_pool[17986]: GetString (offset 275) */
+ /* _mesa_function_pool[17993]: GetString (offset 275) */
"i\0"
"glGetString\0"
"\0"
- /* _mesa_function_pool[18001]: ColorPointervINTEL (dynamic) */
+ /* _mesa_function_pool[18008]: ColorPointervINTEL (dynamic) */
"iip\0"
"glColorPointervINTEL\0"
"\0"
- /* _mesa_function_pool[18027]: TexEnvf (offset 184) */
+ /* _mesa_function_pool[18034]: TexEnvf (offset 184) */
"iif\0"
"glTexEnvf\0"
"\0"
- /* _mesa_function_pool[18042]: GetTexGenxvOES (will be remapped) */
+ /* _mesa_function_pool[18049]: GetTexGenxvOES (will be remapped) */
"iip\0"
"glGetTexGenxvOES\0"
"\0"
- /* _mesa_function_pool[18064]: TexCoord3d (offset 110) */
+ /* _mesa_function_pool[18071]: TexCoord3d (offset 110) */
"ddd\0"
"glTexCoord3d\0"
"\0"
- /* _mesa_function_pool[18082]: AlphaFragmentOp1ATI (will be remapped) */
+ /* _mesa_function_pool[18089]: AlphaFragmentOp1ATI (will be remapped) */
"iiiiii\0"
"glAlphaFragmentOp1ATI\0"
"\0"
- /* _mesa_function_pool[18112]: TexCoord3f (offset 112) */
+ /* _mesa_function_pool[18119]: TexCoord3f (offset 112) */
"fff\0"
"glTexCoord3f\0"
"\0"
- /* _mesa_function_pool[18130]: GetnHistogramARB (will be remapped) */
+ /* _mesa_function_pool[18137]: GetnHistogramARB (will be remapped) */
"iiiiip\0"
"glGetnHistogramARB\0"
"\0"
- /* _mesa_function_pool[18157]: DeleteTextures (offset 327) */
+ /* _mesa_function_pool[18164]: DeleteTextures (offset 327) */
"ip\0"
"glDeleteTextures\0"
"glDeleteTexturesEXT\0"
"\0"
- /* _mesa_function_pool[18198]: TexCoordPointerEXT (will be remapped) */
+ /* _mesa_function_pool[18205]: TexCoordPointerEXT (will be remapped) */
"iiiip\0"
"glTexCoordPointerEXT\0"
"\0"
- /* _mesa_function_pool[18226]: TexSubImage4DSGIS (dynamic) */
+ /* _mesa_function_pool[18233]: TexSubImage4DSGIS (dynamic) */
"iiiiiiiiiiiip\0"
"glTexSubImage4DSGIS\0"
"\0"
- /* _mesa_function_pool[18261]: TexCoord3s (offset 116) */
+ /* _mesa_function_pool[18268]: TexCoord3s (offset 116) */
"iii\0"
"glTexCoord3s\0"
"\0"
- /* _mesa_function_pool[18279]: GetTexLevelParameteriv (offset 285) */
+ /* _mesa_function_pool[18286]: GetTexLevelParameteriv (offset 285) */
"iiip\0"
"glGetTexLevelParameteriv\0"
"\0"
- /* _mesa_function_pool[18310]: GetClipPlanef (will be remapped) */
+ /* _mesa_function_pool[18317]: GetClipPlanef (will be remapped) */
"ip\0"
"glGetClipPlanefOES\0"
"glGetClipPlanef\0"
"\0"
- /* _mesa_function_pool[18349]: VertexAttribPointer (will be remapped) */
+ /* _mesa_function_pool[18356]: VertexAttribPointer (will be remapped) */
"iiiiip\0"
"glVertexAttribPointer\0"
"glVertexAttribPointerARB\0"
"\0"
- /* _mesa_function_pool[18404]: TexStorage2DMultisample (will be remapped) */
+ /* _mesa_function_pool[18411]: TexStorage2DMultisample (will be remapped) */
"iiiiii\0"
"glTexStorage2DMultisample\0"
"\0"
- /* _mesa_function_pool[18438]: VertexAttribP4uiv (will be remapped) */
+ /* _mesa_function_pool[18445]: VertexAttribP4uiv (will be remapped) */
"iiip\0"
"glVertexAttribP4uiv\0"
"\0"
- /* _mesa_function_pool[18464]: StopInstrumentsSGIX (dynamic) */
+ /* _mesa_function_pool[18471]: StopInstrumentsSGIX (dynamic) */
"i\0"
"glStopInstrumentsSGIX\0"
"\0"
- /* _mesa_function_pool[18489]: SecondaryColor3s (will be remapped) */
+ /* _mesa_function_pool[18496]: SecondaryColor3s (will be remapped) */
"iii\0"
"glSecondaryColor3s\0"
"glSecondaryColor3sEXT\0"
"\0"
- /* _mesa_function_pool[18535]: ClearAccum (offset 204) */
+ /* _mesa_function_pool[18542]: ClearAccum (offset 204) */
"ffff\0"
"glClearAccum\0"
"\0"
- /* _mesa_function_pool[18554]: DeformSGIX (dynamic) */
+ /* _mesa_function_pool[18561]: DeformSGIX (dynamic) */
"i\0"
"glDeformSGIX\0"
"\0"
- /* _mesa_function_pool[18570]: InvalidateBufferSubData (will be remapped) */
+ /* _mesa_function_pool[18577]: InvalidateBufferSubData (will be remapped) */
"iii\0"
"glInvalidateBufferSubData\0"
"\0"
- /* _mesa_function_pool[18601]: Uniform3i (will be remapped) */
+ /* _mesa_function_pool[18608]: Uniform3i (will be remapped) */
"iiii\0"
"glUniform3i\0"
"glUniform3iARB\0"
"\0"
- /* _mesa_function_pool[18634]: TexCoord4iv (offset 123) */
+ /* _mesa_function_pool[18641]: TexCoord4iv (offset 123) */
"p\0"
"glTexCoord4iv\0"
"\0"
- /* _mesa_function_pool[18651]: TexStorage3D (will be remapped) */
+ /* _mesa_function_pool[18658]: TexStorage3D (will be remapped) */
"iiiiii\0"
"glTexStorage3D\0"
"\0"
- /* _mesa_function_pool[18674]: UniformMatrix4x2fv (will be remapped) */
+ /* _mesa_function_pool[18681]: UniformMatrix4x2fv (will be remapped) */
"iiip\0"
"glUniformMatrix4x2fv\0"
"\0"
- /* _mesa_function_pool[18701]: GetDetailTexFuncSGIS (dynamic) */
+ /* _mesa_function_pool[18708]: GetDetailTexFuncSGIS (dynamic) */
"ip\0"
"glGetDetailTexFuncSGIS\0"
"\0"
- /* _mesa_function_pool[18728]: WindowPos3i (will be remapped) */
+ /* _mesa_function_pool[18735]: WindowPos3i (will be remapped) */
"iii\0"
"glWindowPos3i\0"
"glWindowPos3iARB\0"
"glWindowPos3iMESA\0"
"\0"
- /* _mesa_function_pool[18782]: SecondaryColor3b (will be remapped) */
+ /* _mesa_function_pool[18789]: SecondaryColor3b (will be remapped) */
"iii\0"
"glSecondaryColor3b\0"
"glSecondaryColor3bEXT\0"
"\0"
- /* _mesa_function_pool[18828]: FramebufferTexture3D (will be remapped) */
+ /* _mesa_function_pool[18835]: FramebufferTexture3D (will be remapped) */
"iiiiii\0"
"glFramebufferTexture3D\0"
"glFramebufferTexture3DEXT\0"
"glFramebufferTexture3DOES\0"
"\0"
- /* _mesa_function_pool[18911]: SamplerParameterIiv (will be remapped) */
+ /* _mesa_function_pool[18918]: SamplerParameterIiv (will be remapped) */
"iip\0"
"glSamplerParameterIiv\0"
"\0"
- /* _mesa_function_pool[18938]: PolygonOffset (offset 319) */
+ /* _mesa_function_pool[18945]: PolygonOffset (offset 319) */
"ff\0"
"glPolygonOffset\0"
"\0"
- /* _mesa_function_pool[18958]: BindVertexArray (will be remapped) */
+ /* _mesa_function_pool[18965]: BindVertexArray (will be remapped) */
"i\0"
"glBindVertexArray\0"
"glBindVertexArrayOES\0"
"\0"
- /* _mesa_function_pool[19000]: Color4ubVertex2fvSUN (dynamic) */
+ /* _mesa_function_pool[19007]: Color4ubVertex2fvSUN (dynamic) */
"pp\0"
"glColor4ubVertex2fvSUN\0"
"\0"
- /* _mesa_function_pool[19027]: GetProgramBinary (will be remapped) */
+ /* _mesa_function_pool[19034]: GetProgramBinary (will be remapped) */
"iippp\0"
"glGetProgramBinary\0"
"glGetProgramBinaryOES\0"
"\0"
- /* _mesa_function_pool[19075]: GetBufferParameteriv (will be remapped) */
+ /* _mesa_function_pool[19082]: GetBufferParameteriv (will be remapped) */
"iip\0"
"glGetBufferParameteriv\0"
"glGetBufferParameterivARB\0"
"\0"
- /* _mesa_function_pool[19129]: Rectd (offset 86) */
+ /* _mesa_function_pool[19136]: Rectd (offset 86) */
"dddd\0"
"glRectd\0"
"\0"
- /* _mesa_function_pool[19143]: TexFilterFuncSGIS (dynamic) */
+ /* _mesa_function_pool[19150]: TexFilterFuncSGIS (dynamic) */
"iiip\0"
"glTexFilterFuncSGIS\0"
"\0"
- /* _mesa_function_pool[19169]: NormalPointervINTEL (dynamic) */
+ /* _mesa_function_pool[19176]: NormalPointervINTEL (dynamic) */
"ip\0"
"glNormalPointervINTEL\0"
"\0"
- /* _mesa_function_pool[19195]: ProvokingVertex (will be remapped) */
+ /* _mesa_function_pool[19202]: ProvokingVertex (will be remapped) */
"i\0"
"glProvokingVertexEXT\0"
"glProvokingVertex\0"
"\0"
- /* _mesa_function_pool[19237]: SamplerParameterfv (will be remapped) */
+ /* _mesa_function_pool[19244]: SamplerParameterfv (will be remapped) */
"iip\0"
"glSamplerParameterfv\0"
"\0"
- /* _mesa_function_pool[19263]: MultiTexCoord1i (offset 380) */
+ /* _mesa_function_pool[19270]: MultiTexCoord1i (offset 380) */
"ii\0"
"glMultiTexCoord1i\0"
"glMultiTexCoord1iARB\0"
"\0"
- /* _mesa_function_pool[19306]: WindowPos2dv (will be remapped) */
+ /* _mesa_function_pool[19313]: WindowPos2dv (will be remapped) */
"p\0"
"glWindowPos2dv\0"
"glWindowPos2dvARB\0"
"glWindowPos2dvMESA\0"
"\0"
- /* _mesa_function_pool[19361]: GetProgramParameterdvNV (will be remapped) */
+ /* _mesa_function_pool[19368]: GetProgramParameterdvNV (will be remapped) */
"iiip\0"
"glGetProgramParameterdvNV\0"
"\0"
- /* _mesa_function_pool[19393]: VertexAttrib3fNV (will be remapped) */
+ /* _mesa_function_pool[19400]: VertexAttrib3fNV (will be remapped) */
"ifff\0"
"glVertexAttrib3fNV\0"
"\0"
- /* _mesa_function_pool[19418]: RasterPos3i (offset 74) */
+ /* _mesa_function_pool[19425]: RasterPos3i (offset 74) */
"iii\0"
"glRasterPos3i\0"
"\0"
- /* _mesa_function_pool[19437]: GetFragmentLightfvSGIX (dynamic) */
+ /* _mesa_function_pool[19444]: GetFragmentLightfvSGIX (dynamic) */
"iip\0"
"glGetFragmentLightfvSGIX\0"
"\0"
- /* _mesa_function_pool[19467]: PointParameterxv (will be remapped) */
+ /* _mesa_function_pool[19474]: PointParameterxv (will be remapped) */
"ip\0"
"glPointParameterxvOES\0"
"glPointParameterxv\0"
"\0"
- /* _mesa_function_pool[19512]: MultiTexCoord1d (offset 376) */
+ /* _mesa_function_pool[19519]: MultiTexCoord1d (offset 376) */
"id\0"
"glMultiTexCoord1d\0"
"glMultiTexCoord1dARB\0"
"\0"
- /* _mesa_function_pool[19555]: DetailTexFuncSGIS (dynamic) */
+ /* _mesa_function_pool[19562]: DetailTexFuncSGIS (dynamic) */
"iip\0"
"glDetailTexFuncSGIS\0"
"\0"
- /* _mesa_function_pool[19580]: Normal3fVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[19587]: Normal3fVertex3fSUN (dynamic) */
"ffffff\0"
"glNormal3fVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[19610]: CopyTexImage2D (offset 324) */
+ /* _mesa_function_pool[19617]: CopyTexImage2D (offset 324) */
"iiiiiiii\0"
"glCopyTexImage2D\0"
"glCopyTexImage2DEXT\0"
"\0"
- /* _mesa_function_pool[19657]: FlushMappedBufferRange (will be remapped) */
+ /* _mesa_function_pool[19664]: FlushMappedBufferRange (will be remapped) */
"iii\0"
"glFlushMappedBufferRange\0"
"glFlushMappedBufferRangeEXT\0"
"\0"
- /* _mesa_function_pool[19715]: MultiTexCoord2dv (offset 385) */
+ /* _mesa_function_pool[19722]: MultiTexCoord2dv (offset 385) */
"ip\0"
"glMultiTexCoord2dv\0"
"glMultiTexCoord2dvARB\0"
"\0"
- /* _mesa_function_pool[19760]: ProgramEnvParameter4fARB (will be remapped) */
+ /* _mesa_function_pool[19767]: ProgramEnvParameter4fARB (will be remapped) */
"iiffff\0"
"glProgramEnvParameter4fARB\0"
"glProgramParameter4fNV\0"
"\0"
- /* _mesa_function_pool[19818]: GenVertexArraysAPPLE (will be remapped) */
+ /* _mesa_function_pool[19825]: GenVertexArraysAPPLE (will be remapped) */
"ip\0"
"glGenVertexArraysAPPLE\0"
"\0"
- /* _mesa_function_pool[19845]: Lightfv (offset 160) */
+ /* _mesa_function_pool[19852]: Lightfv (offset 160) */
"iip\0"
"glLightfv\0"
"\0"
- /* _mesa_function_pool[19860]: GetFramebufferAttachmentParameteriv (will be remapped) */
+ /* _mesa_function_pool[19867]: GetFramebufferAttachmentParameteriv (will be remapped) */
"iiip\0"
"glGetFramebufferAttachmentParameteriv\0"
"glGetFramebufferAttachmentParameterivEXT\0"
"glGetFramebufferAttachmentParameterivOES\0"
"\0"
- /* _mesa_function_pool[19986]: MultiTexCoord1s (offset 382) */
+ /* _mesa_function_pool[19993]: MultiTexCoord1s (offset 382) */
"ii\0"
"glMultiTexCoord1s\0"
"glMultiTexCoord1sARB\0"
"\0"
- /* _mesa_function_pool[20029]: VertexAttribI4ivEXT (will be remapped) */
+ /* _mesa_function_pool[20036]: VertexAttribI4ivEXT (will be remapped) */
"ip\0"
"glVertexAttribI4ivEXT\0"
"glVertexAttribI4iv\0"
"\0"
- /* _mesa_function_pool[20074]: ClearDepth (offset 208) */
+ /* _mesa_function_pool[20081]: ClearDepth (offset 208) */
"d\0"
"glClearDepth\0"
"\0"
- /* _mesa_function_pool[20090]: GetFenceivNV (dynamic) */
+ /* _mesa_function_pool[20097]: GetFenceivNV (dynamic) */
"iip\0"
"glGetFenceivNV\0"
"\0"
- /* _mesa_function_pool[20110]: GetVertexAttribPointerv (will be remapped) */
+ /* _mesa_function_pool[20117]: GetVertexAttribPointerv (will be remapped) */
"iip\0"
"glGetVertexAttribPointerv\0"
"glGetVertexAttribPointervARB\0"
"glGetVertexAttribPointervNV\0"
"\0"
- /* _mesa_function_pool[20198]: ColorSubTable (offset 346) */
+ /* _mesa_function_pool[20205]: ColorSubTable (offset 346) */
"iiiiip\0"
"glColorSubTable\0"
"glColorSubTableEXT\0"
"\0"
- /* _mesa_function_pool[20241]: Color4fv (offset 30) */
+ /* _mesa_function_pool[20248]: Color4fv (offset 30) */
"p\0"
"glColor4fv\0"
"\0"
- /* _mesa_function_pool[20255]: EndPerfMonitorAMD (will be remapped) */
+ /* _mesa_function_pool[20262]: EndPerfMonitorAMD (will be remapped) */
"i\0"
"glEndPerfMonitorAMD\0"
"\0"
- /* _mesa_function_pool[20278]: GetnMinmaxARB (will be remapped) */
+ /* _mesa_function_pool[20285]: GetnMinmaxARB (will be remapped) */
"iiiiip\0"
"glGetnMinmaxARB\0"
"\0"
- /* _mesa_function_pool[20302]: ProgramLocalParameters4fvEXT (will be remapped) */
+ /* _mesa_function_pool[20309]: ProgramLocalParameters4fvEXT (will be remapped) */
"iiip\0"
"glProgramLocalParameters4fvEXT\0"
"\0"
- /* _mesa_function_pool[20339]: BeginConditionalRender (will be remapped) */
+ /* _mesa_function_pool[20346]: BeginConditionalRender (will be remapped) */
"ii\0"
"glBeginConditionalRender\0"
"glBeginConditionalRenderNV\0"
"\0"
- /* _mesa_function_pool[20395]: TexCoord4fColor4fNormal3fVertex4fSUN (dynamic) */
+ /* _mesa_function_pool[20402]: TexCoord4fColor4fNormal3fVertex4fSUN (dynamic) */
"fffffffffffffff\0"
"glTexCoord4fColor4fNormal3fVertex4fSUN\0"
"\0"
- /* _mesa_function_pool[20451]: VertexAttribI1uiv (will be remapped) */
+ /* _mesa_function_pool[20458]: VertexAttribI1uiv (will be remapped) */
"ip\0"
"glVertexAttribI1uivEXT\0"
"glVertexAttribI1uiv\0"
"\0"
- /* _mesa_function_pool[20498]: ColorPointer (offset 308) */
+ /* _mesa_function_pool[20505]: ColorPointer (offset 308) */
"iiip\0"
"glColorPointer\0"
"\0"
- /* _mesa_function_pool[20519]: Rects (offset 92) */
+ /* _mesa_function_pool[20526]: Rects (offset 92) */
"iiii\0"
"glRects\0"
"\0"
- /* _mesa_function_pool[20533]: GetMapAttribParameterfvNV (dynamic) */
+ /* _mesa_function_pool[20540]: GetMapAttribParameterfvNV (dynamic) */
"iiip\0"
"glGetMapAttribParameterfvNV\0"
"\0"
- /* _mesa_function_pool[20567]: ClearColorx (will be remapped) */
+ /* _mesa_function_pool[20574]: ClearColorx (will be remapped) */
"iiii\0"
"glClearColorxOES\0"
"glClearColorx\0"
"\0"
- /* _mesa_function_pool[20604]: MultiTexCoordP2ui (will be remapped) */
+ /* _mesa_function_pool[20611]: MultiTexCoordP2ui (will be remapped) */
"iii\0"
"glMultiTexCoordP2ui\0"
"\0"
- /* _mesa_function_pool[20629]: ActiveProgramEXT (will be remapped) */
+ /* _mesa_function_pool[20636]: ActiveProgramEXT (will be remapped) */
"i\0"
"glActiveProgramEXT\0"
"\0"
- /* _mesa_function_pool[20651]: Lightiv (offset 162) */
+ /* _mesa_function_pool[20658]: Lightiv (offset 162) */
"iip\0"
"glLightiv\0"
"\0"
- /* _mesa_function_pool[20666]: Tangent3svEXT (dynamic) */
+ /* _mesa_function_pool[20673]: Tangent3svEXT (dynamic) */
"p\0"
"glTangent3svEXT\0"
"\0"
- /* _mesa_function_pool[20685]: TexCoordPointervINTEL (dynamic) */
+ /* _mesa_function_pool[20692]: TexCoordPointervINTEL (dynamic) */
"iip\0"
"glTexCoordPointervINTEL\0"
"\0"
- /* _mesa_function_pool[20714]: GetTexParameteriv (offset 283) */
+ /* _mesa_function_pool[20721]: GetTexParameteriv (offset 283) */
"iip\0"
"glGetTexParameteriv\0"
"\0"
- /* _mesa_function_pool[20739]: MapParameterivNV (dynamic) */
+ /* _mesa_function_pool[20746]: MapParameterivNV (dynamic) */
"iip\0"
"glMapParameterivNV\0"
"\0"
- /* _mesa_function_pool[20763]: VertexAttribs4dvNV (will be remapped) */
+ /* _mesa_function_pool[20770]: VertexAttribs4dvNV (will be remapped) */
"iip\0"
"glVertexAttribs4dvNV\0"
"\0"
- /* _mesa_function_pool[20789]: VertexAttrib3sv (will be remapped) */
+ /* _mesa_function_pool[20796]: VertexAttrib3sv (will be remapped) */
"ip\0"
"glVertexAttrib3sv\0"
"glVertexAttrib3svARB\0"
"\0"
- /* _mesa_function_pool[20832]: IsQuery (will be remapped) */
+ /* _mesa_function_pool[20839]: IsQuery (will be remapped) */
"i\0"
"glIsQuery\0"
"glIsQueryARB\0"
"\0"
- /* _mesa_function_pool[20858]: ClearBufferfv (will be remapped) */
+ /* _mesa_function_pool[20865]: ClearBufferfv (will be remapped) */
"iip\0"
"glClearBufferfv\0"
"\0"
- /* _mesa_function_pool[20879]: PrimitiveRestartNV (will be remapped) */
+ /* _mesa_function_pool[20886]: PrimitiveRestartNV (will be remapped) */
"\0"
"glPrimitiveRestartNV\0"
"\0"
- /* _mesa_function_pool[20902]: EdgeFlagPointerEXT (will be remapped) */
+ /* _mesa_function_pool[20909]: EdgeFlagPointerEXT (will be remapped) */
"iip\0"
"glEdgeFlagPointerEXT\0"
"\0"
- /* _mesa_function_pool[20928]: IsVertexArray (will be remapped) */
+ /* _mesa_function_pool[20935]: IsVertexArray (will be remapped) */
"i\0"
"glIsVertexArray\0"
"glIsVertexArrayAPPLE\0"
"glIsVertexArrayOES\0"
"\0"
- /* _mesa_function_pool[20987]: GetMultisamplefv (will be remapped) */
+ /* _mesa_function_pool[20994]: GetMultisamplefv (will be remapped) */
"iip\0"
"glGetMultisamplefv\0"
"\0"
- /* _mesa_function_pool[21011]: WeightbvARB (dynamic) */
+ /* _mesa_function_pool[21018]: WeightbvARB (dynamic) */
"ip\0"
"glWeightbvARB\0"
"\0"
- /* _mesa_function_pool[21029]: Rectdv (offset 87) */
+ /* _mesa_function_pool[21036]: Rectdv (offset 87) */
"pp\0"
"glRectdv\0"
"\0"
- /* _mesa_function_pool[21042]: ListParameteriSGIX (dynamic) */
+ /* _mesa_function_pool[21049]: ListParameteriSGIX (dynamic) */
"iii\0"
"glListParameteriSGIX\0"
"\0"
- /* _mesa_function_pool[21068]: BlendEquationiARB (will be remapped) */
+ /* _mesa_function_pool[21075]: BlendEquationiARB (will be remapped) */
"ii\0"
"glBlendEquationiARB\0"
"glBlendEquationIndexedAMD\0"
"\0"
- /* _mesa_function_pool[21118]: ReplacementCodeuiColor4fNormal3fVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[21125]: ReplacementCodeuiColor4fNormal3fVertex3fSUN (dynamic) */
"iffffffffff\0"
"glReplacementCodeuiColor4fNormal3fVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[21177]: VertexAttrib4dv (will be remapped) */
+ /* _mesa_function_pool[21184]: VertexAttrib4dv (will be remapped) */
"ip\0"
"glVertexAttrib4dv\0"
"glVertexAttrib4dvARB\0"
"\0"
- /* _mesa_function_pool[21220]: InstrumentsBufferSGIX (dynamic) */
+ /* _mesa_function_pool[21227]: InstrumentsBufferSGIX (dynamic) */
"ip\0"
"glInstrumentsBufferSGIX\0"
"\0"
- /* _mesa_function_pool[21248]: SharpenTexFuncSGIS (dynamic) */
+ /* _mesa_function_pool[21255]: SharpenTexFuncSGIS (dynamic) */
"iip\0"
"glSharpenTexFuncSGIS\0"
"\0"
- /* _mesa_function_pool[21274]: DrawArraysInstancedARB (will be remapped) */
+ /* _mesa_function_pool[21281]: DrawArraysInstancedARB (will be remapped) */
"iiii\0"
"glDrawArraysInstancedARB\0"
"glDrawArraysInstancedEXT\0"
"glDrawArraysInstanced\0"
"\0"
- /* _mesa_function_pool[21352]: GetTexParameterxv (will be remapped) */
+ /* _mesa_function_pool[21359]: GetTexParameterxv (will be remapped) */
"iip\0"
"glGetTexParameterxvOES\0"
"glGetTexParameterxv\0"
"\0"
- /* _mesa_function_pool[21400]: GetAttachedShaders (will be remapped) */
+ /* _mesa_function_pool[21407]: GetAttachedShaders (will be remapped) */
"iipp\0"
"glGetAttachedShaders\0"
"\0"
- /* _mesa_function_pool[21427]: DebugMessageInsert (will be remapped) */
+ /* _mesa_function_pool[21434]: DebugMessageInsert (will be remapped) */
"iiiiip\0"
"glDebugMessageInsert\0"
"\0"
- /* _mesa_function_pool[21456]: Materialiv (offset 172) */
+ /* _mesa_function_pool[21463]: Materialiv (offset 172) */
"iip\0"
"glMaterialiv\0"
"\0"
- /* _mesa_function_pool[21474]: PushClientAttrib (offset 335) */
+ /* _mesa_function_pool[21481]: PushClientAttrib (offset 335) */
"i\0"
"glPushClientAttrib\0"
"\0"
- /* _mesa_function_pool[21496]: ProgramEnvParameters4fvEXT (will be remapped) */
+ /* _mesa_function_pool[21503]: ProgramEnvParameters4fvEXT (will be remapped) */
"iiip\0"
"glProgramEnvParameters4fvEXT\0"
"\0"
- /* _mesa_function_pool[21531]: TexCoord2fColor4fNormal3fVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[21538]: TexCoord2fColor4fNormal3fVertex3fvSUN (dynamic) */
"pppp\0"
"glTexCoord2fColor4fNormal3fVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[21577]: SecondaryColor3fvEXT (will be remapped) */
+ /* _mesa_function_pool[21584]: SecondaryColor3fvEXT (will be remapped) */
"p\0"
"glSecondaryColor3fv\0"
"glSecondaryColor3fvEXT\0"
"\0"
- /* _mesa_function_pool[21623]: PolygonMode (offset 174) */
+ /* _mesa_function_pool[21630]: PolygonMode (offset 174) */
"ii\0"
"glPolygonMode\0"
"\0"
- /* _mesa_function_pool[21641]: SecondaryColor3iv (will be remapped) */
+ /* _mesa_function_pool[21648]: SecondaryColor3iv (will be remapped) */
"p\0"
"glSecondaryColor3iv\0"
"glSecondaryColor3ivEXT\0"
"\0"
- /* _mesa_function_pool[21687]: DrawTexivOES (will be remapped) */
- "p\0"
- "glDrawTexivOES\0"
+ /* _mesa_function_pool[21694]: VertexAttribIFormat (will be remapped) */
+ "iiii\0"
+ "glVertexAttribIFormat\0"
"\0"
- /* _mesa_function_pool[21705]: VertexAttribI1iEXT (will be remapped) */
+ /* _mesa_function_pool[21722]: VertexAttribI1iEXT (will be remapped) */
"ii\0"
"glVertexAttribI1iEXT\0"
"glVertexAttribI1i\0"
"\0"
- /* _mesa_function_pool[21748]: VertexAttrib4Niv (will be remapped) */
+ /* _mesa_function_pool[21765]: VertexAttrib4Niv (will be remapped) */
"ip\0"
"glVertexAttrib4Niv\0"
"glVertexAttrib4NivARB\0"
"\0"
- /* _mesa_function_pool[21793]: GetVertexAttribivNV (will be remapped) */
+ /* _mesa_function_pool[21810]: GetVertexAttribivNV (will be remapped) */
"iip\0"
"glGetVertexAttribivNV\0"
"\0"
- /* _mesa_function_pool[21820]: GetProgramStringARB (will be remapped) */
+ /* _mesa_function_pool[21837]: GetProgramStringARB (will be remapped) */
"iip\0"
"glGetProgramStringARB\0"
"\0"
- /* _mesa_function_pool[21847]: GetnUniformdvARB (will be remapped) */
+ /* _mesa_function_pool[21864]: GetnUniformdvARB (will be remapped) */
"iiip\0"
"glGetnUniformdvARB\0"
"\0"
- /* _mesa_function_pool[21872]: DrawElementsInstancedBaseVertex (will be remapped) */
+ /* _mesa_function_pool[21889]: DrawElementsInstancedBaseVertex (will be remapped) */
"iiipii\0"
"glDrawElementsInstancedBaseVertex\0"
"\0"
- /* _mesa_function_pool[21914]: LinkProgram (will be remapped) */
+ /* _mesa_function_pool[21931]: LinkProgram (will be remapped) */
"i\0"
"glLinkProgram\0"
"glLinkProgramARB\0"
"\0"
- /* _mesa_function_pool[21948]: TexBumpParameterfvATI (will be remapped) */
+ /* _mesa_function_pool[21965]: TexBumpParameterfvATI (will be remapped) */
"ip\0"
"glTexBumpParameterfvATI\0"
"\0"
- /* _mesa_function_pool[21976]: Tangent3ivEXT (dynamic) */
+ /* _mesa_function_pool[21993]: Tangent3ivEXT (dynamic) */
"p\0"
"glTangent3ivEXT\0"
"\0"
- /* _mesa_function_pool[21995]: Uniform1f (will be remapped) */
+ /* _mesa_function_pool[22012]: Uniform1f (will be remapped) */
"if\0"
"glUniform1f\0"
"glUniform1fARB\0"
"\0"
- /* _mesa_function_pool[22026]: DisableClientState (offset 309) */
+ /* _mesa_function_pool[22043]: DisableClientState (offset 309) */
"i\0"
"glDisableClientState\0"
"\0"
- /* _mesa_function_pool[22050]: TexGeni (offset 192) */
+ /* _mesa_function_pool[22067]: TexGeni (offset 192) */
"iii\0"
"glTexGeni\0"
"glTexGeniOES\0"
"\0"
- /* _mesa_function_pool[22078]: TexGenf (offset 190) */
+ /* _mesa_function_pool[22095]: TexGenf (offset 190) */
"iif\0"
"glTexGenf\0"
"glTexGenfOES\0"
"\0"
- /* _mesa_function_pool[22106]: TexEnvx (will be remapped) */
+ /* _mesa_function_pool[22123]: TexEnvx (will be remapped) */
"iii\0"
"glTexEnvxOES\0"
"glTexEnvx\0"
"\0"
- /* _mesa_function_pool[22134]: TexGend (offset 188) */
+ /* _mesa_function_pool[22151]: TexGend (offset 188) */
"iid\0"
"glTexGend\0"
"\0"
- /* _mesa_function_pool[22149]: Uniform1i (will be remapped) */
+ /* _mesa_function_pool[22166]: Uniform1i (will be remapped) */
"ii\0"
"glUniform1i\0"
"glUniform1iARB\0"
"\0"
- /* _mesa_function_pool[22180]: GetPolygonStipple (offset 274) */
+ /* _mesa_function_pool[22197]: GetPolygonStipple (offset 274) */
"p\0"
"glGetPolygonStipple\0"
"\0"
- /* _mesa_function_pool[22203]: VertexAttrib4d (will be remapped) */
+ /* _mesa_function_pool[22220]: VertexAttrib4d (will be remapped) */
"idddd\0"
"glVertexAttrib4d\0"
"glVertexAttrib4dARB\0"
"\0"
- /* _mesa_function_pool[22247]: GetVertexAttribfvNV (will be remapped) */
+ /* _mesa_function_pool[22264]: GetVertexAttribfvNV (will be remapped) */
"iip\0"
"glGetVertexAttribfvNV\0"
"\0"
- /* _mesa_function_pool[22274]: Tangent3iEXT (dynamic) */
+ /* _mesa_function_pool[22291]: Tangent3iEXT (dynamic) */
"iii\0"
"glTangent3iEXT\0"
"\0"
- /* _mesa_function_pool[22294]: DrawArraysInstancedBaseInstance (will be remapped) */
+ /* _mesa_function_pool[22311]: DrawArraysInstancedBaseInstance (will be remapped) */
"iiiii\0"
"glDrawArraysInstancedBaseInstance\0"
"\0"
- /* _mesa_function_pool[22335]: VertexAttrib2svNV (will be remapped) */
+ /* _mesa_function_pool[22352]: VertexAttrib2svNV (will be remapped) */
"ip\0"
"glVertexAttrib2svNV\0"
"\0"
- /* _mesa_function_pool[22359]: MultMatrixx (will be remapped) */
+ /* _mesa_function_pool[22376]: MultMatrixx (will be remapped) */
"p\0"
"glMultMatrixxOES\0"
"glMultMatrixx\0"
"\0"
- /* _mesa_function_pool[22393]: NormalP3uiv (will be remapped) */
+ /* _mesa_function_pool[22410]: NormalP3uiv (will be remapped) */
"ip\0"
"glNormalP3uiv\0"
"\0"
- /* _mesa_function_pool[22411]: SecondaryColorP3uiv (will be remapped) */
+ /* _mesa_function_pool[22428]: SecondaryColorP3uiv (will be remapped) */
"ip\0"
"glSecondaryColorP3uiv\0"
"\0"
- /* _mesa_function_pool[22437]: VertexAttribs1fvNV (will be remapped) */
+ /* _mesa_function_pool[22454]: VertexAttribs1fvNV (will be remapped) */
"iip\0"
"glVertexAttribs1fvNV\0"
"\0"
- /* _mesa_function_pool[22463]: GetPerfMonitorCountersAMD (will be remapped) */
+ /* _mesa_function_pool[22480]: GetPerfMonitorCountersAMD (will be remapped) */
"ippip\0"
"glGetPerfMonitorCountersAMD\0"
"\0"
- /* _mesa_function_pool[22498]: DrawTexsvOES (will be remapped) */
+ /* _mesa_function_pool[22515]: DrawTexsvOES (will be remapped) */
"p\0"
"glDrawTexsvOES\0"
"\0"
- /* _mesa_function_pool[22516]: WindowPos4sMESA (will be remapped) */
+ /* _mesa_function_pool[22533]: WindowPos4sMESA (will be remapped) */
"iiii\0"
"glWindowPos4sMESA\0"
"\0"
- /* _mesa_function_pool[22540]: GetnPixelMapuivARB (will be remapped) */
+ /* _mesa_function_pool[22557]: GetnPixelMapuivARB (will be remapped) */
"iip\0"
"glGetnPixelMapuivARB\0"
"\0"
- /* _mesa_function_pool[22566]: VertexAttrib4s (will be remapped) */
+ /* _mesa_function_pool[22583]: VertexAttrib4s (will be remapped) */
"iiiii\0"
"glVertexAttrib4s\0"
"glVertexAttrib4sARB\0"
"\0"
- /* _mesa_function_pool[22610]: GetSamplerParameterIuiv (will be remapped) */
+ /* _mesa_function_pool[22627]: GetSamplerParameterIuiv (will be remapped) */
"iip\0"
"glGetSamplerParameterIuiv\0"
"\0"
- /* _mesa_function_pool[22641]: ReplacementCodeusvSUN (dynamic) */
+ /* _mesa_function_pool[22658]: ReplacementCodeusvSUN (dynamic) */
"p\0"
"glReplacementCodeusvSUN\0"
"\0"
- /* _mesa_function_pool[22668]: VertexAttrib2dvNV (will be remapped) */
+ /* _mesa_function_pool[22685]: VertexAttrib2dvNV (will be remapped) */
"ip\0"
"glVertexAttrib2dvNV\0"
"\0"
- /* _mesa_function_pool[22692]: UseProgram (will be remapped) */
+ /* _mesa_function_pool[22709]: UseProgram (will be remapped) */
"i\0"
"glUseProgram\0"
"glUseProgramObjectARB\0"
"\0"
- /* _mesa_function_pool[22730]: GlobalAlphaFactoriSUN (dynamic) */
+ /* _mesa_function_pool[22747]: GlobalAlphaFactoriSUN (dynamic) */
"i\0"
"glGlobalAlphaFactoriSUN\0"
"\0"
- /* _mesa_function_pool[22757]: CompileShader (will be remapped) */
+ /* _mesa_function_pool[22774]: CompileShader (will be remapped) */
"i\0"
"glCompileShader\0"
"glCompileShaderARB\0"
"\0"
- /* _mesa_function_pool[22795]: Color4sv (offset 34) */
+ /* _mesa_function_pool[22812]: Color4sv (offset 34) */
"p\0"
"glColor4sv\0"
"\0"
- /* _mesa_function_pool[22809]: MultiModeDrawArraysIBM (will be remapped) */
+ /* _mesa_function_pool[22826]: MultiModeDrawArraysIBM (will be remapped) */
"pppii\0"
"glMultiModeDrawArraysIBM\0"
"\0"
- /* _mesa_function_pool[22841]: MultiTexCoord3d (offset 392) */
+ /* _mesa_function_pool[22858]: MultiTexCoord3d (offset 392) */
"iddd\0"
"glMultiTexCoord3d\0"
"glMultiTexCoord3dARB\0"
"\0"
- /* _mesa_function_pool[22886]: LoadTransposeMatrixf (will be remapped) */
+ /* _mesa_function_pool[22903]: LoadTransposeMatrixf (will be remapped) */
"p\0"
"glLoadTransposeMatrixf\0"
"glLoadTransposeMatrixfARB\0"
"\0"
- /* _mesa_function_pool[22938]: LoadTransposeMatrixd (will be remapped) */
+ /* _mesa_function_pool[22955]: LoadTransposeMatrixd (will be remapped) */
"p\0"
"glLoadTransposeMatrixd\0"
"glLoadTransposeMatrixdARB\0"
"\0"
- /* _mesa_function_pool[22990]: FlushMappedBufferRangeAPPLE (will be remapped) */
+ /* _mesa_function_pool[23007]: FlushMappedBufferRangeAPPLE (will be remapped) */
"iii\0"
"glFlushMappedBufferRangeAPPLE\0"
"\0"
- /* _mesa_function_pool[23025]: PixelZoom (offset 246) */
+ /* _mesa_function_pool[23042]: PixelZoom (offset 246) */
"ff\0"
"glPixelZoom\0"
"\0"
- /* _mesa_function_pool[23041]: ReplacementCodePointerSUN (dynamic) */
+ /* _mesa_function_pool[23058]: ReplacementCodePointerSUN (dynamic) */
"iip\0"
"glReplacementCodePointerSUN\0"
"\0"
- /* _mesa_function_pool[23074]: ProgramEnvParameter4dARB (will be remapped) */
+ /* _mesa_function_pool[23091]: ProgramEnvParameter4dARB (will be remapped) */
"iidddd\0"
"glProgramEnvParameter4dARB\0"
"glProgramParameter4dNV\0"
"\0"
- /* _mesa_function_pool[23132]: ColorTableParameterfv (offset 340) */
+ /* _mesa_function_pool[23149]: ColorTableParameterfv (offset 340) */
"iip\0"
"glColorTableParameterfv\0"
"glColorTableParameterfvSGI\0"
"\0"
- /* _mesa_function_pool[23188]: GetFragDataLocation (will be remapped) */
+ /* _mesa_function_pool[23205]: GetFragDataLocation (will be remapped) */
"ip\0"
"glGetFragDataLocationEXT\0"
"glGetFragDataLocation\0"
"\0"
- /* _mesa_function_pool[23239]: TexStorage3DMultisample (will be remapped) */
+ /* _mesa_function_pool[23256]: TexStorage3DMultisample (will be remapped) */
"iiiiiii\0"
"glTexStorage3DMultisample\0"
"\0"
- /* _mesa_function_pool[23274]: Binormal3bvEXT (dynamic) */
+ /* _mesa_function_pool[23291]: Binormal3bvEXT (dynamic) */
"p\0"
"glBinormal3bvEXT\0"
"\0"
- /* _mesa_function_pool[23294]: PixelMapuiv (offset 252) */
+ /* _mesa_function_pool[23311]: PixelMapuiv (offset 252) */
"iip\0"
"glPixelMapuiv\0"
"\0"
- /* _mesa_function_pool[23313]: Color3dv (offset 12) */
+ /* _mesa_function_pool[23330]: Color3dv (offset 12) */
"p\0"
"glColor3dv\0"
"\0"
- /* _mesa_function_pool[23327]: IsTexture (offset 330) */
+ /* _mesa_function_pool[23344]: IsTexture (offset 330) */
"i\0"
"glIsTexture\0"
"glIsTextureEXT\0"
"\0"
- /* _mesa_function_pool[23357]: VertexAttrib4fvNV (will be remapped) */
+ /* _mesa_function_pool[23374]: VertexAttrib4fvNV (will be remapped) */
"ip\0"
"glVertexAttrib4fvNV\0"
"\0"
- /* _mesa_function_pool[23381]: BeginQuery (will be remapped) */
+ /* _mesa_function_pool[23398]: BeginQuery (will be remapped) */
"ii\0"
"glBeginQuery\0"
"glBeginQueryARB\0"
"\0"
- /* _mesa_function_pool[23414]: ColorPointerEXT (will be remapped) */
+ /* _mesa_function_pool[23431]: ColorPointerEXT (will be remapped) */
"iiiip\0"
"glColorPointerEXT\0"
"\0"
- /* _mesa_function_pool[23439]: VertexWeightfvEXT (dynamic) */
+ /* _mesa_function_pool[23456]: VertexWeightfvEXT (dynamic) */
"p\0"
"glVertexWeightfvEXT\0"
"\0"
- /* _mesa_function_pool[23462]: VertexP3uiv (will be remapped) */
+ /* _mesa_function_pool[23479]: VertexP3uiv (will be remapped) */
"ip\0"
"glVertexP3uiv\0"
"\0"
- /* _mesa_function_pool[23480]: VertexAttrib3s (will be remapped) */
+ /* _mesa_function_pool[23497]: VertexAttrib3s (will be remapped) */
"iiii\0"
"glVertexAttrib3s\0"
"glVertexAttrib3sARB\0"
"\0"
- /* _mesa_function_pool[23523]: GetCombinerStageParameterfvNV (dynamic) */
+ /* _mesa_function_pool[23540]: GetCombinerStageParameterfvNV (dynamic) */
"iip\0"
"glGetCombinerStageParameterfvNV\0"
"\0"
- /* _mesa_function_pool[23560]: TexCoord4i (offset 122) */
+ /* _mesa_function_pool[23577]: TexCoord4i (offset 122) */
"iiii\0"
"glTexCoord4i\0"
"\0"
- /* _mesa_function_pool[23579]: Color4ubVertex2fSUN (dynamic) */
+ /* _mesa_function_pool[23596]: Color4ubVertex2fSUN (dynamic) */
"iiiiff\0"
"glColor4ubVertex2fSUN\0"
"\0"
- /* _mesa_function_pool[23609]: FragmentColorMaterialSGIX (dynamic) */
+ /* _mesa_function_pool[23626]: FragmentColorMaterialSGIX (dynamic) */
"ii\0"
"glFragmentColorMaterialSGIX\0"
"\0"
- /* _mesa_function_pool[23641]: CurrentPaletteMatrixARB (dynamic) */
+ /* _mesa_function_pool[23658]: CurrentPaletteMatrixARB (dynamic) */
"i\0"
"glCurrentPaletteMatrixARB\0"
"glCurrentPaletteMatrixOES\0"
"\0"
- /* _mesa_function_pool[23696]: GetMapdv (offset 266) */
+ /* _mesa_function_pool[23713]: GetMapdv (offset 266) */
"iip\0"
"glGetMapdv\0"
"\0"
- /* _mesa_function_pool[23712]: Color4fNormal3fVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[23729]: Color4fNormal3fVertex3fvSUN (dynamic) */
"ppp\0"
"glColor4fNormal3fVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[23747]: GetStringi (will be remapped) */
+ /* _mesa_function_pool[23764]: GetStringi (will be remapped) */
"ii\0"
"glGetStringi\0"
"\0"
- /* _mesa_function_pool[23764]: MultiTexCoord3iv (offset 397) */
+ /* _mesa_function_pool[23781]: MultiTexCoord3iv (offset 397) */
"ip\0"
"glMultiTexCoord3iv\0"
"glMultiTexCoord3ivARB\0"
"\0"
- /* _mesa_function_pool[23809]: GetUniformLocation (will be remapped) */
+ /* _mesa_function_pool[23826]: GetUniformLocation (will be remapped) */
"ip\0"
"glGetUniformLocation\0"
"glGetUniformLocationARB\0"
"\0"
- /* _mesa_function_pool[23858]: PixelStoref (offset 249) */
+ /* _mesa_function_pool[23875]: PixelStoref (offset 249) */
"if\0"
"glPixelStoref\0"
"\0"
- /* _mesa_function_pool[23876]: WindowPos2iv (will be remapped) */
+ /* _mesa_function_pool[23893]: WindowPos2iv (will be remapped) */
"p\0"
"glWindowPos2iv\0"
"glWindowPos2ivARB\0"
"glWindowPos2ivMESA\0"
"\0"
- /* _mesa_function_pool[23931]: Binormal3dEXT (dynamic) */
+ /* _mesa_function_pool[23948]: Binormal3dEXT (dynamic) */
"ddd\0"
"glBinormal3dEXT\0"
"\0"
- /* _mesa_function_pool[23952]: ReplacementCodeuiColor4ubVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[23969]: ReplacementCodeuiColor4ubVertex3fSUN (dynamic) */
"iiiiifff\0"
"glReplacementCodeuiColor4ubVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[24001]: PixelStorei (offset 250) */
+ /* _mesa_function_pool[24018]: PixelStorei (offset 250) */
"ii\0"
"glPixelStorei\0"
"\0"
- /* _mesa_function_pool[24019]: IsBuffer (will be remapped) */
+ /* _mesa_function_pool[24036]: IsBuffer (will be remapped) */
"i\0"
"glIsBuffer\0"
"glIsBufferARB\0"
"\0"
- /* _mesa_function_pool[24047]: VertexAttrib2fNV (will be remapped) */
+ /* _mesa_function_pool[24064]: VertexAttrib2fNV (will be remapped) */
"iff\0"
"glVertexAttrib2fNV\0"
"\0"
- /* _mesa_function_pool[24071]: FragmentMaterialiSGIX (dynamic) */
+ /* _mesa_function_pool[24088]: FragmentMaterialiSGIX (dynamic) */
"iii\0"
"glFragmentMaterialiSGIX\0"
"\0"
- /* _mesa_function_pool[24100]: VertexAttribI4ubv (will be remapped) */
+ /* _mesa_function_pool[24117]: VertexAttribI4ubv (will be remapped) */
"ip\0"
"glVertexAttribI4ubvEXT\0"
"glVertexAttribI4ubv\0"
"\0"
- /* _mesa_function_pool[24147]: EvalCoord2dv (offset 233) */
+ /* _mesa_function_pool[24164]: EvalCoord2dv (offset 233) */
"p\0"
"glEvalCoord2dv\0"
"\0"
- /* _mesa_function_pool[24165]: GenVertexArrays (will be remapped) */
+ /* _mesa_function_pool[24182]: GenVertexArrays (will be remapped) */
"ip\0"
"glGenVertexArrays\0"
"glGenVertexArraysOES\0"
"\0"
- /* _mesa_function_pool[24208]: ColorMaterial (offset 151) */
+ /* _mesa_function_pool[24225]: ColorMaterial (offset 151) */
"ii\0"
"glColorMaterial\0"
"\0"
- /* _mesa_function_pool[24228]: InvalidateSubFramebuffer (will be remapped) */
+ /* _mesa_function_pool[24245]: InvalidateSubFramebuffer (will be remapped) */
"iipiiii\0"
"glInvalidateSubFramebuffer\0"
"\0"
- /* _mesa_function_pool[24264]: SamplePatternSGIS (will be remapped) */
+ /* _mesa_function_pool[24281]: SamplePatternSGIS (will be remapped) */
"i\0"
"glSamplePatternSGIS\0"
"glSamplePatternEXT\0"
"\0"
- /* _mesa_function_pool[24306]: ColorP4ui (will be remapped) */
+ /* _mesa_function_pool[24323]: ColorP4ui (will be remapped) */
"ii\0"
"glColorP4ui\0"
"\0"
- /* _mesa_function_pool[24322]: VertexAttribs1svNV (will be remapped) */
+ /* _mesa_function_pool[24339]: VertexAttribs1svNV (will be remapped) */
"iip\0"
"glVertexAttribs1svNV\0"
"\0"
- /* _mesa_function_pool[24348]: DrawTexsOES (will be remapped) */
+ /* _mesa_function_pool[24365]: DrawTexsOES (will be remapped) */
"iiiii\0"
"glDrawTexsOES\0"
"\0"
- /* _mesa_function_pool[24369]: Uniform2ui (will be remapped) */
+ /* _mesa_function_pool[24386]: Uniform2ui (will be remapped) */
"iii\0"
"glUniform2uiEXT\0"
"glUniform2ui\0"
"\0"
- /* _mesa_function_pool[24403]: VertexAttribI4iEXT (will be remapped) */
+ /* _mesa_function_pool[24420]: VertexAttribI4iEXT (will be remapped) */
"iiiii\0"
"glVertexAttribI4iEXT\0"
"glVertexAttribI4i\0"
"\0"
- /* _mesa_function_pool[24449]: TexBumpParameterivATI (will be remapped) */
+ /* _mesa_function_pool[24466]: TexBumpParameterivATI (will be remapped) */
"ip\0"
"glTexBumpParameterivATI\0"
"\0"
- /* _mesa_function_pool[24477]: GetSeparableFilter (offset 359) */
+ /* _mesa_function_pool[24494]: GetSeparableFilter (offset 359) */
"iiippp\0"
"glGetSeparableFilter\0"
"glGetSeparableFilterEXT\0"
"\0"
- /* _mesa_function_pool[24530]: DeleteVertexArrays (will be remapped) */
+ /* _mesa_function_pool[24547]: DeleteVertexArrays (will be remapped) */
"ip\0"
"glDeleteVertexArrays\0"
"glDeleteVertexArraysAPPLE\0"
"glDeleteVertexArraysOES\0"
"\0"
- /* _mesa_function_pool[24605]: SpriteParameteriSGIX (dynamic) */
+ /* _mesa_function_pool[24622]: SpriteParameteriSGIX (dynamic) */
"ii\0"
"glSpriteParameteriSGIX\0"
"\0"
- /* _mesa_function_pool[24632]: RequestResidentProgramsNV (will be remapped) */
+ /* _mesa_function_pool[24649]: RequestResidentProgramsNV (will be remapped) */
"ip\0"
"glRequestResidentProgramsNV\0"
"\0"
- /* _mesa_function_pool[24664]: TexCoordP3uiv (will be remapped) */
+ /* _mesa_function_pool[24681]: TexCoordP3uiv (will be remapped) */
"ip\0"
"glTexCoordP3uiv\0"
"\0"
- /* _mesa_function_pool[24684]: ReplacementCodeusSUN (dynamic) */
+ /* _mesa_function_pool[24701]: ReplacementCodeusSUN (dynamic) */
"i\0"
"glReplacementCodeusSUN\0"
"\0"
- /* _mesa_function_pool[24710]: FeedbackBuffer (offset 194) */
+ /* _mesa_function_pool[24727]: FeedbackBuffer (offset 194) */
"iip\0"
"glFeedbackBuffer\0"
"\0"
- /* _mesa_function_pool[24732]: RasterPos2iv (offset 67) */
+ /* _mesa_function_pool[24749]: RasterPos2iv (offset 67) */
"p\0"
"glRasterPos2iv\0"
"\0"
- /* _mesa_function_pool[24750]: TexImage1D (offset 182) */
+ /* _mesa_function_pool[24767]: TexImage1D (offset 182) */
"iiiiiiip\0"
"glTexImage1D\0"
"\0"
- /* _mesa_function_pool[24773]: TexEnvxv (will be remapped) */
+ /* _mesa_function_pool[24790]: TexEnvxv (will be remapped) */
"iip\0"
"glTexEnvxvOES\0"
"glTexEnvxv\0"
"\0"
- /* _mesa_function_pool[24803]: ListParameterivSGIX (dynamic) */
+ /* _mesa_function_pool[24820]: ListParameterivSGIX (dynamic) */
"iip\0"
"glListParameterivSGIX\0"
"\0"
- /* _mesa_function_pool[24830]: MultiDrawElementsEXT (will be remapped) */
+ /* _mesa_function_pool[24847]: MultiDrawElementsEXT (will be remapped) */
"ipipi\0"
"glMultiDrawElements\0"
"glMultiDrawElementsEXT\0"
"\0"
- /* _mesa_function_pool[24880]: Color3s (offset 17) */
+ /* _mesa_function_pool[24897]: Color3s (offset 17) */
"iii\0"
"glColor3s\0"
"\0"
- /* _mesa_function_pool[24895]: MultiTexCoord3s (offset 398) */
+ /* _mesa_function_pool[24912]: MultiTexCoord3s (offset 398) */
"iiii\0"
"glMultiTexCoord3s\0"
"glMultiTexCoord3sARB\0"
"\0"
- /* _mesa_function_pool[24940]: WeightusvARB (dynamic) */
+ /* _mesa_function_pool[24957]: WeightusvARB (dynamic) */
"ip\0"
"glWeightusvARB\0"
"\0"
- /* _mesa_function_pool[24959]: BindFragmentShaderATI (will be remapped) */
+ /* _mesa_function_pool[24976]: BindFragmentShaderATI (will be remapped) */
"i\0"
"glBindFragmentShaderATI\0"
"\0"
- /* _mesa_function_pool[24986]: TexCoordPointer (offset 320) */
+ /* _mesa_function_pool[25003]: TexCoordPointer (offset 320) */
"iiip\0"
"glTexCoordPointer\0"
"\0"
- /* _mesa_function_pool[25010]: GetnSeparableFilterARB (will be remapped) */
+ /* _mesa_function_pool[25027]: GetnSeparableFilterARB (will be remapped) */
"iiiipipp\0"
"glGetnSeparableFilterARB\0"
"\0"
- /* _mesa_function_pool[25045]: InvalidateBufferData (will be remapped) */
+ /* _mesa_function_pool[25062]: InvalidateBufferData (will be remapped) */
"i\0"
"glInvalidateBufferData\0"
"\0"
- /* _mesa_function_pool[25071]: Color3i (offset 15) */
+ /* _mesa_function_pool[25088]: Color3i (offset 15) */
"iii\0"
"glColor3i\0"
"\0"
- /* _mesa_function_pool[25086]: FrontFace (offset 157) */
+ /* _mesa_function_pool[25103]: FrontFace (offset 157) */
"i\0"
"glFrontFace\0"
"\0"
- /* _mesa_function_pool[25101]: EvalCoord2d (offset 232) */
+ /* _mesa_function_pool[25118]: EvalCoord2d (offset 232) */
"dd\0"
"glEvalCoord2d\0"
"\0"
- /* _mesa_function_pool[25119]: EvalCoord2f (offset 234) */
+ /* _mesa_function_pool[25136]: EvalCoord2f (offset 234) */
"ff\0"
"glEvalCoord2f\0"
"\0"
- /* _mesa_function_pool[25137]: Color3b (offset 9) */
+ /* _mesa_function_pool[25154]: Color3b (offset 9) */
"iii\0"
"glColor3b\0"
"\0"
- /* _mesa_function_pool[25152]: ExecuteProgramNV (will be remapped) */
+ /* _mesa_function_pool[25169]: ExecuteProgramNV (will be remapped) */
"iip\0"
"glExecuteProgramNV\0"
"\0"
- /* _mesa_function_pool[25176]: Color3f (offset 13) */
+ /* _mesa_function_pool[25193]: Color3f (offset 13) */
"fff\0"
"glColor3f\0"
"\0"
- /* _mesa_function_pool[25191]: LightEnviSGIX (dynamic) */
+ /* _mesa_function_pool[25208]: LightEnviSGIX (dynamic) */
"ii\0"
"glLightEnviSGIX\0"
"\0"
- /* _mesa_function_pool[25211]: Color3d (offset 11) */
+ /* _mesa_function_pool[25228]: Color3d (offset 11) */
"ddd\0"
"glColor3d\0"
"\0"
- /* _mesa_function_pool[25226]: GetVertexAttribdv (will be remapped) */
+ /* _mesa_function_pool[25243]: GetVertexAttribdv (will be remapped) */
"iip\0"
"glGetVertexAttribdv\0"
"glGetVertexAttribdvARB\0"
"\0"
- /* _mesa_function_pool[25274]: VDPAUUnregisterSurfaceNV (will be remapped) */
+ /* _mesa_function_pool[25291]: VDPAUUnregisterSurfaceNV (will be remapped) */
"i\0"
"glVDPAUUnregisterSurfaceNV\0"
"\0"
- /* _mesa_function_pool[25304]: Normal3dv (offset 55) */
+ /* _mesa_function_pool[25321]: Normal3dv (offset 55) */
"p\0"
"glNormal3dv\0"
"\0"
- /* _mesa_function_pool[25319]: Lightf (offset 159) */
+ /* _mesa_function_pool[25336]: Lightf (offset 159) */
"iif\0"
"glLightf\0"
"\0"
- /* _mesa_function_pool[25333]: FinishTextureSUNX (dynamic) */
+ /* _mesa_function_pool[25350]: FinishTextureSUNX (dynamic) */
"\0"
"glFinishTextureSUNX\0"
"\0"
- /* _mesa_function_pool[25355]: MatrixMode (offset 293) */
+ /* _mesa_function_pool[25372]: MatrixMode (offset 293) */
"i\0"
"glMatrixMode\0"
"\0"
- /* _mesa_function_pool[25371]: GetPixelMapusv (offset 273) */
+ /* _mesa_function_pool[25388]: GetPixelMapusv (offset 273) */
"ip\0"
"glGetPixelMapusv\0"
"\0"
- /* _mesa_function_pool[25392]: Lighti (offset 161) */
+ /* _mesa_function_pool[25409]: Lighti (offset 161) */
"iii\0"
"glLighti\0"
"\0"
- /* _mesa_function_pool[25406]: VertexAttribPointerNV (will be remapped) */
+ /* _mesa_function_pool[25423]: VertexAttribPointerNV (will be remapped) */
"iiiip\0"
"glVertexAttribPointerNV\0"
"\0"
- /* _mesa_function_pool[25437]: GenFramebuffers (will be remapped) */
+ /* _mesa_function_pool[25454]: GenFramebuffers (will be remapped) */
"ip\0"
"glGenFramebuffers\0"
"glGenFramebuffersEXT\0"
"glGenFramebuffersOES\0"
"\0"
- /* _mesa_function_pool[25501]: GenBuffers (will be remapped) */
+ /* _mesa_function_pool[25518]: GenBuffers (will be remapped) */
"ip\0"
"glGenBuffers\0"
"glGenBuffersARB\0"
"\0"
- /* _mesa_function_pool[25534]: VDPAUMapSurfacesNV (will be remapped) */
+ /* _mesa_function_pool[25551]: VDPAUMapSurfacesNV (will be remapped) */
"ip\0"
"glVDPAUMapSurfacesNV\0"
"\0"
- /* _mesa_function_pool[25559]: ClearDepthx (will be remapped) */
+ /* _mesa_function_pool[25576]: ClearDepthx (will be remapped) */
"i\0"
"glClearDepthxOES\0"
"glClearDepthx\0"
"\0"
- /* _mesa_function_pool[25593]: Uniform4uiv (will be remapped) */
+ /* _mesa_function_pool[25610]: Uniform4uiv (will be remapped) */
"iip\0"
"glUniform4uivEXT\0"
"glUniform4uiv\0"
"\0"
- /* _mesa_function_pool[25629]: IsFramebuffer (will be remapped) */
+ /* _mesa_function_pool[25646]: IsFramebuffer (will be remapped) */
"i\0"
"glIsFramebuffer\0"
"glIsFramebufferEXT\0"
"glIsFramebufferOES\0"
"\0"
- /* _mesa_function_pool[25686]: PopDebugGroup (will be remapped) */
+ /* _mesa_function_pool[25703]: PopDebugGroup (will be remapped) */
"\0"
"glPopDebugGroup\0"
"\0"
- /* _mesa_function_pool[25704]: PixelTransformParameterfEXT (dynamic) */
+ /* _mesa_function_pool[25721]: PixelTransformParameterfEXT (dynamic) */
"iif\0"
"glPixelTransformParameterfEXT\0"
"\0"
- /* _mesa_function_pool[25739]: BlendEquationSeparate (will be remapped) */
+ /* _mesa_function_pool[25756]: BlendEquationSeparate (will be remapped) */
"ii\0"
"glBlendEquationSeparate\0"
"glBlendEquationSeparateEXT\0"
"glBlendEquationSeparateATI\0"
"glBlendEquationSeparateOES\0"
"\0"
- /* _mesa_function_pool[25848]: Lightx (will be remapped) */
+ /* _mesa_function_pool[25865]: Lightx (will be remapped) */
"iii\0"
"glLightxOES\0"
"glLightx\0"
"\0"
- /* _mesa_function_pool[25874]: PixelTransformParameteriEXT (dynamic) */
+ /* _mesa_function_pool[25891]: PixelTransformParameteriEXT (dynamic) */
"iii\0"
"glPixelTransformParameteriEXT\0"
"\0"
- /* _mesa_function_pool[25909]: GetDoublev (offset 260) */
+ /* _mesa_function_pool[25926]: GetDoublev (offset 260) */
"ip\0"
"glGetDoublev\0"
"\0"
- /* _mesa_function_pool[25926]: MultiTexCoordP4ui (will be remapped) */
+ /* _mesa_function_pool[25943]: MultiTexCoordP4ui (will be remapped) */
"iii\0"
"glMultiTexCoordP4ui\0"
"\0"
- /* _mesa_function_pool[25951]: GetObjectLabel (will be remapped) */
+ /* _mesa_function_pool[25968]: GetObjectLabel (will be remapped) */
"iiipp\0"
"glGetObjectLabel\0"
"\0"
- /* _mesa_function_pool[25975]: MultMatrixd (offset 295) */
+ /* _mesa_function_pool[25992]: MultMatrixd (offset 295) */
"p\0"
"glMultMatrixd\0"
"\0"
- /* _mesa_function_pool[25992]: MultMatrixf (offset 294) */
+ /* _mesa_function_pool[26009]: MultMatrixf (offset 294) */
"p\0"
"glMultMatrixf\0"
"\0"
- /* _mesa_function_pool[26009]: TextureMaterialEXT (dynamic) */
+ /* _mesa_function_pool[26026]: TextureMaterialEXT (dynamic) */
"ii\0"
"glTextureMaterialEXT\0"
"\0"
- /* _mesa_function_pool[26034]: TexCoord2fColor4ubVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[26051]: TexCoord2fColor4ubVertex3fSUN (dynamic) */
"ffiiiifff\0"
"glTexCoord2fColor4ubVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[26077]: VertexAttrib1d (will be remapped) */
+ /* _mesa_function_pool[26094]: VertexAttrib1d (will be remapped) */
"id\0"
"glVertexAttrib1d\0"
"glVertexAttrib1dARB\0"
"\0"
- /* _mesa_function_pool[26118]: CompressedTexImage1D (will be remapped) */
+ /* _mesa_function_pool[26135]: CompressedTexImage1D (will be remapped) */
"iiiiiip\0"
"glCompressedTexImage1D\0"
"glCompressedTexImage1DARB\0"
"\0"
- /* _mesa_function_pool[26176]: UnlockArraysEXT (will be remapped) */
+ /* _mesa_function_pool[26193]: UnlockArraysEXT (will be remapped) */
"\0"
"glUnlockArraysEXT\0"
"\0"
- /* _mesa_function_pool[26196]: TexBufferRange (will be remapped) */
+ /* _mesa_function_pool[26213]: TexBufferRange (will be remapped) */
"iiiii\0"
"glTexBufferRange\0"
"\0"
- /* _mesa_function_pool[26220]: MultiTexCoord4fvARB (offset 403) */
+ /* _mesa_function_pool[26237]: MultiTexCoord4fvARB (offset 403) */
"ip\0"
"glMultiTexCoord4fv\0"
"glMultiTexCoord4fvARB\0"
"\0"
- /* _mesa_function_pool[26265]: TagSampleBufferSGIX (dynamic) */
+ /* _mesa_function_pool[26282]: TagSampleBufferSGIX (dynamic) */
"\0"
"glTagSampleBufferSGIX\0"
"\0"
- /* _mesa_function_pool[26289]: UniformMatrix2x3fv (will be remapped) */
+ /* _mesa_function_pool[26306]: UniformMatrix2x3fv (will be remapped) */
"iiip\0"
"glUniformMatrix2x3fv\0"
"\0"
- /* _mesa_function_pool[26316]: SamplerParameteri (will be remapped) */
+ /* _mesa_function_pool[26333]: SamplerParameteri (will be remapped) */
"iii\0"
"glSamplerParameteri\0"
"\0"
- /* _mesa_function_pool[26341]: SamplerParameterf (will be remapped) */
+ /* _mesa_function_pool[26358]: SamplerParameterf (will be remapped) */
"iif\0"
"glSamplerParameterf\0"
"\0"
- /* _mesa_function_pool[26366]: CombinerParameteriNV (dynamic) */
+ /* _mesa_function_pool[26383]: CombinerParameteriNV (dynamic) */
"ii\0"
"glCombinerParameteriNV\0"
"\0"
- /* _mesa_function_pool[26393]: VertexAttrib1s (will be remapped) */
+ /* _mesa_function_pool[26410]: VertexAttrib1s (will be remapped) */
"ii\0"
"glVertexAttrib1s\0"
"glVertexAttrib1sARB\0"
"\0"
- /* _mesa_function_pool[26434]: EnableVertexAttribArray (will be remapped) */
+ /* _mesa_function_pool[26451]: EnableVertexAttribArray (will be remapped) */
"i\0"
"glEnableVertexAttribArray\0"
"glEnableVertexAttribArrayARB\0"
"\0"
- /* _mesa_function_pool[26492]: FrameZoomSGIX (dynamic) */
+ /* _mesa_function_pool[26509]: FrameZoomSGIX (dynamic) */
"i\0"
"glFrameZoomSGIX\0"
"\0"
- /* _mesa_function_pool[26511]: Normal3fVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[26528]: Normal3fVertex3fvSUN (dynamic) */
"pp\0"
"glNormal3fVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[26538]: Tangent3dvEXT (dynamic) */
+ /* _mesa_function_pool[26555]: Tangent3dvEXT (dynamic) */
"p\0"
"glTangent3dvEXT\0"
"\0"
- /* _mesa_function_pool[26557]: GetnUniformuivARB (will be remapped) */
+ /* _mesa_function_pool[26574]: GetnUniformuivARB (will be remapped) */
"iiip\0"
"glGetnUniformuivARB\0"
"\0"
- /* _mesa_function_pool[26583]: RasterPos4sv (offset 85) */
+ /* _mesa_function_pool[26600]: RasterPos4sv (offset 85) */
"p\0"
"glRasterPos4sv\0"
"\0"
- /* _mesa_function_pool[26601]: VertexAttrib3fvARB (will be remapped) */
+ /* _mesa_function_pool[26618]: VertexAttrib3fvARB (will be remapped) */
"ip\0"
"glVertexAttrib3fv\0"
"glVertexAttrib3fvARB\0"
"\0"
- /* _mesa_function_pool[26644]: ClearColor (offset 206) */
+ /* _mesa_function_pool[26661]: ClearColor (offset 206) */
"ffff\0"
"glClearColor\0"
"\0"
- /* _mesa_function_pool[26663]: Materialx (will be remapped) */
+ /* _mesa_function_pool[26680]: Materialx (will be remapped) */
"iii\0"
"glMaterialxOES\0"
"glMaterialx\0"
"\0"
- /* _mesa_function_pool[26695]: GetSynciv (will be remapped) */
+ /* _mesa_function_pool[26712]: GetSynciv (will be remapped) */
"iiipp\0"
"glGetSynciv\0"
"\0"
- /* _mesa_function_pool[26714]: VertexAttrib1svNV (will be remapped) */
+ /* _mesa_function_pool[26731]: VertexAttrib1svNV (will be remapped) */
"ip\0"
"glVertexAttrib1svNV\0"
"\0"
- /* _mesa_function_pool[26738]: SecondaryColor3ubv (will be remapped) */
+ /* _mesa_function_pool[26755]: SecondaryColor3ubv (will be remapped) */
"p\0"
"glSecondaryColor3ubv\0"
"glSecondaryColor3ubvEXT\0"
"\0"
- /* _mesa_function_pool[26786]: PointParameteri (will be remapped) */
+ /* _mesa_function_pool[26803]: PointParameteri (will be remapped) */
"ii\0"
"glPointParameteri\0"
"glPointParameteriNV\0"
"\0"
- /* _mesa_function_pool[26828]: PointParameterf (will be remapped) */
+ /* _mesa_function_pool[26845]: PointParameterf (will be remapped) */
"if\0"
"glPointParameterf\0"
"glPointParameterfARB\0"
"glPointParameterfEXT\0"
"glPointParameterfSGIS\0"
"\0"
- /* _mesa_function_pool[26914]: GlobalAlphaFactorsSUN (dynamic) */
+ /* _mesa_function_pool[26931]: GlobalAlphaFactorsSUN (dynamic) */
"i\0"
"glGlobalAlphaFactorsSUN\0"
"\0"
- /* _mesa_function_pool[26941]: GetDebugMessageLog (will be remapped) */
+ /* _mesa_function_pool[26958]: GetDebugMessageLog (will be remapped) */
"iipppppp\0"
"glGetDebugMessageLog\0"
"\0"
- /* _mesa_function_pool[26972]: TexEnviv (offset 187) */
+ /* _mesa_function_pool[26989]: TexEnviv (offset 187) */
"iip\0"
"glTexEnviv\0"
"\0"
- /* _mesa_function_pool[26988]: TexSubImage3D (offset 372) */
+ /* _mesa_function_pool[27005]: TexSubImage3D (offset 372) */
"iiiiiiiiiip\0"
"glTexSubImage3D\0"
"glTexSubImage3DEXT\0"
"glTexSubImage3DOES\0"
"\0"
- /* _mesa_function_pool[27055]: Tangent3fEXT (dynamic) */
+ /* _mesa_function_pool[27072]: Tangent3fEXT (dynamic) */
"fff\0"
"glTangent3fEXT\0"
"\0"
- /* _mesa_function_pool[27075]: DeformationMap3fSGIX (dynamic) */
+ /* _mesa_function_pool[27092]: DeformationMap3fSGIX (dynamic) */
"iffiiffiiffiip\0"
"glDeformationMap3fSGIX\0"
"\0"
- /* _mesa_function_pool[27114]: BeginPerfMonitorAMD (will be remapped) */
+ /* _mesa_function_pool[27131]: BeginPerfMonitorAMD (will be remapped) */
"i\0"
"glBeginPerfMonitorAMD\0"
"\0"
- /* _mesa_function_pool[27139]: MatrixIndexubvARB (dynamic) */
+ /* _mesa_function_pool[27156]: MatrixIndexubvARB (dynamic) */
"ip\0"
"glMatrixIndexubvARB\0"
"\0"
- /* _mesa_function_pool[27163]: Color4fNormal3fVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[27180]: Color4fNormal3fVertex3fSUN (dynamic) */
"ffffffffff\0"
"glColor4fNormal3fVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[27204]: PixelTexGenParameterfSGIS (dynamic) */
+ /* _mesa_function_pool[27221]: PixelTexGenParameterfSGIS (dynamic) */
"if\0"
"glPixelTexGenParameterfSGIS\0"
"\0"
- /* _mesa_function_pool[27236]: CreateShader (will be remapped) */
+ /* _mesa_function_pool[27253]: CreateShader (will be remapped) */
"i\0"
"glCreateShader\0"
"\0"
- /* _mesa_function_pool[27254]: GetColorTableParameterfv (offset 344) */
+ /* _mesa_function_pool[27271]: GetColorTableParameterfv (offset 344) */
"iip\0"
"glGetColorTableParameterfv\0"
"glGetColorTableParameterfvSGI\0"
"glGetColorTableParameterfvEXT\0"
"\0"
- /* _mesa_function_pool[27346]: FragmentLightModelfvSGIX (dynamic) */
+ /* _mesa_function_pool[27363]: FragmentLightModelfvSGIX (dynamic) */
"ip\0"
"glFragmentLightModelfvSGIX\0"
"\0"
- /* _mesa_function_pool[27377]: FramebufferTexture2D (will be remapped) */
+ /* _mesa_function_pool[27394]: FramebufferTexture2D (will be remapped) */
"iiiii\0"
"glFramebufferTexture2D\0"
"glFramebufferTexture2DEXT\0"
"glFramebufferTexture2DOES\0"
"\0"
- /* _mesa_function_pool[27459]: Bitmap (offset 8) */
+ /* _mesa_function_pool[27476]: Bitmap (offset 8) */
"iiffffp\0"
"glBitmap\0"
"\0"
- /* _mesa_function_pool[27477]: MultiTexCoord3fARB (offset 394) */
+ /* _mesa_function_pool[27494]: MultiTexCoord3fARB (offset 394) */
"ifff\0"
"glMultiTexCoord3f\0"
"glMultiTexCoord3fARB\0"
"\0"
- /* _mesa_function_pool[27522]: GetTexLevelParameterfv (offset 284) */
+ /* _mesa_function_pool[27539]: GetTexLevelParameterfv (offset 284) */
"iiip\0"
"glGetTexLevelParameterfv\0"
"\0"
- /* _mesa_function_pool[27553]: GetPixelTexGenParameterfvSGIS (dynamic) */
+ /* _mesa_function_pool[27570]: GetPixelTexGenParameterfvSGIS (dynamic) */
"ip\0"
"glGetPixelTexGenParameterfvSGIS\0"
"\0"
- /* _mesa_function_pool[27589]: CheckFramebufferStatus (will be remapped) */
+ /* _mesa_function_pool[27606]: CheckFramebufferStatus (will be remapped) */
"i\0"
"glCheckFramebufferStatus\0"
"glCheckFramebufferStatusEXT\0"
"glCheckFramebufferStatusOES\0"
"\0"
- /* _mesa_function_pool[27673]: DrawTransformFeedbackStream (will be remapped) */
+ /* _mesa_function_pool[27690]: DrawTransformFeedbackStream (will be remapped) */
"iii\0"
"glDrawTransformFeedbackStream\0"
"\0"
- /* _mesa_function_pool[27708]: Vertex2sv (offset 133) */
+ /* _mesa_function_pool[27725]: Vertex2sv (offset 133) */
"p\0"
"glVertex2sv\0"
"\0"
- /* _mesa_function_pool[27723]: GetIntegerv (offset 263) */
+ /* _mesa_function_pool[27740]: GetIntegerv (offset 263) */
"ip\0"
"glGetIntegerv\0"
"\0"
- /* _mesa_function_pool[27741]: GenFragmentShadersATI (will be remapped) */
+ /* _mesa_function_pool[27758]: GenFragmentShadersATI (will be remapped) */
"i\0"
"glGenFragmentShadersATI\0"
"\0"
- /* _mesa_function_pool[27768]: GetShaderSource (will be remapped) */
+ /* _mesa_function_pool[27785]: GetShaderSource (will be remapped) */
"iipp\0"
"glGetShaderSource\0"
"glGetShaderSourceARB\0"
"\0"
- /* _mesa_function_pool[27813]: GetTexBumpParameterfvATI (will be remapped) */
+ /* _mesa_function_pool[27830]: GetTexBumpParameterfvATI (will be remapped) */
"ip\0"
"glGetTexBumpParameterfvATI\0"
"\0"
- /* _mesa_function_pool[27844]: BindProgramARB (will be remapped) */
+ /* _mesa_function_pool[27861]: BindProgramARB (will be remapped) */
"ii\0"
"glBindProgramARB\0"
"glBindProgramNV\0"
"\0"
- /* _mesa_function_pool[27881]: GetnMapdvARB (will be remapped) */
+ /* _mesa_function_pool[27898]: GetnMapdvARB (will be remapped) */
"iiip\0"
"glGetnMapdvARB\0"
"\0"
- /* _mesa_function_pool[27902]: VertexAttrib3sNV (will be remapped) */
+ /* _mesa_function_pool[27919]: VertexAttrib3sNV (will be remapped) */
"iiii\0"
"glVertexAttrib3sNV\0"
"\0"
- /* _mesa_function_pool[27927]: VertexAttribI2uivEXT (will be remapped) */
+ /* _mesa_function_pool[27944]: VertexAttribI2uivEXT (will be remapped) */
"ip\0"
"glVertexAttribI2uivEXT\0"
"glVertexAttribI2uiv\0"
"\0"
- /* _mesa_function_pool[27974]: GetProgramEnvParameterfvARB (will be remapped) */
+ /* _mesa_function_pool[27991]: GetProgramEnvParameterfvARB (will be remapped) */
"iip\0"
"glGetProgramEnvParameterfvARB\0"
"\0"
- /* _mesa_function_pool[28009]: GetTrackMatrixivNV (will be remapped) */
+ /* _mesa_function_pool[28026]: GetTrackMatrixivNV (will be remapped) */
"iiip\0"
"glGetTrackMatrixivNV\0"
"\0"
- /* _mesa_function_pool[28036]: VertexAttrib3svNV (will be remapped) */
+ /* _mesa_function_pool[28053]: VertexAttrib3svNV (will be remapped) */
"ip\0"
"glVertexAttrib3svNV\0"
"\0"
- /* _mesa_function_pool[28060]: GetActiveUniform (will be remapped) */
+ /* _mesa_function_pool[28077]: GetActiveUniform (will be remapped) */
"iiipppp\0"
"glGetActiveUniform\0"
"glGetActiveUniformARB\0"
"\0"
- /* _mesa_function_pool[28110]: DeleteBuffers (will be remapped) */
+ /* _mesa_function_pool[28127]: DeleteBuffers (will be remapped) */
"ip\0"
"glDeleteBuffers\0"
"glDeleteBuffersARB\0"
"\0"
- /* _mesa_function_pool[28149]: AlphaFuncx (will be remapped) */
+ /* _mesa_function_pool[28166]: AlphaFuncx (will be remapped) */
"ii\0"
"glAlphaFuncxOES\0"
"glAlphaFuncx\0"
"\0"
- /* _mesa_function_pool[28182]: TexCoord2fNormal3fVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[28199]: TexCoord2fNormal3fVertex3fSUN (dynamic) */
"ffffffff\0"
"glTexCoord2fNormal3fVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[28224]: GetTexEnviv (offset 277) */
+ /* _mesa_function_pool[28241]: GetTexEnviv (offset 277) */
"iip\0"
"glGetTexEnviv\0"
"\0"
- /* _mesa_function_pool[28243]: GetBufferSubData (will be remapped) */
+ /* _mesa_function_pool[28260]: DrawTexivOES (will be remapped) */
+ "p\0"
+ "glDrawTexivOES\0"
+ "\0"
+ /* _mesa_function_pool[28278]: GetBufferSubData (will be remapped) */
"iiip\0"
"glGetBufferSubData\0"
"glGetBufferSubDataARB\0"
"\0"
- /* _mesa_function_pool[28290]: EGLImageTargetRenderbufferStorageOES (will be remapped) */
+ /* _mesa_function_pool[28325]: EGLImageTargetRenderbufferStorageOES (will be remapped) */
"ip\0"
"glEGLImageTargetRenderbufferStorageOES\0"
"\0"
- /* _mesa_function_pool[28333]: VertexAttribI2ivEXT (will be remapped) */
+ /* _mesa_function_pool[28368]: VertexAttribI2ivEXT (will be remapped) */
"ip\0"
"glVertexAttribI2ivEXT\0"
"glVertexAttribI2iv\0"
"\0"
- /* _mesa_function_pool[28378]: PopClientAttrib (offset 334) */
+ /* _mesa_function_pool[28413]: PopClientAttrib (offset 334) */
"\0"
"glPopClientAttrib\0"
"\0"
- /* _mesa_function_pool[28398]: ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[28433]: ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN (dynamic) */
"iffffffffffff\0"
"glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[28469]: DetachObjectARB (will be remapped) */
+ /* _mesa_function_pool[28504]: DetachObjectARB (will be remapped) */
"ii\0"
"glDetachObjectARB\0"
"\0"
- /* _mesa_function_pool[28491]: VertexBlendARB (dynamic) */
+ /* _mesa_function_pool[28526]: VertexBlendARB (dynamic) */
"i\0"
"glVertexBlendARB\0"
"\0"
- /* _mesa_function_pool[28511]: EndTransformFeedback (will be remapped) */
+ /* _mesa_function_pool[28546]: EndTransformFeedback (will be remapped) */
"\0"
"glEndTransformFeedback\0"
"glEndTransformFeedbackEXT\0"
"\0"
- /* _mesa_function_pool[28562]: SeparableFilter2D (offset 360) */
+ /* _mesa_function_pool[28597]: SeparableFilter2D (offset 360) */
"iiiiiipp\0"
"glSeparableFilter2D\0"
"glSeparableFilter2DEXT\0"
"\0"
- /* _mesa_function_pool[28615]: GetQueryObjectuiv (will be remapped) */
+ /* _mesa_function_pool[28650]: GetQueryObjectuiv (will be remapped) */
"iip\0"
"glGetQueryObjectuiv\0"
"glGetQueryObjectuivARB\0"
"\0"
- /* _mesa_function_pool[28663]: ReplacementCodeuiColor4ubVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[28698]: ReplacementCodeuiColor4ubVertex3fvSUN (dynamic) */
"ppp\0"
"glReplacementCodeuiColor4ubVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[28708]: Map1d (offset 220) */
+ /* _mesa_function_pool[28743]: Map1d (offset 220) */
"iddiip\0"
"glMap1d\0"
"\0"
- /* _mesa_function_pool[28724]: Map1f (offset 221) */
+ /* _mesa_function_pool[28759]: Map1f (offset 221) */
"iffiip\0"
"glMap1f\0"
"\0"
- /* _mesa_function_pool[28740]: FlushRasterSGIX (dynamic) */
+ /* _mesa_function_pool[28775]: FlushRasterSGIX (dynamic) */
"\0"
"glFlushRasterSGIX\0"
"\0"
- /* _mesa_function_pool[28760]: ArrayElement (offset 306) */
+ /* _mesa_function_pool[28795]: ArrayElement (offset 306) */
"i\0"
"glArrayElement\0"
"glArrayElementEXT\0"
"\0"
- /* _mesa_function_pool[28796]: TexImage2D (offset 183) */
+ /* _mesa_function_pool[28831]: TexImage2D (offset 183) */
"iiiiiiiip\0"
"glTexImage2D\0"
"\0"
- /* _mesa_function_pool[28820]: DepthBoundsEXT (will be remapped) */
+ /* _mesa_function_pool[28855]: DepthBoundsEXT (will be remapped) */
"dd\0"
"glDepthBoundsEXT\0"
"\0"
- /* _mesa_function_pool[28841]: GetProgramivNV (will be remapped) */
+ /* _mesa_function_pool[28876]: GetProgramivNV (will be remapped) */
"iip\0"
"glGetProgramivNV\0"
"\0"
- /* _mesa_function_pool[28863]: GetMinmaxParameteriv (offset 366) */
+ /* _mesa_function_pool[28898]: GetMinmaxParameteriv (offset 366) */
"iip\0"
"glGetMinmaxParameteriv\0"
"glGetMinmaxParameterivEXT\0"
"\0"
- /* _mesa_function_pool[28917]: PixelTransferf (offset 247) */
+ /* _mesa_function_pool[28952]: PixelTransferf (offset 247) */
"if\0"
"glPixelTransferf\0"
"\0"
- /* _mesa_function_pool[28938]: CopyTexImage1D (offset 323) */
+ /* _mesa_function_pool[28973]: CopyTexImage1D (offset 323) */
"iiiiiii\0"
"glCopyTexImage1D\0"
"glCopyTexImage1DEXT\0"
"\0"
- /* _mesa_function_pool[28984]: PushMatrix (offset 298) */
+ /* _mesa_function_pool[29019]: PushMatrix (offset 298) */
"\0"
"glPushMatrix\0"
"\0"
- /* _mesa_function_pool[28999]: SelectPerfMonitorCountersAMD (will be remapped) */
+ /* _mesa_function_pool[29034]: SelectPerfMonitorCountersAMD (will be remapped) */
"iiiip\0"
"glSelectPerfMonitorCountersAMD\0"
"\0"
- /* _mesa_function_pool[29037]: Fogiv (offset 156) */
+ /* _mesa_function_pool[29072]: Fogiv (offset 156) */
"ip\0"
"glFogiv\0"
"\0"
- /* _mesa_function_pool[29049]: EndQuery (will be remapped) */
+ /* _mesa_function_pool[29084]: EndQuery (will be remapped) */
"i\0"
"glEndQuery\0"
"glEndQueryARB\0"
"\0"
- /* _mesa_function_pool[29077]: TexCoord1dv (offset 95) */
+ /* _mesa_function_pool[29112]: TexCoord1dv (offset 95) */
"p\0"
"glTexCoord1dv\0"
"\0"
- /* _mesa_function_pool[29094]: AlphaFragmentOp3ATI (will be remapped) */
+ /* _mesa_function_pool[29129]: AlphaFragmentOp3ATI (will be remapped) */
"iiiiiiiiiiii\0"
"glAlphaFragmentOp3ATI\0"
"\0"
- /* _mesa_function_pool[29130]: PixelTransferi (offset 248) */
+ /* _mesa_function_pool[29165]: PixelTransferi (offset 248) */
"ii\0"
"glPixelTransferi\0"
"\0"
- /* _mesa_function_pool[29151]: GetnColorTableARB (will be remapped) */
+ /* _mesa_function_pool[29186]: GetnColorTableARB (will be remapped) */
"iiiip\0"
"glGetnColorTableARB\0"
"\0"
- /* _mesa_function_pool[29178]: VertexAttrib3fvNV (will be remapped) */
+ /* _mesa_function_pool[29213]: VertexAttrib3fvNV (will be remapped) */
"ip\0"
"glVertexAttrib3fvNV\0"
"\0"
- /* _mesa_function_pool[29202]: Rotatef (offset 300) */
+ /* _mesa_function_pool[29237]: Rotatef (offset 300) */
"ffff\0"
"glRotatef\0"
"\0"
- /* _mesa_function_pool[29218]: GetFinalCombinerInputParameterivNV (dynamic) */
+ /* _mesa_function_pool[29253]: GetFinalCombinerInputParameterivNV (dynamic) */
"iip\0"
"glGetFinalCombinerInputParameterivNV\0"
"\0"
- /* _mesa_function_pool[29260]: Vertex3i (offset 138) */
+ /* _mesa_function_pool[29295]: Vertex3i (offset 138) */
"iii\0"
"glVertex3i\0"
"\0"
- /* _mesa_function_pool[29276]: GetTexEnvxv (will be remapped) */
+ /* _mesa_function_pool[29311]: GetTexEnvxv (will be remapped) */
"iip\0"
"glGetTexEnvxvOES\0"
"glGetTexEnvxv\0"
"\0"
- /* _mesa_function_pool[29312]: SecondaryColorP3ui (will be remapped) */
+ /* _mesa_function_pool[29347]: SecondaryColorP3ui (will be remapped) */
"ii\0"
"glSecondaryColorP3ui\0"
"\0"
- /* _mesa_function_pool[29337]: Vertex3f (offset 136) */
+ /* _mesa_function_pool[29372]: Vertex3f (offset 136) */
"fff\0"
"glVertex3f\0"
"\0"
- /* _mesa_function_pool[29353]: Clear (offset 203) */
+ /* _mesa_function_pool[29388]: Clear (offset 203) */
"i\0"
"glClear\0"
"\0"
- /* _mesa_function_pool[29364]: Vertex3d (offset 134) */
+ /* _mesa_function_pool[29399]: Vertex3d (offset 134) */
"ddd\0"
"glVertex3d\0"
"\0"
- /* _mesa_function_pool[29380]: GetMapParameterivNV (dynamic) */
+ /* _mesa_function_pool[29415]: GetMapParameterivNV (dynamic) */
"iip\0"
"glGetMapParameterivNV\0"
"\0"
- /* _mesa_function_pool[29407]: IndexMaterialEXT (dynamic) */
+ /* _mesa_function_pool[29442]: IndexMaterialEXT (dynamic) */
"ii\0"
"glIndexMaterialEXT\0"
"\0"
- /* _mesa_function_pool[29430]: Disablei (will be remapped) */
+ /* _mesa_function_pool[29465]: Disablei (will be remapped) */
"ii\0"
"glDisableIndexedEXT\0"
"glDisablei\0"
"\0"
- /* _mesa_function_pool[29465]: ReadBuffer (offset 254) */
+ /* _mesa_function_pool[29500]: ReadBuffer (offset 254) */
"i\0"
"glReadBuffer\0"
"glReadBufferNV\0"
"\0"
- /* _mesa_function_pool[29496]: ConvolutionParameteri (offset 352) */
+ /* _mesa_function_pool[29531]: ConvolutionParameteri (offset 352) */
"iii\0"
"glConvolutionParameteri\0"
"glConvolutionParameteriEXT\0"
"\0"
- /* _mesa_function_pool[29552]: VertexAttrib4sv (will be remapped) */
+ /* _mesa_function_pool[29587]: VertexAttrib4sv (will be remapped) */
"ip\0"
"glVertexAttrib4sv\0"
"glVertexAttrib4svARB\0"
"\0"
- /* _mesa_function_pool[29595]: Ortho (offset 296) */
+ /* _mesa_function_pool[29630]: Ortho (offset 296) */
"dddddd\0"
"glOrtho\0"
"\0"
- /* _mesa_function_pool[29611]: Binormal3sEXT (dynamic) */
+ /* _mesa_function_pool[29646]: Binormal3sEXT (dynamic) */
"iii\0"
"glBinormal3sEXT\0"
"\0"
- /* _mesa_function_pool[29632]: VDPAUUnmapSurfacesNV (will be remapped) */
+ /* _mesa_function_pool[29667]: VDPAUUnmapSurfacesNV (will be remapped) */
"ip\0"
"glVDPAUUnmapSurfacesNV\0"
"\0"
- /* _mesa_function_pool[29659]: ListBase (offset 6) */
+ /* _mesa_function_pool[29694]: ListBase (offset 6) */
"i\0"
"glListBase\0"
"\0"
- /* _mesa_function_pool[29673]: GetTexParameterIiv (will be remapped) */
+ /* _mesa_function_pool[29708]: GetTexParameterIiv (will be remapped) */
"iip\0"
"glGetTexParameterIivEXT\0"
"glGetTexParameterIiv\0"
"\0"
- /* _mesa_function_pool[29723]: Tangent3sEXT (dynamic) */
+ /* _mesa_function_pool[29758]: Tangent3sEXT (dynamic) */
"iii\0"
"glTangent3sEXT\0"
"\0"
- /* _mesa_function_pool[29743]: Vertex3s (offset 140) */
+ /* _mesa_function_pool[29778]: Vertex3s (offset 140) */
"iii\0"
"glVertex3s\0"
"\0"
- /* _mesa_function_pool[29759]: ConvolutionParameterf (offset 350) */
+ /* _mesa_function_pool[29794]: ConvolutionParameterf (offset 350) */
"iif\0"
"glConvolutionParameterf\0"
"glConvolutionParameterfEXT\0"
"\0"
- /* _mesa_function_pool[29815]: GetColorTableParameteriv (offset 345) */
+ /* _mesa_function_pool[29850]: GetColorTableParameteriv (offset 345) */
"iip\0"
"glGetColorTableParameteriv\0"
"glGetColorTableParameterivSGI\0"
"glGetColorTableParameterivEXT\0"
"\0"
- /* _mesa_function_pool[29907]: ProgramEnvParameter4dvARB (will be remapped) */
+ /* _mesa_function_pool[29942]: ProgramEnvParameter4dvARB (will be remapped) */
"iip\0"
"glProgramEnvParameter4dvARB\0"
"glProgramParameter4dvNV\0"
"\0"
- /* _mesa_function_pool[29964]: ShadeModel (offset 177) */
+ /* _mesa_function_pool[29999]: ShadeModel (offset 177) */
"i\0"
"glShadeModel\0"
"\0"
- /* _mesa_function_pool[29980]: Uniform3uiv (will be remapped) */
+ /* _mesa_function_pool[30015]: Uniform3uiv (will be remapped) */
"iip\0"
"glUniform3uivEXT\0"
"glUniform3uiv\0"
"\0"
- /* _mesa_function_pool[30016]: GenerateMipmap (will be remapped) */
+ /* _mesa_function_pool[30051]: GenerateMipmap (will be remapped) */
"i\0"
"glGenerateMipmap\0"
"glGenerateMipmapEXT\0"
"glGenerateMipmapOES\0"
"\0"
- /* _mesa_function_pool[30076]: Rectiv (offset 91) */
+ /* _mesa_function_pool[30111]: Rectiv (offset 91) */
"pp\0"
"glRectiv\0"
"\0"
- /* _mesa_function_pool[30089]: TexImage3DMultisample (will be remapped) */
+ /* _mesa_function_pool[30124]: TexImage3DMultisample (will be remapped) */
"iiiiiii\0"
"glTexImage3DMultisample\0"
"\0"
- /* _mesa_function_pool[30122]: MatrixIndexPointerARB (dynamic) */
+ /* _mesa_function_pool[30157]: MatrixIndexPointerARB (dynamic) */
"iiip\0"
"glMatrixIndexPointerARB\0"
"glMatrixIndexPointerOES\0"
"\0"
- /* _mesa_function_pool[30176]: GetMapParameterfvNV (dynamic) */
+ /* _mesa_function_pool[30211]: GetMapParameterfvNV (dynamic) */
"iip\0"
"glGetMapParameterfvNV\0"
"\0"
- /* _mesa_function_pool[30203]: MultiTexCoord1iv (offset 381) */
+ /* _mesa_function_pool[30238]: MultiTexCoord1iv (offset 381) */
"ip\0"
"glMultiTexCoord1iv\0"
"glMultiTexCoord1ivARB\0"
"\0"
- /* _mesa_function_pool[30248]: PassTexCoordATI (will be remapped) */
+ /* _mesa_function_pool[30283]: PassTexCoordATI (will be remapped) */
"iii\0"
"glPassTexCoordATI\0"
"\0"
- /* _mesa_function_pool[30271]: DeleteProgram (will be remapped) */
+ /* _mesa_function_pool[30306]: DeleteProgram (will be remapped) */
"i\0"
"glDeleteProgram\0"
"\0"
- /* _mesa_function_pool[30290]: GetSamplerParameteriv (will be remapped) */
+ /* _mesa_function_pool[30325]: GetSamplerParameteriv (will be remapped) */
"iip\0"
"glGetSamplerParameteriv\0"
"\0"
- /* _mesa_function_pool[30319]: BindBufferRange (will be remapped) */
+ /* _mesa_function_pool[30354]: BindBufferRange (will be remapped) */
"iiiii\0"
"glBindBufferRange\0"
"glBindBufferRangeEXT\0"
"\0"
- /* _mesa_function_pool[30365]: Tangent3dEXT (dynamic) */
+ /* _mesa_function_pool[30400]: Tangent3dEXT (dynamic) */
"ddd\0"
"glTangent3dEXT\0"
"\0"
- /* _mesa_function_pool[30385]: TexParameterxv (will be remapped) */
+ /* _mesa_function_pool[30420]: TexParameterxv (will be remapped) */
"iip\0"
"glTexParameterxvOES\0"
"glTexParameterxv\0"
"\0"
- /* _mesa_function_pool[30427]: BlendEquationSeparateiARB (will be remapped) */
+ /* _mesa_function_pool[30462]: BlendEquationSeparateiARB (will be remapped) */
"iii\0"
"glBlendEquationSeparateiARB\0"
"glBlendEquationSeparateIndexedAMD\0"
"\0"
- /* _mesa_function_pool[30494]: AlphaFragmentOp2ATI (will be remapped) */
+ /* _mesa_function_pool[30529]: AlphaFragmentOp2ATI (will be remapped) */
"iiiiiiiii\0"
"glAlphaFragmentOp2ATI\0"
"\0"
- /* _mesa_function_pool[30527]: Vertex2fv (offset 129) */
+ /* _mesa_function_pool[30562]: Vertex2fv (offset 129) */
"p\0"
"glVertex2fv\0"
"\0"
- /* _mesa_function_pool[30542]: SampleMaskSGIS (will be remapped) */
+ /* _mesa_function_pool[30577]: SampleMaskSGIS (will be remapped) */
"fi\0"
"glSampleMaskSGIS\0"
"glSampleMaskEXT\0"
"\0"
- /* _mesa_function_pool[30579]: BindRenderbufferEXT (will be remapped) */
+ /* _mesa_function_pool[30614]: BindRenderbufferEXT (will be remapped) */
"ii\0"
"glBindRenderbufferEXT\0"
"\0"
- /* _mesa_function_pool[30605]: VertexAttrib1fNV (will be remapped) */
+ /* _mesa_function_pool[30640]: VertexAttrib1fNV (will be remapped) */
"if\0"
"glVertexAttrib1fNV\0"
"\0"
- /* _mesa_function_pool[30628]: Rotatex (will be remapped) */
+ /* _mesa_function_pool[30663]: Rotatex (will be remapped) */
"iiii\0"
"glRotatexOES\0"
"glRotatex\0"
"\0"
- /* _mesa_function_pool[30657]: FramebufferTextureFaceARB (will be remapped) */
+ /* _mesa_function_pool[30692]: FramebufferTextureFaceARB (will be remapped) */
"iiiii\0"
"glFramebufferTextureFaceARB\0"
"\0"
- /* _mesa_function_pool[30692]: BindBufferBase (will be remapped) */
+ /* _mesa_function_pool[30727]: BindBufferBase (will be remapped) */
"iii\0"
"glBindBufferBase\0"
"glBindBufferBaseEXT\0"
"\0"
- /* _mesa_function_pool[30734]: Vertex3sv (offset 141) */
+ /* _mesa_function_pool[30769]: Vertex3sv (offset 141) */
"p\0"
"glVertex3sv\0"
"\0"
- /* _mesa_function_pool[30749]: GetQueryObjectiv (will be remapped) */
+ /* _mesa_function_pool[30784]: GetQueryObjectiv (will be remapped) */
"iip\0"
"glGetQueryObjectiv\0"
"glGetQueryObjectivARB\0"
"\0"
- /* _mesa_function_pool[30795]: VertexAttrib2s (will be remapped) */
+ /* _mesa_function_pool[30830]: VertexAttrib2s (will be remapped) */
"iii\0"
"glVertexAttrib2s\0"
"glVertexAttrib2sARB\0"
"\0"
- /* _mesa_function_pool[30837]: VertexWeightfEXT (dynamic) */
+ /* _mesa_function_pool[30872]: VertexWeightfEXT (dynamic) */
"f\0"
"glVertexWeightfEXT\0"
"\0"
- /* _mesa_function_pool[30859]: ProgramLocalParameter4fvARB (will be remapped) */
+ /* _mesa_function_pool[30894]: ProgramLocalParameter4fvARB (will be remapped) */
"iip\0"
"glProgramLocalParameter4fvARB\0"
"\0"
- /* _mesa_function_pool[30894]: EvalMesh1 (offset 236) */
+ /* _mesa_function_pool[30929]: EvalMesh1 (offset 236) */
"iii\0"
"glEvalMesh1\0"
"\0"
- /* _mesa_function_pool[30911]: ObjectLabel (will be remapped) */
+ /* _mesa_function_pool[30946]: ObjectLabel (will be remapped) */
"iiip\0"
"glObjectLabel\0"
"\0"
- /* _mesa_function_pool[30931]: PauseTransformFeedback (will be remapped) */
+ /* _mesa_function_pool[30966]: PauseTransformFeedback (will be remapped) */
"\0"
"glPauseTransformFeedback\0"
"\0"
- /* _mesa_function_pool[30958]: DeleteShader (will be remapped) */
+ /* _mesa_function_pool[30993]: DeleteShader (will be remapped) */
"i\0"
"glDeleteShader\0"
"\0"
- /* _mesa_function_pool[30976]: ReplacementCodeuiColor3fVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[31011]: ReplacementCodeuiColor3fVertex3fSUN (dynamic) */
"iffffff\0"
"glReplacementCodeuiColor3fVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[31023]: Uniform2f (will be remapped) */
+ /* _mesa_function_pool[31058]: Uniform2f (will be remapped) */
"iff\0"
"glUniform2f\0"
"glUniform2fARB\0"
"\0"
- /* _mesa_function_pool[31055]: VertexAttrib2d (will be remapped) */
+ /* _mesa_function_pool[31090]: VertexAttrib2d (will be remapped) */
"idd\0"
"glVertexAttrib2d\0"
"glVertexAttrib2dARB\0"
"\0"
- /* _mesa_function_pool[31097]: CompressedTexSubImage3D (will be remapped) */
+ /* _mesa_function_pool[31132]: CompressedTexSubImage3D (will be remapped) */
"iiiiiiiiiip\0"
"glCompressedTexSubImage3D\0"
"glCompressedTexSubImage3DARB\0"
"glCompressedTexSubImage3DOES\0"
"\0"
- /* _mesa_function_pool[31194]: Vertex2iv (offset 131) */
+ /* _mesa_function_pool[31229]: Vertex2iv (offset 131) */
"p\0"
"glVertex2iv\0"
"\0"
- /* _mesa_function_pool[31209]: GetProgramStringNV (will be remapped) */
+ /* _mesa_function_pool[31244]: GetProgramStringNV (will be remapped) */
"iip\0"
"glGetProgramStringNV\0"
"\0"
- /* _mesa_function_pool[31235]: VertexAttribP3uiv (will be remapped) */
+ /* _mesa_function_pool[31270]: VertexAttribP3uiv (will be remapped) */
"iiip\0"
"glVertexAttribP3uiv\0"
"\0"
- /* _mesa_function_pool[31261]: LineWidth (offset 168) */
+ /* _mesa_function_pool[31296]: LineWidth (offset 168) */
"f\0"
"glLineWidth\0"
"\0"
- /* _mesa_function_pool[31276]: GetActiveAtomicCounterBufferiv (will be remapped) */
+ /* _mesa_function_pool[31311]: GetActiveAtomicCounterBufferiv (will be remapped) */
"iiip\0"
"glGetActiveAtomicCounterBufferiv\0"
"\0"
- /* _mesa_function_pool[31315]: Uniform2i (will be remapped) */
+ /* _mesa_function_pool[31350]: Uniform2i (will be remapped) */
"iii\0"
"glUniform2i\0"
"glUniform2iARB\0"
"\0"
- /* _mesa_function_pool[31347]: MultiDrawElementsBaseVertex (will be remapped) */
+ /* _mesa_function_pool[31382]: MultiDrawElementsBaseVertex (will be remapped) */
"ipipip\0"
"glMultiDrawElementsBaseVertex\0"
"\0"
- /* _mesa_function_pool[31385]: FogFuncSGIS (dynamic) */
+ /* _mesa_function_pool[31420]: FogFuncSGIS (dynamic) */
"ip\0"
"glFogFuncSGIS\0"
"\0"
- /* _mesa_function_pool[31403]: GenPerfMonitorsAMD (will be remapped) */
+ /* _mesa_function_pool[31438]: GenPerfMonitorsAMD (will be remapped) */
"ip\0"
"glGenPerfMonitorsAMD\0"
"\0"
- /* _mesa_function_pool[31428]: Binormal3svEXT (dynamic) */
+ /* _mesa_function_pool[31463]: Binormal3svEXT (dynamic) */
"p\0"
"glBinormal3svEXT\0"
"\0"
- /* _mesa_function_pool[31448]: GetBufferParameteri64v (will be remapped) */
+ /* _mesa_function_pool[31483]: GetBufferParameteri64v (will be remapped) */
"iip\0"
"glGetBufferParameteri64v\0"
"\0"
- /* _mesa_function_pool[31478]: TexGendv (offset 189) */
+ /* _mesa_function_pool[31513]: TexGendv (offset 189) */
"iip\0"
"glTexGendv\0"
"\0"
- /* _mesa_function_pool[31494]: Uniform1fv (will be remapped) */
+ /* _mesa_function_pool[31529]: Uniform1fv (will be remapped) */
"iip\0"
"glUniform1fv\0"
"glUniform1fvARB\0"
"\0"
- /* _mesa_function_pool[31528]: LightModelx (will be remapped) */
+ /* _mesa_function_pool[31563]: LightModelx (will be remapped) */
"ii\0"
"glLightModelxOES\0"
"glLightModelx\0"
"\0"
- /* _mesa_function_pool[31563]: VertexAttribI3iEXT (will be remapped) */
+ /* _mesa_function_pool[31598]: VertexAttribI3iEXT (will be remapped) */
"iiii\0"
"glVertexAttribI3iEXT\0"
"glVertexAttribI3i\0"
"\0"
- /* _mesa_function_pool[31608]: GetBufferPointerv (will be remapped) */
+ /* _mesa_function_pool[31643]: EndConditionalRender (will be remapped) */
+ "\0"
+ "glEndConditionalRender\0"
+ "glEndConditionalRenderNV\0"
+ "\0"
+ /* _mesa_function_pool[31693]: GetBufferPointerv (will be remapped) */
"iip\0"
"glGetBufferPointerv\0"
"glGetBufferPointervARB\0"
"glGetBufferPointervOES\0"
"\0"
- /* _mesa_function_pool[31679]: TextureLightEXT (dynamic) */
+ /* _mesa_function_pool[31764]: TextureLightEXT (dynamic) */
"i\0"
"glTextureLightEXT\0"
"\0"
- /* _mesa_function_pool[31700]: ResetMinmax (offset 370) */
+ /* _mesa_function_pool[31785]: ResetMinmax (offset 370) */
"i\0"
"glResetMinmax\0"
"glResetMinmaxEXT\0"
"\0"
- /* _mesa_function_pool[31734]: SpriteParameterfSGIX (dynamic) */
+ /* _mesa_function_pool[31819]: SpriteParameterfSGIX (dynamic) */
"if\0"
"glSpriteParameterfSGIX\0"
"\0"
- /* _mesa_function_pool[31761]: EnableClientState (offset 313) */
+ /* _mesa_function_pool[31846]: EnableClientState (offset 313) */
"i\0"
"glEnableClientState\0"
"\0"
- /* _mesa_function_pool[31784]: VertexAttrib4sNV (will be remapped) */
+ /* _mesa_function_pool[31869]: VertexAttrib4sNV (will be remapped) */
"iiiii\0"
"glVertexAttrib4sNV\0"
"\0"
- /* _mesa_function_pool[31810]: GetConvolutionParameterfv (offset 357) */
+ /* _mesa_function_pool[31895]: GetConvolutionParameterfv (offset 357) */
"iip\0"
"glGetConvolutionParameterfv\0"
"glGetConvolutionParameterfvEXT\0"
"\0"
- /* _mesa_function_pool[31874]: GetActiveUniformName (will be remapped) */
+ /* _mesa_function_pool[31959]: GetActiveUniformName (will be remapped) */
"iiipp\0"
"glGetActiveUniformName\0"
"\0"
- /* _mesa_function_pool[31904]: Uniform1iv (will be remapped) */
+ /* _mesa_function_pool[31989]: Uniform1iv (will be remapped) */
"iip\0"
"glUniform1iv\0"
"glUniform1ivARB\0"
"\0"
- /* _mesa_function_pool[31938]: MultiTexCoord4i (offset 404) */
+ /* _mesa_function_pool[32023]: MultiTexCoord4i (offset 404) */
"iiiii\0"
"glMultiTexCoord4i\0"
"glMultiTexCoord4iARB\0"
"\0"
- /* _mesa_function_pool[31984]: CombinerStageParameterfvNV (dynamic) */
+ /* _mesa_function_pool[32069]: CombinerStageParameterfvNV (dynamic) */
"iip\0"
"glCombinerStageParameterfvNV\0"
"\0"
- /* _mesa_function_pool[32018]: ProgramNamedParameter4dNV (will be remapped) */
+ /* _mesa_function_pool[32103]: ProgramNamedParameter4dNV (will be remapped) */
"iipdddd\0"
"glProgramNamedParameter4dNV\0"
"\0"
- /* _mesa_function_pool[32055]: GetMaterialfv (offset 269) */
+ /* _mesa_function_pool[32140]: GetMaterialfv (offset 269) */
"iip\0"
"glGetMaterialfv\0"
"\0"
- /* _mesa_function_pool[32076]: WindowPos3fv (will be remapped) */
+ /* _mesa_function_pool[32161]: WindowPos3fv (will be remapped) */
"p\0"
"glWindowPos3fv\0"
"glWindowPos3fvARB\0"
"glWindowPos3fvMESA\0"
"\0"
- /* _mesa_function_pool[32131]: SecondaryColorPointerListIBM (dynamic) */
+ /* _mesa_function_pool[32216]: SecondaryColorPointerListIBM (dynamic) */
"iiipi\0"
"glSecondaryColorPointerListIBM\0"
"\0"
- /* _mesa_function_pool[32169]: DeleteProgramsARB (will be remapped) */
+ /* _mesa_function_pool[32254]: DeleteProgramsARB (will be remapped) */
"ip\0"
"glDeleteProgramsARB\0"
"glDeleteProgramsNV\0"
"\0"
- /* _mesa_function_pool[32212]: VDPAUSurfaceAccessNV (will be remapped) */
+ /* _mesa_function_pool[32297]: VDPAUSurfaceAccessNV (will be remapped) */
"ii\0"
"glVDPAUSurfaceAccessNV\0"
"\0"
- /* _mesa_function_pool[32239]: SetFragmentShaderConstantATI (will be remapped) */
+ /* _mesa_function_pool[32324]: SetFragmentShaderConstantATI (will be remapped) */
"ip\0"
"glSetFragmentShaderConstantATI\0"
"\0"
- /* _mesa_function_pool[32274]: Binormal3fEXT (dynamic) */
+ /* _mesa_function_pool[32359]: Binormal3fEXT (dynamic) */
"fff\0"
"glBinormal3fEXT\0"
"\0"
- /* _mesa_function_pool[32295]: CallList (offset 2) */
+ /* _mesa_function_pool[32380]: CallList (offset 2) */
"i\0"
"glCallList\0"
"\0"
- /* _mesa_function_pool[32309]: Materialfv (offset 170) */
+ /* _mesa_function_pool[32394]: Materialfv (offset 170) */
"iip\0"
"glMaterialfv\0"
"\0"
- /* _mesa_function_pool[32327]: TexCoord3fv (offset 113) */
+ /* _mesa_function_pool[32412]: TexCoord3fv (offset 113) */
"p\0"
"glTexCoord3fv\0"
"\0"
- /* _mesa_function_pool[32344]: WeightfvARB (dynamic) */
+ /* _mesa_function_pool[32429]: WeightfvARB (dynamic) */
"ip\0"
"glWeightfvARB\0"
"\0"
- /* _mesa_function_pool[32362]: GetUniformBlockIndex (will be remapped) */
+ /* _mesa_function_pool[32447]: GetUniformBlockIndex (will be remapped) */
"ip\0"
"glGetUniformBlockIndex\0"
"\0"
- /* _mesa_function_pool[32389]: FogCoordfvEXT (will be remapped) */
+ /* _mesa_function_pool[32474]: FogCoordfvEXT (will be remapped) */
"p\0"
"glFogCoordfv\0"
"glFogCoordfvEXT\0"
"\0"
- /* _mesa_function_pool[32421]: DetachShader (will be remapped) */
+ /* _mesa_function_pool[32506]: DetachShader (will be remapped) */
"ii\0"
"glDetachShader\0"
"\0"
- /* _mesa_function_pool[32440]: ClearDepthf (will be remapped) */
+ /* _mesa_function_pool[32525]: ClearDepthf (will be remapped) */
"f\0"
"glClearDepthf\0"
"glClearDepthfOES\0"
"\0"
- /* _mesa_function_pool[32474]: CopyTexSubImage2D (offset 326) */
+ /* _mesa_function_pool[32559]: CopyTexSubImage2D (offset 326) */
"iiiiiiii\0"
"glCopyTexSubImage2D\0"
"glCopyTexSubImage2DEXT\0"
"\0"
- /* _mesa_function_pool[32527]: SampleCoverage (will be remapped) */
+ /* _mesa_function_pool[32612]: SampleCoverage (will be remapped) */
"fi\0"
"glSampleCoverage\0"
"glSampleCoverageARB\0"
"\0"
- /* _mesa_function_pool[32568]: GetObjectParameterivARB (will be remapped) */
+ /* _mesa_function_pool[32653]: GetObjectParameterivARB (will be remapped) */
"iip\0"
"glGetObjectParameterivARB\0"
"\0"
- /* _mesa_function_pool[32599]: Color3iv (offset 16) */
+ /* _mesa_function_pool[32684]: Color3iv (offset 16) */
"p\0"
"glColor3iv\0"
"\0"
- /* _mesa_function_pool[32613]: GlobalAlphaFactorubSUN (dynamic) */
+ /* _mesa_function_pool[32698]: GlobalAlphaFactorubSUN (dynamic) */
"i\0"
"glGlobalAlphaFactorubSUN\0"
"\0"
- /* _mesa_function_pool[32641]: VertexAttrib4ubv (will be remapped) */
+ /* _mesa_function_pool[32726]: VertexAttrib4ubv (will be remapped) */
"ip\0"
"glVertexAttrib4ubv\0"
"glVertexAttrib4ubvARB\0"
"\0"
- /* _mesa_function_pool[32686]: MultiDrawArrays (will be remapped) */
+ /* _mesa_function_pool[32771]: MultiDrawArrays (will be remapped) */
"ippi\0"
"glMultiDrawArrays\0"
"glMultiDrawArraysEXT\0"
"\0"
- /* _mesa_function_pool[32731]: DrawElements (offset 311) */
+ /* _mesa_function_pool[32816]: DrawElements (offset 311) */
"iiip\0"
"glDrawElements\0"
"\0"
- /* _mesa_function_pool[32752]: BindVertexArrayAPPLE (will be remapped) */
+ /* _mesa_function_pool[32837]: BindVertexArrayAPPLE (will be remapped) */
"i\0"
"glBindVertexArrayAPPLE\0"
"\0"
- /* _mesa_function_pool[32778]: GetProgramLocalParameterdvARB (will be remapped) */
+ /* _mesa_function_pool[32863]: GetProgramLocalParameterdvARB (will be remapped) */
"iip\0"
"glGetProgramLocalParameterdvARB\0"
"\0"
- /* _mesa_function_pool[32815]: GetHistogramParameteriv (offset 363) */
+ /* _mesa_function_pool[32900]: GetHistogramParameteriv (offset 363) */
"iip\0"
"glGetHistogramParameteriv\0"
"glGetHistogramParameterivEXT\0"
"\0"
- /* _mesa_function_pool[32875]: TexGenxvOES (will be remapped) */
+ /* _mesa_function_pool[32960]: TexGenxvOES (will be remapped) */
"iip\0"
"glTexGenxvOES\0"
"\0"
- /* _mesa_function_pool[32894]: PointParameteriv (will be remapped) */
+ /* _mesa_function_pool[32979]: PointParameteriv (will be remapped) */
"ip\0"
"glPointParameteriv\0"
"glPointParameterivNV\0"
"\0"
- /* _mesa_function_pool[32938]: UniformMatrix2x4fv (will be remapped) */
+ /* _mesa_function_pool[33023]: UniformMatrix2x4fv (will be remapped) */
"iiip\0"
"glUniformMatrix2x4fv\0"
"\0"
- /* _mesa_function_pool[32965]: SecondaryColor3d (will be remapped) */
+ /* _mesa_function_pool[33050]: SecondaryColor3d (will be remapped) */
"ddd\0"
"glSecondaryColor3d\0"
"glSecondaryColor3dEXT\0"
"\0"
- /* _mesa_function_pool[33011]: GetConvolutionFilter (offset 356) */
+ /* _mesa_function_pool[33096]: GetConvolutionFilter (offset 356) */
"iiip\0"
"glGetConvolutionFilter\0"
"glGetConvolutionFilterEXT\0"
"\0"
- /* _mesa_function_pool[33066]: GetProgramivARB (will be remapped) */
+ /* _mesa_function_pool[33151]: GetProgramivARB (will be remapped) */
"iip\0"
"glGetProgramivARB\0"
"\0"
- /* _mesa_function_pool[33089]: FlushVertexArrayRangeNV (dynamic) */
+ /* _mesa_function_pool[33174]: FlushVertexArrayRangeNV (dynamic) */
"\0"
"glFlushVertexArrayRangeNV\0"
"\0"
- /* _mesa_function_pool[33117]: Uniform2iv (will be remapped) */
+ /* _mesa_function_pool[33202]: Uniform2iv (will be remapped) */
"iip\0"
"glUniform2iv\0"
"glUniform2ivARB\0"
"\0"
- /* _mesa_function_pool[33151]: GetFixedv (will be remapped) */
+ /* _mesa_function_pool[33236]: GetFixedv (will be remapped) */
"ip\0"
"glGetFixedvOES\0"
"glGetFixedv\0"
"\0"
- /* _mesa_function_pool[33182]: BindRenderbuffer (will be remapped) */
+ /* _mesa_function_pool[33267]: BindRenderbuffer (will be remapped) */
"ii\0"
"glBindRenderbuffer\0"
"glBindRenderbufferOES\0"
"\0"
- /* _mesa_function_pool[33227]: ProgramParameters4dvNV (will be remapped) */
+ /* _mesa_function_pool[33312]: ProgramParameters4dvNV (will be remapped) */
"iiip\0"
"glProgramParameters4dvNV\0"
"\0"
- /* _mesa_function_pool[33258]: TexCoord2fColor3fVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[33343]: TexCoord2fColor3fVertex3fvSUN (dynamic) */
"ppp\0"
"glTexCoord2fColor3fVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[33295]: EvalPoint2 (offset 239) */
+ /* _mesa_function_pool[33380]: EvalPoint2 (offset 239) */
"ii\0"
"glEvalPoint2\0"
"\0"
- /* _mesa_function_pool[33312]: EvalPoint1 (offset 237) */
+ /* _mesa_function_pool[33397]: EvalPoint1 (offset 237) */
"i\0"
"glEvalPoint1\0"
"\0"
- /* _mesa_function_pool[33328]: Binormal3dvEXT (dynamic) */
+ /* _mesa_function_pool[33413]: Binormal3dvEXT (dynamic) */
"p\0"
"glBinormal3dvEXT\0"
"\0"
- /* _mesa_function_pool[33348]: PopMatrix (offset 297) */
+ /* _mesa_function_pool[33433]: PopMatrix (offset 297) */
"\0"
"glPopMatrix\0"
"\0"
- /* _mesa_function_pool[33362]: FinishFenceNV (dynamic) */
+ /* _mesa_function_pool[33447]: FinishFenceNV (dynamic) */
"i\0"
"glFinishFenceNV\0"
"\0"
- /* _mesa_function_pool[33381]: GetFogFuncSGIS (dynamic) */
+ /* _mesa_function_pool[33466]: GetFogFuncSGIS (dynamic) */
"p\0"
"glGetFogFuncSGIS\0"
"\0"
- /* _mesa_function_pool[33401]: DeleteFramebuffers (will be remapped) */
+ /* _mesa_function_pool[33486]: DeleteFramebuffers (will be remapped) */
"ip\0"
"glDeleteFramebuffers\0"
"glDeleteFramebuffersEXT\0"
"glDeleteFramebuffersOES\0"
"\0"
- /* _mesa_function_pool[33474]: SecondaryColor3fEXT (will be remapped) */
+ /* _mesa_function_pool[33559]: SecondaryColor3fEXT (will be remapped) */
"fff\0"
"glSecondaryColor3f\0"
"glSecondaryColor3fEXT\0"
"\0"
- /* _mesa_function_pool[33520]: GetTexGeniv (offset 280) */
+ /* _mesa_function_pool[33605]: GetTexGeniv (offset 280) */
"iip\0"
"glGetTexGeniv\0"
"glGetTexGenivOES\0"
"\0"
- /* _mesa_function_pool[33556]: CombinerInputNV (dynamic) */
+ /* _mesa_function_pool[33641]: CombinerInputNV (dynamic) */
"iiiiii\0"
"glCombinerInputNV\0"
"\0"
- /* _mesa_function_pool[33582]: FinishAsyncSGIX (dynamic) */
- "p\0"
- "glFinishAsyncSGIX\0"
+ /* _mesa_function_pool[33667]: VertexBindingDivisor (will be remapped) */
+ "ii\0"
+ "glVertexBindingDivisor\0"
"\0"
- /* _mesa_function_pool[33603]: FramebufferRenderbuffer (will be remapped) */
+ /* _mesa_function_pool[33694]: FramebufferRenderbuffer (will be remapped) */
"iiii\0"
"glFramebufferRenderbuffer\0"
"glFramebufferRenderbufferEXT\0"
"glFramebufferRenderbufferOES\0"
"\0"
- /* _mesa_function_pool[33693]: IsProgramARB (will be remapped) */
+ /* _mesa_function_pool[33784]: IsProgramARB (will be remapped) */
"i\0"
"glIsProgramARB\0"
"glIsProgramNV\0"
"\0"
- /* _mesa_function_pool[33725]: VertexAttrib4uiv (will be remapped) */
+ /* _mesa_function_pool[33816]: VertexAttrib4uiv (will be remapped) */
"ip\0"
"glVertexAttrib4uiv\0"
"glVertexAttrib4uivARB\0"
"\0"
- /* _mesa_function_pool[33770]: VertexAttrib4Nsv (will be remapped) */
+ /* _mesa_function_pool[33861]: VertexAttrib4Nsv (will be remapped) */
"ip\0"
"glVertexAttrib4Nsv\0"
"glVertexAttrib4NsvARB\0"
"\0"
- /* _mesa_function_pool[33815]: Map2d (offset 222) */
+ /* _mesa_function_pool[33906]: Map2d (offset 222) */
"iddiiddiip\0"
"glMap2d\0"
"\0"
- /* _mesa_function_pool[33835]: Map2f (offset 223) */
+ /* _mesa_function_pool[33926]: Map2f (offset 223) */
"iffiiffiip\0"
"glMap2f\0"
"\0"
- /* _mesa_function_pool[33855]: ProgramStringARB (will be remapped) */
+ /* _mesa_function_pool[33946]: ProgramStringARB (will be remapped) */
"iiip\0"
"glProgramStringARB\0"
"\0"
- /* _mesa_function_pool[33880]: MultiTexCoord4x (will be remapped) */
+ /* _mesa_function_pool[33971]: MultiTexCoord4x (will be remapped) */
"iiiii\0"
"glMultiTexCoord4xOES\0"
"glMultiTexCoord4x\0"
"\0"
- /* _mesa_function_pool[33926]: Vertex4s (offset 148) */
+ /* _mesa_function_pool[34017]: Vertex4s (offset 148) */
"iiii\0"
"glVertex4s\0"
"\0"
- /* _mesa_function_pool[33943]: TexCoord4fVertex4fvSUN (dynamic) */
+ /* _mesa_function_pool[34034]: TexCoord4fVertex4fvSUN (dynamic) */
"pp\0"
"glTexCoord4fVertex4fvSUN\0"
"\0"
- /* _mesa_function_pool[33972]: UnmapBuffer (will be remapped) */
+ /* _mesa_function_pool[34063]: UnmapBuffer (will be remapped) */
"i\0"
"glUnmapBuffer\0"
"glUnmapBufferARB\0"
"glUnmapBufferOES\0"
"\0"
- /* _mesa_function_pool[34023]: MultiTexCoord4s (offset 406) */
+ /* _mesa_function_pool[34114]: MultiTexCoord4s (offset 406) */
"iiiii\0"
"glMultiTexCoord4s\0"
"glMultiTexCoord4sARB\0"
"\0"
- /* _mesa_function_pool[34069]: VertexAttribI2iEXT (will be remapped) */
+ /* _mesa_function_pool[34160]: VertexAttribI2iEXT (will be remapped) */
"iii\0"
"glVertexAttribI2iEXT\0"
"glVertexAttribI2i\0"
"\0"
- /* _mesa_function_pool[34113]: Vertex4f (offset 144) */
+ /* _mesa_function_pool[34204]: Vertex4f (offset 144) */
"ffff\0"
"glVertex4f\0"
"\0"
- /* _mesa_function_pool[34130]: EvalCoord1d (offset 228) */
+ /* _mesa_function_pool[34221]: EvalCoord1d (offset 228) */
"d\0"
"glEvalCoord1d\0"
"\0"
- /* _mesa_function_pool[34147]: Vertex4d (offset 142) */
+ /* _mesa_function_pool[34238]: Vertex4d (offset 142) */
"dddd\0"
"glVertex4d\0"
"\0"
- /* _mesa_function_pool[34164]: RasterPos4dv (offset 79) */
+ /* _mesa_function_pool[34255]: RasterPos4dv (offset 79) */
"p\0"
"glRasterPos4dv\0"
"\0"
- /* _mesa_function_pool[34182]: GetGraphicsResetStatusARB (will be remapped) */
+ /* _mesa_function_pool[34273]: GetGraphicsResetStatusARB (will be remapped) */
"\0"
"glGetGraphicsResetStatusARB\0"
"\0"
- /* _mesa_function_pool[34212]: UseShaderProgramEXT (will be remapped) */
+ /* _mesa_function_pool[34303]: UseShaderProgramEXT (will be remapped) */
"ii\0"
"glUseShaderProgramEXT\0"
"\0"
- /* _mesa_function_pool[34238]: VertexAttribP2uiv (will be remapped) */
+ /* _mesa_function_pool[34329]: VertexAttribP2uiv (will be remapped) */
"iiip\0"
"glVertexAttribP2uiv\0"
"\0"
- /* _mesa_function_pool[34264]: VertexAttrib4bv (will be remapped) */
+ /* _mesa_function_pool[34355]: VertexAttrib4bv (will be remapped) */
"ip\0"
"glVertexAttrib4bv\0"
"glVertexAttrib4bvARB\0"
"\0"
- /* _mesa_function_pool[34307]: DebugMessageControl (will be remapped) */
+ /* _mesa_function_pool[34398]: DebugMessageControl (will be remapped) */
"iiiipi\0"
"glDebugMessageControl\0"
"\0"
- /* _mesa_function_pool[34337]: GetTexGenfv (offset 279) */
+ /* _mesa_function_pool[34428]: GetTexGenfv (offset 279) */
"iip\0"
"glGetTexGenfv\0"
"glGetTexGenfvOES\0"
"\0"
- /* _mesa_function_pool[34373]: MultiTexCoord4d (offset 400) */
+ /* _mesa_function_pool[34464]: MultiTexCoord4d (offset 400) */
"idddd\0"
"glMultiTexCoord4d\0"
"glMultiTexCoord4dARB\0"
"\0"
- /* _mesa_function_pool[34419]: Vertex4i (offset 146) */
+ /* _mesa_function_pool[34510]: Vertex4i (offset 146) */
"iiii\0"
"glVertex4i\0"
"\0"
- /* _mesa_function_pool[34436]: VertexWeightPointerEXT (dynamic) */
+ /* _mesa_function_pool[34527]: VertexWeightPointerEXT (dynamic) */
"iiip\0"
"glVertexWeightPointerEXT\0"
"\0"
- /* _mesa_function_pool[34467]: GetHistogram (offset 361) */
+ /* _mesa_function_pool[34558]: GetHistogram (offset 361) */
"iiiip\0"
"glGetHistogram\0"
"glGetHistogramEXT\0"
"\0"
- /* _mesa_function_pool[34507]: ActiveStencilFaceEXT (will be remapped) */
+ /* _mesa_function_pool[34598]: ActiveStencilFaceEXT (will be remapped) */
"i\0"
"glActiveStencilFaceEXT\0"
"\0"
- /* _mesa_function_pool[34533]: Translatex (will be remapped) */
+ /* _mesa_function_pool[34624]: Translatex (will be remapped) */
"iii\0"
"glTranslatexOES\0"
"glTranslatex\0"
"\0"
- /* _mesa_function_pool[34567]: StencilFuncSeparateATI (will be remapped) */
+ /* _mesa_function_pool[34658]: StencilFuncSeparateATI (will be remapped) */
"iiii\0"
"glStencilFuncSeparateATI\0"
"\0"
- /* _mesa_function_pool[34598]: Materialf (offset 169) */
+ /* _mesa_function_pool[34689]: Materialf (offset 169) */
"iif\0"
"glMaterialf\0"
"\0"
- /* _mesa_function_pool[34615]: GetnMapfvARB (will be remapped) */
+ /* _mesa_function_pool[34706]: GetnMapfvARB (will be remapped) */
"iiip\0"
"glGetnMapfvARB\0"
"\0"
- /* _mesa_function_pool[34636]: IglooInterfaceSGIX (dynamic) */
+ /* _mesa_function_pool[34727]: IglooInterfaceSGIX (dynamic) */
"ip\0"
"glIglooInterfaceSGIX\0"
"\0"
- /* _mesa_function_pool[34661]: Materiali (offset 171) */
+ /* _mesa_function_pool[34752]: Materiali (offset 171) */
"iii\0"
"glMateriali\0"
"\0"
- /* _mesa_function_pool[34678]: VertexAttrib4dNV (will be remapped) */
+ /* _mesa_function_pool[34769]: VertexAttrib4dNV (will be remapped) */
"idddd\0"
"glVertexAttrib4dNV\0"
"\0"
- /* _mesa_function_pool[34704]: MultiModeDrawElementsIBM (will be remapped) */
+ /* _mesa_function_pool[34795]: MultiModeDrawElementsIBM (will be remapped) */
"ppipii\0"
"glMultiModeDrawElementsIBM\0"
"\0"
- /* _mesa_function_pool[34739]: Indexsv (offset 51) */
+ /* _mesa_function_pool[34830]: Indexsv (offset 51) */
"p\0"
"glIndexsv\0"
"\0"
- /* _mesa_function_pool[34752]: VertexAttrib1fvARB (will be remapped) */
+ /* _mesa_function_pool[34843]: VertexAttrib1fvARB (will be remapped) */
"ip\0"
"glVertexAttrib1fv\0"
"glVertexAttrib1fvARB\0"
"\0"
- /* _mesa_function_pool[34795]: LightModelfv (offset 164) */
+ /* _mesa_function_pool[34886]: LightModelfv (offset 164) */
"ip\0"
"glLightModelfv\0"
"\0"
- /* _mesa_function_pool[34814]: TexCoord2dv (offset 103) */
+ /* _mesa_function_pool[34905]: TexCoord2dv (offset 103) */
"p\0"
"glTexCoord2dv\0"
"\0"
- /* _mesa_function_pool[34831]: ProgramParameters4fvNV (will be remapped) */
+ /* _mesa_function_pool[34922]: ProgramParameters4fvNV (will be remapped) */
"iiip\0"
"glProgramParameters4fvNV\0"
"\0"
- /* _mesa_function_pool[34862]: EvalCoord1dv (offset 229) */
+ /* _mesa_function_pool[34953]: EvalCoord1dv (offset 229) */
"p\0"
"glEvalCoord1dv\0"
"\0"
- /* _mesa_function_pool[34880]: ReplacementCodeuiVertex3fSUN (dynamic) */
+ /* _mesa_function_pool[34971]: ReplacementCodeuiVertex3fSUN (dynamic) */
"ifff\0"
"glReplacementCodeuiVertex3fSUN\0"
"\0"
- /* _mesa_function_pool[34917]: MapBufferRange (will be remapped) */
+ /* _mesa_function_pool[35008]: MapBufferRange (will be remapped) */
"iiii\0"
"glMapBufferRange\0"
"glMapBufferRangeEXT\0"
"\0"
- /* _mesa_function_pool[34960]: Translated (offset 303) */
+ /* _mesa_function_pool[35051]: Translated (offset 303) */
"ddd\0"
"glTranslated\0"
"\0"
- /* _mesa_function_pool[34978]: Translatef (offset 304) */
+ /* _mesa_function_pool[35069]: Translatef (offset 304) */
"fff\0"
"glTranslatef\0"
"\0"
- /* _mesa_function_pool[34996]: StencilMask (offset 209) */
+ /* _mesa_function_pool[35087]: StencilMask (offset 209) */
"i\0"
"glStencilMask\0"
"\0"
- /* _mesa_function_pool[35013]: MinSampleShading (will be remapped) */
+ /* _mesa_function_pool[35104]: MinSampleShading (will be remapped) */
"f\0"
"glMinSampleShadingARB\0"
"glMinSampleShading\0"
"\0"
- /* _mesa_function_pool[35057]: MultTransposeMatrixd (will be remapped) */
+ /* _mesa_function_pool[35148]: MultTransposeMatrixd (will be remapped) */
"p\0"
"glMultTransposeMatrixd\0"
"glMultTransposeMatrixdARB\0"
"\0"
- /* _mesa_function_pool[35109]: MultTransposeMatrixf (will be remapped) */
+ /* _mesa_function_pool[35200]: MultTransposeMatrixf (will be remapped) */
"p\0"
"glMultTransposeMatrixf\0"
"glMultTransposeMatrixfARB\0"
"\0"
- /* _mesa_function_pool[35161]: GetLightiv (offset 265) */
+ /* _mesa_function_pool[35252]: GetLightiv (offset 265) */
"iip\0"
"glGetLightiv\0"
"\0"
- /* _mesa_function_pool[35179]: DrawElementsInstancedBaseInstance (will be remapped) */
+ /* _mesa_function_pool[35270]: DrawElementsInstancedBaseInstance (will be remapped) */
"iiipii\0"
"glDrawElementsInstancedBaseInstance\0"
"\0"
- /* _mesa_function_pool[35223]: IsList (offset 287) */
+ /* _mesa_function_pool[35314]: IsList (offset 287) */
"i\0"
"glIsList\0"
"\0"
- /* _mesa_function_pool[35235]: PointSizex (will be remapped) */
+ /* _mesa_function_pool[35326]: PointSizex (will be remapped) */
"i\0"
"glPointSizexOES\0"
"glPointSizex\0"
"\0"
- /* _mesa_function_pool[35267]: GetnPixelMapusvARB (will be remapped) */
+ /* _mesa_function_pool[35358]: GetnPixelMapusvARB (will be remapped) */
"iip\0"
"glGetnPixelMapusvARB\0"
"\0"
- /* _mesa_function_pool[35293]: IsSync (will be remapped) */
+ /* _mesa_function_pool[35384]: IsSync (will be remapped) */
"i\0"
"glIsSync\0"
"\0"
- /* _mesa_function_pool[35305]: RenderMode (offset 196) */
+ /* _mesa_function_pool[35396]: RenderMode (offset 196) */
"i\0"
"glRenderMode\0"
"\0"
- /* _mesa_function_pool[35321]: PrimitiveRestartIndex (will be remapped) */
+ /* _mesa_function_pool[35412]: PrimitiveRestartIndex (will be remapped) */
"i\0"
"glPrimitiveRestartIndex\0"
"glPrimitiveRestartIndexNV\0"
"\0"
- /* _mesa_function_pool[35374]: GetMapControlPointsNV (dynamic) */
+ /* _mesa_function_pool[35465]: GetMapControlPointsNV (dynamic) */
"iiiiiip\0"
"glGetMapControlPointsNV\0"
"\0"
- /* _mesa_function_pool[35407]: ClearBufferiv (will be remapped) */
+ /* _mesa_function_pool[35498]: ClearBufferiv (will be remapped) */
"iip\0"
"glClearBufferiv\0"
"\0"
- /* _mesa_function_pool[35428]: ProgramLocalParameter4fARB (will be remapped) */
+ /* _mesa_function_pool[35519]: ProgramLocalParameter4fARB (will be remapped) */
"iiffff\0"
"glProgramLocalParameter4fARB\0"
"\0"
- /* _mesa_function_pool[35465]: SpriteParameterivSGIX (dynamic) */
+ /* _mesa_function_pool[35556]: SpriteParameterivSGIX (dynamic) */
"ip\0"
"glSpriteParameterivSGIX\0"
"\0"
- /* _mesa_function_pool[35493]: MultiTexCoord1fARB (offset 378) */
+ /* _mesa_function_pool[35584]: MultiTexCoord1fARB (offset 378) */
"if\0"
"glMultiTexCoord1f\0"
"glMultiTexCoord1fARB\0"
"\0"
- /* _mesa_function_pool[35536]: LoadName (offset 198) */
+ /* _mesa_function_pool[35627]: LoadName (offset 198) */
"i\0"
"glLoadName\0"
"\0"
- /* _mesa_function_pool[35550]: GetInternalformativ (will be remapped) */
+ /* _mesa_function_pool[35641]: GetInternalformativ (will be remapped) */
"iiiip\0"
"glGetInternalformativ\0"
"\0"
- /* _mesa_function_pool[35579]: VertexAttribs4ubvNV (will be remapped) */
+ /* _mesa_function_pool[35670]: VertexAttribs4ubvNV (will be remapped) */
"iip\0"
"glVertexAttribs4ubvNV\0"
"\0"
- /* _mesa_function_pool[35606]: Frustumf (will be remapped) */
+ /* _mesa_function_pool[35697]: Frustumf (will be remapped) */
"ffffff\0"
"glFrustumfOES\0"
"glFrustumf\0"
"\0"
- /* _mesa_function_pool[35639]: WeightsvARB (dynamic) */
+ /* _mesa_function_pool[35730]: WeightsvARB (dynamic) */
"ip\0"
"glWeightsvARB\0"
"\0"
- /* _mesa_function_pool[35657]: GetIntegeri_v (will be remapped) */
+ /* _mesa_function_pool[35748]: GetIntegeri_v (will be remapped) */
"iip\0"
"glGetIntegerIndexedvEXT\0"
"glGetIntegeri_v\0"
"\0"
- /* _mesa_function_pool[35702]: LightModelxv (will be remapped) */
+ /* _mesa_function_pool[35793]: LightModelxv (will be remapped) */
"ip\0"
"glLightModelxvOES\0"
"glLightModelxv\0"
"\0"
- /* _mesa_function_pool[35739]: IsTransformFeedback (will be remapped) */
+ /* _mesa_function_pool[35830]: IsTransformFeedback (will be remapped) */
"i\0"
"glIsTransformFeedback\0"
"\0"
- /* _mesa_function_pool[35764]: LoadIdentityDeformationMapSGIX (dynamic) */
+ /* _mesa_function_pool[35855]: LoadIdentityDeformationMapSGIX (dynamic) */
"i\0"
"glLoadIdentityDeformationMapSGIX\0"
"\0"
- /* _mesa_function_pool[35800]: CopyTexSubImage1D (offset 325) */
+ /* _mesa_function_pool[35891]: CopyTexSubImage1D (offset 325) */
"iiiiii\0"
"glCopyTexSubImage1D\0"
"glCopyTexSubImage1DEXT\0"
"\0"
- /* _mesa_function_pool[35851]: ReplacementCodeuiColor3fVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[35942]: ReplacementCodeuiColor3fVertex3fvSUN (dynamic) */
"ppp\0"
"glReplacementCodeuiColor3fVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[35895]: CullFace (offset 152) */
+ /* _mesa_function_pool[35986]: CullFace (offset 152) */
"i\0"
"glCullFace\0"
"\0"
- /* _mesa_function_pool[35909]: BindTexture (offset 307) */
+ /* _mesa_function_pool[36000]: BindTexture (offset 307) */
"ii\0"
"glBindTexture\0"
"glBindTextureEXT\0"
"\0"
- /* _mesa_function_pool[35944]: VertexAttribs2fvNV (will be remapped) */
+ /* _mesa_function_pool[36035]: VertexAttribs2fvNV (will be remapped) */
"iip\0"
"glVertexAttribs2fvNV\0"
"\0"
- /* _mesa_function_pool[35970]: MultiTexCoord4fARB (offset 402) */
+ /* _mesa_function_pool[36061]: MultiTexCoord4fARB (offset 402) */
"iffff\0"
"glMultiTexCoord4f\0"
"glMultiTexCoord4fARB\0"
"\0"
- /* _mesa_function_pool[36016]: ResumeTransformFeedback (will be remapped) */
+ /* _mesa_function_pool[36107]: ResumeTransformFeedback (will be remapped) */
"\0"
"glResumeTransformFeedback\0"
"\0"
- /* _mesa_function_pool[36044]: PushDebugGroup (will be remapped) */
+ /* _mesa_function_pool[36135]: PushDebugGroup (will be remapped) */
"iiip\0"
"glPushDebugGroup\0"
"\0"
- /* _mesa_function_pool[36067]: DrawMeshArraysSUN (dynamic) */
+ /* _mesa_function_pool[36158]: DrawMeshArraysSUN (dynamic) */
"iiii\0"
"glDrawMeshArraysSUN\0"
"\0"
- /* _mesa_function_pool[36093]: SecondaryColor3i (will be remapped) */
+ /* _mesa_function_pool[36184]: SecondaryColor3i (will be remapped) */
"iii\0"
"glSecondaryColor3i\0"
"glSecondaryColor3iEXT\0"
"\0"
- /* _mesa_function_pool[36139]: StencilFunc (offset 243) */
+ /* _mesa_function_pool[36230]: StencilFunc (offset 243) */
"iii\0"
"glStencilFunc\0"
"\0"
- /* _mesa_function_pool[36158]: CopyPixels (offset 255) */
+ /* _mesa_function_pool[36249]: CopyPixels (offset 255) */
"iiiii\0"
"glCopyPixels\0"
"\0"
- /* _mesa_function_pool[36178]: Rectsv (offset 93) */
+ /* _mesa_function_pool[36269]: Rectsv (offset 93) */
"pp\0"
"glRectsv\0"
"\0"
- /* _mesa_function_pool[36191]: WindowPos3iv (will be remapped) */
+ /* _mesa_function_pool[36282]: WindowPos3iv (will be remapped) */
"p\0"
"glWindowPos3iv\0"
"glWindowPos3ivARB\0"
"glWindowPos3ivMESA\0"
"\0"
- /* _mesa_function_pool[36246]: ReplacementCodeuivSUN (dynamic) */
+ /* _mesa_function_pool[36337]: ReplacementCodeuivSUN (dynamic) */
"p\0"
"glReplacementCodeuivSUN\0"
"\0"
- /* _mesa_function_pool[36273]: DrawElementsBaseVertex (will be remapped) */
+ /* _mesa_function_pool[36364]: DrawElementsBaseVertex (will be remapped) */
"iiipi\0"
"glDrawElementsBaseVertex\0"
"\0"
- /* _mesa_function_pool[36305]: CopyConvolutionFilter2D (offset 355) */
+ /* _mesa_function_pool[36396]: CopyConvolutionFilter2D (offset 355) */
"iiiiii\0"
"glCopyConvolutionFilter2D\0"
"glCopyConvolutionFilter2DEXT\0"
"\0"
- /* _mesa_function_pool[36368]: ApplyTextureEXT (dynamic) */
+ /* _mesa_function_pool[36459]: ApplyTextureEXT (dynamic) */
"i\0"
"glApplyTextureEXT\0"
"\0"
- /* _mesa_function_pool[36389]: CopyBufferSubData (will be remapped) */
+ /* _mesa_function_pool[36480]: CopyBufferSubData (will be remapped) */
"iiiii\0"
"glCopyBufferSubData\0"
"\0"
- /* _mesa_function_pool[36416]: NormalPointer (offset 318) */
+ /* _mesa_function_pool[36507]: NormalPointer (offset 318) */
"iip\0"
"glNormalPointer\0"
"\0"
- /* _mesa_function_pool[36437]: TexParameterfv (offset 179) */
+ /* _mesa_function_pool[36528]: TexParameterfv (offset 179) */
"iip\0"
"glTexParameterfv\0"
"\0"
- /* _mesa_function_pool[36459]: ReplacementCodeuiNormal3fVertex3fvSUN (dynamic) */
+ /* _mesa_function_pool[36550]: ReplacementCodeuiNormal3fVertex3fvSUN (dynamic) */
"ppp\0"
"glReplacementCodeuiNormal3fVertex3fvSUN\0"
"\0"
- /* _mesa_function_pool[36504]: GetCombinerOutputParameterfvNV (dynamic) */
+ /* _mesa_function_pool[36595]: GetCombinerOutputParameterfvNV (dynamic) */
"iiip\0"
"glGetCombinerOutputParameterfvNV\0"
"\0"
- /* _mesa_function_pool[36543]: WindowPos4iMESA (will be remapped) */
+ /* _mesa_function_pool[36634]: WindowPos4iMESA (will be remapped) */
"iiii\0"
"glWindowPos4iMESA\0"
"\0"
- /* _mesa_function_pool[36567]: VertexAttrib4Nubv (will be remapped) */
+ /* _mesa_function_pool[36658]: VertexAttrib4Nubv (will be remapped) */
"ip\0"
"glVertexAttrib4Nubv\0"
"glVertexAttrib4NubvARB\0"
"\0"
- /* _mesa_function_pool[36614]: SecondaryColor3ui (will be remapped) */
+ /* _mesa_function_pool[36705]: SecondaryColor3ui (will be remapped) */
"iii\0"
"glSecondaryColor3ui\0"
"glSecondaryColor3uiEXT\0"
"\0"
- /* _mesa_function_pool[36662]: VertexAttribI3uivEXT (will be remapped) */
+ /* _mesa_function_pool[36753]: VertexAttribI3uivEXT (will be remapped) */
"ip\0"
"glVertexAttribI3uivEXT\0"
"glVertexAttribI3uiv\0"
"\0"
- /* _mesa_function_pool[36709]: UniformMatrix3x4fv (will be remapped) */
+ /* _mesa_function_pool[36800]: UniformMatrix3x4fv (will be remapped) */
"iiip\0"
"glUniformMatrix3x4fv\0"
"\0"
- /* _mesa_function_pool[36736]: ClipPlane (offset 150) */
+ /* _mesa_function_pool[36827]: ClipPlane (offset 150) */
"ip\0"
"glClipPlane\0"
"\0"
- /* _mesa_function_pool[36752]: Recti (offset 90) */
+ /* _mesa_function_pool[36843]: Recti (offset 90) */
"iiii\0"
"glRecti\0"
"\0"
- /* _mesa_function_pool[36766]: VertexAttribI3ivEXT (will be remapped) */
+ /* _mesa_function_pool[36857]: VertexAttribI3ivEXT (will be remapped) */
"ip\0"
"glVertexAttribI3ivEXT\0"
"glVertexAttribI3iv\0"
"\0"
- /* _mesa_function_pool[36811]: DrawRangeElementsBaseVertex (will be remapped) */
+ /* _mesa_function_pool[36902]: DrawRangeElementsBaseVertex (will be remapped) */
"iiiiipi\0"
"glDrawRangeElementsBaseVertex\0"
"\0"
- /* _mesa_function_pool[36850]: VertexAttribIPointer (will be remapped) */
+ /* _mesa_function_pool[36941]: VertexAttribIPointer (will be remapped) */
"iiiip\0"
"glVertexAttribIPointerEXT\0"
"glVertexAttribIPointer\0"
"\0"
- /* _mesa_function_pool[36906]: SecondaryColor3usv (will be remapped) */
+ /* _mesa_function_pool[36997]: SecondaryColor3usv (will be remapped) */
"p\0"
"glSecondaryColor3usv\0"
"glSecondaryColor3usvEXT\0"
"\0"
- /* _mesa_function_pool[36954]: VertexP2uiv (will be remapped) */
+ /* _mesa_function_pool[37045]: VertexP2uiv (will be remapped) */
"ip\0"
"glVertexP2uiv\0"
"\0"
- /* _mesa_function_pool[36972]: Fogxv (will be remapped) */
+ /* _mesa_function_pool[37063]: Fogxv (will be remapped) */
"ip\0"
"glFogxvOES\0"
"glFogxv\0"
"\0"
- /* _mesa_function_pool[36995]: MultiTexCoord3dv (offset 393) */
+ /* _mesa_function_pool[37086]: MultiTexCoord3dv (offset 393) */
"ip\0"
"glMultiTexCoord3dv\0"
"glMultiTexCoord3dvARB\0"
"\0"
- /* _mesa_function_pool[37040]: WindowPos4fvMESA (will be remapped) */
+ /* _mesa_function_pool[37131]: WindowPos4fvMESA (will be remapped) */
"p\0"
"glWindowPos4fvMESA\0"
"\0"
- /* _mesa_function_pool[37062]: GetPixelMapuiv (offset 272) */
+ /* _mesa_function_pool[37153]: GetPixelMapuiv (offset 272) */
"ip\0"
"glGetPixelMapuiv\0"
"\0"
- /* _mesa_function_pool[37083]: Rectf (offset 88) */
+ /* _mesa_function_pool[37174]: Rectf (offset 88) */
"ffff\0"
"glRectf\0"
"\0"
- /* _mesa_function_pool[37097]: VertexAttrib1sNV (will be remapped) */
+ /* _mesa_function_pool[37188]: VertexAttrib1sNV (will be remapped) */
"ii\0"
"glVertexAttrib1sNV\0"
"\0"
- /* _mesa_function_pool[37120]: Indexfv (offset 47) */
+ /* _mesa_function_pool[37211]: Indexfv (offset 47) */
"p\0"
"glIndexfv\0"
"\0"
- /* _mesa_function_pool[37133]: ColorP3uiv (will be remapped) */
+ /* _mesa_function_pool[37224]: ColorP3uiv (will be remapped) */
"ip\0"
"glColorP3uiv\0"
"\0"
- /* _mesa_function_pool[37150]: TexParameterIuiv (will be remapped) */
+ /* _mesa_function_pool[37241]: TexParameterIuiv (will be remapped) */
"iip\0"
"glTexParameterIuivEXT\0"
"glTexParameterIuiv\0"
"\0"
- /* _mesa_function_pool[37196]: BlitFramebuffer (will be remapped) */
+ /* _mesa_function_pool[37287]: BlitFramebuffer (will be remapped) */
"iiiiiiiiii\0"
"glBlitFramebuffer\0"
"glBlitFramebufferEXT\0"
"\0"
- /* _mesa_function_pool[37247]: GetPointerv (offset 329) */
+ /* _mesa_function_pool[37338]: GetPointerv (offset 329) */
"ip\0"
"glGetPointerv\0"
"glGetPointervEXT\0"
"\0"
- /* _mesa_function_pool[37282]: Tangent3bEXT (dynamic) */
+ /* _mesa_function_pool[37373]: Tangent3bEXT (dynamic) */
"iii\0"
"glTangent3bEXT\0"
"\0"
- /* _mesa_function_pool[37302]: CombinerParameterfNV (dynamic) */
+ /* _mesa_function_pool[37393]: CombinerParameterfNV (dynamic) */
"if\0"
"glCombinerParameterfNV\0"
"\0"
- /* _mesa_function_pool[37329]: IndexMask (offset 212) */
+ /* _mesa_function_pool[37420]: IndexMask (offset 212) */
"i\0"
"glIndexMask\0"
"\0"
- /* _mesa_function_pool[37344]: CreateShaderObjectARB (will be remapped) */
+ /* _mesa_function_pool[37435]: CreateShaderObjectARB (will be remapped) */
"i\0"
"glCreateShaderObjectARB\0"
"\0"
- /* _mesa_function_pool[37371]: ReplacementCodeuiSUN (dynamic) */
+ /* _mesa_function_pool[37462]: ReplacementCodeuiSUN (dynamic) */
"i\0"
"glReplacementCodeuiSUN\0"
"\0"
- /* _mesa_function_pool[37397]: GetFloatv (offset 262) */
+ /* _mesa_function_pool[37488]: GetFloatv (offset 262) */
"ip\0"
"glGetFloatv\0"
"\0"
- /* _mesa_function_pool[37413]: CombinerOutputNV (dynamic) */
+ /* _mesa_function_pool[37504]: CombinerOutputNV (dynamic) */
"iiiiiiiiii\0"
"glCombinerOutputNV\0"
"\0"
- /* _mesa_function_pool[37444]: MultiTexCoord3i (offset 396) */
+ /* _mesa_function_pool[37535]: MultiTexCoord3i (offset 396) */
"iiii\0"
"glMultiTexCoord3i\0"
"glMultiTexCoord3iARB\0"
"\0"
- /* _mesa_function_pool[37489]: GetVertexAttribIiv (will be remapped) */
+ /* _mesa_function_pool[37580]: GetVertexAttribIiv (will be remapped) */
"iip\0"
"glGetVertexAttribIivEXT\0"
"glGetVertexAttribIiv\0"
"\0"
- /* _mesa_function_pool[37539]: ClientWaitSync (will be remapped) */
+ /* _mesa_function_pool[37630]: ClientWaitSync (will be remapped) */
"iii\0"
"glClientWaitSync\0"
"\0"
- /* _mesa_function_pool[37561]: TexCoord4s (offset 124) */
+ /* _mesa_function_pool[37652]: TexCoord4s (offset 124) */
"iiii\0"
"glTexCoord4s\0"
"\0"
- /* _mesa_function_pool[37580]: GetPerfMonitorGroupsAMD (will be remapped) */
+ /* _mesa_function_pool[37671]: GetPerfMonitorGroupsAMD (will be remapped) */
"pip\0"
"glGetPerfMonitorGroupsAMD\0"
"\0"
- /* _mesa_function_pool[37611]: TexCoord3sv (offset 117) */
+ /* _mesa_function_pool[37702]: TexCoord3sv (offset 117) */
"p\0"
"glTexCoord3sv\0"
"\0"
- /* _mesa_function_pool[37628]: VertexAttrib2dNV (will be remapped) */
+ /* _mesa_function_pool[37719]: VertexAttrib2dNV (will be remapped) */
"idd\0"
"glVertexAttrib2dNV\0"
"\0"
- /* _mesa_function_pool[37652]: FogCoorddv (will be remapped) */
+ /* _mesa_function_pool[37743]: FogCoorddv (will be remapped) */
"p\0"
"glFogCoorddv\0"
"glFogCoorddvEXT\0"
"\0"
- /* _mesa_function_pool[37684]: PopAttrib (offset 218) */
+ /* _mesa_function_pool[37775]: PopAttrib (offset 218) */
"\0"
"glPopAttrib\0"
"\0"
- /* _mesa_function_pool[37698]: Fogfv (offset 154) */
+ /* _mesa_function_pool[37789]: Fogfv (offset 154) */
"ip\0"
"glFogfv\0"
"\0"
- /* _mesa_function_pool[37710]: ObjectPurgeableAPPLE (will be remapped) */
+ /* _mesa_function_pool[37801]: ObjectPurgeableAPPLE (will be remapped) */
"iii\0"
"glObjectPurgeableAPPLE\0"
"\0"
- /* _mesa_function_pool[37738]: InitNames (offset 197) */
+ /* _mesa_function_pool[37829]: InitNames (offset 197) */
"\0"
"glInitNames\0"
"\0"
- /* _mesa_function_pool[37752]: Normal3sv (offset 61) */
+ /* _mesa_function_pool[37843]: Normal3sv (offset 61) */
"p\0"
"glNormal3sv\0"
"\0"
- /* _mesa_function_pool[37767]: Minmax (offset 368) */
+ /* _mesa_function_pool[37858]: Minmax (offset 368) */
"iii\0"
"glMinmax\0"
"glMinmaxEXT\0"
"\0"
- /* _mesa_function_pool[37793]: BufferData (will be remapped) */
+ /* _mesa_function_pool[37884]: BufferData (will be remapped) */
"iipi\0"
"glBufferData\0"
"glBufferDataARB\0"
"\0"
- /* _mesa_function_pool[37828]: DeleteQueries (will be remapped) */
+ /* _mesa_function_pool[37919]: DeleteQueries (will be remapped) */
"ip\0"
"glDeleteQueries\0"
"glDeleteQueriesARB\0"
"\0"
- /* _mesa_function_pool[37867]: TexCoord4d (offset 118) */
+ /* _mesa_function_pool[37958]: TexCoord4d (offset 118) */
"dddd\0"
"glTexCoord4d\0"
"\0"
- /* _mesa_function_pool[37886]: IsEnabledi (will be remapped) */
+ /* _mesa_function_pool[37977]: IsEnabledi (will be remapped) */
"ii\0"
"glIsEnabledIndexedEXT\0"
"glIsEnabledi\0"
"\0"
- /* _mesa_function_pool[37925]: TexCoord4f (offset 120) */
+ /* _mesa_function_pool[38016]: TexCoord4f (offset 120) */
"ffff\0"
"glTexCoord4f\0"
"\0"
- /* _mesa_function_pool[37944]: Uniform3ui (will be remapped) */
+ /* _mesa_function_pool[38035]: Uniform3ui (will be remapped) */
"iiii\0"
"glUniform3uiEXT\0"
"glUniform3ui\0"
"\0"
- /* _mesa_function_pool[37979]: InvalidateFramebuffer (will be remapped) */
+ /* _mesa_function_pool[38070]: InvalidateFramebuffer (will be remapped) */
"iip\0"
"glInvalidateFramebuffer\0"
"\0"
- /* _mesa_function_pool[38008]: GetFragmentMaterialfvSGIX (dynamic) */
+ /* _mesa_function_pool[38099]: GetFragmentMaterialfvSGIX (dynamic) */
"iip\0"
"glGetFragmentMaterialfvSGIX\0"
"\0"
- /* _mesa_function_pool[38041]: Binormal3fvEXT (dynamic) */
+ /* _mesa_function_pool[38132]: Binormal3fvEXT (dynamic) */
"p\0"
"glBinormal3fvEXT\0"
"\0"
- /* _mesa_function_pool[38061]: GetBooleanv (offset 258) */
+ /* _mesa_function_pool[38152]: GetBooleanv (offset 258) */
"ip\0"
"glGetBooleanv\0"
"\0"
- /* _mesa_function_pool[38079]: ColorFragmentOp3ATI (will be remapped) */
+ /* _mesa_function_pool[38170]: ColorFragmentOp3ATI (will be remapped) */
"iiiiiiiiiiiii\0"
"glColorFragmentOp3ATI\0"
"\0"
- /* _mesa_function_pool[38116]: Hint (offset 158) */
+ /* _mesa_function_pool[38207]: Hint (offset 158) */
"ii\0"
"glHint\0"
"\0"
- /* _mesa_function_pool[38127]: DeletePerfMonitorsAMD (will be remapped) */
+ /* _mesa_function_pool[38218]: DeletePerfMonitorsAMD (will be remapped) */
"ip\0"
"glDeletePerfMonitorsAMD\0"
"\0"
- /* _mesa_function_pool[38155]: Color4dv (offset 28) */
+ /* _mesa_function_pool[38246]: Color4dv (offset 28) */
"p\0"
"glColor4dv\0"
"\0"
- /* _mesa_function_pool[38169]: IsAsyncMarkerSGIX (dynamic) */
+ /* _mesa_function_pool[38260]: IsAsyncMarkerSGIX (dynamic) */
"i\0"
"glIsAsyncMarkerSGIX\0"
"\0"
- /* _mesa_function_pool[38192]: AreProgramsResidentNV (will be remapped) */
+ /* _mesa_function_pool[38283]: AreProgramsResidentNV (will be remapped) */
"ipp\0"
"glAreProgramsResidentNV\0"
"\0"
- /* _mesa_function_pool[38221]: DisableVertexAttribArray (will be remapped) */
+ /* _mesa_function_pool[38312]: DisableVertexAttribArray (will be remapped) */
"i\0"
"glDisableVertexAttribArray\0"
"glDisableVertexAttribArrayARB\0"
"\0"
- /* _mesa_function_pool[38281]: CopyColorSubTable (offset 347) */
+ /* _mesa_function_pool[38372]: CopyColorSubTable (offset 347) */
"iiiii\0"
"glCopyColorSubTable\0"
"glCopyColorSubTableEXT\0"
"\0"
- /* _mesa_function_pool[38331]: WeightdvARB (dynamic) */
+ /* _mesa_function_pool[38422]: WeightdvARB (dynamic) */
"ip\0"
"glWeightdvARB\0"
"\0"
- /* _mesa_function_pool[38349]: PollInstrumentsSGIX (dynamic) */
+ /* _mesa_function_pool[38440]: PollInstrumentsSGIX (dynamic) */
"p\0"
"glPollInstrumentsSGIX\0"
"\0"
- /* _mesa_function_pool[38374]: VertexAttrib3dvNV (will be remapped) */
+ /* _mesa_function_pool[38465]: VertexAttrib3dvNV (will be remapped) */
"ip\0"
"glVertexAttrib3dvNV\0"
"\0"
- /* _mesa_function_pool[38398]: GetObjectParameterfvARB (will be remapped) */
+ /* _mesa_function_pool[38489]: GetObjectParameterfvARB (will be remapped) */
"iip\0"
"glGetObjectParameterfvARB\0"
"\0"
- /* _mesa_function_pool[38429]: Vertex4iv (offset 147) */
+ /* _mesa_function_pool[38520]: Vertex4iv (offset 147) */
"p\0"
"glVertex4iv\0"
"\0"
- /* _mesa_function_pool[38444]: BufferSubData (will be remapped) */
+ /* _mesa_function_pool[38535]: BufferSubData (will be remapped) */
"iiip\0"
"glBufferSubData\0"
"glBufferSubDataARB\0"
"\0"
- /* _mesa_function_pool[38485]: TexCoord4dv (offset 119) */
+ /* _mesa_function_pool[38576]: TexCoord4dv (offset 119) */
"p\0"
"glTexCoord4dv\0"
"\0"
- /* _mesa_function_pool[38502]: LockArraysEXT (will be remapped) */
+ /* _mesa_function_pool[38593]: LockArraysEXT (will be remapped) */
"ii\0"
"glLockArraysEXT\0"
"\0"
- /* _mesa_function_pool[38522]: Begin (offset 7) */
+ /* _mesa_function_pool[38613]: Begin (offset 7) */
"i\0"
"glBegin\0"
"\0"
- /* _mesa_function_pool[38533]: LightModeli (offset 165) */
+ /* _mesa_function_pool[38624]: LightModeli (offset 165) */
"ii\0"
"glLightModeli\0"
"\0"
- /* _mesa_function_pool[38551]: FogCoordPointerListIBM (dynamic) */
+ /* _mesa_function_pool[38642]: FogCoordPointerListIBM (dynamic) */
"iipi\0"
"glFogCoordPointerListIBM\0"
"\0"
- /* _mesa_function_pool[38582]: ObjectPtrLabel (will be remapped) */
+ /* _mesa_function_pool[38673]: ObjectPtrLabel (will be remapped) */
"pip\0"
"glObjectPtrLabel\0"
"\0"
- /* _mesa_function_pool[38604]: Rectfv (offset 89) */
+ /* _mesa_function_pool[38695]: Rectfv (offset 89) */
"pp\0"
"glRectfv\0"
"\0"
- /* _mesa_function_pool[38617]: ClipPlanex (will be remapped) */
+ /* _mesa_function_pool[38708]: ClipPlanex (will be remapped) */
"ip\0"
"glClipPlanexOES\0"
"glClipPlanex\0"
"\0"
- /* _mesa_function_pool[38650]: Uniform4f (will be remapped) */
+ /* _mesa_function_pool[38741]: Uniform4f (will be remapped) */
"iffff\0"
"glUniform4f\0"
"glUniform4fARB\0"
"\0"
- /* _mesa_function_pool[38684]: LightModelf (offset 163) */
+ /* _mesa_function_pool[38775]: LightModelf (offset 163) */
"if\0"
"glLightModelf\0"
"\0"
- /* _mesa_function_pool[38702]: GetTexParameterfv (offset 282) */
+ /* _mesa_function_pool[38793]: GetTexParameterfv (offset 282) */
"iip\0"
"glGetTexParameterfv\0"
"\0"
- /* _mesa_function_pool[38727]: GetLightfv (offset 264) */
+ /* _mesa_function_pool[38818]: GetLightfv (offset 264) */
"iip\0"
"glGetLightfv\0"
"\0"
- /* _mesa_function_pool[38745]: PixelTransformParameterivEXT (dynamic) */
+ /* _mesa_function_pool[38836]: PixelTransformParameterivEXT (dynamic) */
"iip\0"
"glPixelTransformParameterivEXT\0"
"\0"
- /* _mesa_function_pool[38781]: BinormalPointerEXT (dynamic) */
+ /* _mesa_function_pool[38872]: BinormalPointerEXT (dynamic) */
"iip\0"
"glBinormalPointerEXT\0"
"\0"
- /* _mesa_function_pool[38807]: VertexP4uiv (will be remapped) */
+ /* _mesa_function_pool[38898]: VertexP4uiv (will be remapped) */
"ip\0"
"glVertexP4uiv\0"
"\0"
- /* _mesa_function_pool[38825]: GetCombinerInputParameterivNV (dynamic) */
+ /* _mesa_function_pool[38916]: GetCombinerInputParameterivNV (dynamic) */
"iiiip\0"
"glGetCombinerInputParameterivNV\0"
"\0"
- /* _mesa_function_pool[38864]: Disable (offset 214) */
+ /* _mesa_function_pool[38955]: Disable (offset 214) */
"i\0"
"glDisable\0"
"\0"
- /* _mesa_function_pool[38877]: ClipPlanef (will be remapped) */
+ /* _mesa_function_pool[38968]: ClipPlanef (will be remapped) */
"ip\0"
"glClipPlanefOES\0"
"glClipPlanef\0"
"\0"
- /* _mesa_function_pool[38910]: MultiTexCoord2fvARB (offset 387) */
+ /* _mesa_function_pool[39001]: MultiTexCoord2fvARB (offset 387) */
"ip\0"
"glMultiTexCoord2fv\0"
"glMultiTexCoord2fvARB\0"
"\0"
- /* _mesa_function_pool[38955]: TextureBarrierNV (will be remapped) */
+ /* _mesa_function_pool[39046]: TextureBarrierNV (will be remapped) */
"\0"
"glTextureBarrierNV\0"
"\0"
- /* _mesa_function_pool[38976]: GetPerfMonitorCounterStringAMD (will be remapped) */
+ /* _mesa_function_pool[39067]: GetPerfMonitorCounterStringAMD (will be remapped) */
"iiipp\0"
"glGetPerfMonitorCounterStringAMD\0"
"\0"
- /* _mesa_function_pool[39016]: SecondaryColorPointer (will be remapped) */
+ /* _mesa_function_pool[39107]: SecondaryColorPointer (will be remapped) */
"iiip\0"
"glSecondaryColorPointer\0"
"glSecondaryColorPointerEXT\0"
"\0"
- /* _mesa_function_pool[39073]: DrawArrays (offset 310) */
+ /* _mesa_function_pool[39164]: FinishAsyncSGIX (dynamic) */
+ "p\0"
+ "glFinishAsyncSGIX\0"
+ "\0"
+ /* _mesa_function_pool[39185]: DrawArrays (offset 310) */
"iii\0"
"glDrawArrays\0"
"glDrawArraysEXT\0"
"\0"
- /* _mesa_function_pool[39107]: WeightuivARB (dynamic) */
+ /* _mesa_function_pool[39219]: WeightuivARB (dynamic) */
"ip\0"
"glWeightuivARB\0"
"\0"
- /* _mesa_function_pool[39126]: GetnTexImageARB (will be remapped) */
+ /* _mesa_function_pool[39238]: GetnTexImageARB (will be remapped) */
"iiiiip\0"
"glGetnTexImageARB\0"
"\0"
- /* _mesa_function_pool[39152]: ColorMask (offset 210) */
+ /* _mesa_function_pool[39264]: ColorMask (offset 210) */
"iiii\0"
"glColorMask\0"
"\0"
- /* _mesa_function_pool[39170]: GenAsyncMarkersSGIX (dynamic) */
+ /* _mesa_function_pool[39282]: GenAsyncMarkersSGIX (dynamic) */
"i\0"
"glGenAsyncMarkersSGIX\0"
"\0"
- /* _mesa_function_pool[39195]: DebugMessageInsertARB (will be remapped) */
+ /* _mesa_function_pool[39307]: DebugMessageInsertARB (will be remapped) */
"iiiiip\0"
"glDebugMessageInsertARB\0"
"\0"
- /* _mesa_function_pool[39227]: GetListParameterivSGIX (dynamic) */
+ /* _mesa_function_pool[39339]: GetListParameterivSGIX (dynamic) */
"iip\0"
"glGetListParameterivSGIX\0"
"\0"
- /* _mesa_function_pool[39257]: GetInfoLogARB (will be remapped) */
+ /* _mesa_function_pool[39369]: GetInfoLogARB (will be remapped) */
"iipp\0"
"glGetInfoLogARB\0"
"\0"
- /* _mesa_function_pool[39279]: RasterPos4iv (offset 83) */
+ /* _mesa_function_pool[39391]: RasterPos4iv (offset 83) */
"p\0"
"glRasterPos4iv\0"
"\0"
- /* _mesa_function_pool[39297]: Enable (offset 215) */
+ /* _mesa_function_pool[39409]: Enable (offset 215) */
"i\0"
"glEnable\0"
"\0"
- /* _mesa_function_pool[39309]: GetRenderbufferParameteriv (will be remapped) */
+ /* _mesa_function_pool[39421]: GetRenderbufferParameteriv (will be remapped) */
"iip\0"
"glGetRenderbufferParameteriv\0"
"glGetRenderbufferParameterivEXT\0"
"glGetRenderbufferParameterivOES\0"
"\0"
- /* _mesa_function_pool[39407]: LineStipple (offset 167) */
+ /* _mesa_function_pool[39519]: LineStipple (offset 167) */
"ii\0"
"glLineStipple\0"
"\0"
- /* _mesa_function_pool[39425]: FragmentLightfSGIX (dynamic) */
+ /* _mesa_function_pool[39537]: FragmentLightfSGIX (dynamic) */
"iif\0"
"glFragmentLightfSGIX\0"
"\0"
- /* _mesa_function_pool[39451]: SetFenceNV (dynamic) */
+ /* _mesa_function_pool[39563]: SetFenceNV (dynamic) */
"ii\0"
"glSetFenceNV\0"
"\0"
- /* _mesa_function_pool[39468]: VertexAttribs4svNV (will be remapped) */
+ /* _mesa_function_pool[39580]: VertexAttribI4uivEXT (will be remapped) */
+ "ip\0"
+ "glVertexAttribI4uivEXT\0"
+ "glVertexAttribI4uiv\0"
+ "\0"
+ /* _mesa_function_pool[39627]: VertexAttribs4svNV (will be remapped) */
"iip\0"
"glVertexAttribs4svNV\0"
"\0"
- /* _mesa_function_pool[39494]: GenRenderbuffers (will be remapped) */
+ /* _mesa_function_pool[39653]: GenRenderbuffers (will be remapped) */
"ip\0"
"glGenRenderbuffers\0"
"glGenRenderbuffersEXT\0"
"glGenRenderbuffersOES\0"
"\0"
- /* _mesa_function_pool[39561]: EdgeFlagPointerListIBM (dynamic) */
+ /* _mesa_function_pool[39720]: EdgeFlagPointerListIBM (dynamic) */
"ipi\0"
"glEdgeFlagPointerListIBM\0"
"\0"
- /* _mesa_function_pool[39591]: UniformMatrix4fv (will be remapped) */
+ /* _mesa_function_pool[39750]: UniformMatrix4fv (will be remapped) */
"iiip\0"
"glUniformMatrix4fv\0"
"glUniformMatrix4fvARB\0"
"\0"
- /* _mesa_function_pool[39638]: UniformMatrix3x2fv (will be remapped) */
+ /* _mesa_function_pool[39797]: UniformMatrix3x2fv (will be remapped) */
"iiip\0"
"glUniformMatrix3x2fv\0"
"\0"
- /* _mesa_function_pool[39665]: GetMinmaxParameterfv (offset 365) */
+ /* _mesa_function_pool[39824]: GetMinmaxParameterfv (offset 365) */
"iip\0"
"glGetMinmaxParameterfv\0"
"glGetMinmaxParameterfvEXT\0"
"\0"
- /* _mesa_function_pool[39719]: VertexAttrib4Nuiv (will be remapped) */
+ /* _mesa_function_pool[39878]: VertexAttrib4Nuiv (will be remapped) */
"ip\0"
"glVertexAttrib4Nuiv\0"
"glVertexAttrib4NuivARB\0"
"\0"
- /* _mesa_function_pool[39766]: ClientActiveTexture (offset 375) */
+ /* _mesa_function_pool[39925]: ClientActiveTexture (offset 375) */
"i\0"
"glClientActiveTexture\0"
"glClientActiveTextureARB\0"
"\0"
- /* _mesa_function_pool[39816]: WindowPos2sv (will be remapped) */
+ /* _mesa_function_pool[39975]: WindowPos2sv (will be remapped) */
"p\0"
"glWindowPos2sv\0"
"glWindowPos2svARB\0"
"glWindowPos2svMESA\0"
"\0"
- /* _mesa_function_pool[39871]: Vertex3fv (offset 137) */
+ /* _mesa_function_pool[40030]: Vertex3fv (offset 137) */
"p\0"
"glVertex3fv\0"
"\0"
- /* _mesa_function_pool[39886]: GetUniformIndices (will be remapped) */
+ /* _mesa_function_pool[40045]: GetUniformIndices (will be remapped) */
"iipp\0"
"glGetUniformIndices\0"
"\0"
- /* _mesa_function_pool[39912]: GetTexBumpParameterivATI (will be remapped) */
+ /* _mesa_function_pool[40071]: GetTexBumpParameterivATI (will be remapped) */
"ip\0"
"glGetTexBumpParameterivATI\0"
"\0"
- /* _mesa_function_pool[39943]: SecondaryColor3sv (will be remapped) */
+ /* _mesa_function_pool[40102]: SecondaryColor3sv (will be remapped) */
"p\0"
"glSecondaryColor3sv\0"
"glSecondaryColor3svEXT\0"
"\0"
- /* _mesa_function_pool[39989]: Fogx (will be remapped) */
+ /* _mesa_function_pool[40148]: Fogx (will be remapped) */
"ii\0"
"glFogxOES\0"
"glFogx\0"
"\0"
- /* _mesa_function_pool[40010]: Binormal3bEXT (dynamic) */
+ /* _mesa_function_pool[40169]: Binormal3bEXT (dynamic) */
"iii\0"
"glBinormal3bEXT\0"
"\0"
- /* _mesa_function_pool[40031]: FragmentMaterialivSGIX (dynamic) */
+ /* _mesa_function_pool[40190]: FragmentMaterialivSGIX (dynamic) */
"iip\0"
"glFragmentMaterialivSGIX\0"
"\0"
- /* _mesa_function_pool[40061]: WaitSync (will be remapped) */
+ /* _mesa_function_pool[40220]: WaitSync (will be remapped) */
"iii\0"
"glWaitSync\0"
"\0"
- /* _mesa_function_pool[40077]: CombinerParameterivNV (dynamic) */
+ /* _mesa_function_pool[40236]: CombinerParameterivNV (dynamic) */
"ip\0"
"glCombinerParameterivNV\0"
"\0"
- /* _mesa_function_pool[40105]: WindowPos4dvMESA (will be remapped) */
- "p\0"
- "glWindowPos4dvMESA\0"
+ /* _mesa_function_pool[40264]: BindVertexBuffer (will be remapped) */
+ "iiii\0"
+ "glBindVertexBuffer\0"
"\0"
- /* _mesa_function_pool[40127]: MultiTexCoord2sv (offset 391) */
+ /* _mesa_function_pool[40289]: MultiTexCoord2sv (offset 391) */
"ip\0"
"glMultiTexCoord2sv\0"
"glMultiTexCoord2svARB\0"
"\0"
- /* _mesa_function_pool[40172]: DeformationMap3dSGIX (dynamic) */
+ /* _mesa_function_pool[40334]: DeformationMap3dSGIX (dynamic) */
"iddiiddiiddiip\0"
"glDeformationMap3dSGIX\0"
"\0"
- /* _mesa_function_pool[40211]: EndFragmentShaderATI (will be remapped) */
+ /* _mesa_function_pool[40373]: EndFragmentShaderATI (will be remapped) */
"\0"
"glEndFragmentShaderATI\0"
"\0"
- /* _mesa_function_pool[40236]: Binormal3iEXT (dynamic) */
+ /* _mesa_function_pool[40398]: Binormal3iEXT (dynamic) */
"iii\0"
"glBinormal3iEXT\0"
"\0"
- /* _mesa_function_pool[40257]: Uniform4iv (will be remapped) */
+ /* _mesa_function_pool[40419]: Uniform4iv (will be remapped) */
"iip\0"
"glUniform4iv\0"
"glUniform4ivARB\0"
@@ -5704,667 +5728,673 @@ static const char _mesa_function_pool[] =
/* these functions need to be remapped */
static const struct gl_function_pool_remap MESA_remap_table_functions[] = {
- { 26118, CompressedTexImage1D_remap_index },
- { 16627, CompressedTexImage2D_remap_index },
+ { 26135, CompressedTexImage1D_remap_index },
+ { 16634, CompressedTexImage2D_remap_index },
{ 2914, CompressedTexImage3D_remap_index },
- { 7668, CompressedTexSubImage1D_remap_index },
+ { 7643, CompressedTexSubImage1D_remap_index },
{ 4058, CompressedTexSubImage2D_remap_index },
- { 31097, CompressedTexSubImage3D_remap_index },
- { 15068, GetCompressedTexImage_remap_index },
- { 22938, LoadTransposeMatrixd_remap_index },
- { 22886, LoadTransposeMatrixf_remap_index },
- { 35057, MultTransposeMatrixd_remap_index },
- { 35109, MultTransposeMatrixf_remap_index },
- { 32527, SampleCoverage_remap_index },
- { 11903, BlendFuncSeparate_remap_index },
- { 14046, FogCoordPointer_remap_index },
- { 16965, FogCoordd_remap_index },
- { 37652, FogCoorddv_remap_index },
- { 32686, MultiDrawArrays_remap_index },
- { 26828, PointParameterf_remap_index },
- { 17818, PointParameterfv_remap_index },
- { 26786, PointParameteri_remap_index },
- { 32894, PointParameteriv_remap_index },
- { 18782, SecondaryColor3b_remap_index },
- { 15452, SecondaryColor3bv_remap_index },
- { 32965, SecondaryColor3d_remap_index },
+ { 31132, CompressedTexSubImage3D_remap_index },
+ { 15075, GetCompressedTexImage_remap_index },
+ { 22955, LoadTransposeMatrixd_remap_index },
+ { 22903, LoadTransposeMatrixf_remap_index },
+ { 35148, MultTransposeMatrixd_remap_index },
+ { 35200, MultTransposeMatrixf_remap_index },
+ { 32612, SampleCoverage_remap_index },
+ { 11882, BlendFuncSeparate_remap_index },
+ { 14053, FogCoordPointer_remap_index },
+ { 16972, FogCoordd_remap_index },
+ { 37743, FogCoorddv_remap_index },
+ { 32771, MultiDrawArrays_remap_index },
+ { 26845, PointParameterf_remap_index },
+ { 17825, PointParameterfv_remap_index },
+ { 26803, PointParameteri_remap_index },
+ { 32979, PointParameteriv_remap_index },
+ { 18789, SecondaryColor3b_remap_index },
+ { 15459, SecondaryColor3bv_remap_index },
+ { 33050, SecondaryColor3d_remap_index },
{ 3254, SecondaryColor3dv_remap_index },
- { 36093, SecondaryColor3i_remap_index },
- { 21641, SecondaryColor3iv_remap_index },
- { 18489, SecondaryColor3s_remap_index },
- { 39943, SecondaryColor3sv_remap_index },
- { 16003, SecondaryColor3ub_remap_index },
- { 26738, SecondaryColor3ubv_remap_index },
- { 36614, SecondaryColor3ui_remap_index },
+ { 36184, SecondaryColor3i_remap_index },
+ { 21648, SecondaryColor3iv_remap_index },
+ { 18496, SecondaryColor3s_remap_index },
+ { 40102, SecondaryColor3sv_remap_index },
+ { 16010, SecondaryColor3ub_remap_index },
+ { 26755, SecondaryColor3ubv_remap_index },
+ { 36705, SecondaryColor3ui_remap_index },
{ 4240, SecondaryColor3uiv_remap_index },
- { 14277, SecondaryColor3us_remap_index },
- { 36906, SecondaryColor3usv_remap_index },
- { 39016, SecondaryColorPointer_remap_index },
+ { 14284, SecondaryColor3us_remap_index },
+ { 36997, SecondaryColor3usv_remap_index },
+ { 39107, SecondaryColorPointer_remap_index },
{ 2086, WindowPos2d_remap_index },
- { 19306, WindowPos2dv_remap_index },
+ { 19313, WindowPos2dv_remap_index },
{ 2014, WindowPos2f_remap_index },
{ 1501, WindowPos2fv_remap_index },
- { 16321, WindowPos2i_remap_index },
- { 23876, WindowPos2iv_remap_index },
+ { 16328, WindowPos2i_remap_index },
+ { 23893, WindowPos2iv_remap_index },
{ 2448, WindowPos2s_remap_index },
- { 39816, WindowPos2sv_remap_index },
- { 15862, WindowPos3d_remap_index },
- { 13941, WindowPos3dv_remap_index },
- { 15949, WindowPos3f_remap_index },
- { 32076, WindowPos3fv_remap_index },
- { 18728, WindowPos3i_remap_index },
- { 36191, WindowPos3iv_remap_index },
- { 16374, WindowPos3s_remap_index },
- { 7103, WindowPos3sv_remap_index },
- { 23381, BeginQuery_remap_index },
- { 12465, BindBuffer_remap_index },
- { 37793, BufferData_remap_index },
- { 38444, BufferSubData_remap_index },
- { 28110, DeleteBuffers_remap_index },
- { 37828, DeleteQueries_remap_index },
- { 29049, EndQuery_remap_index },
- { 25501, GenBuffers_remap_index },
+ { 39975, WindowPos2sv_remap_index },
+ { 15869, WindowPos3d_remap_index },
+ { 13948, WindowPos3dv_remap_index },
+ { 15956, WindowPos3f_remap_index },
+ { 32161, WindowPos3fv_remap_index },
+ { 18735, WindowPos3i_remap_index },
+ { 36282, WindowPos3iv_remap_index },
+ { 16381, WindowPos3s_remap_index },
+ { 7078, WindowPos3sv_remap_index },
+ { 23398, BeginQuery_remap_index },
+ { 12472, BindBuffer_remap_index },
+ { 37884, BufferData_remap_index },
+ { 38535, BufferSubData_remap_index },
+ { 28127, DeleteBuffers_remap_index },
+ { 37919, DeleteQueries_remap_index },
+ { 29084, EndQuery_remap_index },
+ { 25518, GenBuffers_remap_index },
{ 2765, GenQueries_remap_index },
- { 19075, GetBufferParameteriv_remap_index },
- { 31608, GetBufferPointerv_remap_index },
- { 28243, GetBufferSubData_remap_index },
- { 30749, GetQueryObjectiv_remap_index },
- { 28615, GetQueryObjectuiv_remap_index },
+ { 19082, GetBufferParameteriv_remap_index },
+ { 31693, GetBufferPointerv_remap_index },
+ { 28278, GetBufferSubData_remap_index },
+ { 30784, GetQueryObjectiv_remap_index },
+ { 28650, GetQueryObjectuiv_remap_index },
{ 3846, GetQueryiv_remap_index },
- { 24019, IsBuffer_remap_index },
- { 20832, IsQuery_remap_index },
+ { 24036, IsBuffer_remap_index },
+ { 20839, IsQuery_remap_index },
{ 4419, MapBuffer_remap_index },
- { 33972, UnmapBuffer_remap_index },
+ { 34063, UnmapBuffer_remap_index },
{ 1265, AttachShader_remap_index },
{ 6465, BindAttribLocation_remap_index },
- { 25739, BlendEquationSeparate_remap_index },
- { 22757, CompileShader_remap_index },
- { 11825, CreateProgram_remap_index },
- { 27236, CreateShader_remap_index },
- { 30271, DeleteProgram_remap_index },
- { 30958, DeleteShader_remap_index },
- { 32421, DetachShader_remap_index },
- { 38221, DisableVertexAttribArray_remap_index },
- { 13049, DrawBuffers_remap_index },
- { 26434, EnableVertexAttribArray_remap_index },
- { 9184, GetActiveAttrib_remap_index },
- { 28060, GetActiveUniform_remap_index },
- { 21400, GetAttachedShaders_remap_index },
- { 17233, GetAttribLocation_remap_index },
+ { 25756, BlendEquationSeparate_remap_index },
+ { 22774, CompileShader_remap_index },
+ { 11804, CreateProgram_remap_index },
+ { 27253, CreateShader_remap_index },
+ { 30306, DeleteProgram_remap_index },
+ { 30993, DeleteShader_remap_index },
+ { 32506, DetachShader_remap_index },
+ { 38312, DisableVertexAttribArray_remap_index },
+ { 13056, DrawBuffers_remap_index },
+ { 26451, EnableVertexAttribArray_remap_index },
+ { 9135, GetActiveAttrib_remap_index },
+ { 28077, GetActiveUniform_remap_index },
+ { 21407, GetAttachedShaders_remap_index },
+ { 17240, GetAttribLocation_remap_index },
{ 6045, GetProgramInfoLog_remap_index },
{ 272, GetProgramiv_remap_index },
- { 14538, GetShaderInfoLog_remap_index },
- { 27768, GetShaderSource_remap_index },
+ { 14545, GetShaderInfoLog_remap_index },
+ { 27785, GetShaderSource_remap_index },
{ 1570, GetShaderiv_remap_index },
- { 23809, GetUniformLocation_remap_index },
- { 7367, GetUniformfv_remap_index },
- { 7931, GetUniformiv_remap_index },
- { 20110, GetVertexAttribPointerv_remap_index },
- { 25226, GetVertexAttribdv_remap_index },
+ { 23826, GetUniformLocation_remap_index },
+ { 7342, GetUniformfv_remap_index },
+ { 7906, GetUniformiv_remap_index },
+ { 20117, GetVertexAttribPointerv_remap_index },
+ { 25243, GetVertexAttribdv_remap_index },
{ 2197, GetVertexAttribfv_remap_index },
- { 12850, GetVertexAttribiv_remap_index },
- { 15437, IsProgram_remap_index },
- { 7485, IsShader_remap_index },
- { 21914, LinkProgram_remap_index },
- { 12027, ShaderSource_remap_index },
- { 11999, StencilFuncSeparate_remap_index },
+ { 12857, GetVertexAttribiv_remap_index },
+ { 15444, IsProgram_remap_index },
+ { 7460, IsShader_remap_index },
+ { 21931, LinkProgram_remap_index },
+ { 12006, ShaderSource_remap_index },
+ { 11978, StencilFuncSeparate_remap_index },
{ 4393, StencilMaskSeparate_remap_index },
- { 9608, StencilOpSeparate_remap_index },
- { 21995, Uniform1f_remap_index },
- { 31494, Uniform1fv_remap_index },
- { 22149, Uniform1i_remap_index },
- { 31904, Uniform1iv_remap_index },
- { 31023, Uniform2f_remap_index },
+ { 9559, StencilOpSeparate_remap_index },
+ { 22012, Uniform1f_remap_index },
+ { 31529, Uniform1fv_remap_index },
+ { 22166, Uniform1i_remap_index },
+ { 31989, Uniform1iv_remap_index },
+ { 31058, Uniform2f_remap_index },
{ 739, Uniform2fv_remap_index },
- { 31315, Uniform2i_remap_index },
- { 33117, Uniform2iv_remap_index },
+ { 31350, Uniform2i_remap_index },
+ { 33202, Uniform2iv_remap_index },
{ 3105, Uniform3f_remap_index },
- { 13145, Uniform3fv_remap_index },
- { 18601, Uniform3i_remap_index },
- { 17151, Uniform3iv_remap_index },
- { 38650, Uniform4f_remap_index },
+ { 13152, Uniform3fv_remap_index },
+ { 18608, Uniform3i_remap_index },
+ { 17158, Uniform3iv_remap_index },
+ { 38741, Uniform4f_remap_index },
{ 5603, Uniform4fv_remap_index },
- { 16548, Uniform4i_remap_index },
- { 40257, Uniform4iv_remap_index },
+ { 16555, Uniform4i_remap_index },
+ { 40419, Uniform4iv_remap_index },
{ 3138, UniformMatrix2fv_remap_index },
{ 3572, UniformMatrix3fv_remap_index },
- { 39591, UniformMatrix4fv_remap_index },
- { 22692, UseProgram_remap_index },
- { 8745, ValidateProgram_remap_index },
- { 26077, VertexAttrib1d_remap_index },
- { 13802, VertexAttrib1dv_remap_index },
- { 26393, VertexAttrib1s_remap_index },
+ { 39750, UniformMatrix4fv_remap_index },
+ { 22709, UseProgram_remap_index },
+ { 8696, ValidateProgram_remap_index },
+ { 26094, VertexAttrib1d_remap_index },
+ { 13809, VertexAttrib1dv_remap_index },
+ { 26410, VertexAttrib1s_remap_index },
{ 1701, VertexAttrib1sv_remap_index },
- { 31055, VertexAttrib2d_remap_index },
+ { 31090, VertexAttrib2d_remap_index },
{ 5937, VertexAttrib2dv_remap_index },
- { 30795, VertexAttrib2s_remap_index },
- { 12542, VertexAttrib2sv_remap_index },
+ { 30830, VertexAttrib2s_remap_index },
+ { 12549, VertexAttrib2sv_remap_index },
{ 3905, VertexAttrib3d_remap_index },
{ 485, VertexAttrib3dv_remap_index },
- { 23480, VertexAttrib3s_remap_index },
- { 20789, VertexAttrib3sv_remap_index },
+ { 23497, VertexAttrib3s_remap_index },
+ { 20796, VertexAttrib3sv_remap_index },
{ 4506, VertexAttrib4Nbv_remap_index },
- { 21748, VertexAttrib4Niv_remap_index },
- { 33770, VertexAttrib4Nsv_remap_index },
+ { 21765, VertexAttrib4Niv_remap_index },
+ { 33861, VertexAttrib4Nsv_remap_index },
{ 5487, VertexAttrib4Nub_remap_index },
- { 36567, VertexAttrib4Nubv_remap_index },
- { 39719, VertexAttrib4Nuiv_remap_index },
+ { 36658, VertexAttrib4Nubv_remap_index },
+ { 39878, VertexAttrib4Nuiv_remap_index },
{ 5980, VertexAttrib4Nusv_remap_index },
- { 34264, VertexAttrib4bv_remap_index },
- { 22203, VertexAttrib4d_remap_index },
- { 21177, VertexAttrib4dv_remap_index },
- { 17420, VertexAttrib4iv_remap_index },
- { 22566, VertexAttrib4s_remap_index },
- { 29552, VertexAttrib4sv_remap_index },
- { 32641, VertexAttrib4ubv_remap_index },
- { 33725, VertexAttrib4uiv_remap_index },
+ { 34355, VertexAttrib4bv_remap_index },
+ { 22220, VertexAttrib4d_remap_index },
+ { 21184, VertexAttrib4dv_remap_index },
+ { 17427, VertexAttrib4iv_remap_index },
+ { 22583, VertexAttrib4s_remap_index },
+ { 29587, VertexAttrib4sv_remap_index },
+ { 32726, VertexAttrib4ubv_remap_index },
+ { 33816, VertexAttrib4uiv_remap_index },
{ 5239, VertexAttrib4usv_remap_index },
- { 18349, VertexAttribPointer_remap_index },
- { 26289, UniformMatrix2x3fv_remap_index },
- { 32938, UniformMatrix2x4fv_remap_index },
- { 39638, UniformMatrix3x2fv_remap_index },
- { 36709, UniformMatrix3x4fv_remap_index },
- { 18674, UniformMatrix4x2fv_remap_index },
+ { 18356, VertexAttribPointer_remap_index },
+ { 26306, UniformMatrix2x3fv_remap_index },
+ { 33023, UniformMatrix2x4fv_remap_index },
+ { 39797, UniformMatrix3x2fv_remap_index },
+ { 36800, UniformMatrix3x4fv_remap_index },
+ { 18681, UniformMatrix4x2fv_remap_index },
{ 3650, UniformMatrix4x3fv_remap_index },
- { 20339, BeginConditionalRender_remap_index },
- { 8984, BeginTransformFeedback_remap_index },
- { 30692, BindBufferBase_remap_index },
- { 30319, BindBufferRange_remap_index },
+ { 20346, BeginConditionalRender_remap_index },
+ { 8935, BeginTransformFeedback_remap_index },
+ { 30727, BindBufferBase_remap_index },
+ { 30354, BindBufferRange_remap_index },
{ 1744, BindFragDataLocation_remap_index },
{ 6375, ClampColor_remap_index },
{ 6910, ClearBufferfi_remap_index },
- { 20858, ClearBufferfv_remap_index },
- { 35407, ClearBufferiv_remap_index },
- { 15604, ClearBufferuiv_remap_index },
- { 9142, ColorMaski_remap_index },
- { 29430, Disablei_remap_index },
- { 15916, Enablei_remap_index },
- { 8293, EndConditionalRender_remap_index },
- { 28511, EndTransformFeedback_remap_index },
- { 16774, GetBooleani_v_remap_index },
- { 23188, GetFragDataLocation_remap_index },
- { 35657, GetIntegeri_v_remap_index },
- { 23747, GetStringi_remap_index },
- { 29673, GetTexParameterIiv_remap_index },
- { 13596, GetTexParameterIuiv_remap_index },
- { 7859, GetTransformFeedbackVarying_remap_index },
- { 10023, GetUniformuiv_remap_index },
- { 37489, GetVertexAttribIiv_remap_index },
+ { 20865, ClearBufferfv_remap_index },
+ { 35498, ClearBufferiv_remap_index },
+ { 15611, ClearBufferuiv_remap_index },
+ { 9093, ColorMaski_remap_index },
+ { 29465, Disablei_remap_index },
+ { 15923, Enablei_remap_index },
+ { 31643, EndConditionalRender_remap_index },
+ { 28546, EndTransformFeedback_remap_index },
+ { 16781, GetBooleani_v_remap_index },
+ { 23205, GetFragDataLocation_remap_index },
+ { 35748, GetIntegeri_v_remap_index },
+ { 23764, GetStringi_remap_index },
+ { 29708, GetTexParameterIiv_remap_index },
+ { 13603, GetTexParameterIuiv_remap_index },
+ { 7834, GetTransformFeedbackVarying_remap_index },
+ { 9974, GetUniformuiv_remap_index },
+ { 37580, GetVertexAttribIiv_remap_index },
{ 2833, GetVertexAttribIuiv_remap_index },
- { 37886, IsEnabledi_remap_index },
- { 10425, TexParameterIiv_remap_index },
- { 37150, TexParameterIuiv_remap_index },
+ { 37977, IsEnabledi_remap_index },
+ { 10376, TexParameterIiv_remap_index },
+ { 37241, TexParameterIuiv_remap_index },
{ 3355, TransformFeedbackVaryings_remap_index },
- { 15674, Uniform1ui_remap_index },
- { 17057, Uniform1uiv_remap_index },
- { 24369, Uniform2ui_remap_index },
- { 15526, Uniform2uiv_remap_index },
- { 37944, Uniform3ui_remap_index },
- { 29980, Uniform3uiv_remap_index },
+ { 15681, Uniform1ui_remap_index },
+ { 17064, Uniform1uiv_remap_index },
+ { 24386, Uniform2ui_remap_index },
+ { 15533, Uniform2uiv_remap_index },
+ { 38035, Uniform3ui_remap_index },
+ { 30015, Uniform3uiv_remap_index },
{ 4654, Uniform4ui_remap_index },
- { 25593, Uniform4uiv_remap_index },
- { 7264, VertexAttribI1iv_remap_index },
- { 20451, VertexAttribI1uiv_remap_index },
+ { 25610, Uniform4uiv_remap_index },
+ { 7239, VertexAttribI1iv_remap_index },
+ { 20458, VertexAttribI1uiv_remap_index },
{ 5043, VertexAttribI4bv_remap_index },
- { 8841, VertexAttribI4sv_remap_index },
- { 24100, VertexAttribI4ubv_remap_index },
+ { 8792, VertexAttribI4sv_remap_index },
+ { 24117, VertexAttribI4ubv_remap_index },
{ 1798, VertexAttribI4usv_remap_index },
- { 36850, VertexAttribIPointer_remap_index },
- { 35321, PrimitiveRestartIndex_remap_index },
+ { 36941, VertexAttribIPointer_remap_index },
+ { 35412, PrimitiveRestartIndex_remap_index },
{ 344, TexBuffer_remap_index },
{ 6171, FramebufferTexture_remap_index },
- { 31448, GetBufferParameteri64v_remap_index },
- { 12066, GetInteger64i_v_remap_index },
+ { 31483, GetBufferParameteri64v_remap_index },
+ { 12045, GetInteger64i_v_remap_index },
{ 3774, VertexAttribDivisor_remap_index },
- { 35013, MinSampleShading_remap_index },
- { 27844, BindProgramARB_remap_index },
- { 32169, DeleteProgramsARB_remap_index },
- { 16080, GenProgramsARB_remap_index },
- { 11698, GetProgramEnvParameterdvARB_remap_index },
- { 27974, GetProgramEnvParameterfvARB_remap_index },
- { 32778, GetProgramLocalParameterdvARB_remap_index },
- { 9939, GetProgramLocalParameterfvARB_remap_index },
- { 21820, GetProgramStringARB_remap_index },
- { 33066, GetProgramivARB_remap_index },
- { 33693, IsProgramARB_remap_index },
- { 23074, ProgramEnvParameter4dARB_remap_index },
- { 29907, ProgramEnvParameter4dvARB_remap_index },
- { 19760, ProgramEnvParameter4fARB_remap_index },
- { 10850, ProgramEnvParameter4fvARB_remap_index },
+ { 35104, MinSampleShading_remap_index },
+ { 27861, BindProgramARB_remap_index },
+ { 32254, DeleteProgramsARB_remap_index },
+ { 16087, GenProgramsARB_remap_index },
+ { 11677, GetProgramEnvParameterdvARB_remap_index },
+ { 27991, GetProgramEnvParameterfvARB_remap_index },
+ { 32863, GetProgramLocalParameterdvARB_remap_index },
+ { 9890, GetProgramLocalParameterfvARB_remap_index },
+ { 21837, GetProgramStringARB_remap_index },
+ { 33151, GetProgramivARB_remap_index },
+ { 33784, IsProgramARB_remap_index },
+ { 23091, ProgramEnvParameter4dARB_remap_index },
+ { 29942, ProgramEnvParameter4dvARB_remap_index },
+ { 19767, ProgramEnvParameter4fARB_remap_index },
+ { 10801, ProgramEnvParameter4fvARB_remap_index },
{ 4551, ProgramLocalParameter4dARB_remap_index },
- { 15148, ProgramLocalParameter4dvARB_remap_index },
- { 35428, ProgramLocalParameter4fARB_remap_index },
- { 30859, ProgramLocalParameter4fvARB_remap_index },
- { 33855, ProgramStringARB_remap_index },
+ { 15155, ProgramLocalParameter4dvARB_remap_index },
+ { 35519, ProgramLocalParameter4fARB_remap_index },
+ { 30894, ProgramLocalParameter4fvARB_remap_index },
+ { 33946, ProgramStringARB_remap_index },
{ 4849, VertexAttrib1fARB_remap_index },
- { 34752, VertexAttrib1fvARB_remap_index },
+ { 34843, VertexAttrib1fvARB_remap_index },
{ 1371, VertexAttrib2fARB_remap_index },
- { 9866, VertexAttrib2fvARB_remap_index },
+ { 9817, VertexAttrib2fvARB_remap_index },
{ 1458, VertexAttrib3fARB_remap_index },
- { 26601, VertexAttrib3fvARB_remap_index },
- { 13355, VertexAttrib4fARB_remap_index },
- { 13759, VertexAttrib4fvARB_remap_index },
- { 10135, AttachObjectARB_remap_index },
+ { 26618, VertexAttrib3fvARB_remap_index },
+ { 13362, VertexAttrib4fARB_remap_index },
+ { 13766, VertexAttrib4fvARB_remap_index },
+ { 10086, AttachObjectARB_remap_index },
{ 3545, CreateProgramObjectARB_remap_index },
- { 37344, CreateShaderObjectARB_remap_index },
- { 16720, DeleteObjectARB_remap_index },
- { 28469, DetachObjectARB_remap_index },
- { 11311, GetAttachedObjectsARB_remap_index },
- { 11586, GetHandleARB_remap_index },
- { 39257, GetInfoLogARB_remap_index },
- { 38398, GetObjectParameterfvARB_remap_index },
- { 32568, GetObjectParameterivARB_remap_index },
- { 21274, DrawArraysInstancedARB_remap_index },
- { 8163, DrawElementsInstancedARB_remap_index },
- { 11782, BindFramebuffer_remap_index },
- { 33182, BindRenderbuffer_remap_index },
- { 37196, BlitFramebuffer_remap_index },
- { 27589, CheckFramebufferStatus_remap_index },
- { 33401, DeleteFramebuffers_remap_index },
+ { 37435, CreateShaderObjectARB_remap_index },
+ { 16727, DeleteObjectARB_remap_index },
+ { 28504, DetachObjectARB_remap_index },
+ { 11262, GetAttachedObjectsARB_remap_index },
+ { 11565, GetHandleARB_remap_index },
+ { 39369, GetInfoLogARB_remap_index },
+ { 38489, GetObjectParameterfvARB_remap_index },
+ { 32653, GetObjectParameterivARB_remap_index },
+ { 21281, DrawArraysInstancedARB_remap_index },
+ { 8138, DrawElementsInstancedARB_remap_index },
+ { 11761, BindFramebuffer_remap_index },
+ { 33267, BindRenderbuffer_remap_index },
+ { 37287, BlitFramebuffer_remap_index },
+ { 27606, CheckFramebufferStatus_remap_index },
+ { 33486, DeleteFramebuffers_remap_index },
{ 4922, DeleteRenderbuffers_remap_index },
- { 33603, FramebufferRenderbuffer_remap_index },
+ { 33694, FramebufferRenderbuffer_remap_index },
{ 1315, FramebufferTexture1D_remap_index },
- { 27377, FramebufferTexture2D_remap_index },
- { 18828, FramebufferTexture3D_remap_index },
- { 14447, FramebufferTextureLayer_remap_index },
- { 25437, GenFramebuffers_remap_index },
- { 39494, GenRenderbuffers_remap_index },
- { 30016, GenerateMipmap_remap_index },
- { 19860, GetFramebufferAttachmentParameteriv_remap_index },
- { 39309, GetRenderbufferParameteriv_remap_index },
- { 25629, IsFramebuffer_remap_index },
- { 14202, IsRenderbuffer_remap_index },
+ { 27394, FramebufferTexture2D_remap_index },
+ { 18835, FramebufferTexture3D_remap_index },
+ { 14454, FramebufferTextureLayer_remap_index },
+ { 25454, GenFramebuffers_remap_index },
+ { 39653, GenRenderbuffers_remap_index },
+ { 30051, GenerateMipmap_remap_index },
+ { 19867, GetFramebufferAttachmentParameteriv_remap_index },
+ { 39421, GetRenderbufferParameteriv_remap_index },
+ { 25646, IsFramebuffer_remap_index },
+ { 14209, IsRenderbuffer_remap_index },
{ 2516, RenderbufferStorage_remap_index },
- { 15253, RenderbufferStorageMultisample_remap_index },
- { 30657, FramebufferTextureFaceARB_remap_index },
- { 19657, FlushMappedBufferRange_remap_index },
- { 34917, MapBufferRange_remap_index },
- { 18958, BindVertexArray_remap_index },
- { 24530, DeleteVertexArrays_remap_index },
- { 24165, GenVertexArrays_remap_index },
- { 20928, IsVertexArray_remap_index },
- { 13648, GetActiveUniformBlockName_remap_index },
+ { 15260, RenderbufferStorageMultisample_remap_index },
+ { 30692, FramebufferTextureFaceARB_remap_index },
+ { 19664, FlushMappedBufferRange_remap_index },
+ { 35008, MapBufferRange_remap_index },
+ { 18965, BindVertexArray_remap_index },
+ { 24547, DeleteVertexArrays_remap_index },
+ { 24182, GenVertexArrays_remap_index },
+ { 20935, IsVertexArray_remap_index },
+ { 13655, GetActiveUniformBlockName_remap_index },
{ 6272, GetActiveUniformBlockiv_remap_index },
- { 31874, GetActiveUniformName_remap_index },
- { 12436, GetActiveUniformsiv_remap_index },
- { 32362, GetUniformBlockIndex_remap_index },
- { 39886, GetUniformIndices_remap_index },
+ { 31959, GetActiveUniformName_remap_index },
+ { 12443, GetActiveUniformsiv_remap_index },
+ { 32447, GetUniformBlockIndex_remap_index },
+ { 40045, GetUniformIndices_remap_index },
{ 5869, UniformBlockBinding_remap_index },
- { 36389, CopyBufferSubData_remap_index },
- { 37539, ClientWaitSync_remap_index },
+ { 36480, CopyBufferSubData_remap_index },
+ { 37630, ClientWaitSync_remap_index },
{ 2749, DeleteSync_remap_index },
- { 9040, FenceSync_remap_index },
- { 17575, GetInteger64v_remap_index },
- { 26695, GetSynciv_remap_index },
- { 35293, IsSync_remap_index },
- { 40061, WaitSync_remap_index },
- { 36273, DrawElementsBaseVertex_remap_index },
- { 21872, DrawElementsInstancedBaseVertex_remap_index },
- { 36811, DrawRangeElementsBaseVertex_remap_index },
- { 31347, MultiDrawElementsBaseVertex_remap_index },
- { 19195, ProvokingVertex_remap_index },
- { 20987, GetMultisamplefv_remap_index },
+ { 8991, FenceSync_remap_index },
+ { 17582, GetInteger64v_remap_index },
+ { 26712, GetSynciv_remap_index },
+ { 35384, IsSync_remap_index },
+ { 40220, WaitSync_remap_index },
+ { 36364, DrawElementsBaseVertex_remap_index },
+ { 21889, DrawElementsInstancedBaseVertex_remap_index },
+ { 36902, DrawRangeElementsBaseVertex_remap_index },
+ { 31382, MultiDrawElementsBaseVertex_remap_index },
+ { 19202, ProvokingVertex_remap_index },
+ { 20994, GetMultisamplefv_remap_index },
{ 6027, SampleMaski_remap_index },
- { 7530, TexImage2DMultisample_remap_index },
- { 30089, TexImage3DMultisample_remap_index },
- { 30427, BlendEquationSeparateiARB_remap_index },
- { 21068, BlendEquationiARB_remap_index },
- { 14679, BlendFuncSeparateiARB_remap_index },
- { 11655, BlendFunciARB_remap_index },
+ { 7505, TexImage2DMultisample_remap_index },
+ { 30124, TexImage3DMultisample_remap_index },
+ { 30462, BlendEquationSeparateiARB_remap_index },
+ { 21075, BlendEquationiARB_remap_index },
+ { 14686, BlendFuncSeparateiARB_remap_index },
+ { 11634, BlendFunciARB_remap_index },
{ 6515, BindFragDataLocationIndexed_remap_index },
- { 14840, GetFragDataIndex_remap_index },
- { 10005, BindSampler_remap_index },
+ { 14847, GetFragDataIndex_remap_index },
+ { 9956, BindSampler_remap_index },
{ 4828, DeleteSamplers_remap_index },
- { 9738, GenSamplers_remap_index },
- { 16487, GetSamplerParameterIiv_remap_index },
- { 22610, GetSamplerParameterIuiv_remap_index },
+ { 9689, GenSamplers_remap_index },
+ { 16494, GetSamplerParameterIiv_remap_index },
+ { 22627, GetSamplerParameterIuiv_remap_index },
{ 5908, GetSamplerParameterfv_remap_index },
- { 30290, GetSamplerParameteriv_remap_index },
- { 16517, IsSampler_remap_index },
- { 18911, SamplerParameterIiv_remap_index },
+ { 30325, GetSamplerParameteriv_remap_index },
+ { 16524, IsSampler_remap_index },
+ { 18918, SamplerParameterIiv_remap_index },
{ 6088, SamplerParameterIuiv_remap_index },
- { 26341, SamplerParameterf_remap_index },
- { 19237, SamplerParameterfv_remap_index },
- { 26316, SamplerParameteri_remap_index },
- { 17185, SamplerParameteriv_remap_index },
+ { 26358, SamplerParameterf_remap_index },
+ { 19244, SamplerParameterfv_remap_index },
+ { 26333, SamplerParameteri_remap_index },
+ { 17192, SamplerParameteriv_remap_index },
{ 6222, GetQueryObjecti64v_remap_index },
{ 292, GetQueryObjectui64v_remap_index },
- { 7732, QueryCounter_remap_index },
- { 16582, ColorP3ui_remap_index },
- { 37133, ColorP3uiv_remap_index },
- { 24306, ColorP4ui_remap_index },
- { 15562, ColorP4uiv_remap_index },
- { 11286, MultiTexCoordP1ui_remap_index },
- { 14653, MultiTexCoordP1uiv_remap_index },
- { 20604, MultiTexCoordP2ui_remap_index },
- { 14772, MultiTexCoordP2uiv_remap_index },
- { 16117, MultiTexCoordP3ui_remap_index },
- { 12291, MultiTexCoordP3uiv_remap_index },
- { 25926, MultiTexCoordP4ui_remap_index },
- { 15742, MultiTexCoordP4uiv_remap_index },
- { 12240, NormalP3ui_remap_index },
- { 22393, NormalP3uiv_remap_index },
- { 29312, SecondaryColorP3ui_remap_index },
- { 22411, SecondaryColorP3uiv_remap_index },
+ { 7707, QueryCounter_remap_index },
+ { 16589, ColorP3ui_remap_index },
+ { 37224, ColorP3uiv_remap_index },
+ { 24323, ColorP4ui_remap_index },
+ { 15569, ColorP4uiv_remap_index },
+ { 11237, MultiTexCoordP1ui_remap_index },
+ { 14660, MultiTexCoordP1uiv_remap_index },
+ { 20611, MultiTexCoordP2ui_remap_index },
+ { 14779, MultiTexCoordP2uiv_remap_index },
+ { 16124, MultiTexCoordP3ui_remap_index },
+ { 12298, MultiTexCoordP3uiv_remap_index },
+ { 25943, MultiTexCoordP4ui_remap_index },
+ { 15749, MultiTexCoordP4uiv_remap_index },
+ { 12219, NormalP3ui_remap_index },
+ { 22410, NormalP3uiv_remap_index },
+ { 29347, SecondaryColorP3ui_remap_index },
+ { 22428, SecondaryColorP3uiv_remap_index },
{ 773, TexCoordP1ui_remap_index },
{ 2384, TexCoordP1uiv_remap_index },
- { 17013, TexCoordP2ui_remap_index },
- { 12942, TexCoordP2uiv_remap_index },
- { 14612, TexCoordP3ui_remap_index },
- { 24664, TexCoordP3uiv_remap_index },
+ { 17020, TexCoordP2ui_remap_index },
+ { 12949, TexCoordP2uiv_remap_index },
+ { 14619, TexCoordP3ui_remap_index },
+ { 24681, TexCoordP3uiv_remap_index },
{ 1646, TexCoordP4ui_remap_index },
{ 6787, TexCoordP4uiv_remap_index },
- { 14984, VertexAttribP1ui_remap_index },
- { 15411, VertexAttribP1uiv_remap_index },
- { 9713, VertexAttribP2ui_remap_index },
- { 34238, VertexAttribP2uiv_remap_index },
+ { 14991, VertexAttribP1ui_remap_index },
+ { 15418, VertexAttribP1uiv_remap_index },
+ { 9664, VertexAttribP2ui_remap_index },
+ { 34329, VertexAttribP2uiv_remap_index },
{ 5578, VertexAttribP3ui_remap_index },
- { 31235, VertexAttribP3uiv_remap_index },
- { 16428, VertexAttribP4ui_remap_index },
- { 18438, VertexAttribP4uiv_remap_index },
+ { 31270, VertexAttribP3uiv_remap_index },
+ { 16435, VertexAttribP4ui_remap_index },
+ { 18445, VertexAttribP4uiv_remap_index },
{ 6071, VertexP2ui_remap_index },
- { 36954, VertexP2uiv_remap_index },
+ { 37045, VertexP2uiv_remap_index },
{ 3338, VertexP3ui_remap_index },
- { 23462, VertexP3uiv_remap_index },
- { 11269, VertexP4ui_remap_index },
- { 38807, VertexP4uiv_remap_index },
+ { 23479, VertexP3uiv_remap_index },
+ { 11220, VertexP4ui_remap_index },
+ { 38898, VertexP4uiv_remap_index },
{ 6616, BindTransformFeedback_remap_index },
- { 12116, DeleteTransformFeedbacks_remap_index },
- { 8135, DrawTransformFeedback_remap_index },
- { 11476, GenTransformFeedbacks_remap_index },
- { 35739, IsTransformFeedback_remap_index },
- { 30931, PauseTransformFeedback_remap_index },
- { 36016, ResumeTransformFeedback_remap_index },
+ { 12095, DeleteTransformFeedbacks_remap_index },
+ { 8110, DrawTransformFeedback_remap_index },
+ { 11455, GenTransformFeedbacks_remap_index },
+ { 35830, IsTransformFeedback_remap_index },
+ { 30966, PauseTransformFeedback_remap_index },
+ { 36107, ResumeTransformFeedback_remap_index },
{ 2404, BeginQueryIndexed_remap_index },
- { 27673, DrawTransformFeedbackStream_remap_index },
- { 17702, EndQueryIndexed_remap_index },
+ { 27690, DrawTransformFeedbackStream_remap_index },
+ { 17709, EndQueryIndexed_remap_index },
{ 228, GetQueryIndexediv_remap_index },
- { 32440, ClearDepthf_remap_index },
- { 8444, DepthRangef_remap_index },
- { 16741, GetShaderPrecisionFormat_remap_index },
- { 11843, ReleaseShaderCompiler_remap_index },
- { 12920, ShaderBinary_remap_index },
- { 19027, GetProgramBinary_remap_index },
+ { 32525, ClearDepthf_remap_index },
+ { 8395, DepthRangef_remap_index },
+ { 16748, GetShaderPrecisionFormat_remap_index },
+ { 11822, ReleaseShaderCompiler_remap_index },
+ { 12927, ShaderBinary_remap_index },
+ { 19034, GetProgramBinary_remap_index },
{ 4588, ProgramBinary_remap_index },
{ 5191, ProgramParameteri_remap_index },
{ 1102, DebugMessageCallbackARB_remap_index },
- { 11604, DebugMessageControlARB_remap_index },
- { 39195, DebugMessageInsertARB_remap_index },
+ { 11583, DebugMessageControlARB_remap_index },
+ { 39307, DebugMessageInsertARB_remap_index },
{ 3000, GetDebugMessageLogARB_remap_index },
- { 34182, GetGraphicsResetStatusARB_remap_index },
- { 29151, GetnColorTableARB_remap_index },
- { 9787, GetnCompressedTexImageARB_remap_index },
+ { 34273, GetGraphicsResetStatusARB_remap_index },
+ { 29186, GetnColorTableARB_remap_index },
+ { 9738, GetnCompressedTexImageARB_remap_index },
{ 4288, GetnConvolutionFilterARB_remap_index },
- { 18130, GetnHistogramARB_remap_index },
- { 27881, GetnMapdvARB_remap_index },
- { 34615, GetnMapfvARB_remap_index },
+ { 18137, GetnHistogramARB_remap_index },
+ { 27898, GetnMapdvARB_remap_index },
+ { 34706, GetnMapfvARB_remap_index },
{ 1973, GetnMapivARB_remap_index },
- { 20278, GetnMinmaxARB_remap_index },
- { 13866, GetnPixelMapfvARB_remap_index },
- { 22540, GetnPixelMapuivARB_remap_index },
- { 35267, GetnPixelMapusvARB_remap_index },
+ { 20285, GetnMinmaxARB_remap_index },
+ { 13873, GetnPixelMapfvARB_remap_index },
+ { 22557, GetnPixelMapuivARB_remap_index },
+ { 35358, GetnPixelMapusvARB_remap_index },
{ 1024, GetnPolygonStippleARB_remap_index },
- { 25010, GetnSeparableFilterARB_remap_index },
- { 39126, GetnTexImageARB_remap_index },
- { 21847, GetnUniformdvARB_remap_index },
- { 9071, GetnUniformfvARB_remap_index },
- { 11733, GetnUniformivARB_remap_index },
- { 26557, GetnUniformuivARB_remap_index },
+ { 25027, GetnSeparableFilterARB_remap_index },
+ { 39238, GetnTexImageARB_remap_index },
+ { 21864, GetnUniformdvARB_remap_index },
+ { 9022, GetnUniformfvARB_remap_index },
+ { 11712, GetnUniformivARB_remap_index },
+ { 26574, GetnUniformuivARB_remap_index },
{ 3185, ReadnPixelsARB_remap_index },
- { 22294, DrawArraysInstancedBaseInstance_remap_index },
- { 35179, DrawElementsInstancedBaseInstance_remap_index },
- { 9536, DrawElementsInstancedBaseVertexBaseInstance_remap_index },
+ { 22311, DrawArraysInstancedBaseInstance_remap_index },
+ { 35270, DrawElementsInstancedBaseInstance_remap_index },
+ { 9487, DrawElementsInstancedBaseVertexBaseInstance_remap_index },
{ 6932, DrawTransformFeedbackInstanced_remap_index },
- { 9821, DrawTransformFeedbackStreamInstanced_remap_index },
- { 35550, GetInternalformativ_remap_index },
- { 31276, GetActiveAtomicCounterBufferiv_remap_index },
+ { 9772, DrawTransformFeedbackStreamInstanced_remap_index },
+ { 35641, GetInternalformativ_remap_index },
+ { 31311, GetActiveAtomicCounterBufferiv_remap_index },
{ 957, TexStorage1D_remap_index },
{ 5131, TexStorage2D_remap_index },
- { 18651, TexStorage3D_remap_index },
+ { 18658, TexStorage3D_remap_index },
{ 5432, TextureStorage1DEXT_remap_index },
{ 6644, TextureStorage2DEXT_remap_index },
{ 1284, TextureStorage3DEXT_remap_index },
- { 26196, TexBufferRange_remap_index },
- { 18404, TexStorage2DMultisample_remap_index },
- { 23239, TexStorage3DMultisample_remap_index },
- { 25045, InvalidateBufferData_remap_index },
- { 18570, InvalidateBufferSubData_remap_index },
- { 37979, InvalidateFramebuffer_remap_index },
- { 24228, InvalidateSubFramebuffer_remap_index },
+ { 40264, BindVertexBuffer_remap_index },
+ { 8268, VertexAttribBinding_remap_index },
+ { 12270, VertexAttribFormat_remap_index },
+ { 21694, VertexAttribIFormat_remap_index },
+ { 11427, VertexAttribLFormat_remap_index },
+ { 33667, VertexBindingDivisor_remap_index },
+ { 26213, TexBufferRange_remap_index },
+ { 18411, TexStorage2DMultisample_remap_index },
+ { 23256, TexStorage3DMultisample_remap_index },
+ { 25062, InvalidateBufferData_remap_index },
+ { 18577, InvalidateBufferSubData_remap_index },
+ { 38070, InvalidateFramebuffer_remap_index },
+ { 24245, InvalidateSubFramebuffer_remap_index },
{ 4629, InvalidateTexImage_remap_index },
- { 13498, InvalidateTexSubImage_remap_index },
+ { 13505, InvalidateTexSubImage_remap_index },
{ 6988, PolygonOffsetEXT_remap_index },
- { 14579, DrawTexfOES_remap_index },
- { 11637, DrawTexfvOES_remap_index },
+ { 14586, DrawTexfOES_remap_index },
+ { 11616, DrawTexfvOES_remap_index },
{ 3300, DrawTexiOES_remap_index },
- { 21687, DrawTexivOES_remap_index },
- { 24348, DrawTexsOES_remap_index },
- { 22498, DrawTexsvOES_remap_index },
- { 12521, DrawTexxOES_remap_index },
- { 12618, DrawTexxvOES_remap_index },
+ { 28260, DrawTexivOES_remap_index },
+ { 24365, DrawTexsOES_remap_index },
+ { 22515, DrawTexsvOES_remap_index },
+ { 12528, DrawTexxOES_remap_index },
+ { 12625, DrawTexxvOES_remap_index },
{ 2298, PointSizePointerOES_remap_index },
- { 12898, QueryMatrixxOES_remap_index },
- { 30542, SampleMaskSGIS_remap_index },
- { 24264, SamplePatternSGIS_remap_index },
- { 23414, ColorPointerEXT_remap_index },
- { 20902, EdgeFlagPointerEXT_remap_index },
- { 7240, IndexPointerEXT_remap_index },
- { 7834, NormalPointerEXT_remap_index },
- { 18198, TexCoordPointerEXT_remap_index },
- { 8787, VertexPointerEXT_remap_index },
+ { 12905, QueryMatrixxOES_remap_index },
+ { 30577, SampleMaskSGIS_remap_index },
+ { 24281, SamplePatternSGIS_remap_index },
+ { 23431, ColorPointerEXT_remap_index },
+ { 20909, EdgeFlagPointerEXT_remap_index },
+ { 7215, IndexPointerEXT_remap_index },
+ { 7809, NormalPointerEXT_remap_index },
+ { 18205, TexCoordPointerEXT_remap_index },
+ { 8738, VertexPointerEXT_remap_index },
{ 6551, DiscardFramebufferEXT_remap_index },
- { 38502, LockArraysEXT_remap_index },
- { 26176, UnlockArraysEXT_remap_index },
- { 7765, DebugMessageCallback_remap_index },
- { 34307, DebugMessageControl_remap_index },
- { 21427, DebugMessageInsert_remap_index },
- { 26941, GetDebugMessageLog_remap_index },
- { 25951, GetObjectLabel_remap_index },
+ { 38593, LockArraysEXT_remap_index },
+ { 26193, UnlockArraysEXT_remap_index },
+ { 7740, DebugMessageCallback_remap_index },
+ { 34398, DebugMessageControl_remap_index },
+ { 21434, DebugMessageInsert_remap_index },
+ { 26958, GetDebugMessageLog_remap_index },
+ { 25968, GetObjectLabel_remap_index },
{ 5105, GetObjectPtrLabel_remap_index },
- { 30911, ObjectLabel_remap_index },
- { 38582, ObjectPtrLabel_remap_index },
- { 25686, PopDebugGroup_remap_index },
- { 36044, PushDebugGroup_remap_index },
- { 33474, SecondaryColor3fEXT_remap_index },
- { 21577, SecondaryColor3fvEXT_remap_index },
- { 24830, MultiDrawElementsEXT_remap_index },
+ { 30946, ObjectLabel_remap_index },
+ { 38673, ObjectPtrLabel_remap_index },
+ { 25703, PopDebugGroup_remap_index },
+ { 36135, PushDebugGroup_remap_index },
+ { 33559, SecondaryColor3fEXT_remap_index },
+ { 21584, SecondaryColor3fvEXT_remap_index },
+ { 24847, MultiDrawElementsEXT_remap_index },
{ 5668, FogCoordfEXT_remap_index },
- { 32389, FogCoordfvEXT_remap_index },
- { 14631, ResizeBuffersMESA_remap_index },
- { 13025, WindowPos4dMESA_remap_index },
- { 40105, WindowPos4dvMESA_remap_index },
- { 16235, WindowPos4fMESA_remap_index },
- { 37040, WindowPos4fvMESA_remap_index },
- { 36543, WindowPos4iMESA_remap_index },
- { 14425, WindowPos4ivMESA_remap_index },
- { 22516, WindowPos4sMESA_remap_index },
+ { 32474, FogCoordfvEXT_remap_index },
+ { 14638, ResizeBuffersMESA_remap_index },
+ { 13032, WindowPos4dMESA_remap_index },
+ { 7011, WindowPos4dvMESA_remap_index },
+ { 16242, WindowPos4fMESA_remap_index },
+ { 37131, WindowPos4fvMESA_remap_index },
+ { 36634, WindowPos4iMESA_remap_index },
+ { 14432, WindowPos4ivMESA_remap_index },
+ { 22533, WindowPos4sMESA_remap_index },
{ 3523, WindowPos4svMESA_remap_index },
- { 22809, MultiModeDrawArraysIBM_remap_index },
- { 34704, MultiModeDrawElementsIBM_remap_index },
- { 38192, AreProgramsResidentNV_remap_index },
- { 25152, ExecuteProgramNV_remap_index },
- { 19361, GetProgramParameterdvNV_remap_index },
- { 12404, GetProgramParameterfvNV_remap_index },
- { 31209, GetProgramStringNV_remap_index },
- { 28841, GetProgramivNV_remap_index },
- { 28009, GetTrackMatrixivNV_remap_index },
- { 12089, GetVertexAttribdvNV_remap_index },
- { 22247, GetVertexAttribfvNV_remap_index },
- { 21793, GetVertexAttribivNV_remap_index },
- { 11235, LoadProgramNV_remap_index },
- { 33227, ProgramParameters4dvNV_remap_index },
- { 34831, ProgramParameters4fvNV_remap_index },
- { 24632, RequestResidentProgramsNV_remap_index },
+ { 22826, MultiModeDrawArraysIBM_remap_index },
+ { 34795, MultiModeDrawElementsIBM_remap_index },
+ { 38283, AreProgramsResidentNV_remap_index },
+ { 25169, ExecuteProgramNV_remap_index },
+ { 19368, GetProgramParameterdvNV_remap_index },
+ { 12411, GetProgramParameterfvNV_remap_index },
+ { 31244, GetProgramStringNV_remap_index },
+ { 28876, GetProgramivNV_remap_index },
+ { 28026, GetTrackMatrixivNV_remap_index },
+ { 12068, GetVertexAttribdvNV_remap_index },
+ { 22264, GetVertexAttribfvNV_remap_index },
+ { 21810, GetVertexAttribivNV_remap_index },
+ { 11186, LoadProgramNV_remap_index },
+ { 33312, ProgramParameters4dvNV_remap_index },
+ { 34922, ProgramParameters4fvNV_remap_index },
+ { 24649, RequestResidentProgramsNV_remap_index },
{ 463, TrackMatrixNV_remap_index },
- { 12803, VertexAttrib1dNV_remap_index },
- { 15626, VertexAttrib1dvNV_remap_index },
- { 30605, VertexAttrib1fNV_remap_index },
- { 15650, VertexAttrib1fvNV_remap_index },
- { 37097, VertexAttrib1sNV_remap_index },
- { 26714, VertexAttrib1svNV_remap_index },
- { 37628, VertexAttrib2dNV_remap_index },
- { 22668, VertexAttrib2dvNV_remap_index },
- { 24047, VertexAttrib2fNV_remap_index },
- { 15124, VertexAttrib2fvNV_remap_index },
- { 7578, VertexAttrib2sNV_remap_index },
- { 22335, VertexAttrib2svNV_remap_index },
- { 13236, VertexAttrib3dNV_remap_index },
- { 38374, VertexAttrib3dvNV_remap_index },
- { 19393, VertexAttrib3fNV_remap_index },
- { 29178, VertexAttrib3fvNV_remap_index },
- { 27902, VertexAttrib3sNV_remap_index },
- { 28036, VertexAttrib3svNV_remap_index },
- { 34678, VertexAttrib4dNV_remap_index },
- { 12826, VertexAttrib4dvNV_remap_index },
+ { 12810, VertexAttrib1dNV_remap_index },
+ { 15633, VertexAttrib1dvNV_remap_index },
+ { 30640, VertexAttrib1fNV_remap_index },
+ { 15657, VertexAttrib1fvNV_remap_index },
+ { 37188, VertexAttrib1sNV_remap_index },
+ { 26731, VertexAttrib1svNV_remap_index },
+ { 37719, VertexAttrib2dNV_remap_index },
+ { 22685, VertexAttrib2dvNV_remap_index },
+ { 24064, VertexAttrib2fNV_remap_index },
+ { 15131, VertexAttrib2fvNV_remap_index },
+ { 7553, VertexAttrib2sNV_remap_index },
+ { 22352, VertexAttrib2svNV_remap_index },
+ { 13243, VertexAttrib3dNV_remap_index },
+ { 38465, VertexAttrib3dvNV_remap_index },
+ { 19400, VertexAttrib3fNV_remap_index },
+ { 29213, VertexAttrib3fvNV_remap_index },
+ { 27919, VertexAttrib3sNV_remap_index },
+ { 28053, VertexAttrib3svNV_remap_index },
+ { 34769, VertexAttrib4dNV_remap_index },
+ { 12833, VertexAttrib4dvNV_remap_index },
{ 5361, VertexAttrib4fNV_remap_index },
- { 23357, VertexAttrib4fvNV_remap_index },
- { 31784, VertexAttrib4sNV_remap_index },
+ { 23374, VertexAttrib4fvNV_remap_index },
+ { 31869, VertexAttrib4sNV_remap_index },
{ 1132, VertexAttrib4svNV_remap_index },
{ 6304, VertexAttrib4ubNV_remap_index },
{ 579, VertexAttrib4ubvNV_remap_index },
- { 25406, VertexAttribPointerNV_remap_index },
+ { 25423, VertexAttribPointerNV_remap_index },
{ 2171, VertexAttribs1dvNV_remap_index },
- { 22437, VertexAttribs1fvNV_remap_index },
- { 24322, VertexAttribs1svNV_remap_index },
- { 12317, VertexAttribs2dvNV_remap_index },
- { 35944, VertexAttribs2fvNV_remap_index },
+ { 22454, VertexAttribs1fvNV_remap_index },
+ { 24339, VertexAttribs1svNV_remap_index },
+ { 12324, VertexAttribs2dvNV_remap_index },
+ { 36035, VertexAttribs2fvNV_remap_index },
{ 4690, VertexAttribs2svNV_remap_index },
{ 6807, VertexAttribs3dvNV_remap_index },
- { 11532, VertexAttribs3fvNV_remap_index },
- { 12265, VertexAttribs3svNV_remap_index },
- { 20763, VertexAttribs4dvNV_remap_index },
+ { 11511, VertexAttribs3fvNV_remap_index },
+ { 12244, VertexAttribs3svNV_remap_index },
+ { 20770, VertexAttribs4dvNV_remap_index },
{ 6833, VertexAttribs4fvNV_remap_index },
- { 39468, VertexAttribs4svNV_remap_index },
- { 35579, VertexAttribs4ubvNV_remap_index },
- { 27813, GetTexBumpParameterfvATI_remap_index },
- { 39912, GetTexBumpParameterivATI_remap_index },
- { 21948, TexBumpParameterfvATI_remap_index },
- { 24449, TexBumpParameterivATI_remap_index },
- { 18082, AlphaFragmentOp1ATI_remap_index },
- { 30494, AlphaFragmentOp2ATI_remap_index },
- { 29094, AlphaFragmentOp3ATI_remap_index },
- { 16208, BeginFragmentShaderATI_remap_index },
- { 24959, BindFragmentShaderATI_remap_index },
- { 7336, ColorFragmentOp1ATI_remap_index },
- { 7451, ColorFragmentOp2ATI_remap_index },
- { 38079, ColorFragmentOp3ATI_remap_index },
- { 7158, DeleteFragmentShaderATI_remap_index },
- { 40211, EndFragmentShaderATI_remap_index },
- { 27741, GenFragmentShadersATI_remap_index },
- { 30248, PassTexCoordATI_remap_index },
- { 8725, SampleMapATI_remap_index },
- { 32239, SetFragmentShaderConstantATI_remap_index },
- { 34507, ActiveStencilFaceEXT_remap_index },
- { 32752, BindVertexArrayAPPLE_remap_index },
- { 19818, GenVertexArraysAPPLE_remap_index },
+ { 39627, VertexAttribs4svNV_remap_index },
+ { 35670, VertexAttribs4ubvNV_remap_index },
+ { 27830, GetTexBumpParameterfvATI_remap_index },
+ { 40071, GetTexBumpParameterivATI_remap_index },
+ { 21965, TexBumpParameterfvATI_remap_index },
+ { 24466, TexBumpParameterivATI_remap_index },
+ { 18089, AlphaFragmentOp1ATI_remap_index },
+ { 30529, AlphaFragmentOp2ATI_remap_index },
+ { 29129, AlphaFragmentOp3ATI_remap_index },
+ { 16215, BeginFragmentShaderATI_remap_index },
+ { 24976, BindFragmentShaderATI_remap_index },
+ { 7311, ColorFragmentOp1ATI_remap_index },
+ { 7426, ColorFragmentOp2ATI_remap_index },
+ { 38170, ColorFragmentOp3ATI_remap_index },
+ { 7133, DeleteFragmentShaderATI_remap_index },
+ { 40373, EndFragmentShaderATI_remap_index },
+ { 27758, GenFragmentShadersATI_remap_index },
+ { 30283, PassTexCoordATI_remap_index },
+ { 8676, SampleMapATI_remap_index },
+ { 32324, SetFragmentShaderConstantATI_remap_index },
+ { 34598, ActiveStencilFaceEXT_remap_index },
+ { 32837, BindVertexArrayAPPLE_remap_index },
+ { 19825, GenVertexArraysAPPLE_remap_index },
{ 620, GetProgramNamedParameterdvNV_remap_index },
{ 4021, GetProgramNamedParameterfvNV_remap_index },
- { 32018, ProgramNamedParameter4dNV_remap_index },
- { 16819, ProgramNamedParameter4dvNV_remap_index },
- { 10739, ProgramNamedParameter4fNV_remap_index },
- { 13724, ProgramNamedParameter4fvNV_remap_index },
- { 20879, PrimitiveRestartNV_remap_index },
- { 18042, GetTexGenxvOES_remap_index },
- { 14012, TexGenxOES_remap_index },
- { 32875, TexGenxvOES_remap_index },
- { 28820, DepthBoundsEXT_remap_index },
- { 17032, BindFramebufferEXT_remap_index },
- { 30579, BindRenderbufferEXT_remap_index },
- { 16598, BufferParameteriAPPLE_remap_index },
- { 22990, FlushMappedBufferRangeAPPLE_remap_index },
- { 21705, VertexAttribI1iEXT_remap_index },
+ { 32103, ProgramNamedParameter4dNV_remap_index },
+ { 16826, ProgramNamedParameter4dvNV_remap_index },
+ { 10690, ProgramNamedParameter4fNV_remap_index },
+ { 13731, ProgramNamedParameter4fvNV_remap_index },
+ { 20886, PrimitiveRestartNV_remap_index },
+ { 18049, GetTexGenxvOES_remap_index },
+ { 14019, TexGenxOES_remap_index },
+ { 32960, TexGenxvOES_remap_index },
+ { 28855, DepthBoundsEXT_remap_index },
+ { 17039, BindFramebufferEXT_remap_index },
+ { 30614, BindRenderbufferEXT_remap_index },
+ { 16605, BufferParameteriAPPLE_remap_index },
+ { 23007, FlushMappedBufferRangeAPPLE_remap_index },
+ { 21722, VertexAttribI1iEXT_remap_index },
{ 2656, VertexAttribI1uiEXT_remap_index },
- { 34069, VertexAttribI2iEXT_remap_index },
- { 28333, VertexAttribI2ivEXT_remap_index },
- { 14135, VertexAttribI2uiEXT_remap_index },
- { 27927, VertexAttribI2uivEXT_remap_index },
- { 31563, VertexAttribI3iEXT_remap_index },
- { 36766, VertexAttribI3ivEXT_remap_index },
+ { 34160, VertexAttribI2iEXT_remap_index },
+ { 28368, VertexAttribI2ivEXT_remap_index },
+ { 14142, VertexAttribI2uiEXT_remap_index },
+ { 27944, VertexAttribI2uivEXT_remap_index },
+ { 31598, VertexAttribI3iEXT_remap_index },
+ { 36857, VertexAttribI3ivEXT_remap_index },
{ 3727, VertexAttribI3uiEXT_remap_index },
- { 36662, VertexAttribI3uivEXT_remap_index },
- { 24403, VertexAttribI4iEXT_remap_index },
- { 20029, VertexAttribI4ivEXT_remap_index },
+ { 36753, VertexAttribI3uivEXT_remap_index },
+ { 24420, VertexAttribI4iEXT_remap_index },
+ { 20036, VertexAttribI4ivEXT_remap_index },
{ 54, VertexAttribI4uiEXT_remap_index },
- { 7011, VertexAttribI4uivEXT_remap_index },
- { 11758, ClearColorIiEXT_remap_index },
+ { 39580, VertexAttribI4uivEXT_remap_index },
+ { 11737, ClearColorIiEXT_remap_index },
{ 3880, ClearColorIuiEXT_remap_index },
- { 10063, BindBufferOffsetEXT_remap_index },
- { 27114, BeginPerfMonitorAMD_remap_index },
- { 38127, DeletePerfMonitorsAMD_remap_index },
- { 20255, EndPerfMonitorAMD_remap_index },
- { 31403, GenPerfMonitorsAMD_remap_index },
+ { 10014, BindBufferOffsetEXT_remap_index },
+ { 27131, BeginPerfMonitorAMD_remap_index },
+ { 38218, DeletePerfMonitorsAMD_remap_index },
+ { 20262, EndPerfMonitorAMD_remap_index },
+ { 31438, GenPerfMonitorsAMD_remap_index },
{ 6687, GetPerfMonitorCounterDataAMD_remap_index },
{ 5788, GetPerfMonitorCounterInfoAMD_remap_index },
- { 38976, GetPerfMonitorCounterStringAMD_remap_index },
- { 22463, GetPerfMonitorCountersAMD_remap_index },
- { 13399, GetPerfMonitorGroupStringAMD_remap_index },
- { 37580, GetPerfMonitorGroupsAMD_remap_index },
- { 28999, SelectPerfMonitorCountersAMD_remap_index },
- { 13548, GetObjectParameterivAPPLE_remap_index },
- { 37710, ObjectPurgeableAPPLE_remap_index },
- { 7405, ObjectUnpurgeableAPPLE_remap_index },
- { 20629, ActiveProgramEXT_remap_index },
+ { 39067, GetPerfMonitorCounterStringAMD_remap_index },
+ { 22480, GetPerfMonitorCountersAMD_remap_index },
+ { 13406, GetPerfMonitorGroupStringAMD_remap_index },
+ { 37671, GetPerfMonitorGroupsAMD_remap_index },
+ { 29034, SelectPerfMonitorCountersAMD_remap_index },
+ { 13555, GetObjectParameterivAPPLE_remap_index },
+ { 37801, ObjectPurgeableAPPLE_remap_index },
+ { 7380, ObjectUnpurgeableAPPLE_remap_index },
+ { 20636, ActiveProgramEXT_remap_index },
{ 1944, CreateShaderProgramEXT_remap_index },
- { 34212, UseShaderProgramEXT_remap_index },
- { 38955, TextureBarrierNV_remap_index },
- { 8119, VDPAUFiniNV_remap_index },
+ { 34303, UseShaderProgramEXT_remap_index },
+ { 39046, TextureBarrierNV_remap_index },
+ { 8094, VDPAUFiniNV_remap_index },
{ 3034, VDPAUGetSurfaceivNV_remap_index },
{ 6970, VDPAUInitNV_remap_index },
- { 16943, VDPAUIsSurfaceNV_remap_index },
- { 25534, VDPAUMapSurfacesNV_remap_index },
- { 11149, VDPAURegisterOutputSurfaceNV_remap_index },
+ { 16950, VDPAUIsSurfaceNV_remap_index },
+ { 25551, VDPAUMapSurfacesNV_remap_index },
+ { 11100, VDPAURegisterOutputSurfaceNV_remap_index },
{ 6580, VDPAURegisterVideoSurfaceNV_remap_index },
- { 32212, VDPAUSurfaceAccessNV_remap_index },
- { 29632, VDPAUUnmapSurfacesNV_remap_index },
- { 25274, VDPAUUnregisterSurfaceNV_remap_index },
- { 34567, StencilFuncSeparateATI_remap_index },
- { 21496, ProgramEnvParameters4fvEXT_remap_index },
- { 20302, ProgramLocalParameters4fvEXT_remap_index },
- { 28290, EGLImageTargetRenderbufferStorageOES_remap_index },
- { 14102, EGLImageTargetTexture2DOES_remap_index },
- { 28149, AlphaFuncx_remap_index },
- { 20567, ClearColorx_remap_index },
- { 25559, ClearDepthx_remap_index },
- { 10522, Color4x_remap_index },
- { 8049, DepthRangex_remap_index },
- { 39989, Fogx_remap_index },
- { 36972, Fogxv_remap_index },
- { 35606, Frustumf_remap_index },
+ { 32297, VDPAUSurfaceAccessNV_remap_index },
+ { 29667, VDPAUUnmapSurfacesNV_remap_index },
+ { 25291, VDPAUUnregisterSurfaceNV_remap_index },
+ { 34658, StencilFuncSeparateATI_remap_index },
+ { 21503, ProgramEnvParameters4fvEXT_remap_index },
+ { 20309, ProgramLocalParameters4fvEXT_remap_index },
+ { 28325, EGLImageTargetRenderbufferStorageOES_remap_index },
+ { 14109, EGLImageTargetTexture2DOES_remap_index },
+ { 28166, AlphaFuncx_remap_index },
+ { 20574, ClearColorx_remap_index },
+ { 25576, ClearDepthx_remap_index },
+ { 10473, Color4x_remap_index },
+ { 8024, DepthRangex_remap_index },
+ { 40148, Fogx_remap_index },
+ { 37063, Fogxv_remap_index },
+ { 35697, Frustumf_remap_index },
{ 3948, Frustumx_remap_index },
- { 31528, LightModelx_remap_index },
- { 35702, LightModelxv_remap_index },
- { 25848, Lightx_remap_index },
- { 13117, Lightxv_remap_index },
+ { 31563, LightModelx_remap_index },
+ { 35793, LightModelxv_remap_index },
+ { 25865, Lightx_remap_index },
+ { 13124, Lightxv_remap_index },
{ 2139, LineWidthx_remap_index },
- { 15034, LoadMatrixx_remap_index },
- { 26663, Materialx_remap_index },
- { 16686, Materialxv_remap_index },
- { 22359, MultMatrixx_remap_index },
- { 33880, MultiTexCoord4x_remap_index },
- { 13261, Normal3x_remap_index },
- { 10776, Orthof_remap_index },
+ { 15041, LoadMatrixx_remap_index },
+ { 26680, Materialx_remap_index },
+ { 16693, Materialxv_remap_index },
+ { 22376, MultMatrixx_remap_index },
+ { 33971, MultiTexCoord4x_remap_index },
+ { 13268, Normal3x_remap_index },
+ { 10727, Orthof_remap_index },
{ 1413, Orthox_remap_index },
- { 35235, PointSizex_remap_index },
+ { 35326, PointSizex_remap_index },
{ 4465, PolygonOffsetx_remap_index },
- { 30628, Rotatex_remap_index },
- { 8505, SampleCoveragex_remap_index },
- { 7058, Scalex_remap_index },
- { 22106, TexEnvx_remap_index },
- { 24773, TexEnvxv_remap_index },
+ { 30663, Rotatex_remap_index },
+ { 8456, SampleCoveragex_remap_index },
+ { 7033, Scalex_remap_index },
+ { 22123, TexEnvx_remap_index },
+ { 24790, TexEnvxv_remap_index },
{ 6116, TexParameterx_remap_index },
- { 34533, Translatex_remap_index },
- { 38877, ClipPlanef_remap_index },
- { 38617, ClipPlanex_remap_index },
- { 18310, GetClipPlanef_remap_index },
+ { 34624, Translatex_remap_index },
+ { 38968, ClipPlanef_remap_index },
+ { 38708, ClipPlanex_remap_index },
+ { 18317, GetClipPlanef_remap_index },
{ 4339, GetClipPlanex_remap_index },
- { 33151, GetFixedv_remap_index },
+ { 33236, GetFixedv_remap_index },
{ 4730, GetLightxv_remap_index },
{ 4142, GetMaterialxv_remap_index },
- { 29276, GetTexEnvxv_remap_index },
- { 21352, GetTexParameterxv_remap_index },
+ { 29311, GetTexEnvxv_remap_index },
+ { 21359, GetTexParameterxv_remap_index },
{ 5535, PointParameterx_remap_index },
- { 19467, PointParameterxv_remap_index },
- { 30385, TexParameterxv_remap_index },
+ { 19474, PointParameterxv_remap_index },
+ { 30420, TexParameterxv_remap_index },
{ -1, -1 }
};
@@ -6373,88 +6403,88 @@ static const struct gl_function_remap MESA_alt_functions[] = {
/* from GL_EXT_blend_color */
{ 2798, _gloffset_BlendColor },
/* from GL_EXT_blend_minmax */
- { 13179, _gloffset_BlendEquation },
+ { 13186, _gloffset_BlendEquation },
/* from GL_EXT_color_subtable */
- { 20198, _gloffset_ColorSubTable },
- { 38281, _gloffset_CopyColorSubTable },
+ { 20205, _gloffset_ColorSubTable },
+ { 38372, _gloffset_CopyColorSubTable },
/* from GL_EXT_convolution */
{ 173, _gloffset_ConvolutionFilter1D },
{ 2594, _gloffset_CopyConvolutionFilter1D },
{ 4764, _gloffset_GetConvolutionParameteriv },
- { 10369, _gloffset_ConvolutionFilter2D },
- { 10565, _gloffset_ConvolutionParameteriv },
- { 11070, _gloffset_ConvolutionParameterfv },
- { 24477, _gloffset_GetSeparableFilter },
- { 28562, _gloffset_SeparableFilter2D },
- { 29496, _gloffset_ConvolutionParameteri },
- { 29759, _gloffset_ConvolutionParameterf },
- { 31810, _gloffset_GetConvolutionParameterfv },
- { 33011, _gloffset_GetConvolutionFilter },
- { 36305, _gloffset_CopyConvolutionFilter2D },
+ { 10320, _gloffset_ConvolutionFilter2D },
+ { 10516, _gloffset_ConvolutionParameteriv },
+ { 11021, _gloffset_ConvolutionParameterfv },
+ { 24494, _gloffset_GetSeparableFilter },
+ { 28597, _gloffset_SeparableFilter2D },
+ { 29531, _gloffset_ConvolutionParameteri },
+ { 29794, _gloffset_ConvolutionParameterf },
+ { 31895, _gloffset_GetConvolutionParameterfv },
+ { 33096, _gloffset_GetConvolutionFilter },
+ { 36396, _gloffset_CopyConvolutionFilter2D },
/* from GL_EXT_copy_texture */
- { 17481, _gloffset_CopyTexSubImage3D },
- { 19610, _gloffset_CopyTexImage2D },
- { 28938, _gloffset_CopyTexImage1D },
- { 32474, _gloffset_CopyTexSubImage2D },
- { 35800, _gloffset_CopyTexSubImage1D },
+ { 17488, _gloffset_CopyTexSubImage3D },
+ { 19617, _gloffset_CopyTexImage2D },
+ { 28973, _gloffset_CopyTexImage1D },
+ { 32559, _gloffset_CopyTexSubImage2D },
+ { 35891, _gloffset_CopyTexSubImage1D },
/* from GL_EXT_draw_range_elements */
- { 11359, _gloffset_DrawRangeElements },
+ { 11310, _gloffset_DrawRangeElements },
/* from GL_EXT_histogram */
{ 657, _gloffset_Histogram },
{ 3981, _gloffset_ResetHistogram },
- { 11869, _gloffset_GetMinmax },
- { 17908, _gloffset_GetHistogramParameterfv },
- { 28863, _gloffset_GetMinmaxParameteriv },
- { 31700, _gloffset_ResetMinmax },
- { 32815, _gloffset_GetHistogramParameteriv },
- { 34467, _gloffset_GetHistogram },
- { 37767, _gloffset_Minmax },
- { 39665, _gloffset_GetMinmaxParameterfv },
+ { 11848, _gloffset_GetMinmax },
+ { 17915, _gloffset_GetHistogramParameterfv },
+ { 28898, _gloffset_GetMinmaxParameteriv },
+ { 31785, _gloffset_ResetMinmax },
+ { 32900, _gloffset_GetHistogramParameteriv },
+ { 34558, _gloffset_GetHistogram },
+ { 37858, _gloffset_Minmax },
+ { 39824, _gloffset_GetMinmaxParameterfv },
/* from GL_EXT_paletted_texture */
- { 10231, _gloffset_ColorTable },
- { 17642, _gloffset_GetColorTable },
- { 27254, _gloffset_GetColorTableParameterfv },
- { 29815, _gloffset_GetColorTableParameteriv },
+ { 10182, _gloffset_ColorTable },
+ { 17649, _gloffset_GetColorTable },
+ { 27271, _gloffset_GetColorTableParameterfv },
+ { 29850, _gloffset_GetColorTableParameteriv },
/* from GL_EXT_subtexture */
- { 8940, _gloffset_TexSubImage1D },
- { 12636, _gloffset_TexSubImage2D },
+ { 8891, _gloffset_TexSubImage1D },
+ { 12643, _gloffset_TexSubImage2D },
/* from GL_EXT_texture3D */
{ 1589, _gloffset_TexImage3D },
- { 26988, _gloffset_TexSubImage3D },
+ { 27005, _gloffset_TexSubImage3D },
/* from GL_EXT_texture_object */
{ 3677, _gloffset_PrioritizeTextures },
- { 9484, _gloffset_AreTexturesResident },
- { 15707, _gloffset_GenTextures },
- { 18157, _gloffset_DeleteTextures },
- { 23327, _gloffset_IsTexture },
- { 35909, _gloffset_BindTexture },
+ { 9435, _gloffset_AreTexturesResident },
+ { 15714, _gloffset_GenTextures },
+ { 18164, _gloffset_DeleteTextures },
+ { 23344, _gloffset_IsTexture },
+ { 36000, _gloffset_BindTexture },
/* from GL_EXT_vertex_array */
- { 28760, _gloffset_ArrayElement },
- { 37247, _gloffset_GetPointerv },
- { 39073, _gloffset_DrawArrays },
+ { 28795, _gloffset_ArrayElement },
+ { 37338, _gloffset_GetPointerv },
+ { 39185, _gloffset_DrawArrays },
/* from GL_NV_read_buffer */
- { 29465, _gloffset_ReadBuffer },
+ { 29500, _gloffset_ReadBuffer },
/* from GL_OES_blend_subtract */
- { 13179, _gloffset_BlendEquation },
+ { 13186, _gloffset_BlendEquation },
/* from GL_OES_texture_3D */
{ 1589, _gloffset_TexImage3D },
- { 17481, _gloffset_CopyTexSubImage3D },
- { 26988, _gloffset_TexSubImage3D },
+ { 17488, _gloffset_CopyTexSubImage3D },
+ { 27005, _gloffset_TexSubImage3D },
/* from GL_OES_texture_cube_map */
{ 2354, _gloffset_TexGeniv },
- { 12773, _gloffset_TexGenfv },
- { 22050, _gloffset_TexGeni },
- { 22078, _gloffset_TexGenf },
- { 33520, _gloffset_GetTexGeniv },
- { 34337, _gloffset_GetTexGenfv },
+ { 12780, _gloffset_TexGenfv },
+ { 22067, _gloffset_TexGeni },
+ { 22095, _gloffset_TexGenf },
+ { 33605, _gloffset_GetTexGeniv },
+ { 34428, _gloffset_GetTexGenfv },
/* from GL_SGI_color_table */
- { 9657, _gloffset_ColorTableParameteriv },
- { 10231, _gloffset_ColorTable },
- { 17642, _gloffset_GetColorTable },
- { 17774, _gloffset_CopyColorTable },
- { 23132, _gloffset_ColorTableParameterfv },
- { 27254, _gloffset_GetColorTableParameterfv },
- { 29815, _gloffset_GetColorTableParameteriv },
+ { 9608, _gloffset_ColorTableParameteriv },
+ { 10182, _gloffset_ColorTable },
+ { 17649, _gloffset_GetColorTable },
+ { 17781, _gloffset_CopyColorTable },
+ { 23149, _gloffset_ColorTableParameterfv },
+ { 27271, _gloffset_GetColorTableParameterfv },
+ { 29850, _gloffset_GetColorTableParameteriv },
{ -1, -1 }
};
diff --git a/xorg-server/hw/xwin/glx/genheaders.py b/xorg-server/hw/xwin/glx/genheaders.py
index f9913285d..f1d130e4c 100644
--- a/xorg-server/hw/xwin/glx/genheaders.py
+++ b/xorg-server/hw/xwin/glx/genheaders.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python3
+#!/usr/bin/env python
#
# Copyright (c) 2013 The Khronos Group Inc.
#
@@ -50,33 +50,33 @@ if __name__ == '__main__':
arg = sys.argv[i]
i = i + 1
if (arg == '-debug'):
- print('Enabling debug (-debug)', file=sys.stderr)
+ write('Enabling debug (-debug)', file=sys.stderr)
debug = True
elif (arg == '-dump'):
- print('Enabling dump (-dump)', file=sys.stderr)
+ write('Enabling dump (-dump)', file=sys.stderr)
dump = True
elif (arg == '-noprotect'):
- print('Disabling inclusion protection in output headers', file=sys.stderr)
+ write('Disabling inclusion protection in output headers', file=sys.stderr)
protect = False
elif (arg == '-profile'):
- print('Enabling profiling (-profile)', file=sys.stderr)
+ write('Enabling profiling (-profile)', file=sys.stderr)
profile = True
elif (arg == '-registry'):
regFilename = sys.argv[i]
i = i+1
- print('Using registry ', regFilename, file=sys.stderr)
+ write('Using registry ', regFilename, file=sys.stderr)
elif (arg == '-time'):
- print('Enabling timing (-time)', file=sys.stderr)
+ write('Enabling timing (-time)', file=sys.stderr)
timeit = True
elif (arg == '-validate'):
- print('Enabling group validation (-validate)', file=sys.stderr)
+ write('Enabling group validation (-validate)', file=sys.stderr)
validate = True
elif (arg[0:1] == '-'):
- print('Unrecognized argument:', arg, file=sys.stderr)
+ write('Unrecognized argument:', arg, file=sys.stderr)
exit(1)
else:
target = arg
- print('Using target', target, file=sys.stderr)
+ write('Using target', target, file=sys.stderr)
# Simple timer functions
startTime = None
@@ -87,7 +87,7 @@ def endTimer(msg):
global startTime
endTime = time.clock()
if (timeit):
- print(msg, endTime - startTime)
+ write(msg, endTime - startTime)
startTime = None
# Load & parse registry
@@ -105,9 +105,9 @@ if (validate):
reg.validateGroups()
if (dump):
- print('***************************************')
- print('Performing Registry dump to regdump.txt')
- print('***************************************')
+ write('***************************************')
+ write('Performing Registry dump to regdump.txt')
+ write('***************************************')
reg.dumpReg(filehandle = open('regdump.txt','w'))
# Turn a list of strings into a regexp string matching exactly those strings
@@ -526,9 +526,9 @@ def genHeaders():
if (genOpts == None):
break
if (target and target != genOpts.filename):
- # print('*** Skipping', genOpts.filename)
+ # write('*** Skipping', genOpts.filename)
continue
- print('*** Building', genOpts.filename)
+ write('*** Building', genOpts.filename)
generated = generated + 1
startTimer()
gen = COutputGenerator(errFile=errWarn,
@@ -536,10 +536,10 @@ def genHeaders():
diagFile=diag)
reg.setGenerator(gen)
reg.apiGen(genOpts)
- print('** Generated', genOpts.filename)
+ write('** Generated', genOpts.filename)
endTimer('Time to generate ' + genOpts.filename + ' =')
if (target and generated == 0):
- print('Failed to generate target:', target)
+ write('Failed to generate target:', target)
if (debug):
pdb.run('genHeaders()')
diff --git a/xorg-server/hw/xwin/glx/gl.xml b/xorg-server/hw/xwin/glx/gl.xml
index 11c100acb..e46fcaf48 100644
--- a/xorg-server/hw/xwin/glx/gl.xml
+++ b/xorg-server/hw/xwin/glx/gl.xml
@@ -304,10 +304,8 @@ typedef unsigned int GLhandleARB;
<group name="ColorTableParameterPNameSGI">
<enum name="GL_COLOR_TABLE_BIAS"/>
<enum name="GL_COLOR_TABLE_BIAS_SGI"/>
- <enum name="GL_COLOR_TABLE_BIAS_SGI"/>
<enum name="GL_COLOR_TABLE_SCALE"/>
<enum name="GL_COLOR_TABLE_SCALE_SGI"/>
- <enum name="GL_COLOR_TABLE_SCALE_SGI"/>
</group>
<group name="ColorTableTargetSGI">
@@ -9071,11 +9069,6 @@ typedef unsigned int GLhandleARB;
<param><ptype>GLuint64</ptype> <name>timeout</name></param>
</command>
<command>
- <proto>void <name>glClipControlARB</name></proto>
- <param><ptype>GLenum</ptype> <name>origin</name></param>
- <param><ptype>GLenum</ptype> <name>depth</name></param>
- </command>
- <command>
<proto>void <name>glClipPlane</name></proto>
<param group="ClipPlaneName"><ptype>GLenum</ptype> <name>plane</name></param>
<param len="4">const <ptype>GLdouble</ptype> *<name>equation</name></param>
@@ -11588,7 +11581,7 @@ typedef unsigned int GLhandleARB;
<command>
<proto>void <name>glElementPointerAPPLE</name></proto>
<param group="ElementPointerTypeATI"><ptype>GLenum</ptype> <name>type</name></param>
- <param len="type">const void *<name>pointer</name></param>
+ <param len="COMPSIZE(type)">const void *<name>pointer</name></param>
</command>
<command>
<proto>void <name>glElementPointerATI</name></proto>
@@ -12872,7 +12865,7 @@ typedef unsigned int GLhandleARB;
<command>
<proto>void <name>glGetBooleanv</name></proto>
<param group="GetPName"><ptype>GLenum</ptype> <name>pname</name></param>
- <param group="Boolean" len="COMPSIZE(pname)"><ptype>GLboolean</ptype> *<name>params</name></param>
+ <param group="Boolean" len="COMPSIZE(pname)"><ptype>GLboolean</ptype> *<name>data</name></param>
<glx type="single" opcode="112"/>
</command>
<command>
@@ -13223,7 +13216,7 @@ typedef unsigned int GLhandleARB;
<command>
<proto>void <name>glGetDoublev</name></proto>
<param group="GetPName"><ptype>GLenum</ptype> <name>pname</name></param>
- <param len="COMPSIZE(pname)"><ptype>GLdouble</ptype> *<name>params</name></param>
+ <param len="COMPSIZE(pname)"><ptype>GLdouble</ptype> *<name>data</name></param>
<glx type="single" opcode="114"/>
</command>
<command>
@@ -13297,7 +13290,7 @@ typedef unsigned int GLhandleARB;
<command>
<proto>void <name>glGetFloatv</name></proto>
<param group="GetPName"><ptype>GLenum</ptype> <name>pname</name></param>
- <param len="COMPSIZE(pname)"><ptype>GLfloat</ptype> *<name>params</name></param>
+ <param len="COMPSIZE(pname)"><ptype>GLfloat</ptype> *<name>data</name></param>
<glx type="single" opcode="116"/>
</command>
<command>
@@ -13491,7 +13484,7 @@ typedef unsigned int GLhandleARB;
<command>
<proto>void <name>glGetInteger64v</name></proto>
<param><ptype>GLenum</ptype> <name>pname</name></param>
- <param len="COMPSIZE(pname)"><ptype>GLint64</ptype> *<name>params</name></param>
+ <param len="COMPSIZE(pname)"><ptype>GLint64</ptype> *<name>data</name></param>
</command>
<command>
<proto>void <name>glGetInteger64vAPPLE</name></proto>
@@ -13531,7 +13524,7 @@ typedef unsigned int GLhandleARB;
<command>
<proto>void <name>glGetIntegerv</name></proto>
<param group="GetPName"><ptype>GLenum</ptype> <name>pname</name></param>
- <param len="COMPSIZE(pname)"><ptype>GLint</ptype> *<name>params</name></param>
+ <param len="COMPSIZE(pname)"><ptype>GLint</ptype> *<name>data</name></param>
<glx type="single" opcode="117"/>
</command>
<command>
@@ -13583,12 +13576,6 @@ typedef unsigned int GLhandleARB;
<glx type="single" opcode="119"/>
</command>
<command>
- <proto>void <name>glGetLightx</name></proto>
- <param><ptype>GLenum</ptype> <name>light</name></param>
- <param><ptype>GLenum</ptype> <name>pname</name></param>
- <param><ptype>GLfixed</ptype> *<name>params</name></param>
- </command>
- <command>
<proto>void <name>glGetLightxOES</name></proto>
<param><ptype>GLenum</ptype> <name>light</name></param>
<param><ptype>GLenum</ptype> <name>pname</name></param>
@@ -13714,12 +13701,6 @@ typedef unsigned int GLhandleARB;
<glx type="single" opcode="124"/>
</command>
<command>
- <proto>void <name>glGetMaterialx</name></proto>
- <param><ptype>GLenum</ptype> <name>face</name></param>
- <param><ptype>GLenum</ptype> <name>pname</name></param>
- <param><ptype>GLfixed</ptype> <name>param</name></param>
- </command>
- <command>
<proto>void <name>glGetMaterialxOES</name></proto>
<param><ptype>GLenum</ptype> <name>face</name></param>
<param><ptype>GLenum</ptype> <name>pname</name></param>
@@ -14027,7 +14008,7 @@ typedef unsigned int GLhandleARB;
<proto>void <name>glGetObjectParameterfvARB</name></proto>
<param group="handleARB"><ptype>GLhandleARB</ptype> <name>obj</name></param>
<param><ptype>GLenum</ptype> <name>pname</name></param>
- <param len="pname"><ptype>GLfloat</ptype> *<name>params</name></param>
+ <param len="COMPSIZE(pname)"><ptype>GLfloat</ptype> *<name>params</name></param>
</command>
<command>
<proto>void <name>glGetObjectParameterivAPPLE</name></proto>
@@ -14040,7 +14021,7 @@ typedef unsigned int GLhandleARB;
<proto>void <name>glGetObjectParameterivARB</name></proto>
<param group="handleARB"><ptype>GLhandleARB</ptype> <name>obj</name></param>
<param><ptype>GLenum</ptype> <name>pname</name></param>
- <param len="pname"><ptype>GLint</ptype> *<name>params</name></param>
+ <param len="COMPSIZE(pname)"><ptype>GLint</ptype> *<name>params</name></param>
</command>
<command>
<proto>void <name>glGetObjectPtrLabel</name></proto>
@@ -14492,7 +14473,7 @@ typedef unsigned int GLhandleARB;
<proto>void <name>glGetProgramiv</name></proto>
<param><ptype>GLuint</ptype> <name>program</name></param>
<param><ptype>GLenum</ptype> <name>pname</name></param>
- <param len="pname"><ptype>GLint</ptype> *<name>params</name></param>
+ <param len="COMPSIZE(pname)"><ptype>GLint</ptype> *<name>params</name></param>
<glx type="single" opcode="199"/>
</command>
<command>
@@ -14525,7 +14506,7 @@ typedef unsigned int GLhandleARB;
<proto>void <name>glGetQueryObjecti64vEXT</name></proto>
<param><ptype>GLuint</ptype> <name>id</name></param>
<param><ptype>GLenum</ptype> <name>pname</name></param>
- <param len="pname"><ptype>GLint64</ptype> *<name>params</name></param>
+ <param len="COMPSIZE(pname)"><ptype>GLint64</ptype> *<name>params</name></param>
<glx type="vendor" opcode="1328"/>
<alias name="glGetQueryObjecti64v"/>
</command>
@@ -14533,14 +14514,14 @@ typedef unsigned int GLhandleARB;
<proto>void <name>glGetQueryObjectiv</name></proto>
<param><ptype>GLuint</ptype> <name>id</name></param>
<param><ptype>GLenum</ptype> <name>pname</name></param>
- <param len="pname"><ptype>GLint</ptype> *<name>params</name></param>
+ <param len="COMPSIZE(pname)"><ptype>GLint</ptype> *<name>params</name></param>
<glx type="single" opcode="165"/>
</command>
<command>
<proto>void <name>glGetQueryObjectivARB</name></proto>
<param><ptype>GLuint</ptype> <name>id</name></param>
<param><ptype>GLenum</ptype> <name>pname</name></param>
- <param len="pname"><ptype>GLint</ptype> *<name>params</name></param>
+ <param len="COMPSIZE(pname)"><ptype>GLint</ptype> *<name>params</name></param>
<alias name="glGetQueryObjectiv"/>
</command>
<command>
@@ -14560,7 +14541,7 @@ typedef unsigned int GLhandleARB;
<proto>void <name>glGetQueryObjectui64vEXT</name></proto>
<param><ptype>GLuint</ptype> <name>id</name></param>
<param><ptype>GLenum</ptype> <name>pname</name></param>
- <param len="pname"><ptype>GLuint64</ptype> *<name>params</name></param>
+ <param len="COMPSIZE(pname)"><ptype>GLuint64</ptype> *<name>params</name></param>
<glx type="vendor" opcode="1329"/>
<alias name="glGetQueryObjectui64v"/>
</command>
@@ -14568,14 +14549,14 @@ typedef unsigned int GLhandleARB;
<proto>void <name>glGetQueryObjectuiv</name></proto>
<param><ptype>GLuint</ptype> <name>id</name></param>
<param><ptype>GLenum</ptype> <name>pname</name></param>
- <param len="pname"><ptype>GLuint</ptype> *<name>params</name></param>
+ <param len="COMPSIZE(pname)"><ptype>GLuint</ptype> *<name>params</name></param>
<glx type="single" opcode="166"/>
</command>
<command>
<proto>void <name>glGetQueryObjectuivARB</name></proto>
<param><ptype>GLuint</ptype> <name>id</name></param>
<param><ptype>GLenum</ptype> <name>pname</name></param>
- <param len="pname"><ptype>GLuint</ptype> *<name>params</name></param>
+ <param len="COMPSIZE(pname)"><ptype>GLuint</ptype> *<name>params</name></param>
<alias name="glGetQueryObjectuiv"/>
</command>
<command>
@@ -14588,14 +14569,14 @@ typedef unsigned int GLhandleARB;
<proto>void <name>glGetQueryiv</name></proto>
<param><ptype>GLenum</ptype> <name>target</name></param>
<param><ptype>GLenum</ptype> <name>pname</name></param>
- <param len="pname"><ptype>GLint</ptype> *<name>params</name></param>
+ <param len="COMPSIZE(pname)"><ptype>GLint</ptype> *<name>params</name></param>
<glx type="single" opcode="164"/>
</command>
<command>
<proto>void <name>glGetQueryivARB</name></proto>
<param><ptype>GLenum</ptype> <name>target</name></param>
<param><ptype>GLenum</ptype> <name>pname</name></param>
- <param len="pname"><ptype>GLint</ptype> *<name>params</name></param>
+ <param len="COMPSIZE(pname)"><ptype>GLint</ptype> *<name>params</name></param>
<alias name="glGetQueryiv"/>
</command>
<command>
@@ -14704,7 +14685,7 @@ typedef unsigned int GLhandleARB;
<proto>void <name>glGetShaderiv</name></proto>
<param><ptype>GLuint</ptype> <name>shader</name></param>
<param><ptype>GLenum</ptype> <name>pname</name></param>
- <param len="pname"><ptype>GLint</ptype> *<name>params</name></param>
+ <param len="COMPSIZE(pname)"><ptype>GLint</ptype> *<name>params</name></param>
<glx type="single" opcode="198"/>
</command>
<command>
@@ -15206,13 +15187,13 @@ typedef unsigned int GLhandleARB;
<proto>void <name>glGetVertexAttribArrayObjectfvATI</name></proto>
<param><ptype>GLuint</ptype> <name>index</name></param>
<param group="ArrayObjectPNameATI"><ptype>GLenum</ptype> <name>pname</name></param>
- <param len="pname"><ptype>GLfloat</ptype> *<name>params</name></param>
+ <param len="COMPSIZE(pname)"><ptype>GLfloat</ptype> *<name>params</name></param>
</command>
<command>
<proto>void <name>glGetVertexAttribArrayObjectivATI</name></proto>
<param><ptype>GLuint</ptype> <name>index</name></param>
<param group="ArrayObjectPNameATI"><ptype>GLenum</ptype> <name>pname</name></param>
- <param len="pname"><ptype>GLint</ptype> *<name>params</name></param>
+ <param len="COMPSIZE(pname)"><ptype>GLint</ptype> *<name>params</name></param>
</command>
<command>
<proto>void <name>glGetVertexAttribIiv</name></proto>
@@ -21489,14 +21470,14 @@ typedef unsigned int GLhandleARB;
<param><ptype>GLuint</ptype> <name>shader</name></param>
<param><ptype>GLsizei</ptype> <name>count</name></param>
<param len="count">const <ptype>GLchar</ptype> *const*<name>string</name></param>
- <param len="1">const <ptype>GLint</ptype> *<name>length</name></param>
+ <param len="count">const <ptype>GLint</ptype> *<name>length</name></param>
</command>
<command>
<proto>void <name>glShaderSourceARB</name></proto>
<param group="handleARB"><ptype>GLhandleARB</ptype> <name>shaderObj</name></param>
<param><ptype>GLsizei</ptype> <name>count</name></param>
<param len="count">const <ptype>GLcharARB</ptype> **<name>string</name></param>
- <param len="1">const <ptype>GLint</ptype> *<name>length</name></param>
+ <param len="count">const <ptype>GLint</ptype> *<name>length</name></param>
<alias name="glShaderSource"/>
</command>
<command>
@@ -28815,7 +28796,6 @@ typedef unsigned int GLhandleARB;
<enum name="GL_WAIT_FAILED"/>
<enum name="GL_TIMEOUT_IGNORED"/>
<enum name="GL_SYNC_FLUSH_COMMANDS_BIT"/>
- <enum name="GL_TIMEOUT_IGNORED"/>
<command name="glFenceSync"/>
<command name="glIsSync"/>
<command name="glDeleteSync"/>
@@ -35744,7 +35724,7 @@ typedef unsigned int GLhandleARB;
<command name="glCullParameterfvEXT"/>
</require>
</extension>
- <extension name="GL_EXT_debug_label" supported="gles2">
+ <extension name="GL_EXT_debug_label" supported="gl|gles2">
<require>
<enum name="GL_PROGRAM_PIPELINE_OBJECT_EXT"/>
<enum name="GL_PROGRAM_OBJECT_EXT"/>
@@ -35760,7 +35740,7 @@ typedef unsigned int GLhandleARB;
<enum name="GL_TRANSFORM_FEEDBACK"/>
</require>
</extension>
- <extension name="GL_EXT_debug_marker" supported="gles2">
+ <extension name="GL_EXT_debug_marker" supported="gl|gles2">
<require>
<command name="glInsertEventMarkerEXT"/>
<command name="glPushGroupMarkerEXT"/>
@@ -37833,6 +37813,9 @@ typedef unsigned int GLhandleARB;
<enum name="GL_INTERLACE_READ_INGR"/>
</require>
</extension>
+ <extension name="GL_INTEL_fragment_shader_ordering" supported="gl">
+ <require/>
+ </extension>
<extension name="GL_INTEL_map_texture" supported="gl">
<require>
<enum name="GL_TEXTURE_MEMORY_LAYOUT_INTEL"/>
@@ -41008,8 +40991,7 @@ typedef unsigned int GLhandleARB;
</require>
</extension>
<extension name="GL_SGIX_ycrcb_subsample" supported="gl">
- <require>
- </require>
+ <require/>
</extension>
<extension name="GL_SGIX_ycrcba" supported="gl">
<require>
diff --git a/xorg-server/hw/xwin/glx/reg.py b/xorg-server/hw/xwin/glx/reg.py
index 37b9a8cb1..de28323d5 100644
--- a/xorg-server/hw/xwin/glx/reg.py
+++ b/xorg-server/hw/xwin/glx/reg.py
@@ -24,6 +24,12 @@
import io,os,re,string,sys
from lxml import etree
+def write( *args, **kwargs ):
+ file = kwargs.pop('file',sys.stdout)
+ end = kwargs.pop( 'end','\n')
+ file.write( ' '.join([str(arg) for arg in args]) )
+ file.write( end )
+
# noneStr - returns string argument, or "" if argument is None.
# Used in converting lxml Elements into text.
# str - string to convert
@@ -365,16 +371,16 @@ class OutputGenerator:
"""Log a message at the given level. Can be ignored or log to a file"""
if (level == 'error'):
strfile = io.StringIO()
- print('ERROR:', *args, file=strfile)
+ write('ERROR:', *args, file=strfile)
if (self.errFile != None):
- print(strfile.getvalue(), file=self.errFile)
+ write(strfile.getvalue(), file=self.errFile)
raise UserWarning(strfile.getvalue())
elif (level == 'warn'):
if (self.warnFile != None):
- print('WARNING:', *args, file=self.warnFile)
+ write('WARNING:', *args, file=self.warnFile)
elif (level == 'diag'):
if (self.diagFile != None):
- print('DIAG:', *args, file=self.diagFile)
+ write('DIAG:', *args, file=self.diagFile)
else:
raise UserWarning(
'*** FATAL ERROR in Generator.logMsg: unknown level:' + level)
@@ -504,7 +510,7 @@ class COutputGenerator(OutputGenerator):
return [ pdecl + paramdecl, tdecl + paramdecl ]
#
def newline(self):
- print('', file=self.outFile)
+ write('', file=self.outFile)
#
def beginFile(self, genOpts):
OutputGenerator.beginFile(self, genOpts)
@@ -513,42 +519,42 @@ class COutputGenerator(OutputGenerator):
# Multiple inclusion protection & C++ wrappers.
if (genOpts.protectFile and self.genOpts.filename):
headerSym = '__' + re.sub('\.h', '_h_', os.path.basename(self.genOpts.filename))
- print('#ifndef', headerSym, file=self.outFile)
- print('#define', headerSym, '1', file=self.outFile)
+ write('#ifndef', headerSym, file=self.outFile)
+ write('#define', headerSym, '1', file=self.outFile)
self.newline()
- print('#ifdef __cplusplus', file=self.outFile)
- print('extern "C" {', file=self.outFile)
- print('#endif', file=self.outFile)
+ write('#ifdef __cplusplus', file=self.outFile)
+ write('extern "C" {', file=self.outFile)
+ write('#endif', file=self.outFile)
self.newline()
#
# User-supplied prefix text, if any (list of strings)
if (genOpts.prefixText):
for s in genOpts.prefixText:
- print(s, file=self.outFile)
+ write(s, file=self.outFile)
#
# Some boilerplate describing what was generated - this
# will probably be removed later since the extensions
# pattern may be very long.
- print('/* Generated C header for:', file=self.outFile)
- print(' * API:', genOpts.apiname, file=self.outFile)
+ write('/* Generated C header for:', file=self.outFile)
+ write(' * API:', genOpts.apiname, file=self.outFile)
if (genOpts.profile):
- print(' * Profile:', genOpts.profile, file=self.outFile)
- print(' * Versions considered:', genOpts.versions, file=self.outFile)
- print(' * Versions emitted:', genOpts.emitversions, file=self.outFile)
- print(' * Default extensions included:', genOpts.defaultExtensions, file=self.outFile)
- print(' * Additional extensions included:', genOpts.addExtensions, file=self.outFile)
- print(' * Extensions removed:', genOpts.removeExtensions, file=self.outFile)
- print(' */', file=self.outFile)
+ write(' * Profile:', genOpts.profile, file=self.outFile)
+ write(' * Versions considered:', genOpts.versions, file=self.outFile)
+ write(' * Versions emitted:', genOpts.emitversions, file=self.outFile)
+ write(' * Default extensions included:', genOpts.defaultExtensions, file=self.outFile)
+ write(' * Additional extensions included:', genOpts.addExtensions, file=self.outFile)
+ write(' * Extensions removed:', genOpts.removeExtensions, file=self.outFile)
+ write(' */', file=self.outFile)
def endFile(self):
# C-specific
# Finish C++ wrapper and multiple inclusion protection
self.newline()
- print('#ifdef __cplusplus', file=self.outFile)
- print('}', file=self.outFile)
- print('#endif', file=self.outFile)
+ write('#ifdef __cplusplus', file=self.outFile)
+ write('}', file=self.outFile)
+ write('#endif', file=self.outFile)
if (self.genOpts.protectFile and self.genOpts.filename):
self.newline()
- print('#endif', file=self.outFile)
+ write('#endif', file=self.outFile)
# Finish processing in superclass
OutputGenerator.endFile(self)
def beginFeature(self, interface, emit):
@@ -568,29 +574,29 @@ class COutputGenerator(OutputGenerator):
if (self.emit):
self.newline()
if (self.genOpts.protectFeature):
- print('#ifndef', self.featureName, file=self.outFile)
- print('#define', self.featureName, '1', file=self.outFile)
+ write('#ifndef', self.featureName, file=self.outFile)
+ write('#define', self.featureName, '1', file=self.outFile)
if (self.typeBody != ''):
- print(self.typeBody, end='', file=self.outFile)
+ write(self.typeBody, end='', file=self.outFile)
#
# Don't add additional protection for derived type declarations,
# which may be needed by other features later on.
if (self.featureExtraProtect != None):
- print('#ifdef', self.featureExtraProtect, file=self.outFile)
+ write('#ifdef', self.featureExtraProtect, file=self.outFile)
if (self.enumBody != ''):
- print(self.enumBody, end='', file=self.outFile)
+ write(self.enumBody, end='', file=self.outFile)
if (self.genOpts.genFuncPointers and self.cmdPointerBody != ''):
- print(self.cmdPointerBody, end='', file=self.outFile)
+ write(self.cmdPointerBody, end='', file=self.outFile)
if (self.cmdBody != ''):
if (self.genOpts.protectProto):
- print('#ifdef', self.genOpts.protectProtoStr, file=self.outFile)
- print(self.cmdBody, end='', file=self.outFile)
+ write('#ifdef', self.genOpts.protectProtoStr, file=self.outFile)
+ write(self.cmdBody, end='', file=self.outFile)
if (self.genOpts.protectProto):
- print('#endif', file=self.outFile)
+ write('#endif', file=self.outFile)
if (self.featureExtraProtect != None):
- print('#endif /*', self.featureExtraProtect, '*/', file=self.outFile)
+ write('#endif /*', self.featureExtraProtect, '*/', file=self.outFile)
if (self.genOpts.protectFeature):
- print('#endif /*', self.featureName, '*/', file=self.outFile)
+ write('#endif /*', self.featureName, '*/', file=self.outFile)
# Finish processing in superclass
OutputGenerator.endFeature(self)
#
@@ -793,37 +799,37 @@ class Registry:
self.addElementInfo(feature, ei, 'extension', self.extdict)
def dumpReg(self, maxlen = 40, filehandle = sys.stdout):
"""Dump all the dictionaries constructed from the Registry object"""
- print('***************************************', file=filehandle)
- print(' ** Dumping Registry contents **', file=filehandle)
- print('***************************************', file=filehandle)
- print('// Types', file=filehandle)
+ write('***************************************', file=filehandle)
+ write(' ** Dumping Registry contents **', file=filehandle)
+ write('***************************************', file=filehandle)
+ write('// Types', file=filehandle)
for name in self.typedict:
tobj = self.typedict[name]
- print(' Type', name, '->', etree.tostring(tobj.elem)[0:maxlen], file=filehandle)
- print('// Groups', file=filehandle)
+ write(' Type', name, '->', etree.tostring(tobj.elem)[0:maxlen], file=filehandle)
+ write('// Groups', file=filehandle)
for name in self.groupdict:
gobj = self.groupdict[name]
- print(' Group', name, '->', etree.tostring(gobj.elem)[0:maxlen], file=filehandle)
- print('// Enums', file=filehandle)
+ write(' Group', name, '->', etree.tostring(gobj.elem)[0:maxlen], file=filehandle)
+ write('// Enums', file=filehandle)
for name in self.enumdict:
eobj = self.enumdict[name]
- print(' Enum', name, '->', etree.tostring(eobj.elem)[0:maxlen], file=filehandle)
- print('// Commands', file=filehandle)
+ write(' Enum', name, '->', etree.tostring(eobj.elem)[0:maxlen], file=filehandle)
+ write('// Commands', file=filehandle)
for name in self.cmddict:
cobj = self.cmddict[name]
- print(' Command', name, '->', etree.tostring(cobj.elem)[0:maxlen], file=filehandle)
- print('// APIs', file=filehandle)
+ write(' Command', name, '->', etree.tostring(cobj.elem)[0:maxlen], file=filehandle)
+ write('// APIs', file=filehandle)
for key in self.apidict:
- print(' API Version ', key, '->',
+ write(' API Version ', key, '->',
etree.tostring(self.apidict[key].elem)[0:maxlen], file=filehandle)
- print('// Extensions', file=filehandle)
+ write('// Extensions', file=filehandle)
for key in self.extdict:
- print(' Extension', key, '->',
+ write(' Extension', key, '->',
etree.tostring(self.extdict[key].elem)[0:maxlen], file=filehandle)
- # print('***************************************', file=filehandle)
- # print(' ** Dumping XML ElementTree **', file=filehandle)
- # print('***************************************', file=filehandle)
- # print(etree.tostring(self.tree.getroot(),pretty_print=True), file=filehandle)
+ # write('***************************************', file=filehandle)
+ # write(' ** Dumping XML ElementTree **', file=filehandle)
+ # write('***************************************', file=filehandle)
+ # write(etree.tostring(self.tree.getroot(),pretty_print=True), file=filehandle)
#
# typename - name of type
# required - boolean (to tag features as required or not)
diff --git a/xorg-server/hw/xwin/swrastwgl_dri/swrastwgl_dri.c b/xorg-server/hw/xwin/swrastwgl_dri/swrastwgl_dri.c
index 8597e5b4a..52b7203b5 100644
--- a/xorg-server/hw/xwin/swrastwgl_dri/swrastwgl_dri.c
+++ b/xorg-server/hw/xwin/swrastwgl_dri/swrastwgl_dri.c
@@ -852,6 +852,10 @@ __DRIconfig **driConcatConfigs(__DRIconfig **a, __DRIconfig **b)
return all;
}
+/**
+ * Return the value of a configuration attribute. The attribute is
+ * indicated by the index.
+ */
static int driGetConfigAttribIndex(const __DRIconfig *config, unsigned int index, unsigned int *value)
{
switch (attribMap[index].attrib) {
@@ -886,6 +890,31 @@ static int driGetConfigAttribIndex(const __DRIconfig *config, unsigned int index
return GL_TRUE;
}
+/**
+ * Get the value of a configuration attribute.
+ * \param attrib the attribute (one of the _DRI_ATTRIB_x tokens)
+ * \param value returns the attribute's value
+ * \return 1 for success, 0 for failure
+ */
+int
+driGetConfigAttrib(const __DRIconfig *config, unsigned int attrib, unsigned int *value)
+{
+ int i;
+
+ for (i = 0; i < ARRAY_SIZE(attribMap); i++)
+ if (attribMap[i].attrib == attrib)
+ return driGetConfigAttribIndex(config, i, value);
+
+ return GL_FALSE;
+}
+
+/**
+ * Get a configuration attribute name and value, given an index.
+ * \param index which field of the __DRIconfig to query
+ * \param attrib returns the attribute name (one of the _DRI_ATTRIB_x tokens)
+ * \param value returns the attribute's value
+ * \return 1 for success, 0 for failure
+ */
int driIndexConfigAttrib(const __DRIconfig *config, int index, unsigned int *attrib, unsigned int *value)
{
if (index >= 0 && index < ARRAY_SIZE(attribMap))
@@ -1188,7 +1217,7 @@ const __DRIcoreExtension driCoreExtension = {
NULL, /* driCreateNewScreen */
driDestroyScreen,
driGetExtensions,
- NULL,// driGetConfigAttrib,
+ driGetConfigAttrib,
driIndexConfigAttrib,
NULL, /* driCreateNewDrawable */
driDestroyDrawable,