aboutsummaryrefslogtreecommitdiff
path: root/xorg-server
diff options
context:
space:
mode:
Diffstat (limited to 'xorg-server')
-rw-r--r--xorg-server/Xi/chgdctl.c1
-rw-r--r--xorg-server/Xi/exevents.c5
-rw-r--r--xorg-server/Xi/xiproperty.c3
-rw-r--r--xorg-server/configure.ac4
-rw-r--r--xorg-server/dix/getevents.c20
-rw-r--r--xorg-server/dix/touch.c4
-rw-r--r--xorg-server/doc/c-extensions129
-rw-r--r--xorg-server/glx/dispatch.h2246
-rw-r--r--xorg-server/glx/glapi_gentable.c73
-rw-r--r--xorg-server/glx/glapitable.h1079
-rw-r--r--xorg-server/glx/glprocs.h1886
-rw-r--r--xorg-server/hw/xfree86/common/xf86Events.c2
-rw-r--r--xorg-server/hw/xwin/glx/gl.spec1640
-rw-r--r--xorg-server/hw/xwin/swrastwgl_dri/gl.spec1640
-rw-r--r--xorg-server/hw/xwin/winprefs.c2
-rw-r--r--xorg-server/include/xserver-properties.h3
-rw-r--r--xorg-server/os/utils.c22
-rw-r--r--xorg-server/xkb/xkbAccessX.c2
18 files changed, 4843 insertions, 3918 deletions
diff --git a/xorg-server/Xi/chgdctl.c b/xorg-server/Xi/chgdctl.c
index ec5975981..916226ea4 100644
--- a/xorg-server/Xi/chgdctl.c
+++ b/xorg-server/Xi/chgdctl.c
@@ -127,6 +127,7 @@ ProcXChangeDeviceControl(ClientPtr client)
rep.RepType = X_ChangeDeviceControl;
rep.sequenceNumber = client->sequence;
rep.length = 0;
+ rep.status = Success;
switch (stuff->control) {
case DEVICE_RESOLUTION:
diff --git a/xorg-server/Xi/exevents.c b/xorg-server/Xi/exevents.c
index 2a097d74f..2a77ac22d 100644
--- a/xorg-server/Xi/exevents.c
+++ b/xorg-server/Xi/exevents.c
@@ -1866,6 +1866,11 @@ DeliverTouchEndEvent(DeviceIntPtr dev, TouchPointInfoPtr ti, InternalEvent *ev,
goto out;
}
+ if (listener->state == LISTENER_AWAITING_BEGIN) {
+ listener->state = LISTENER_HAS_END;
+ goto out;
+ }
+
/* Event in response to reject */
if (ev->device_event.flags & TOUCH_REJECT) {
if (listener->state != LISTENER_HAS_END)
diff --git a/xorg-server/Xi/xiproperty.c b/xorg-server/Xi/xiproperty.c
index 39c55f823..ba5d99912 100644
--- a/xorg-server/Xi/xiproperty.c
+++ b/xorg-server/Xi/xiproperty.c
@@ -105,6 +105,9 @@ static struct dev_properties {
{0, AXIS_LABEL_PROP_ABS_MT_BLOB_ID},
{0, AXIS_LABEL_PROP_ABS_MT_TRACKING_ID},
{0, AXIS_LABEL_PROP_ABS_MT_PRESSURE},
+ {0, AXIS_LABEL_PROP_ABS_MT_DISTANCE},
+ {0, AXIS_LABEL_PROP_ABS_MT_TOOL_X},
+ {0, AXIS_LABEL_PROP_ABS_MT_TOOL_Y},
{0, AXIS_LABEL_PROP_ABS_MISC},
{0, BTN_LABEL_PROP},
{0, BTN_LABEL_PROP_BTN_UNKNOWN},
diff --git a/xorg-server/configure.ac b/xorg-server/configure.ac
index b6ed92cb3..86153ec81 100644
--- a/xorg-server/configure.ac
+++ b/xorg-server/configure.ac
@@ -420,7 +420,7 @@ case $host_os in
darwin*)
AC_DEFINE(CSRG_BASED, 1, [System is BSD-like])
;;
- cygwin*)
+ cygwin*|mingw*)
CFLAGS="$CFLAGS -DFD_SETSIZE=256"
;;
esac
@@ -1904,7 +1904,7 @@ if test "x$XWIN" = xyes; then
XWIN_SERVER_NAME=Xming
AC_DEFINE(RELOCATE_PROJECTROOT,1,[Make PROJECT_ROOT relative to the xserver location])
AC_DEFINE(HAS_WINSOCK,1,[Use Windows sockets])
- XWIN_SYS_LIBS=-lws2_32
+ XWIN_SYS_LIBS="-lpthread -lws2_32"
;;
esac
diff --git a/xorg-server/dix/getevents.c b/xorg-server/dix/getevents.c
index 4cf06406d..d4badc03d 100644
--- a/xorg-server/dix/getevents.c
+++ b/xorg-server/dix/getevents.c
@@ -1198,7 +1198,6 @@ transform(struct pixman_f_transform *m, double *x, double *y)
pixman_f_transform_point(m, &p);
-
*x = p.v[0];
*y = p.v[1];
}
@@ -1348,6 +1347,7 @@ fill_pointer_events(InternalEvent *events, DeviceIntPtr pDev, int type,
RawDeviceEvent *raw;
double screenx = 0.0, screeny = 0.0; /* desktop coordinate system */
double devx = 0.0, devy = 0.0; /* desktop-wide in device coords */
+ int sx, sy; /* for POINTER_SCREEN */
ValuatorMask mask;
ScreenPtr scr;
@@ -1390,8 +1390,11 @@ fill_pointer_events(InternalEvent *events, DeviceIntPtr pDev, int type,
/* valuators are in driver-native format (rel or abs) */
if (flags & POINTER_ABSOLUTE) {
- if (flags & POINTER_SCREEN) /* valuators are in screen coords */
+ if (flags & POINTER_SCREEN) { /* valuators are in screen coords */
+ sx = valuator_mask_get(&mask, 0);
+ sy = valuator_mask_get(&mask, 1);
scale_from_screen(pDev, &mask);
+ }
transformAbsolute(pDev, &mask);
clipAbsolute(pDev, &mask);
@@ -1409,6 +1412,19 @@ fill_pointer_events(InternalEvent *events, DeviceIntPtr pDev, int type,
/* valuators are in device coordinate system in absolute coordinates */
scale_to_desktop(pDev, &mask, &devx, &devy, &screenx, &screeny);
+
+ /* #53037 XWarpPointer's scaling back and forth between screen and
+ device may leave us with rounding errors. End result is that the
+ pointer doesn't end up on the pixel it should.
+ Avoid this by forcing screenx/screeny back to what the input
+ coordinates were.
+ */
+ if (flags & POINTER_SCREEN) {
+ scr = miPointerGetScreen(pDev);
+ screenx = sx + scr->x;
+ screeny = sy + scr->y;
+ }
+
scr = positionSprite(pDev, (flags & POINTER_ABSOLUTE) ? Absolute : Relative,
&mask, &devx, &devy, &screenx, &screeny);
diff --git a/xorg-server/dix/touch.c b/xorg-server/dix/touch.c
index e64a6262c..5f77be575 100644
--- a/xorg-server/dix/touch.c
+++ b/xorg-server/dix/touch.c
@@ -572,8 +572,8 @@ TouchBuildSprite(DeviceIntPtr sourcedev, TouchPointInfoPtr ti,
return FALSE;
/* Mark which grabs/event selections we're delivering to: max one grab per
- * window plus the bottom-most event selection. */
- ti->listeners = calloc(sprite->spriteTraceGood + 1, sizeof(*ti->listeners));
+ * window plus the bottom-most event selection, plus any active grab. */
+ ti->listeners = calloc(sprite->spriteTraceGood + 2, sizeof(*ti->listeners));
if (!ti->listeners) {
sprite->spriteTraceGood = 0;
return FALSE;
diff --git a/xorg-server/doc/c-extensions b/xorg-server/doc/c-extensions
index 984022333..4a9006150 100644
--- a/xorg-server/doc/c-extensions
+++ b/xorg-server/doc/c-extensions
@@ -1,61 +1,68 @@
-First of all: C89 or better. If you don't have that, port gcc first.
-
-Use of C language extensions throughout the X server tree
----------------------------------------------------------
-
-Optional extensions:
-The server will still build if your toolchain does not support these
-extensions, although the results may not be optimal.
-
- * _X_SENTINEL(x): member x of the passed structure must be NULL, e.g.:
- void parseOptions(Option *options _X_SENTINEL(0));
- parseOptions("foo", "bar", NULL); /* this is OK */
- parseOptions("foo", "bar", "baz"); /* this is not */
- This definition comes from Xfuncproto.h in the core
- protocol headers.
- * _X_ATTRIBUTE_PRINTF(x, y): This function has printf-like semantics;
- check the format string when built with
- -Wformat (gcc) or similar.
- * _X_EXPORT: this function should appear in symbol tables.
- * _X_HIDDEN: this function should not appear in the _dynamic_ symbol
- table.
- * _X_INTERNAL: like _X_HIDDEN, but attempt to ensure that this function
- is never called from another module.
- * _X_INLINE: inline this functon if possible (generally obeyed unless
- disabling optimisations).
- * _X_DEPRECATED: warn on use of this function.
-
-Mandatory extensions:
-The server will not build if your toolchain does not support these extensions.
-
- * named initialisers: explicitly initialising structure members, e.g.:
- struct foo bar = { .baz = quux, .brian = "dog" };
- * variadic macros: macros with a variable number of arguments, e.g.:
- #define DebugF(x, ...) /**/
- * interleaved code and declarations: { foo = TRUE; int bar; do_stuff(); }
-
-
-Use of OS and library facilities throughout the X server tree
--------------------------------------------------------------
-
-Non-OS-dependent code can assume facilities at least as good as
-the non-OS-facility parts of POSIX-1.2001. Ideally this would
-be C99, but even gcc+glibc doesn't implement that yet.
-
-Unix-like systems are assumed to be at least as good as UNIX03.
-
-Linux systems must be at least 2.4 or later. As a practical matter
-though, 2.4 kernels never receive any testing. Use 2.6 already.
-
-TODO: Solaris.
-
-TODO: *BSD.
-
-Code that needs to be portable to Windows should be careful to,
-well, be portable. Note that there are two Windows ports, cygwin and
-mingw. Cygwin is more or less like Linux, but mingw is a bit more
-restrictive. TODO: document which versions of Windows we actually care
-about.
-
-OSX support is generally limited to the most recent version. Currently
-that means 10.5.
+First of all: C89 or better. If you don't have that, port gcc first.
+
+Use of C language extensions throughout the X server tree
+---------------------------------------------------------
+
+Optional extensions:
+The server will still build if your toolchain does not support these
+extensions, although the results may not be optimal.
+
+ * _X_SENTINEL(x): member x of the passed structure must be NULL, e.g.:
+ void parseOptions(Option *options _X_SENTINEL(0));
+ parseOptions("foo", "bar", NULL); /* this is OK */
+ parseOptions("foo", "bar", "baz"); /* this is not */
+ This definition comes from Xfuncproto.h in the core
+ protocol headers.
+ * _X_ATTRIBUTE_PRINTF(x, y): This function has printf-like semantics;
+ check the format string when built with
+ -Wformat (gcc) or similar.
+ * _X_EXPORT: this function should appear in symbol tables.
+ * _X_HIDDEN: this function should not appear in the _dynamic_ symbol
+ table.
+ * _X_INTERNAL: like _X_HIDDEN, but attempt to ensure that this function
+ is never called from another module.
+ * _X_INLINE: inline this functon if possible (generally obeyed unless
+ disabling optimisations).
+ * _X_DEPRECATED: warn on use of this function.
+
+Mandatory extensions:
+The server will not build if your toolchain does not support these extensions.
+
+ * named initialisers: explicitly initialising structure members, e.g.:
+ struct foo bar = { .baz = quux, .brian = "dog" };
+ * variadic macros: macros with a variable number of arguments, e.g.:
+ #define DebugF(x, ...) /**/
+ * interleaved code and declarations: { foo = TRUE; int bar; do_stuff(); }
+
+
+Use of library facilities throughout the X server tree
+-------------------------------------------------------------
+
+Non-OS-dependent code can assume facilities at least as good as
+the non-OS-facility parts of POSIX-1.2001. Ideally this would
+be C99, but even gcc+glibc doesn't implement that yet.
+
+Unix-like systems are assumed to be at least as good as UNIX03.
+
+Note that there are two Windows ports, Cygwin and MinGW:
+- Cygwin is more or less like Linux.
+- MinGW is more restrictive. Windows does not provide the required
+POSIX facilities, so some non-OS-dependent code is stubbed out or
+has an alternate implementation if WIN32 is defined. Code that
+needs to be portable to Windows should be careful to, well, be portable.
+
+
+Required OS facilities
+-------------------------------------------------------------
+
+Linux systems must be at least 2.4 or later. As a practical matter
+though, 2.4 kernels never receive any testing. Use 2.6 already.
+
+TODO: Solaris.
+
+TODO: *BSD.
+
+Windows-dependent code assumes at least NT 5.1.
+
+OSX support is generally limited to the most recent version. Currently
+that means 10.5.
diff --git a/xorg-server/glx/dispatch.h b/xorg-server/glx/dispatch.h
index 1c8738187..feab6b6ad 100644
--- a/xorg-server/glx/dispatch.h
+++ b/xorg-server/glx/dispatch.h
@@ -69,7 +69,7 @@
} while(0)
/* total number of offsets below */
-#define _gloffset_COUNT 970
+#define _gloffset_COUNT 969
#define _gloffset_NewList 0
#define _gloffset_EndList 1
@@ -504,550 +504,549 @@
#define _gloffset_UniformMatrix3x4fv 427
#define _gloffset_UniformMatrix4x2fv 428
#define _gloffset_UniformMatrix4x3fv 429
-#define _gloffset_ClampColor 430
-#define _gloffset_ClearBufferfi 431
-#define _gloffset_ClearBufferfv 432
-#define _gloffset_ClearBufferiv 433
-#define _gloffset_ClearBufferuiv 434
-#define _gloffset_GetStringi 435
-#define _gloffset_FramebufferTexture 436
-#define _gloffset_GetBufferParameteri64v 437
-#define _gloffset_GetInteger64i_v 438
-#define _gloffset_VertexAttribDivisor 439
-#define _gloffset_LoadTransposeMatrixdARB 440
-#define _gloffset_LoadTransposeMatrixfARB 441
-#define _gloffset_MultTransposeMatrixdARB 442
-#define _gloffset_MultTransposeMatrixfARB 443
-#define _gloffset_SampleCoverageARB 444
-#define _gloffset_CompressedTexImage1DARB 445
-#define _gloffset_CompressedTexImage2DARB 446
-#define _gloffset_CompressedTexImage3DARB 447
-#define _gloffset_CompressedTexSubImage1DARB 448
-#define _gloffset_CompressedTexSubImage2DARB 449
-#define _gloffset_CompressedTexSubImage3DARB 450
-#define _gloffset_GetCompressedTexImageARB 451
-#define _gloffset_DisableVertexAttribArrayARB 452
-#define _gloffset_EnableVertexAttribArrayARB 453
-#define _gloffset_GetProgramEnvParameterdvARB 454
-#define _gloffset_GetProgramEnvParameterfvARB 455
-#define _gloffset_GetProgramLocalParameterdvARB 456
-#define _gloffset_GetProgramLocalParameterfvARB 457
-#define _gloffset_GetProgramStringARB 458
-#define _gloffset_GetProgramivARB 459
-#define _gloffset_GetVertexAttribdvARB 460
-#define _gloffset_GetVertexAttribfvARB 461
-#define _gloffset_GetVertexAttribivARB 462
-#define _gloffset_ProgramEnvParameter4dARB 463
-#define _gloffset_ProgramEnvParameter4dvARB 464
-#define _gloffset_ProgramEnvParameter4fARB 465
-#define _gloffset_ProgramEnvParameter4fvARB 466
-#define _gloffset_ProgramLocalParameter4dARB 467
-#define _gloffset_ProgramLocalParameter4dvARB 468
-#define _gloffset_ProgramLocalParameter4fARB 469
-#define _gloffset_ProgramLocalParameter4fvARB 470
-#define _gloffset_ProgramStringARB 471
-#define _gloffset_VertexAttrib1dARB 472
-#define _gloffset_VertexAttrib1dvARB 473
-#define _gloffset_VertexAttrib1fARB 474
-#define _gloffset_VertexAttrib1fvARB 475
-#define _gloffset_VertexAttrib1sARB 476
-#define _gloffset_VertexAttrib1svARB 477
-#define _gloffset_VertexAttrib2dARB 478
-#define _gloffset_VertexAttrib2dvARB 479
-#define _gloffset_VertexAttrib2fARB 480
-#define _gloffset_VertexAttrib2fvARB 481
-#define _gloffset_VertexAttrib2sARB 482
-#define _gloffset_VertexAttrib2svARB 483
-#define _gloffset_VertexAttrib3dARB 484
-#define _gloffset_VertexAttrib3dvARB 485
-#define _gloffset_VertexAttrib3fARB 486
-#define _gloffset_VertexAttrib3fvARB 487
-#define _gloffset_VertexAttrib3sARB 488
-#define _gloffset_VertexAttrib3svARB 489
-#define _gloffset_VertexAttrib4NbvARB 490
-#define _gloffset_VertexAttrib4NivARB 491
-#define _gloffset_VertexAttrib4NsvARB 492
-#define _gloffset_VertexAttrib4NubARB 493
-#define _gloffset_VertexAttrib4NubvARB 494
-#define _gloffset_VertexAttrib4NuivARB 495
-#define _gloffset_VertexAttrib4NusvARB 496
-#define _gloffset_VertexAttrib4bvARB 497
-#define _gloffset_VertexAttrib4dARB 498
-#define _gloffset_VertexAttrib4dvARB 499
-#define _gloffset_VertexAttrib4fARB 500
-#define _gloffset_VertexAttrib4fvARB 501
-#define _gloffset_VertexAttrib4ivARB 502
-#define _gloffset_VertexAttrib4sARB 503
-#define _gloffset_VertexAttrib4svARB 504
-#define _gloffset_VertexAttrib4ubvARB 505
-#define _gloffset_VertexAttrib4uivARB 506
-#define _gloffset_VertexAttrib4usvARB 507
-#define _gloffset_VertexAttribPointerARB 508
-#define _gloffset_BindBufferARB 509
-#define _gloffset_BufferDataARB 510
-#define _gloffset_BufferSubDataARB 511
-#define _gloffset_DeleteBuffersARB 512
-#define _gloffset_GenBuffersARB 513
-#define _gloffset_GetBufferParameterivARB 514
-#define _gloffset_GetBufferPointervARB 515
-#define _gloffset_GetBufferSubDataARB 516
-#define _gloffset_IsBufferARB 517
-#define _gloffset_MapBufferARB 518
-#define _gloffset_UnmapBufferARB 519
-#define _gloffset_BeginQueryARB 520
-#define _gloffset_DeleteQueriesARB 521
-#define _gloffset_EndQueryARB 522
-#define _gloffset_GenQueriesARB 523
-#define _gloffset_GetQueryObjectivARB 524
-#define _gloffset_GetQueryObjectuivARB 525
-#define _gloffset_GetQueryivARB 526
-#define _gloffset_IsQueryARB 527
-#define _gloffset_AttachObjectARB 528
-#define _gloffset_CompileShaderARB 529
-#define _gloffset_CreateProgramObjectARB 530
-#define _gloffset_CreateShaderObjectARB 531
-#define _gloffset_DeleteObjectARB 532
-#define _gloffset_DetachObjectARB 533
-#define _gloffset_GetActiveUniformARB 534
-#define _gloffset_GetAttachedObjectsARB 535
-#define _gloffset_GetHandleARB 536
-#define _gloffset_GetInfoLogARB 537
-#define _gloffset_GetObjectParameterfvARB 538
-#define _gloffset_GetObjectParameterivARB 539
-#define _gloffset_GetShaderSourceARB 540
-#define _gloffset_GetUniformLocationARB 541
-#define _gloffset_GetUniformfvARB 542
-#define _gloffset_GetUniformivARB 543
-#define _gloffset_LinkProgramARB 544
-#define _gloffset_ShaderSourceARB 545
-#define _gloffset_Uniform1fARB 546
-#define _gloffset_Uniform1fvARB 547
-#define _gloffset_Uniform1iARB 548
-#define _gloffset_Uniform1ivARB 549
-#define _gloffset_Uniform2fARB 550
-#define _gloffset_Uniform2fvARB 551
-#define _gloffset_Uniform2iARB 552
-#define _gloffset_Uniform2ivARB 553
-#define _gloffset_Uniform3fARB 554
-#define _gloffset_Uniform3fvARB 555
-#define _gloffset_Uniform3iARB 556
-#define _gloffset_Uniform3ivARB 557
-#define _gloffset_Uniform4fARB 558
-#define _gloffset_Uniform4fvARB 559
-#define _gloffset_Uniform4iARB 560
-#define _gloffset_Uniform4ivARB 561
-#define _gloffset_UniformMatrix2fvARB 562
-#define _gloffset_UniformMatrix3fvARB 563
-#define _gloffset_UniformMatrix4fvARB 564
-#define _gloffset_UseProgramObjectARB 565
-#define _gloffset_ValidateProgramARB 566
-#define _gloffset_BindAttribLocationARB 567
-#define _gloffset_GetActiveAttribARB 568
-#define _gloffset_GetAttribLocationARB 569
-#define _gloffset_DrawBuffersARB 570
-#define _gloffset_ClampColorARB 571
-#define _gloffset_DrawArraysInstancedARB 572
-#define _gloffset_DrawElementsInstancedARB 573
-#define _gloffset_RenderbufferStorageMultisample 574
-#define _gloffset_FramebufferTextureARB 575
-#define _gloffset_FramebufferTextureFaceARB 576
-#define _gloffset_ProgramParameteriARB 577
-#define _gloffset_VertexAttribDivisorARB 578
-#define _gloffset_FlushMappedBufferRange 579
-#define _gloffset_MapBufferRange 580
-#define _gloffset_TexBufferARB 581
-#define _gloffset_BindVertexArray 582
-#define _gloffset_GenVertexArrays 583
-#define _gloffset_GetActiveUniformBlockName 584
-#define _gloffset_GetActiveUniformBlockiv 585
-#define _gloffset_GetActiveUniformName 586
-#define _gloffset_GetActiveUniformsiv 587
-#define _gloffset_GetUniformBlockIndex 588
-#define _gloffset_GetUniformIndices 589
-#define _gloffset_UniformBlockBinding 590
-#define _gloffset_CopyBufferSubData 591
-#define _gloffset_ClientWaitSync 592
-#define _gloffset_DeleteSync 593
-#define _gloffset_FenceSync 594
-#define _gloffset_GetInteger64v 595
-#define _gloffset_GetSynciv 596
-#define _gloffset_IsSync 597
-#define _gloffset_WaitSync 598
-#define _gloffset_DrawElementsBaseVertex 599
-#define _gloffset_DrawElementsInstancedBaseVertex 600
-#define _gloffset_DrawRangeElementsBaseVertex 601
-#define _gloffset_MultiDrawElementsBaseVertex 602
-#define _gloffset_BlendEquationSeparateiARB 603
-#define _gloffset_BlendEquationiARB 604
-#define _gloffset_BlendFuncSeparateiARB 605
-#define _gloffset_BlendFunciARB 606
-#define _gloffset_BindFragDataLocationIndexed 607
-#define _gloffset_GetFragDataIndex 608
-#define _gloffset_BindSampler 609
-#define _gloffset_DeleteSamplers 610
-#define _gloffset_GenSamplers 611
-#define _gloffset_GetSamplerParameterIiv 612
-#define _gloffset_GetSamplerParameterIuiv 613
-#define _gloffset_GetSamplerParameterfv 614
-#define _gloffset_GetSamplerParameteriv 615
-#define _gloffset_IsSampler 616
-#define _gloffset_SamplerParameterIiv 617
-#define _gloffset_SamplerParameterIuiv 618
-#define _gloffset_SamplerParameterf 619
-#define _gloffset_SamplerParameterfv 620
-#define _gloffset_SamplerParameteri 621
-#define _gloffset_SamplerParameteriv 622
-#define _gloffset_QueryCounter 623
-#define _gloffset_ColorP3ui 624
-#define _gloffset_ColorP3uiv 625
-#define _gloffset_ColorP4ui 626
-#define _gloffset_ColorP4uiv 627
-#define _gloffset_MultiTexCoordP1ui 628
-#define _gloffset_MultiTexCoordP1uiv 629
-#define _gloffset_MultiTexCoordP2ui 630
-#define _gloffset_MultiTexCoordP2uiv 631
-#define _gloffset_MultiTexCoordP3ui 632
-#define _gloffset_MultiTexCoordP3uiv 633
-#define _gloffset_MultiTexCoordP4ui 634
-#define _gloffset_MultiTexCoordP4uiv 635
-#define _gloffset_NormalP3ui 636
-#define _gloffset_NormalP3uiv 637
-#define _gloffset_SecondaryColorP3ui 638
-#define _gloffset_SecondaryColorP3uiv 639
-#define _gloffset_TexCoordP1ui 640
-#define _gloffset_TexCoordP1uiv 641
-#define _gloffset_TexCoordP2ui 642
-#define _gloffset_TexCoordP2uiv 643
-#define _gloffset_TexCoordP3ui 644
-#define _gloffset_TexCoordP3uiv 645
-#define _gloffset_TexCoordP4ui 646
-#define _gloffset_TexCoordP4uiv 647
-#define _gloffset_VertexAttribP1ui 648
-#define _gloffset_VertexAttribP1uiv 649
-#define _gloffset_VertexAttribP2ui 650
-#define _gloffset_VertexAttribP2uiv 651
-#define _gloffset_VertexAttribP3ui 652
-#define _gloffset_VertexAttribP3uiv 653
-#define _gloffset_VertexAttribP4ui 654
-#define _gloffset_VertexAttribP4uiv 655
-#define _gloffset_VertexP2ui 656
-#define _gloffset_VertexP2uiv 657
-#define _gloffset_VertexP3ui 658
-#define _gloffset_VertexP3uiv 659
-#define _gloffset_VertexP4ui 660
-#define _gloffset_VertexP4uiv 661
-#define _gloffset_BindTransformFeedback 662
-#define _gloffset_DeleteTransformFeedbacks 663
-#define _gloffset_DrawTransformFeedback 664
-#define _gloffset_GenTransformFeedbacks 665
-#define _gloffset_IsTransformFeedback 666
-#define _gloffset_PauseTransformFeedback 667
-#define _gloffset_ResumeTransformFeedback 668
-#define _gloffset_BeginQueryIndexed 669
-#define _gloffset_DrawTransformFeedbackStream 670
-#define _gloffset_EndQueryIndexed 671
-#define _gloffset_GetQueryIndexediv 672
-#define _gloffset_ClearDepthf 673
-#define _gloffset_DepthRangef 674
-#define _gloffset_GetShaderPrecisionFormat 675
-#define _gloffset_ReleaseShaderCompiler 676
-#define _gloffset_ShaderBinary 677
-#define _gloffset_DebugMessageCallbackARB 678
-#define _gloffset_DebugMessageControlARB 679
-#define _gloffset_DebugMessageInsertARB 680
-#define _gloffset_GetDebugMessageLogARB 681
-#define _gloffset_GetGraphicsResetStatusARB 682
-#define _gloffset_GetnColorTableARB 683
-#define _gloffset_GetnCompressedTexImageARB 684
-#define _gloffset_GetnConvolutionFilterARB 685
-#define _gloffset_GetnHistogramARB 686
-#define _gloffset_GetnMapdvARB 687
-#define _gloffset_GetnMapfvARB 688
-#define _gloffset_GetnMapivARB 689
-#define _gloffset_GetnMinmaxARB 690
-#define _gloffset_GetnPixelMapfvARB 691
-#define _gloffset_GetnPixelMapuivARB 692
-#define _gloffset_GetnPixelMapusvARB 693
-#define _gloffset_GetnPolygonStippleARB 694
-#define _gloffset_GetnSeparableFilterARB 695
-#define _gloffset_GetnTexImageARB 696
-#define _gloffset_GetnUniformdvARB 697
-#define _gloffset_GetnUniformfvARB 698
-#define _gloffset_GetnUniformivARB 699
-#define _gloffset_GetnUniformuivARB 700
-#define _gloffset_ReadnPixelsARB 701
-#define _gloffset_DrawArraysInstancedBaseInstance 702
-#define _gloffset_DrawElementsInstancedBaseInstance 703
-#define _gloffset_DrawElementsInstancedBaseVertexBaseInstance 704
-#define _gloffset_DrawTransformFeedbackInstanced 705
-#define _gloffset_DrawTransformFeedbackStreamInstanced 706
-#define _gloffset_TexStorage1D 707
-#define _gloffset_TexStorage2D 708
-#define _gloffset_TexStorage3D 709
-#define _gloffset_TextureStorage1DEXT 710
-#define _gloffset_TextureStorage2DEXT 711
-#define _gloffset_TextureStorage3DEXT 712
-#define _gloffset_InvalidateBufferData 713
-#define _gloffset_InvalidateBufferSubData 714
-#define _gloffset_InvalidateFramebuffer 715
-#define _gloffset_InvalidateSubFramebuffer 716
-#define _gloffset_InvalidateTexImage 717
-#define _gloffset_InvalidateTexSubImage 718
-#define _gloffset_PolygonOffsetEXT 719
-#define _gloffset_SampleMaskSGIS 720
-#define _gloffset_SamplePatternSGIS 721
-#define _gloffset_ColorPointerEXT 722
-#define _gloffset_EdgeFlagPointerEXT 723
-#define _gloffset_IndexPointerEXT 724
-#define _gloffset_NormalPointerEXT 725
-#define _gloffset_TexCoordPointerEXT 726
-#define _gloffset_VertexPointerEXT 727
-#define _gloffset_PointParameterfEXT 728
-#define _gloffset_PointParameterfvEXT 729
-#define _gloffset_LockArraysEXT 730
-#define _gloffset_UnlockArraysEXT 731
-#define _gloffset_SecondaryColor3bEXT 732
-#define _gloffset_SecondaryColor3bvEXT 733
-#define _gloffset_SecondaryColor3dEXT 734
-#define _gloffset_SecondaryColor3dvEXT 735
-#define _gloffset_SecondaryColor3fEXT 736
-#define _gloffset_SecondaryColor3fvEXT 737
-#define _gloffset_SecondaryColor3iEXT 738
-#define _gloffset_SecondaryColor3ivEXT 739
-#define _gloffset_SecondaryColor3sEXT 740
-#define _gloffset_SecondaryColor3svEXT 741
-#define _gloffset_SecondaryColor3ubEXT 742
-#define _gloffset_SecondaryColor3ubvEXT 743
-#define _gloffset_SecondaryColor3uiEXT 744
-#define _gloffset_SecondaryColor3uivEXT 745
-#define _gloffset_SecondaryColor3usEXT 746
-#define _gloffset_SecondaryColor3usvEXT 747
-#define _gloffset_SecondaryColorPointerEXT 748
-#define _gloffset_MultiDrawArraysEXT 749
-#define _gloffset_MultiDrawElementsEXT 750
-#define _gloffset_FogCoordPointerEXT 751
-#define _gloffset_FogCoorddEXT 752
-#define _gloffset_FogCoorddvEXT 753
-#define _gloffset_FogCoordfEXT 754
-#define _gloffset_FogCoordfvEXT 755
-#define _gloffset_BlendFuncSeparateEXT 756
-#define _gloffset_ResizeBuffersMESA 757
-#define _gloffset_WindowPos2dMESA 758
-#define _gloffset_WindowPos2dvMESA 759
-#define _gloffset_WindowPos2fMESA 760
-#define _gloffset_WindowPos2fvMESA 761
-#define _gloffset_WindowPos2iMESA 762
-#define _gloffset_WindowPos2ivMESA 763
-#define _gloffset_WindowPos2sMESA 764
-#define _gloffset_WindowPos2svMESA 765
-#define _gloffset_WindowPos3dMESA 766
-#define _gloffset_WindowPos3dvMESA 767
-#define _gloffset_WindowPos3fMESA 768
-#define _gloffset_WindowPos3fvMESA 769
-#define _gloffset_WindowPos3iMESA 770
-#define _gloffset_WindowPos3ivMESA 771
-#define _gloffset_WindowPos3sMESA 772
-#define _gloffset_WindowPos3svMESA 773
-#define _gloffset_WindowPos4dMESA 774
-#define _gloffset_WindowPos4dvMESA 775
-#define _gloffset_WindowPos4fMESA 776
-#define _gloffset_WindowPos4fvMESA 777
-#define _gloffset_WindowPos4iMESA 778
-#define _gloffset_WindowPos4ivMESA 779
-#define _gloffset_WindowPos4sMESA 780
-#define _gloffset_WindowPos4svMESA 781
-#define _gloffset_MultiModeDrawArraysIBM 782
-#define _gloffset_MultiModeDrawElementsIBM 783
-#define _gloffset_AreProgramsResidentNV 784
-#define _gloffset_BindProgramNV 785
-#define _gloffset_DeleteProgramsNV 786
-#define _gloffset_ExecuteProgramNV 787
-#define _gloffset_GenProgramsNV 788
-#define _gloffset_GetProgramParameterdvNV 789
-#define _gloffset_GetProgramParameterfvNV 790
-#define _gloffset_GetProgramStringNV 791
-#define _gloffset_GetProgramivNV 792
-#define _gloffset_GetTrackMatrixivNV 793
-#define _gloffset_GetVertexAttribPointervNV 794
-#define _gloffset_GetVertexAttribdvNV 795
-#define _gloffset_GetVertexAttribfvNV 796
-#define _gloffset_GetVertexAttribivNV 797
-#define _gloffset_IsProgramNV 798
-#define _gloffset_LoadProgramNV 799
-#define _gloffset_ProgramParameters4dvNV 800
-#define _gloffset_ProgramParameters4fvNV 801
-#define _gloffset_RequestResidentProgramsNV 802
-#define _gloffset_TrackMatrixNV 803
-#define _gloffset_VertexAttrib1dNV 804
-#define _gloffset_VertexAttrib1dvNV 805
-#define _gloffset_VertexAttrib1fNV 806
-#define _gloffset_VertexAttrib1fvNV 807
-#define _gloffset_VertexAttrib1sNV 808
-#define _gloffset_VertexAttrib1svNV 809
-#define _gloffset_VertexAttrib2dNV 810
-#define _gloffset_VertexAttrib2dvNV 811
-#define _gloffset_VertexAttrib2fNV 812
-#define _gloffset_VertexAttrib2fvNV 813
-#define _gloffset_VertexAttrib2sNV 814
-#define _gloffset_VertexAttrib2svNV 815
-#define _gloffset_VertexAttrib3dNV 816
-#define _gloffset_VertexAttrib3dvNV 817
-#define _gloffset_VertexAttrib3fNV 818
-#define _gloffset_VertexAttrib3fvNV 819
-#define _gloffset_VertexAttrib3sNV 820
-#define _gloffset_VertexAttrib3svNV 821
-#define _gloffset_VertexAttrib4dNV 822
-#define _gloffset_VertexAttrib4dvNV 823
-#define _gloffset_VertexAttrib4fNV 824
-#define _gloffset_VertexAttrib4fvNV 825
-#define _gloffset_VertexAttrib4sNV 826
-#define _gloffset_VertexAttrib4svNV 827
-#define _gloffset_VertexAttrib4ubNV 828
-#define _gloffset_VertexAttrib4ubvNV 829
-#define _gloffset_VertexAttribPointerNV 830
-#define _gloffset_VertexAttribs1dvNV 831
-#define _gloffset_VertexAttribs1fvNV 832
-#define _gloffset_VertexAttribs1svNV 833
-#define _gloffset_VertexAttribs2dvNV 834
-#define _gloffset_VertexAttribs2fvNV 835
-#define _gloffset_VertexAttribs2svNV 836
-#define _gloffset_VertexAttribs3dvNV 837
-#define _gloffset_VertexAttribs3fvNV 838
-#define _gloffset_VertexAttribs3svNV 839
-#define _gloffset_VertexAttribs4dvNV 840
-#define _gloffset_VertexAttribs4fvNV 841
-#define _gloffset_VertexAttribs4svNV 842
-#define _gloffset_VertexAttribs4ubvNV 843
-#define _gloffset_GetTexBumpParameterfvATI 844
-#define _gloffset_GetTexBumpParameterivATI 845
-#define _gloffset_TexBumpParameterfvATI 846
-#define _gloffset_TexBumpParameterivATI 847
-#define _gloffset_AlphaFragmentOp1ATI 848
-#define _gloffset_AlphaFragmentOp2ATI 849
-#define _gloffset_AlphaFragmentOp3ATI 850
-#define _gloffset_BeginFragmentShaderATI 851
-#define _gloffset_BindFragmentShaderATI 852
-#define _gloffset_ColorFragmentOp1ATI 853
-#define _gloffset_ColorFragmentOp2ATI 854
-#define _gloffset_ColorFragmentOp3ATI 855
-#define _gloffset_DeleteFragmentShaderATI 856
-#define _gloffset_EndFragmentShaderATI 857
-#define _gloffset_GenFragmentShadersATI 858
-#define _gloffset_PassTexCoordATI 859
-#define _gloffset_SampleMapATI 860
-#define _gloffset_SetFragmentShaderConstantATI 861
-#define _gloffset_PointParameteriNV 862
-#define _gloffset_PointParameterivNV 863
-#define _gloffset_ActiveStencilFaceEXT 864
-#define _gloffset_BindVertexArrayAPPLE 865
-#define _gloffset_DeleteVertexArraysAPPLE 866
-#define _gloffset_GenVertexArraysAPPLE 867
-#define _gloffset_IsVertexArrayAPPLE 868
-#define _gloffset_GetProgramNamedParameterdvNV 869
-#define _gloffset_GetProgramNamedParameterfvNV 870
-#define _gloffset_ProgramNamedParameter4dNV 871
-#define _gloffset_ProgramNamedParameter4dvNV 872
-#define _gloffset_ProgramNamedParameter4fNV 873
-#define _gloffset_ProgramNamedParameter4fvNV 874
-#define _gloffset_PrimitiveRestartIndexNV 875
-#define _gloffset_PrimitiveRestartNV 876
-#define _gloffset_DepthBoundsEXT 877
-#define _gloffset_BlendEquationSeparateEXT 878
-#define _gloffset_BindFramebufferEXT 879
-#define _gloffset_BindRenderbufferEXT 880
-#define _gloffset_CheckFramebufferStatusEXT 881
-#define _gloffset_DeleteFramebuffersEXT 882
-#define _gloffset_DeleteRenderbuffersEXT 883
-#define _gloffset_FramebufferRenderbufferEXT 884
-#define _gloffset_FramebufferTexture1DEXT 885
-#define _gloffset_FramebufferTexture2DEXT 886
-#define _gloffset_FramebufferTexture3DEXT 887
-#define _gloffset_GenFramebuffersEXT 888
-#define _gloffset_GenRenderbuffersEXT 889
-#define _gloffset_GenerateMipmapEXT 890
-#define _gloffset_GetFramebufferAttachmentParameterivEXT 891
-#define _gloffset_GetRenderbufferParameterivEXT 892
-#define _gloffset_IsFramebufferEXT 893
-#define _gloffset_IsRenderbufferEXT 894
-#define _gloffset_RenderbufferStorageEXT 895
-#define _gloffset_BlitFramebufferEXT 896
-#define _gloffset_BufferParameteriAPPLE 897
-#define _gloffset_FlushMappedBufferRangeAPPLE 898
-#define _gloffset_BindFragDataLocationEXT 899
-#define _gloffset_GetFragDataLocationEXT 900
-#define _gloffset_GetUniformuivEXT 901
-#define _gloffset_GetVertexAttribIivEXT 902
-#define _gloffset_GetVertexAttribIuivEXT 903
-#define _gloffset_Uniform1uiEXT 904
-#define _gloffset_Uniform1uivEXT 905
-#define _gloffset_Uniform2uiEXT 906
-#define _gloffset_Uniform2uivEXT 907
-#define _gloffset_Uniform3uiEXT 908
-#define _gloffset_Uniform3uivEXT 909
-#define _gloffset_Uniform4uiEXT 910
-#define _gloffset_Uniform4uivEXT 911
-#define _gloffset_VertexAttribI1iEXT 912
-#define _gloffset_VertexAttribI1ivEXT 913
-#define _gloffset_VertexAttribI1uiEXT 914
-#define _gloffset_VertexAttribI1uivEXT 915
-#define _gloffset_VertexAttribI2iEXT 916
-#define _gloffset_VertexAttribI2ivEXT 917
-#define _gloffset_VertexAttribI2uiEXT 918
-#define _gloffset_VertexAttribI2uivEXT 919
-#define _gloffset_VertexAttribI3iEXT 920
-#define _gloffset_VertexAttribI3ivEXT 921
-#define _gloffset_VertexAttribI3uiEXT 922
-#define _gloffset_VertexAttribI3uivEXT 923
-#define _gloffset_VertexAttribI4bvEXT 924
-#define _gloffset_VertexAttribI4iEXT 925
-#define _gloffset_VertexAttribI4ivEXT 926
-#define _gloffset_VertexAttribI4svEXT 927
-#define _gloffset_VertexAttribI4ubvEXT 928
-#define _gloffset_VertexAttribI4uiEXT 929
-#define _gloffset_VertexAttribI4uivEXT 930
-#define _gloffset_VertexAttribI4usvEXT 931
-#define _gloffset_VertexAttribIPointerEXT 932
-#define _gloffset_FramebufferTextureLayerEXT 933
-#define _gloffset_ColorMaskIndexedEXT 934
-#define _gloffset_DisableIndexedEXT 935
-#define _gloffset_EnableIndexedEXT 936
-#define _gloffset_GetBooleanIndexedvEXT 937
-#define _gloffset_GetIntegerIndexedvEXT 938
-#define _gloffset_IsEnabledIndexedEXT 939
-#define _gloffset_ClearColorIiEXT 940
-#define _gloffset_ClearColorIuiEXT 941
-#define _gloffset_GetTexParameterIivEXT 942
-#define _gloffset_GetTexParameterIuivEXT 943
-#define _gloffset_TexParameterIivEXT 944
-#define _gloffset_TexParameterIuivEXT 945
-#define _gloffset_BeginConditionalRenderNV 946
-#define _gloffset_EndConditionalRenderNV 947
-#define _gloffset_BeginTransformFeedbackEXT 948
-#define _gloffset_BindBufferBaseEXT 949
-#define _gloffset_BindBufferOffsetEXT 950
-#define _gloffset_BindBufferRangeEXT 951
-#define _gloffset_EndTransformFeedbackEXT 952
-#define _gloffset_GetTransformFeedbackVaryingEXT 953
-#define _gloffset_TransformFeedbackVaryingsEXT 954
-#define _gloffset_ProvokingVertexEXT 955
-#define _gloffset_GetObjectParameterivAPPLE 956
-#define _gloffset_ObjectPurgeableAPPLE 957
-#define _gloffset_ObjectUnpurgeableAPPLE 958
-#define _gloffset_ActiveProgramEXT 959
-#define _gloffset_CreateShaderProgramEXT 960
-#define _gloffset_UseShaderProgramEXT 961
-#define _gloffset_TextureBarrierNV 962
-#define _gloffset_StencilFuncSeparateATI 963
-#define _gloffset_ProgramEnvParameters4fvEXT 964
-#define _gloffset_ProgramLocalParameters4fvEXT 965
-#define _gloffset_GetQueryObjecti64vEXT 966
-#define _gloffset_GetQueryObjectui64vEXT 967
-#define _gloffset_EGLImageTargetRenderbufferStorageOES 968
-#define _gloffset_EGLImageTargetTexture2DOES 969
+#define _gloffset_ClearBufferfi 430
+#define _gloffset_ClearBufferfv 431
+#define _gloffset_ClearBufferiv 432
+#define _gloffset_ClearBufferuiv 433
+#define _gloffset_GetStringi 434
+#define _gloffset_FramebufferTexture 435
+#define _gloffset_GetBufferParameteri64v 436
+#define _gloffset_GetInteger64i_v 437
+#define _gloffset_LoadTransposeMatrixdARB 438
+#define _gloffset_LoadTransposeMatrixfARB 439
+#define _gloffset_MultTransposeMatrixdARB 440
+#define _gloffset_MultTransposeMatrixfARB 441
+#define _gloffset_SampleCoverageARB 442
+#define _gloffset_CompressedTexImage1DARB 443
+#define _gloffset_CompressedTexImage2DARB 444
+#define _gloffset_CompressedTexImage3DARB 445
+#define _gloffset_CompressedTexSubImage1DARB 446
+#define _gloffset_CompressedTexSubImage2DARB 447
+#define _gloffset_CompressedTexSubImage3DARB 448
+#define _gloffset_GetCompressedTexImageARB 449
+#define _gloffset_DisableVertexAttribArrayARB 450
+#define _gloffset_EnableVertexAttribArrayARB 451
+#define _gloffset_GetProgramEnvParameterdvARB 452
+#define _gloffset_GetProgramEnvParameterfvARB 453
+#define _gloffset_GetProgramLocalParameterdvARB 454
+#define _gloffset_GetProgramLocalParameterfvARB 455
+#define _gloffset_GetProgramStringARB 456
+#define _gloffset_GetProgramivARB 457
+#define _gloffset_GetVertexAttribdvARB 458
+#define _gloffset_GetVertexAttribfvARB 459
+#define _gloffset_GetVertexAttribivARB 460
+#define _gloffset_ProgramEnvParameter4dARB 461
+#define _gloffset_ProgramEnvParameter4dvARB 462
+#define _gloffset_ProgramEnvParameter4fARB 463
+#define _gloffset_ProgramEnvParameter4fvARB 464
+#define _gloffset_ProgramLocalParameter4dARB 465
+#define _gloffset_ProgramLocalParameter4dvARB 466
+#define _gloffset_ProgramLocalParameter4fARB 467
+#define _gloffset_ProgramLocalParameter4fvARB 468
+#define _gloffset_ProgramStringARB 469
+#define _gloffset_VertexAttrib1dARB 470
+#define _gloffset_VertexAttrib1dvARB 471
+#define _gloffset_VertexAttrib1fARB 472
+#define _gloffset_VertexAttrib1fvARB 473
+#define _gloffset_VertexAttrib1sARB 474
+#define _gloffset_VertexAttrib1svARB 475
+#define _gloffset_VertexAttrib2dARB 476
+#define _gloffset_VertexAttrib2dvARB 477
+#define _gloffset_VertexAttrib2fARB 478
+#define _gloffset_VertexAttrib2fvARB 479
+#define _gloffset_VertexAttrib2sARB 480
+#define _gloffset_VertexAttrib2svARB 481
+#define _gloffset_VertexAttrib3dARB 482
+#define _gloffset_VertexAttrib3dvARB 483
+#define _gloffset_VertexAttrib3fARB 484
+#define _gloffset_VertexAttrib3fvARB 485
+#define _gloffset_VertexAttrib3sARB 486
+#define _gloffset_VertexAttrib3svARB 487
+#define _gloffset_VertexAttrib4NbvARB 488
+#define _gloffset_VertexAttrib4NivARB 489
+#define _gloffset_VertexAttrib4NsvARB 490
+#define _gloffset_VertexAttrib4NubARB 491
+#define _gloffset_VertexAttrib4NubvARB 492
+#define _gloffset_VertexAttrib4NuivARB 493
+#define _gloffset_VertexAttrib4NusvARB 494
+#define _gloffset_VertexAttrib4bvARB 495
+#define _gloffset_VertexAttrib4dARB 496
+#define _gloffset_VertexAttrib4dvARB 497
+#define _gloffset_VertexAttrib4fARB 498
+#define _gloffset_VertexAttrib4fvARB 499
+#define _gloffset_VertexAttrib4ivARB 500
+#define _gloffset_VertexAttrib4sARB 501
+#define _gloffset_VertexAttrib4svARB 502
+#define _gloffset_VertexAttrib4ubvARB 503
+#define _gloffset_VertexAttrib4uivARB 504
+#define _gloffset_VertexAttrib4usvARB 505
+#define _gloffset_VertexAttribPointerARB 506
+#define _gloffset_BindBufferARB 507
+#define _gloffset_BufferDataARB 508
+#define _gloffset_BufferSubDataARB 509
+#define _gloffset_DeleteBuffersARB 510
+#define _gloffset_GenBuffersARB 511
+#define _gloffset_GetBufferParameterivARB 512
+#define _gloffset_GetBufferPointervARB 513
+#define _gloffset_GetBufferSubDataARB 514
+#define _gloffset_IsBufferARB 515
+#define _gloffset_MapBufferARB 516
+#define _gloffset_UnmapBufferARB 517
+#define _gloffset_BeginQueryARB 518
+#define _gloffset_DeleteQueriesARB 519
+#define _gloffset_EndQueryARB 520
+#define _gloffset_GenQueriesARB 521
+#define _gloffset_GetQueryObjectivARB 522
+#define _gloffset_GetQueryObjectuivARB 523
+#define _gloffset_GetQueryivARB 524
+#define _gloffset_IsQueryARB 525
+#define _gloffset_AttachObjectARB 526
+#define _gloffset_CompileShaderARB 527
+#define _gloffset_CreateProgramObjectARB 528
+#define _gloffset_CreateShaderObjectARB 529
+#define _gloffset_DeleteObjectARB 530
+#define _gloffset_DetachObjectARB 531
+#define _gloffset_GetActiveUniformARB 532
+#define _gloffset_GetAttachedObjectsARB 533
+#define _gloffset_GetHandleARB 534
+#define _gloffset_GetInfoLogARB 535
+#define _gloffset_GetObjectParameterfvARB 536
+#define _gloffset_GetObjectParameterivARB 537
+#define _gloffset_GetShaderSourceARB 538
+#define _gloffset_GetUniformLocationARB 539
+#define _gloffset_GetUniformfvARB 540
+#define _gloffset_GetUniformivARB 541
+#define _gloffset_LinkProgramARB 542
+#define _gloffset_ShaderSourceARB 543
+#define _gloffset_Uniform1fARB 544
+#define _gloffset_Uniform1fvARB 545
+#define _gloffset_Uniform1iARB 546
+#define _gloffset_Uniform1ivARB 547
+#define _gloffset_Uniform2fARB 548
+#define _gloffset_Uniform2fvARB 549
+#define _gloffset_Uniform2iARB 550
+#define _gloffset_Uniform2ivARB 551
+#define _gloffset_Uniform3fARB 552
+#define _gloffset_Uniform3fvARB 553
+#define _gloffset_Uniform3iARB 554
+#define _gloffset_Uniform3ivARB 555
+#define _gloffset_Uniform4fARB 556
+#define _gloffset_Uniform4fvARB 557
+#define _gloffset_Uniform4iARB 558
+#define _gloffset_Uniform4ivARB 559
+#define _gloffset_UniformMatrix2fvARB 560
+#define _gloffset_UniformMatrix3fvARB 561
+#define _gloffset_UniformMatrix4fvARB 562
+#define _gloffset_UseProgramObjectARB 563
+#define _gloffset_ValidateProgramARB 564
+#define _gloffset_BindAttribLocationARB 565
+#define _gloffset_GetActiveAttribARB 566
+#define _gloffset_GetAttribLocationARB 567
+#define _gloffset_DrawBuffersARB 568
+#define _gloffset_ClampColorARB 569
+#define _gloffset_DrawArraysInstancedARB 570
+#define _gloffset_DrawElementsInstancedARB 571
+#define _gloffset_RenderbufferStorageMultisample 572
+#define _gloffset_FramebufferTextureFaceARB 573
+#define _gloffset_VertexAttribDivisorARB 574
+#define _gloffset_FlushMappedBufferRange 575
+#define _gloffset_MapBufferRange 576
+#define _gloffset_TexBufferARB 577
+#define _gloffset_BindVertexArray 578
+#define _gloffset_GenVertexArrays 579
+#define _gloffset_GetActiveUniformBlockName 580
+#define _gloffset_GetActiveUniformBlockiv 581
+#define _gloffset_GetActiveUniformName 582
+#define _gloffset_GetActiveUniformsiv 583
+#define _gloffset_GetUniformBlockIndex 584
+#define _gloffset_GetUniformIndices 585
+#define _gloffset_UniformBlockBinding 586
+#define _gloffset_CopyBufferSubData 587
+#define _gloffset_ClientWaitSync 588
+#define _gloffset_DeleteSync 589
+#define _gloffset_FenceSync 590
+#define _gloffset_GetInteger64v 591
+#define _gloffset_GetSynciv 592
+#define _gloffset_IsSync 593
+#define _gloffset_WaitSync 594
+#define _gloffset_DrawElementsBaseVertex 595
+#define _gloffset_DrawElementsInstancedBaseVertex 596
+#define _gloffset_DrawRangeElementsBaseVertex 597
+#define _gloffset_MultiDrawElementsBaseVertex 598
+#define _gloffset_BlendEquationSeparateiARB 599
+#define _gloffset_BlendEquationiARB 600
+#define _gloffset_BlendFuncSeparateiARB 601
+#define _gloffset_BlendFunciARB 602
+#define _gloffset_BindFragDataLocationIndexed 603
+#define _gloffset_GetFragDataIndex 604
+#define _gloffset_BindSampler 605
+#define _gloffset_DeleteSamplers 606
+#define _gloffset_GenSamplers 607
+#define _gloffset_GetSamplerParameterIiv 608
+#define _gloffset_GetSamplerParameterIuiv 609
+#define _gloffset_GetSamplerParameterfv 610
+#define _gloffset_GetSamplerParameteriv 611
+#define _gloffset_IsSampler 612
+#define _gloffset_SamplerParameterIiv 613
+#define _gloffset_SamplerParameterIuiv 614
+#define _gloffset_SamplerParameterf 615
+#define _gloffset_SamplerParameterfv 616
+#define _gloffset_SamplerParameteri 617
+#define _gloffset_SamplerParameteriv 618
+#define _gloffset_QueryCounter 619
+#define _gloffset_ColorP3ui 620
+#define _gloffset_ColorP3uiv 621
+#define _gloffset_ColorP4ui 622
+#define _gloffset_ColorP4uiv 623
+#define _gloffset_MultiTexCoordP1ui 624
+#define _gloffset_MultiTexCoordP1uiv 625
+#define _gloffset_MultiTexCoordP2ui 626
+#define _gloffset_MultiTexCoordP2uiv 627
+#define _gloffset_MultiTexCoordP3ui 628
+#define _gloffset_MultiTexCoordP3uiv 629
+#define _gloffset_MultiTexCoordP4ui 630
+#define _gloffset_MultiTexCoordP4uiv 631
+#define _gloffset_NormalP3ui 632
+#define _gloffset_NormalP3uiv 633
+#define _gloffset_SecondaryColorP3ui 634
+#define _gloffset_SecondaryColorP3uiv 635
+#define _gloffset_TexCoordP1ui 636
+#define _gloffset_TexCoordP1uiv 637
+#define _gloffset_TexCoordP2ui 638
+#define _gloffset_TexCoordP2uiv 639
+#define _gloffset_TexCoordP3ui 640
+#define _gloffset_TexCoordP3uiv 641
+#define _gloffset_TexCoordP4ui 642
+#define _gloffset_TexCoordP4uiv 643
+#define _gloffset_VertexAttribP1ui 644
+#define _gloffset_VertexAttribP1uiv 645
+#define _gloffset_VertexAttribP2ui 646
+#define _gloffset_VertexAttribP2uiv 647
+#define _gloffset_VertexAttribP3ui 648
+#define _gloffset_VertexAttribP3uiv 649
+#define _gloffset_VertexAttribP4ui 650
+#define _gloffset_VertexAttribP4uiv 651
+#define _gloffset_VertexP2ui 652
+#define _gloffset_VertexP2uiv 653
+#define _gloffset_VertexP3ui 654
+#define _gloffset_VertexP3uiv 655
+#define _gloffset_VertexP4ui 656
+#define _gloffset_VertexP4uiv 657
+#define _gloffset_BindTransformFeedback 658
+#define _gloffset_DeleteTransformFeedbacks 659
+#define _gloffset_DrawTransformFeedback 660
+#define _gloffset_GenTransformFeedbacks 661
+#define _gloffset_IsTransformFeedback 662
+#define _gloffset_PauseTransformFeedback 663
+#define _gloffset_ResumeTransformFeedback 664
+#define _gloffset_BeginQueryIndexed 665
+#define _gloffset_DrawTransformFeedbackStream 666
+#define _gloffset_EndQueryIndexed 667
+#define _gloffset_GetQueryIndexediv 668
+#define _gloffset_ClearDepthf 669
+#define _gloffset_DepthRangef 670
+#define _gloffset_GetShaderPrecisionFormat 671
+#define _gloffset_ReleaseShaderCompiler 672
+#define _gloffset_ShaderBinary 673
+#define _gloffset_GetProgramBinary 674
+#define _gloffset_ProgramBinary 675
+#define _gloffset_ProgramParameteri 676
+#define _gloffset_DebugMessageCallbackARB 677
+#define _gloffset_DebugMessageControlARB 678
+#define _gloffset_DebugMessageInsertARB 679
+#define _gloffset_GetDebugMessageLogARB 680
+#define _gloffset_GetGraphicsResetStatusARB 681
+#define _gloffset_GetnColorTableARB 682
+#define _gloffset_GetnCompressedTexImageARB 683
+#define _gloffset_GetnConvolutionFilterARB 684
+#define _gloffset_GetnHistogramARB 685
+#define _gloffset_GetnMapdvARB 686
+#define _gloffset_GetnMapfvARB 687
+#define _gloffset_GetnMapivARB 688
+#define _gloffset_GetnMinmaxARB 689
+#define _gloffset_GetnPixelMapfvARB 690
+#define _gloffset_GetnPixelMapuivARB 691
+#define _gloffset_GetnPixelMapusvARB 692
+#define _gloffset_GetnPolygonStippleARB 693
+#define _gloffset_GetnSeparableFilterARB 694
+#define _gloffset_GetnTexImageARB 695
+#define _gloffset_GetnUniformdvARB 696
+#define _gloffset_GetnUniformfvARB 697
+#define _gloffset_GetnUniformivARB 698
+#define _gloffset_GetnUniformuivARB 699
+#define _gloffset_ReadnPixelsARB 700
+#define _gloffset_DrawArraysInstancedBaseInstance 701
+#define _gloffset_DrawElementsInstancedBaseInstance 702
+#define _gloffset_DrawElementsInstancedBaseVertexBaseInstance 703
+#define _gloffset_DrawTransformFeedbackInstanced 704
+#define _gloffset_DrawTransformFeedbackStreamInstanced 705
+#define _gloffset_TexStorage1D 706
+#define _gloffset_TexStorage2D 707
+#define _gloffset_TexStorage3D 708
+#define _gloffset_TextureStorage1DEXT 709
+#define _gloffset_TextureStorage2DEXT 710
+#define _gloffset_TextureStorage3DEXT 711
+#define _gloffset_InvalidateBufferData 712
+#define _gloffset_InvalidateBufferSubData 713
+#define _gloffset_InvalidateFramebuffer 714
+#define _gloffset_InvalidateSubFramebuffer 715
+#define _gloffset_InvalidateTexImage 716
+#define _gloffset_InvalidateTexSubImage 717
+#define _gloffset_PolygonOffsetEXT 718
+#define _gloffset_SampleMaskSGIS 719
+#define _gloffset_SamplePatternSGIS 720
+#define _gloffset_ColorPointerEXT 721
+#define _gloffset_EdgeFlagPointerEXT 722
+#define _gloffset_IndexPointerEXT 723
+#define _gloffset_NormalPointerEXT 724
+#define _gloffset_TexCoordPointerEXT 725
+#define _gloffset_VertexPointerEXT 726
+#define _gloffset_PointParameterfEXT 727
+#define _gloffset_PointParameterfvEXT 728
+#define _gloffset_LockArraysEXT 729
+#define _gloffset_UnlockArraysEXT 730
+#define _gloffset_SecondaryColor3bEXT 731
+#define _gloffset_SecondaryColor3bvEXT 732
+#define _gloffset_SecondaryColor3dEXT 733
+#define _gloffset_SecondaryColor3dvEXT 734
+#define _gloffset_SecondaryColor3fEXT 735
+#define _gloffset_SecondaryColor3fvEXT 736
+#define _gloffset_SecondaryColor3iEXT 737
+#define _gloffset_SecondaryColor3ivEXT 738
+#define _gloffset_SecondaryColor3sEXT 739
+#define _gloffset_SecondaryColor3svEXT 740
+#define _gloffset_SecondaryColor3ubEXT 741
+#define _gloffset_SecondaryColor3ubvEXT 742
+#define _gloffset_SecondaryColor3uiEXT 743
+#define _gloffset_SecondaryColor3uivEXT 744
+#define _gloffset_SecondaryColor3usEXT 745
+#define _gloffset_SecondaryColor3usvEXT 746
+#define _gloffset_SecondaryColorPointerEXT 747
+#define _gloffset_MultiDrawArraysEXT 748
+#define _gloffset_MultiDrawElementsEXT 749
+#define _gloffset_FogCoordPointerEXT 750
+#define _gloffset_FogCoorddEXT 751
+#define _gloffset_FogCoorddvEXT 752
+#define _gloffset_FogCoordfEXT 753
+#define _gloffset_FogCoordfvEXT 754
+#define _gloffset_BlendFuncSeparateEXT 755
+#define _gloffset_ResizeBuffersMESA 756
+#define _gloffset_WindowPos2dMESA 757
+#define _gloffset_WindowPos2dvMESA 758
+#define _gloffset_WindowPos2fMESA 759
+#define _gloffset_WindowPos2fvMESA 760
+#define _gloffset_WindowPos2iMESA 761
+#define _gloffset_WindowPos2ivMESA 762
+#define _gloffset_WindowPos2sMESA 763
+#define _gloffset_WindowPos2svMESA 764
+#define _gloffset_WindowPos3dMESA 765
+#define _gloffset_WindowPos3dvMESA 766
+#define _gloffset_WindowPos3fMESA 767
+#define _gloffset_WindowPos3fvMESA 768
+#define _gloffset_WindowPos3iMESA 769
+#define _gloffset_WindowPos3ivMESA 770
+#define _gloffset_WindowPos3sMESA 771
+#define _gloffset_WindowPos3svMESA 772
+#define _gloffset_WindowPos4dMESA 773
+#define _gloffset_WindowPos4dvMESA 774
+#define _gloffset_WindowPos4fMESA 775
+#define _gloffset_WindowPos4fvMESA 776
+#define _gloffset_WindowPos4iMESA 777
+#define _gloffset_WindowPos4ivMESA 778
+#define _gloffset_WindowPos4sMESA 779
+#define _gloffset_WindowPos4svMESA 780
+#define _gloffset_MultiModeDrawArraysIBM 781
+#define _gloffset_MultiModeDrawElementsIBM 782
+#define _gloffset_AreProgramsResidentNV 783
+#define _gloffset_BindProgramNV 784
+#define _gloffset_DeleteProgramsNV 785
+#define _gloffset_ExecuteProgramNV 786
+#define _gloffset_GenProgramsNV 787
+#define _gloffset_GetProgramParameterdvNV 788
+#define _gloffset_GetProgramParameterfvNV 789
+#define _gloffset_GetProgramStringNV 790
+#define _gloffset_GetProgramivNV 791
+#define _gloffset_GetTrackMatrixivNV 792
+#define _gloffset_GetVertexAttribPointervNV 793
+#define _gloffset_GetVertexAttribdvNV 794
+#define _gloffset_GetVertexAttribfvNV 795
+#define _gloffset_GetVertexAttribivNV 796
+#define _gloffset_IsProgramNV 797
+#define _gloffset_LoadProgramNV 798
+#define _gloffset_ProgramParameters4dvNV 799
+#define _gloffset_ProgramParameters4fvNV 800
+#define _gloffset_RequestResidentProgramsNV 801
+#define _gloffset_TrackMatrixNV 802
+#define _gloffset_VertexAttrib1dNV 803
+#define _gloffset_VertexAttrib1dvNV 804
+#define _gloffset_VertexAttrib1fNV 805
+#define _gloffset_VertexAttrib1fvNV 806
+#define _gloffset_VertexAttrib1sNV 807
+#define _gloffset_VertexAttrib1svNV 808
+#define _gloffset_VertexAttrib2dNV 809
+#define _gloffset_VertexAttrib2dvNV 810
+#define _gloffset_VertexAttrib2fNV 811
+#define _gloffset_VertexAttrib2fvNV 812
+#define _gloffset_VertexAttrib2sNV 813
+#define _gloffset_VertexAttrib2svNV 814
+#define _gloffset_VertexAttrib3dNV 815
+#define _gloffset_VertexAttrib3dvNV 816
+#define _gloffset_VertexAttrib3fNV 817
+#define _gloffset_VertexAttrib3fvNV 818
+#define _gloffset_VertexAttrib3sNV 819
+#define _gloffset_VertexAttrib3svNV 820
+#define _gloffset_VertexAttrib4dNV 821
+#define _gloffset_VertexAttrib4dvNV 822
+#define _gloffset_VertexAttrib4fNV 823
+#define _gloffset_VertexAttrib4fvNV 824
+#define _gloffset_VertexAttrib4sNV 825
+#define _gloffset_VertexAttrib4svNV 826
+#define _gloffset_VertexAttrib4ubNV 827
+#define _gloffset_VertexAttrib4ubvNV 828
+#define _gloffset_VertexAttribPointerNV 829
+#define _gloffset_VertexAttribs1dvNV 830
+#define _gloffset_VertexAttribs1fvNV 831
+#define _gloffset_VertexAttribs1svNV 832
+#define _gloffset_VertexAttribs2dvNV 833
+#define _gloffset_VertexAttribs2fvNV 834
+#define _gloffset_VertexAttribs2svNV 835
+#define _gloffset_VertexAttribs3dvNV 836
+#define _gloffset_VertexAttribs3fvNV 837
+#define _gloffset_VertexAttribs3svNV 838
+#define _gloffset_VertexAttribs4dvNV 839
+#define _gloffset_VertexAttribs4fvNV 840
+#define _gloffset_VertexAttribs4svNV 841
+#define _gloffset_VertexAttribs4ubvNV 842
+#define _gloffset_GetTexBumpParameterfvATI 843
+#define _gloffset_GetTexBumpParameterivATI 844
+#define _gloffset_TexBumpParameterfvATI 845
+#define _gloffset_TexBumpParameterivATI 846
+#define _gloffset_AlphaFragmentOp1ATI 847
+#define _gloffset_AlphaFragmentOp2ATI 848
+#define _gloffset_AlphaFragmentOp3ATI 849
+#define _gloffset_BeginFragmentShaderATI 850
+#define _gloffset_BindFragmentShaderATI 851
+#define _gloffset_ColorFragmentOp1ATI 852
+#define _gloffset_ColorFragmentOp2ATI 853
+#define _gloffset_ColorFragmentOp3ATI 854
+#define _gloffset_DeleteFragmentShaderATI 855
+#define _gloffset_EndFragmentShaderATI 856
+#define _gloffset_GenFragmentShadersATI 857
+#define _gloffset_PassTexCoordATI 858
+#define _gloffset_SampleMapATI 859
+#define _gloffset_SetFragmentShaderConstantATI 860
+#define _gloffset_PointParameteriNV 861
+#define _gloffset_PointParameterivNV 862
+#define _gloffset_ActiveStencilFaceEXT 863
+#define _gloffset_BindVertexArrayAPPLE 864
+#define _gloffset_DeleteVertexArraysAPPLE 865
+#define _gloffset_GenVertexArraysAPPLE 866
+#define _gloffset_IsVertexArrayAPPLE 867
+#define _gloffset_GetProgramNamedParameterdvNV 868
+#define _gloffset_GetProgramNamedParameterfvNV 869
+#define _gloffset_ProgramNamedParameter4dNV 870
+#define _gloffset_ProgramNamedParameter4dvNV 871
+#define _gloffset_ProgramNamedParameter4fNV 872
+#define _gloffset_ProgramNamedParameter4fvNV 873
+#define _gloffset_PrimitiveRestartIndexNV 874
+#define _gloffset_PrimitiveRestartNV 875
+#define _gloffset_DepthBoundsEXT 876
+#define _gloffset_BlendEquationSeparateEXT 877
+#define _gloffset_BindFramebufferEXT 878
+#define _gloffset_BindRenderbufferEXT 879
+#define _gloffset_CheckFramebufferStatusEXT 880
+#define _gloffset_DeleteFramebuffersEXT 881
+#define _gloffset_DeleteRenderbuffersEXT 882
+#define _gloffset_FramebufferRenderbufferEXT 883
+#define _gloffset_FramebufferTexture1DEXT 884
+#define _gloffset_FramebufferTexture2DEXT 885
+#define _gloffset_FramebufferTexture3DEXT 886
+#define _gloffset_GenFramebuffersEXT 887
+#define _gloffset_GenRenderbuffersEXT 888
+#define _gloffset_GenerateMipmapEXT 889
+#define _gloffset_GetFramebufferAttachmentParameterivEXT 890
+#define _gloffset_GetRenderbufferParameterivEXT 891
+#define _gloffset_IsFramebufferEXT 892
+#define _gloffset_IsRenderbufferEXT 893
+#define _gloffset_RenderbufferStorageEXT 894
+#define _gloffset_BlitFramebufferEXT 895
+#define _gloffset_BufferParameteriAPPLE 896
+#define _gloffset_FlushMappedBufferRangeAPPLE 897
+#define _gloffset_BindFragDataLocationEXT 898
+#define _gloffset_GetFragDataLocationEXT 899
+#define _gloffset_GetUniformuivEXT 900
+#define _gloffset_GetVertexAttribIivEXT 901
+#define _gloffset_GetVertexAttribIuivEXT 902
+#define _gloffset_Uniform1uiEXT 903
+#define _gloffset_Uniform1uivEXT 904
+#define _gloffset_Uniform2uiEXT 905
+#define _gloffset_Uniform2uivEXT 906
+#define _gloffset_Uniform3uiEXT 907
+#define _gloffset_Uniform3uivEXT 908
+#define _gloffset_Uniform4uiEXT 909
+#define _gloffset_Uniform4uivEXT 910
+#define _gloffset_VertexAttribI1iEXT 911
+#define _gloffset_VertexAttribI1ivEXT 912
+#define _gloffset_VertexAttribI1uiEXT 913
+#define _gloffset_VertexAttribI1uivEXT 914
+#define _gloffset_VertexAttribI2iEXT 915
+#define _gloffset_VertexAttribI2ivEXT 916
+#define _gloffset_VertexAttribI2uiEXT 917
+#define _gloffset_VertexAttribI2uivEXT 918
+#define _gloffset_VertexAttribI3iEXT 919
+#define _gloffset_VertexAttribI3ivEXT 920
+#define _gloffset_VertexAttribI3uiEXT 921
+#define _gloffset_VertexAttribI3uivEXT 922
+#define _gloffset_VertexAttribI4bvEXT 923
+#define _gloffset_VertexAttribI4iEXT 924
+#define _gloffset_VertexAttribI4ivEXT 925
+#define _gloffset_VertexAttribI4svEXT 926
+#define _gloffset_VertexAttribI4ubvEXT 927
+#define _gloffset_VertexAttribI4uiEXT 928
+#define _gloffset_VertexAttribI4uivEXT 929
+#define _gloffset_VertexAttribI4usvEXT 930
+#define _gloffset_VertexAttribIPointerEXT 931
+#define _gloffset_FramebufferTextureLayerEXT 932
+#define _gloffset_ColorMaskIndexedEXT 933
+#define _gloffset_DisableIndexedEXT 934
+#define _gloffset_EnableIndexedEXT 935
+#define _gloffset_GetBooleanIndexedvEXT 936
+#define _gloffset_GetIntegerIndexedvEXT 937
+#define _gloffset_IsEnabledIndexedEXT 938
+#define _gloffset_ClearColorIiEXT 939
+#define _gloffset_ClearColorIuiEXT 940
+#define _gloffset_GetTexParameterIivEXT 941
+#define _gloffset_GetTexParameterIuivEXT 942
+#define _gloffset_TexParameterIivEXT 943
+#define _gloffset_TexParameterIuivEXT 944
+#define _gloffset_BeginConditionalRenderNV 945
+#define _gloffset_EndConditionalRenderNV 946
+#define _gloffset_BeginTransformFeedbackEXT 947
+#define _gloffset_BindBufferBaseEXT 948
+#define _gloffset_BindBufferOffsetEXT 949
+#define _gloffset_BindBufferRangeEXT 950
+#define _gloffset_EndTransformFeedbackEXT 951
+#define _gloffset_GetTransformFeedbackVaryingEXT 952
+#define _gloffset_TransformFeedbackVaryingsEXT 953
+#define _gloffset_ProvokingVertexEXT 954
+#define _gloffset_GetObjectParameterivAPPLE 955
+#define _gloffset_ObjectPurgeableAPPLE 956
+#define _gloffset_ObjectUnpurgeableAPPLE 957
+#define _gloffset_ActiveProgramEXT 958
+#define _gloffset_CreateShaderProgramEXT 959
+#define _gloffset_UseShaderProgramEXT 960
+#define _gloffset_TextureBarrierNV 961
+#define _gloffset_StencilFuncSeparateATI 962
+#define _gloffset_ProgramEnvParameters4fvEXT 963
+#define _gloffset_ProgramLocalParameters4fvEXT 964
+#define _gloffset_GetQueryObjecti64vEXT 965
+#define _gloffset_GetQueryObjectui64vEXT 966
+#define _gloffset_EGLImageTargetRenderbufferStorageOES 967
+#define _gloffset_EGLImageTargetTexture2DOES 968
#else /* !FEATURE_remap_table */
-#define driDispatchRemapTable_size 562
+#define driDispatchRemapTable_size 561
extern int driDispatchRemapTable[ driDispatchRemapTable_size ];
#define AttachShader_remap_index 0
@@ -1072,546 +1071,545 @@ extern int driDispatchRemapTable[ driDispatchRemapTable_size ];
#define UniformMatrix3x4fv_remap_index 19
#define UniformMatrix4x2fv_remap_index 20
#define UniformMatrix4x3fv_remap_index 21
-#define ClampColor_remap_index 22
-#define ClearBufferfi_remap_index 23
-#define ClearBufferfv_remap_index 24
-#define ClearBufferiv_remap_index 25
-#define ClearBufferuiv_remap_index 26
-#define GetStringi_remap_index 27
-#define FramebufferTexture_remap_index 28
-#define GetBufferParameteri64v_remap_index 29
-#define GetInteger64i_v_remap_index 30
-#define VertexAttribDivisor_remap_index 31
-#define LoadTransposeMatrixdARB_remap_index 32
-#define LoadTransposeMatrixfARB_remap_index 33
-#define MultTransposeMatrixdARB_remap_index 34
-#define MultTransposeMatrixfARB_remap_index 35
-#define SampleCoverageARB_remap_index 36
-#define CompressedTexImage1DARB_remap_index 37
-#define CompressedTexImage2DARB_remap_index 38
-#define CompressedTexImage3DARB_remap_index 39
-#define CompressedTexSubImage1DARB_remap_index 40
-#define CompressedTexSubImage2DARB_remap_index 41
-#define CompressedTexSubImage3DARB_remap_index 42
-#define GetCompressedTexImageARB_remap_index 43
-#define DisableVertexAttribArrayARB_remap_index 44
-#define EnableVertexAttribArrayARB_remap_index 45
-#define GetProgramEnvParameterdvARB_remap_index 46
-#define GetProgramEnvParameterfvARB_remap_index 47
-#define GetProgramLocalParameterdvARB_remap_index 48
-#define GetProgramLocalParameterfvARB_remap_index 49
-#define GetProgramStringARB_remap_index 50
-#define GetProgramivARB_remap_index 51
-#define GetVertexAttribdvARB_remap_index 52
-#define GetVertexAttribfvARB_remap_index 53
-#define GetVertexAttribivARB_remap_index 54
-#define ProgramEnvParameter4dARB_remap_index 55
-#define ProgramEnvParameter4dvARB_remap_index 56
-#define ProgramEnvParameter4fARB_remap_index 57
-#define ProgramEnvParameter4fvARB_remap_index 58
-#define ProgramLocalParameter4dARB_remap_index 59
-#define ProgramLocalParameter4dvARB_remap_index 60
-#define ProgramLocalParameter4fARB_remap_index 61
-#define ProgramLocalParameter4fvARB_remap_index 62
-#define ProgramStringARB_remap_index 63
-#define VertexAttrib1dARB_remap_index 64
-#define VertexAttrib1dvARB_remap_index 65
-#define VertexAttrib1fARB_remap_index 66
-#define VertexAttrib1fvARB_remap_index 67
-#define VertexAttrib1sARB_remap_index 68
-#define VertexAttrib1svARB_remap_index 69
-#define VertexAttrib2dARB_remap_index 70
-#define VertexAttrib2dvARB_remap_index 71
-#define VertexAttrib2fARB_remap_index 72
-#define VertexAttrib2fvARB_remap_index 73
-#define VertexAttrib2sARB_remap_index 74
-#define VertexAttrib2svARB_remap_index 75
-#define VertexAttrib3dARB_remap_index 76
-#define VertexAttrib3dvARB_remap_index 77
-#define VertexAttrib3fARB_remap_index 78
-#define VertexAttrib3fvARB_remap_index 79
-#define VertexAttrib3sARB_remap_index 80
-#define VertexAttrib3svARB_remap_index 81
-#define VertexAttrib4NbvARB_remap_index 82
-#define VertexAttrib4NivARB_remap_index 83
-#define VertexAttrib4NsvARB_remap_index 84
-#define VertexAttrib4NubARB_remap_index 85
-#define VertexAttrib4NubvARB_remap_index 86
-#define VertexAttrib4NuivARB_remap_index 87
-#define VertexAttrib4NusvARB_remap_index 88
-#define VertexAttrib4bvARB_remap_index 89
-#define VertexAttrib4dARB_remap_index 90
-#define VertexAttrib4dvARB_remap_index 91
-#define VertexAttrib4fARB_remap_index 92
-#define VertexAttrib4fvARB_remap_index 93
-#define VertexAttrib4ivARB_remap_index 94
-#define VertexAttrib4sARB_remap_index 95
-#define VertexAttrib4svARB_remap_index 96
-#define VertexAttrib4ubvARB_remap_index 97
-#define VertexAttrib4uivARB_remap_index 98
-#define VertexAttrib4usvARB_remap_index 99
-#define VertexAttribPointerARB_remap_index 100
-#define BindBufferARB_remap_index 101
-#define BufferDataARB_remap_index 102
-#define BufferSubDataARB_remap_index 103
-#define DeleteBuffersARB_remap_index 104
-#define GenBuffersARB_remap_index 105
-#define GetBufferParameterivARB_remap_index 106
-#define GetBufferPointervARB_remap_index 107
-#define GetBufferSubDataARB_remap_index 108
-#define IsBufferARB_remap_index 109
-#define MapBufferARB_remap_index 110
-#define UnmapBufferARB_remap_index 111
-#define BeginQueryARB_remap_index 112
-#define DeleteQueriesARB_remap_index 113
-#define EndQueryARB_remap_index 114
-#define GenQueriesARB_remap_index 115
-#define GetQueryObjectivARB_remap_index 116
-#define GetQueryObjectuivARB_remap_index 117
-#define GetQueryivARB_remap_index 118
-#define IsQueryARB_remap_index 119
-#define AttachObjectARB_remap_index 120
-#define CompileShaderARB_remap_index 121
-#define CreateProgramObjectARB_remap_index 122
-#define CreateShaderObjectARB_remap_index 123
-#define DeleteObjectARB_remap_index 124
-#define DetachObjectARB_remap_index 125
-#define GetActiveUniformARB_remap_index 126
-#define GetAttachedObjectsARB_remap_index 127
-#define GetHandleARB_remap_index 128
-#define GetInfoLogARB_remap_index 129
-#define GetObjectParameterfvARB_remap_index 130
-#define GetObjectParameterivARB_remap_index 131
-#define GetShaderSourceARB_remap_index 132
-#define GetUniformLocationARB_remap_index 133
-#define GetUniformfvARB_remap_index 134
-#define GetUniformivARB_remap_index 135
-#define LinkProgramARB_remap_index 136
-#define ShaderSourceARB_remap_index 137
-#define Uniform1fARB_remap_index 138
-#define Uniform1fvARB_remap_index 139
-#define Uniform1iARB_remap_index 140
-#define Uniform1ivARB_remap_index 141
-#define Uniform2fARB_remap_index 142
-#define Uniform2fvARB_remap_index 143
-#define Uniform2iARB_remap_index 144
-#define Uniform2ivARB_remap_index 145
-#define Uniform3fARB_remap_index 146
-#define Uniform3fvARB_remap_index 147
-#define Uniform3iARB_remap_index 148
-#define Uniform3ivARB_remap_index 149
-#define Uniform4fARB_remap_index 150
-#define Uniform4fvARB_remap_index 151
-#define Uniform4iARB_remap_index 152
-#define Uniform4ivARB_remap_index 153
-#define UniformMatrix2fvARB_remap_index 154
-#define UniformMatrix3fvARB_remap_index 155
-#define UniformMatrix4fvARB_remap_index 156
-#define UseProgramObjectARB_remap_index 157
-#define ValidateProgramARB_remap_index 158
-#define BindAttribLocationARB_remap_index 159
-#define GetActiveAttribARB_remap_index 160
-#define GetAttribLocationARB_remap_index 161
-#define DrawBuffersARB_remap_index 162
-#define ClampColorARB_remap_index 163
-#define DrawArraysInstancedARB_remap_index 164
-#define DrawElementsInstancedARB_remap_index 165
-#define RenderbufferStorageMultisample_remap_index 166
-#define FramebufferTextureARB_remap_index 167
-#define FramebufferTextureFaceARB_remap_index 168
-#define ProgramParameteriARB_remap_index 169
-#define VertexAttribDivisorARB_remap_index 170
-#define FlushMappedBufferRange_remap_index 171
-#define MapBufferRange_remap_index 172
-#define TexBufferARB_remap_index 173
-#define BindVertexArray_remap_index 174
-#define GenVertexArrays_remap_index 175
-#define GetActiveUniformBlockName_remap_index 176
-#define GetActiveUniformBlockiv_remap_index 177
-#define GetActiveUniformName_remap_index 178
-#define GetActiveUniformsiv_remap_index 179
-#define GetUniformBlockIndex_remap_index 180
-#define GetUniformIndices_remap_index 181
-#define UniformBlockBinding_remap_index 182
-#define CopyBufferSubData_remap_index 183
-#define ClientWaitSync_remap_index 184
-#define DeleteSync_remap_index 185
-#define FenceSync_remap_index 186
-#define GetInteger64v_remap_index 187
-#define GetSynciv_remap_index 188
-#define IsSync_remap_index 189
-#define WaitSync_remap_index 190
-#define DrawElementsBaseVertex_remap_index 191
-#define DrawElementsInstancedBaseVertex_remap_index 192
-#define DrawRangeElementsBaseVertex_remap_index 193
-#define MultiDrawElementsBaseVertex_remap_index 194
-#define BlendEquationSeparateiARB_remap_index 195
-#define BlendEquationiARB_remap_index 196
-#define BlendFuncSeparateiARB_remap_index 197
-#define BlendFunciARB_remap_index 198
-#define BindFragDataLocationIndexed_remap_index 199
-#define GetFragDataIndex_remap_index 200
-#define BindSampler_remap_index 201
-#define DeleteSamplers_remap_index 202
-#define GenSamplers_remap_index 203
-#define GetSamplerParameterIiv_remap_index 204
-#define GetSamplerParameterIuiv_remap_index 205
-#define GetSamplerParameterfv_remap_index 206
-#define GetSamplerParameteriv_remap_index 207
-#define IsSampler_remap_index 208
-#define SamplerParameterIiv_remap_index 209
-#define SamplerParameterIuiv_remap_index 210
-#define SamplerParameterf_remap_index 211
-#define SamplerParameterfv_remap_index 212
-#define SamplerParameteri_remap_index 213
-#define SamplerParameteriv_remap_index 214
-#define QueryCounter_remap_index 215
-#define ColorP3ui_remap_index 216
-#define ColorP3uiv_remap_index 217
-#define ColorP4ui_remap_index 218
-#define ColorP4uiv_remap_index 219
-#define MultiTexCoordP1ui_remap_index 220
-#define MultiTexCoordP1uiv_remap_index 221
-#define MultiTexCoordP2ui_remap_index 222
-#define MultiTexCoordP2uiv_remap_index 223
-#define MultiTexCoordP3ui_remap_index 224
-#define MultiTexCoordP3uiv_remap_index 225
-#define MultiTexCoordP4ui_remap_index 226
-#define MultiTexCoordP4uiv_remap_index 227
-#define NormalP3ui_remap_index 228
-#define NormalP3uiv_remap_index 229
-#define SecondaryColorP3ui_remap_index 230
-#define SecondaryColorP3uiv_remap_index 231
-#define TexCoordP1ui_remap_index 232
-#define TexCoordP1uiv_remap_index 233
-#define TexCoordP2ui_remap_index 234
-#define TexCoordP2uiv_remap_index 235
-#define TexCoordP3ui_remap_index 236
-#define TexCoordP3uiv_remap_index 237
-#define TexCoordP4ui_remap_index 238
-#define TexCoordP4uiv_remap_index 239
-#define VertexAttribP1ui_remap_index 240
-#define VertexAttribP1uiv_remap_index 241
-#define VertexAttribP2ui_remap_index 242
-#define VertexAttribP2uiv_remap_index 243
-#define VertexAttribP3ui_remap_index 244
-#define VertexAttribP3uiv_remap_index 245
-#define VertexAttribP4ui_remap_index 246
-#define VertexAttribP4uiv_remap_index 247
-#define VertexP2ui_remap_index 248
-#define VertexP2uiv_remap_index 249
-#define VertexP3ui_remap_index 250
-#define VertexP3uiv_remap_index 251
-#define VertexP4ui_remap_index 252
-#define VertexP4uiv_remap_index 253
-#define BindTransformFeedback_remap_index 254
-#define DeleteTransformFeedbacks_remap_index 255
-#define DrawTransformFeedback_remap_index 256
-#define GenTransformFeedbacks_remap_index 257
-#define IsTransformFeedback_remap_index 258
-#define PauseTransformFeedback_remap_index 259
-#define ResumeTransformFeedback_remap_index 260
-#define BeginQueryIndexed_remap_index 261
-#define DrawTransformFeedbackStream_remap_index 262
-#define EndQueryIndexed_remap_index 263
-#define GetQueryIndexediv_remap_index 264
-#define ClearDepthf_remap_index 265
-#define DepthRangef_remap_index 266
-#define GetShaderPrecisionFormat_remap_index 267
-#define ReleaseShaderCompiler_remap_index 268
-#define ShaderBinary_remap_index 269
-#define DebugMessageCallbackARB_remap_index 270
-#define DebugMessageControlARB_remap_index 271
-#define DebugMessageInsertARB_remap_index 272
-#define GetDebugMessageLogARB_remap_index 273
-#define GetGraphicsResetStatusARB_remap_index 274
-#define GetnColorTableARB_remap_index 275
-#define GetnCompressedTexImageARB_remap_index 276
-#define GetnConvolutionFilterARB_remap_index 277
-#define GetnHistogramARB_remap_index 278
-#define GetnMapdvARB_remap_index 279
-#define GetnMapfvARB_remap_index 280
-#define GetnMapivARB_remap_index 281
-#define GetnMinmaxARB_remap_index 282
-#define GetnPixelMapfvARB_remap_index 283
-#define GetnPixelMapuivARB_remap_index 284
-#define GetnPixelMapusvARB_remap_index 285
-#define GetnPolygonStippleARB_remap_index 286
-#define GetnSeparableFilterARB_remap_index 287
-#define GetnTexImageARB_remap_index 288
-#define GetnUniformdvARB_remap_index 289
-#define GetnUniformfvARB_remap_index 290
-#define GetnUniformivARB_remap_index 291
-#define GetnUniformuivARB_remap_index 292
-#define ReadnPixelsARB_remap_index 293
-#define DrawArraysInstancedBaseInstance_remap_index 294
-#define DrawElementsInstancedBaseInstance_remap_index 295
-#define DrawElementsInstancedBaseVertexBaseInstance_remap_index 296
-#define DrawTransformFeedbackInstanced_remap_index 297
-#define DrawTransformFeedbackStreamInstanced_remap_index 298
-#define TexStorage1D_remap_index 299
-#define TexStorage2D_remap_index 300
-#define TexStorage3D_remap_index 301
-#define TextureStorage1DEXT_remap_index 302
-#define TextureStorage2DEXT_remap_index 303
-#define TextureStorage3DEXT_remap_index 304
-#define InvalidateBufferData_remap_index 305
-#define InvalidateBufferSubData_remap_index 306
-#define InvalidateFramebuffer_remap_index 307
-#define InvalidateSubFramebuffer_remap_index 308
-#define InvalidateTexImage_remap_index 309
-#define InvalidateTexSubImage_remap_index 310
-#define PolygonOffsetEXT_remap_index 311
-#define SampleMaskSGIS_remap_index 312
-#define SamplePatternSGIS_remap_index 313
-#define ColorPointerEXT_remap_index 314
-#define EdgeFlagPointerEXT_remap_index 315
-#define IndexPointerEXT_remap_index 316
-#define NormalPointerEXT_remap_index 317
-#define TexCoordPointerEXT_remap_index 318
-#define VertexPointerEXT_remap_index 319
-#define PointParameterfEXT_remap_index 320
-#define PointParameterfvEXT_remap_index 321
-#define LockArraysEXT_remap_index 322
-#define UnlockArraysEXT_remap_index 323
-#define SecondaryColor3bEXT_remap_index 324
-#define SecondaryColor3bvEXT_remap_index 325
-#define SecondaryColor3dEXT_remap_index 326
-#define SecondaryColor3dvEXT_remap_index 327
-#define SecondaryColor3fEXT_remap_index 328
-#define SecondaryColor3fvEXT_remap_index 329
-#define SecondaryColor3iEXT_remap_index 330
-#define SecondaryColor3ivEXT_remap_index 331
-#define SecondaryColor3sEXT_remap_index 332
-#define SecondaryColor3svEXT_remap_index 333
-#define SecondaryColor3ubEXT_remap_index 334
-#define SecondaryColor3ubvEXT_remap_index 335
-#define SecondaryColor3uiEXT_remap_index 336
-#define SecondaryColor3uivEXT_remap_index 337
-#define SecondaryColor3usEXT_remap_index 338
-#define SecondaryColor3usvEXT_remap_index 339
-#define SecondaryColorPointerEXT_remap_index 340
-#define MultiDrawArraysEXT_remap_index 341
-#define MultiDrawElementsEXT_remap_index 342
-#define FogCoordPointerEXT_remap_index 343
-#define FogCoorddEXT_remap_index 344
-#define FogCoorddvEXT_remap_index 345
-#define FogCoordfEXT_remap_index 346
-#define FogCoordfvEXT_remap_index 347
-#define BlendFuncSeparateEXT_remap_index 348
-#define ResizeBuffersMESA_remap_index 349
-#define WindowPos2dMESA_remap_index 350
-#define WindowPos2dvMESA_remap_index 351
-#define WindowPos2fMESA_remap_index 352
-#define WindowPos2fvMESA_remap_index 353
-#define WindowPos2iMESA_remap_index 354
-#define WindowPos2ivMESA_remap_index 355
-#define WindowPos2sMESA_remap_index 356
-#define WindowPos2svMESA_remap_index 357
-#define WindowPos3dMESA_remap_index 358
-#define WindowPos3dvMESA_remap_index 359
-#define WindowPos3fMESA_remap_index 360
-#define WindowPos3fvMESA_remap_index 361
-#define WindowPos3iMESA_remap_index 362
-#define WindowPos3ivMESA_remap_index 363
-#define WindowPos3sMESA_remap_index 364
-#define WindowPos3svMESA_remap_index 365
-#define WindowPos4dMESA_remap_index 366
-#define WindowPos4dvMESA_remap_index 367
-#define WindowPos4fMESA_remap_index 368
-#define WindowPos4fvMESA_remap_index 369
-#define WindowPos4iMESA_remap_index 370
-#define WindowPos4ivMESA_remap_index 371
-#define WindowPos4sMESA_remap_index 372
-#define WindowPos4svMESA_remap_index 373
-#define MultiModeDrawArraysIBM_remap_index 374
-#define MultiModeDrawElementsIBM_remap_index 375
-#define AreProgramsResidentNV_remap_index 376
-#define BindProgramNV_remap_index 377
-#define DeleteProgramsNV_remap_index 378
-#define ExecuteProgramNV_remap_index 379
-#define GenProgramsNV_remap_index 380
-#define GetProgramParameterdvNV_remap_index 381
-#define GetProgramParameterfvNV_remap_index 382
-#define GetProgramStringNV_remap_index 383
-#define GetProgramivNV_remap_index 384
-#define GetTrackMatrixivNV_remap_index 385
-#define GetVertexAttribPointervNV_remap_index 386
-#define GetVertexAttribdvNV_remap_index 387
-#define GetVertexAttribfvNV_remap_index 388
-#define GetVertexAttribivNV_remap_index 389
-#define IsProgramNV_remap_index 390
-#define LoadProgramNV_remap_index 391
-#define ProgramParameters4dvNV_remap_index 392
-#define ProgramParameters4fvNV_remap_index 393
-#define RequestResidentProgramsNV_remap_index 394
-#define TrackMatrixNV_remap_index 395
-#define VertexAttrib1dNV_remap_index 396
-#define VertexAttrib1dvNV_remap_index 397
-#define VertexAttrib1fNV_remap_index 398
-#define VertexAttrib1fvNV_remap_index 399
-#define VertexAttrib1sNV_remap_index 400
-#define VertexAttrib1svNV_remap_index 401
-#define VertexAttrib2dNV_remap_index 402
-#define VertexAttrib2dvNV_remap_index 403
-#define VertexAttrib2fNV_remap_index 404
-#define VertexAttrib2fvNV_remap_index 405
-#define VertexAttrib2sNV_remap_index 406
-#define VertexAttrib2svNV_remap_index 407
-#define VertexAttrib3dNV_remap_index 408
-#define VertexAttrib3dvNV_remap_index 409
-#define VertexAttrib3fNV_remap_index 410
-#define VertexAttrib3fvNV_remap_index 411
-#define VertexAttrib3sNV_remap_index 412
-#define VertexAttrib3svNV_remap_index 413
-#define VertexAttrib4dNV_remap_index 414
-#define VertexAttrib4dvNV_remap_index 415
-#define VertexAttrib4fNV_remap_index 416
-#define VertexAttrib4fvNV_remap_index 417
-#define VertexAttrib4sNV_remap_index 418
-#define VertexAttrib4svNV_remap_index 419
-#define VertexAttrib4ubNV_remap_index 420
-#define VertexAttrib4ubvNV_remap_index 421
-#define VertexAttribPointerNV_remap_index 422
-#define VertexAttribs1dvNV_remap_index 423
-#define VertexAttribs1fvNV_remap_index 424
-#define VertexAttribs1svNV_remap_index 425
-#define VertexAttribs2dvNV_remap_index 426
-#define VertexAttribs2fvNV_remap_index 427
-#define VertexAttribs2svNV_remap_index 428
-#define VertexAttribs3dvNV_remap_index 429
-#define VertexAttribs3fvNV_remap_index 430
-#define VertexAttribs3svNV_remap_index 431
-#define VertexAttribs4dvNV_remap_index 432
-#define VertexAttribs4fvNV_remap_index 433
-#define VertexAttribs4svNV_remap_index 434
-#define VertexAttribs4ubvNV_remap_index 435
-#define GetTexBumpParameterfvATI_remap_index 436
-#define GetTexBumpParameterivATI_remap_index 437
-#define TexBumpParameterfvATI_remap_index 438
-#define TexBumpParameterivATI_remap_index 439
-#define AlphaFragmentOp1ATI_remap_index 440
-#define AlphaFragmentOp2ATI_remap_index 441
-#define AlphaFragmentOp3ATI_remap_index 442
-#define BeginFragmentShaderATI_remap_index 443
-#define BindFragmentShaderATI_remap_index 444
-#define ColorFragmentOp1ATI_remap_index 445
-#define ColorFragmentOp2ATI_remap_index 446
-#define ColorFragmentOp3ATI_remap_index 447
-#define DeleteFragmentShaderATI_remap_index 448
-#define EndFragmentShaderATI_remap_index 449
-#define GenFragmentShadersATI_remap_index 450
-#define PassTexCoordATI_remap_index 451
-#define SampleMapATI_remap_index 452
-#define SetFragmentShaderConstantATI_remap_index 453
-#define PointParameteriNV_remap_index 454
-#define PointParameterivNV_remap_index 455
-#define ActiveStencilFaceEXT_remap_index 456
-#define BindVertexArrayAPPLE_remap_index 457
-#define DeleteVertexArraysAPPLE_remap_index 458
-#define GenVertexArraysAPPLE_remap_index 459
-#define IsVertexArrayAPPLE_remap_index 460
-#define GetProgramNamedParameterdvNV_remap_index 461
-#define GetProgramNamedParameterfvNV_remap_index 462
-#define ProgramNamedParameter4dNV_remap_index 463
-#define ProgramNamedParameter4dvNV_remap_index 464
-#define ProgramNamedParameter4fNV_remap_index 465
-#define ProgramNamedParameter4fvNV_remap_index 466
-#define PrimitiveRestartIndexNV_remap_index 467
-#define PrimitiveRestartNV_remap_index 468
-#define DepthBoundsEXT_remap_index 469
-#define BlendEquationSeparateEXT_remap_index 470
-#define BindFramebufferEXT_remap_index 471
-#define BindRenderbufferEXT_remap_index 472
-#define CheckFramebufferStatusEXT_remap_index 473
-#define DeleteFramebuffersEXT_remap_index 474
-#define DeleteRenderbuffersEXT_remap_index 475
-#define FramebufferRenderbufferEXT_remap_index 476
-#define FramebufferTexture1DEXT_remap_index 477
-#define FramebufferTexture2DEXT_remap_index 478
-#define FramebufferTexture3DEXT_remap_index 479
-#define GenFramebuffersEXT_remap_index 480
-#define GenRenderbuffersEXT_remap_index 481
-#define GenerateMipmapEXT_remap_index 482
-#define GetFramebufferAttachmentParameterivEXT_remap_index 483
-#define GetRenderbufferParameterivEXT_remap_index 484
-#define IsFramebufferEXT_remap_index 485
-#define IsRenderbufferEXT_remap_index 486
-#define RenderbufferStorageEXT_remap_index 487
-#define BlitFramebufferEXT_remap_index 488
-#define BufferParameteriAPPLE_remap_index 489
-#define FlushMappedBufferRangeAPPLE_remap_index 490
-#define BindFragDataLocationEXT_remap_index 491
-#define GetFragDataLocationEXT_remap_index 492
-#define GetUniformuivEXT_remap_index 493
-#define GetVertexAttribIivEXT_remap_index 494
-#define GetVertexAttribIuivEXT_remap_index 495
-#define Uniform1uiEXT_remap_index 496
-#define Uniform1uivEXT_remap_index 497
-#define Uniform2uiEXT_remap_index 498
-#define Uniform2uivEXT_remap_index 499
-#define Uniform3uiEXT_remap_index 500
-#define Uniform3uivEXT_remap_index 501
-#define Uniform4uiEXT_remap_index 502
-#define Uniform4uivEXT_remap_index 503
-#define VertexAttribI1iEXT_remap_index 504
-#define VertexAttribI1ivEXT_remap_index 505
-#define VertexAttribI1uiEXT_remap_index 506
-#define VertexAttribI1uivEXT_remap_index 507
-#define VertexAttribI2iEXT_remap_index 508
-#define VertexAttribI2ivEXT_remap_index 509
-#define VertexAttribI2uiEXT_remap_index 510
-#define VertexAttribI2uivEXT_remap_index 511
-#define VertexAttribI3iEXT_remap_index 512
-#define VertexAttribI3ivEXT_remap_index 513
-#define VertexAttribI3uiEXT_remap_index 514
-#define VertexAttribI3uivEXT_remap_index 515
-#define VertexAttribI4bvEXT_remap_index 516
-#define VertexAttribI4iEXT_remap_index 517
-#define VertexAttribI4ivEXT_remap_index 518
-#define VertexAttribI4svEXT_remap_index 519
-#define VertexAttribI4ubvEXT_remap_index 520
-#define VertexAttribI4uiEXT_remap_index 521
-#define VertexAttribI4uivEXT_remap_index 522
-#define VertexAttribI4usvEXT_remap_index 523
-#define VertexAttribIPointerEXT_remap_index 524
-#define FramebufferTextureLayerEXT_remap_index 525
-#define ColorMaskIndexedEXT_remap_index 526
-#define DisableIndexedEXT_remap_index 527
-#define EnableIndexedEXT_remap_index 528
-#define GetBooleanIndexedvEXT_remap_index 529
-#define GetIntegerIndexedvEXT_remap_index 530
-#define IsEnabledIndexedEXT_remap_index 531
-#define ClearColorIiEXT_remap_index 532
-#define ClearColorIuiEXT_remap_index 533
-#define GetTexParameterIivEXT_remap_index 534
-#define GetTexParameterIuivEXT_remap_index 535
-#define TexParameterIivEXT_remap_index 536
-#define TexParameterIuivEXT_remap_index 537
-#define BeginConditionalRenderNV_remap_index 538
-#define EndConditionalRenderNV_remap_index 539
-#define BeginTransformFeedbackEXT_remap_index 540
-#define BindBufferBaseEXT_remap_index 541
-#define BindBufferOffsetEXT_remap_index 542
-#define BindBufferRangeEXT_remap_index 543
-#define EndTransformFeedbackEXT_remap_index 544
-#define GetTransformFeedbackVaryingEXT_remap_index 545
-#define TransformFeedbackVaryingsEXT_remap_index 546
-#define ProvokingVertexEXT_remap_index 547
-#define GetObjectParameterivAPPLE_remap_index 548
-#define ObjectPurgeableAPPLE_remap_index 549
-#define ObjectUnpurgeableAPPLE_remap_index 550
-#define ActiveProgramEXT_remap_index 551
-#define CreateShaderProgramEXT_remap_index 552
-#define UseShaderProgramEXT_remap_index 553
-#define TextureBarrierNV_remap_index 554
-#define StencilFuncSeparateATI_remap_index 555
-#define ProgramEnvParameters4fvEXT_remap_index 556
-#define ProgramLocalParameters4fvEXT_remap_index 557
-#define GetQueryObjecti64vEXT_remap_index 558
-#define GetQueryObjectui64vEXT_remap_index 559
-#define EGLImageTargetRenderbufferStorageOES_remap_index 560
-#define EGLImageTargetTexture2DOES_remap_index 561
+#define ClearBufferfi_remap_index 22
+#define ClearBufferfv_remap_index 23
+#define ClearBufferiv_remap_index 24
+#define ClearBufferuiv_remap_index 25
+#define GetStringi_remap_index 26
+#define FramebufferTexture_remap_index 27
+#define GetBufferParameteri64v_remap_index 28
+#define GetInteger64i_v_remap_index 29
+#define LoadTransposeMatrixdARB_remap_index 30
+#define LoadTransposeMatrixfARB_remap_index 31
+#define MultTransposeMatrixdARB_remap_index 32
+#define MultTransposeMatrixfARB_remap_index 33
+#define SampleCoverageARB_remap_index 34
+#define CompressedTexImage1DARB_remap_index 35
+#define CompressedTexImage2DARB_remap_index 36
+#define CompressedTexImage3DARB_remap_index 37
+#define CompressedTexSubImage1DARB_remap_index 38
+#define CompressedTexSubImage2DARB_remap_index 39
+#define CompressedTexSubImage3DARB_remap_index 40
+#define GetCompressedTexImageARB_remap_index 41
+#define DisableVertexAttribArrayARB_remap_index 42
+#define EnableVertexAttribArrayARB_remap_index 43
+#define GetProgramEnvParameterdvARB_remap_index 44
+#define GetProgramEnvParameterfvARB_remap_index 45
+#define GetProgramLocalParameterdvARB_remap_index 46
+#define GetProgramLocalParameterfvARB_remap_index 47
+#define GetProgramStringARB_remap_index 48
+#define GetProgramivARB_remap_index 49
+#define GetVertexAttribdvARB_remap_index 50
+#define GetVertexAttribfvARB_remap_index 51
+#define GetVertexAttribivARB_remap_index 52
+#define ProgramEnvParameter4dARB_remap_index 53
+#define ProgramEnvParameter4dvARB_remap_index 54
+#define ProgramEnvParameter4fARB_remap_index 55
+#define ProgramEnvParameter4fvARB_remap_index 56
+#define ProgramLocalParameter4dARB_remap_index 57
+#define ProgramLocalParameter4dvARB_remap_index 58
+#define ProgramLocalParameter4fARB_remap_index 59
+#define ProgramLocalParameter4fvARB_remap_index 60
+#define ProgramStringARB_remap_index 61
+#define VertexAttrib1dARB_remap_index 62
+#define VertexAttrib1dvARB_remap_index 63
+#define VertexAttrib1fARB_remap_index 64
+#define VertexAttrib1fvARB_remap_index 65
+#define VertexAttrib1sARB_remap_index 66
+#define VertexAttrib1svARB_remap_index 67
+#define VertexAttrib2dARB_remap_index 68
+#define VertexAttrib2dvARB_remap_index 69
+#define VertexAttrib2fARB_remap_index 70
+#define VertexAttrib2fvARB_remap_index 71
+#define VertexAttrib2sARB_remap_index 72
+#define VertexAttrib2svARB_remap_index 73
+#define VertexAttrib3dARB_remap_index 74
+#define VertexAttrib3dvARB_remap_index 75
+#define VertexAttrib3fARB_remap_index 76
+#define VertexAttrib3fvARB_remap_index 77
+#define VertexAttrib3sARB_remap_index 78
+#define VertexAttrib3svARB_remap_index 79
+#define VertexAttrib4NbvARB_remap_index 80
+#define VertexAttrib4NivARB_remap_index 81
+#define VertexAttrib4NsvARB_remap_index 82
+#define VertexAttrib4NubARB_remap_index 83
+#define VertexAttrib4NubvARB_remap_index 84
+#define VertexAttrib4NuivARB_remap_index 85
+#define VertexAttrib4NusvARB_remap_index 86
+#define VertexAttrib4bvARB_remap_index 87
+#define VertexAttrib4dARB_remap_index 88
+#define VertexAttrib4dvARB_remap_index 89
+#define VertexAttrib4fARB_remap_index 90
+#define VertexAttrib4fvARB_remap_index 91
+#define VertexAttrib4ivARB_remap_index 92
+#define VertexAttrib4sARB_remap_index 93
+#define VertexAttrib4svARB_remap_index 94
+#define VertexAttrib4ubvARB_remap_index 95
+#define VertexAttrib4uivARB_remap_index 96
+#define VertexAttrib4usvARB_remap_index 97
+#define VertexAttribPointerARB_remap_index 98
+#define BindBufferARB_remap_index 99
+#define BufferDataARB_remap_index 100
+#define BufferSubDataARB_remap_index 101
+#define DeleteBuffersARB_remap_index 102
+#define GenBuffersARB_remap_index 103
+#define GetBufferParameterivARB_remap_index 104
+#define GetBufferPointervARB_remap_index 105
+#define GetBufferSubDataARB_remap_index 106
+#define IsBufferARB_remap_index 107
+#define MapBufferARB_remap_index 108
+#define UnmapBufferARB_remap_index 109
+#define BeginQueryARB_remap_index 110
+#define DeleteQueriesARB_remap_index 111
+#define EndQueryARB_remap_index 112
+#define GenQueriesARB_remap_index 113
+#define GetQueryObjectivARB_remap_index 114
+#define GetQueryObjectuivARB_remap_index 115
+#define GetQueryivARB_remap_index 116
+#define IsQueryARB_remap_index 117
+#define AttachObjectARB_remap_index 118
+#define CompileShaderARB_remap_index 119
+#define CreateProgramObjectARB_remap_index 120
+#define CreateShaderObjectARB_remap_index 121
+#define DeleteObjectARB_remap_index 122
+#define DetachObjectARB_remap_index 123
+#define GetActiveUniformARB_remap_index 124
+#define GetAttachedObjectsARB_remap_index 125
+#define GetHandleARB_remap_index 126
+#define GetInfoLogARB_remap_index 127
+#define GetObjectParameterfvARB_remap_index 128
+#define GetObjectParameterivARB_remap_index 129
+#define GetShaderSourceARB_remap_index 130
+#define GetUniformLocationARB_remap_index 131
+#define GetUniformfvARB_remap_index 132
+#define GetUniformivARB_remap_index 133
+#define LinkProgramARB_remap_index 134
+#define ShaderSourceARB_remap_index 135
+#define Uniform1fARB_remap_index 136
+#define Uniform1fvARB_remap_index 137
+#define Uniform1iARB_remap_index 138
+#define Uniform1ivARB_remap_index 139
+#define Uniform2fARB_remap_index 140
+#define Uniform2fvARB_remap_index 141
+#define Uniform2iARB_remap_index 142
+#define Uniform2ivARB_remap_index 143
+#define Uniform3fARB_remap_index 144
+#define Uniform3fvARB_remap_index 145
+#define Uniform3iARB_remap_index 146
+#define Uniform3ivARB_remap_index 147
+#define Uniform4fARB_remap_index 148
+#define Uniform4fvARB_remap_index 149
+#define Uniform4iARB_remap_index 150
+#define Uniform4ivARB_remap_index 151
+#define UniformMatrix2fvARB_remap_index 152
+#define UniformMatrix3fvARB_remap_index 153
+#define UniformMatrix4fvARB_remap_index 154
+#define UseProgramObjectARB_remap_index 155
+#define ValidateProgramARB_remap_index 156
+#define BindAttribLocationARB_remap_index 157
+#define GetActiveAttribARB_remap_index 158
+#define GetAttribLocationARB_remap_index 159
+#define DrawBuffersARB_remap_index 160
+#define ClampColorARB_remap_index 161
+#define DrawArraysInstancedARB_remap_index 162
+#define DrawElementsInstancedARB_remap_index 163
+#define RenderbufferStorageMultisample_remap_index 164
+#define FramebufferTextureFaceARB_remap_index 165
+#define VertexAttribDivisorARB_remap_index 166
+#define FlushMappedBufferRange_remap_index 167
+#define MapBufferRange_remap_index 168
+#define TexBufferARB_remap_index 169
+#define BindVertexArray_remap_index 170
+#define GenVertexArrays_remap_index 171
+#define GetActiveUniformBlockName_remap_index 172
+#define GetActiveUniformBlockiv_remap_index 173
+#define GetActiveUniformName_remap_index 174
+#define GetActiveUniformsiv_remap_index 175
+#define GetUniformBlockIndex_remap_index 176
+#define GetUniformIndices_remap_index 177
+#define UniformBlockBinding_remap_index 178
+#define CopyBufferSubData_remap_index 179
+#define ClientWaitSync_remap_index 180
+#define DeleteSync_remap_index 181
+#define FenceSync_remap_index 182
+#define GetInteger64v_remap_index 183
+#define GetSynciv_remap_index 184
+#define IsSync_remap_index 185
+#define WaitSync_remap_index 186
+#define DrawElementsBaseVertex_remap_index 187
+#define DrawElementsInstancedBaseVertex_remap_index 188
+#define DrawRangeElementsBaseVertex_remap_index 189
+#define MultiDrawElementsBaseVertex_remap_index 190
+#define BlendEquationSeparateiARB_remap_index 191
+#define BlendEquationiARB_remap_index 192
+#define BlendFuncSeparateiARB_remap_index 193
+#define BlendFunciARB_remap_index 194
+#define BindFragDataLocationIndexed_remap_index 195
+#define GetFragDataIndex_remap_index 196
+#define BindSampler_remap_index 197
+#define DeleteSamplers_remap_index 198
+#define GenSamplers_remap_index 199
+#define GetSamplerParameterIiv_remap_index 200
+#define GetSamplerParameterIuiv_remap_index 201
+#define GetSamplerParameterfv_remap_index 202
+#define GetSamplerParameteriv_remap_index 203
+#define IsSampler_remap_index 204
+#define SamplerParameterIiv_remap_index 205
+#define SamplerParameterIuiv_remap_index 206
+#define SamplerParameterf_remap_index 207
+#define SamplerParameterfv_remap_index 208
+#define SamplerParameteri_remap_index 209
+#define SamplerParameteriv_remap_index 210
+#define QueryCounter_remap_index 211
+#define ColorP3ui_remap_index 212
+#define ColorP3uiv_remap_index 213
+#define ColorP4ui_remap_index 214
+#define ColorP4uiv_remap_index 215
+#define MultiTexCoordP1ui_remap_index 216
+#define MultiTexCoordP1uiv_remap_index 217
+#define MultiTexCoordP2ui_remap_index 218
+#define MultiTexCoordP2uiv_remap_index 219
+#define MultiTexCoordP3ui_remap_index 220
+#define MultiTexCoordP3uiv_remap_index 221
+#define MultiTexCoordP4ui_remap_index 222
+#define MultiTexCoordP4uiv_remap_index 223
+#define NormalP3ui_remap_index 224
+#define NormalP3uiv_remap_index 225
+#define SecondaryColorP3ui_remap_index 226
+#define SecondaryColorP3uiv_remap_index 227
+#define TexCoordP1ui_remap_index 228
+#define TexCoordP1uiv_remap_index 229
+#define TexCoordP2ui_remap_index 230
+#define TexCoordP2uiv_remap_index 231
+#define TexCoordP3ui_remap_index 232
+#define TexCoordP3uiv_remap_index 233
+#define TexCoordP4ui_remap_index 234
+#define TexCoordP4uiv_remap_index 235
+#define VertexAttribP1ui_remap_index 236
+#define VertexAttribP1uiv_remap_index 237
+#define VertexAttribP2ui_remap_index 238
+#define VertexAttribP2uiv_remap_index 239
+#define VertexAttribP3ui_remap_index 240
+#define VertexAttribP3uiv_remap_index 241
+#define VertexAttribP4ui_remap_index 242
+#define VertexAttribP4uiv_remap_index 243
+#define VertexP2ui_remap_index 244
+#define VertexP2uiv_remap_index 245
+#define VertexP3ui_remap_index 246
+#define VertexP3uiv_remap_index 247
+#define VertexP4ui_remap_index 248
+#define VertexP4uiv_remap_index 249
+#define BindTransformFeedback_remap_index 250
+#define DeleteTransformFeedbacks_remap_index 251
+#define DrawTransformFeedback_remap_index 252
+#define GenTransformFeedbacks_remap_index 253
+#define IsTransformFeedback_remap_index 254
+#define PauseTransformFeedback_remap_index 255
+#define ResumeTransformFeedback_remap_index 256
+#define BeginQueryIndexed_remap_index 257
+#define DrawTransformFeedbackStream_remap_index 258
+#define EndQueryIndexed_remap_index 259
+#define GetQueryIndexediv_remap_index 260
+#define ClearDepthf_remap_index 261
+#define DepthRangef_remap_index 262
+#define GetShaderPrecisionFormat_remap_index 263
+#define ReleaseShaderCompiler_remap_index 264
+#define ShaderBinary_remap_index 265
+#define GetProgramBinary_remap_index 266
+#define ProgramBinary_remap_index 267
+#define ProgramParameteri_remap_index 268
+#define DebugMessageCallbackARB_remap_index 269
+#define DebugMessageControlARB_remap_index 270
+#define DebugMessageInsertARB_remap_index 271
+#define GetDebugMessageLogARB_remap_index 272
+#define GetGraphicsResetStatusARB_remap_index 273
+#define GetnColorTableARB_remap_index 274
+#define GetnCompressedTexImageARB_remap_index 275
+#define GetnConvolutionFilterARB_remap_index 276
+#define GetnHistogramARB_remap_index 277
+#define GetnMapdvARB_remap_index 278
+#define GetnMapfvARB_remap_index 279
+#define GetnMapivARB_remap_index 280
+#define GetnMinmaxARB_remap_index 281
+#define GetnPixelMapfvARB_remap_index 282
+#define GetnPixelMapuivARB_remap_index 283
+#define GetnPixelMapusvARB_remap_index 284
+#define GetnPolygonStippleARB_remap_index 285
+#define GetnSeparableFilterARB_remap_index 286
+#define GetnTexImageARB_remap_index 287
+#define GetnUniformdvARB_remap_index 288
+#define GetnUniformfvARB_remap_index 289
+#define GetnUniformivARB_remap_index 290
+#define GetnUniformuivARB_remap_index 291
+#define ReadnPixelsARB_remap_index 292
+#define DrawArraysInstancedBaseInstance_remap_index 293
+#define DrawElementsInstancedBaseInstance_remap_index 294
+#define DrawElementsInstancedBaseVertexBaseInstance_remap_index 295
+#define DrawTransformFeedbackInstanced_remap_index 296
+#define DrawTransformFeedbackStreamInstanced_remap_index 297
+#define TexStorage1D_remap_index 298
+#define TexStorage2D_remap_index 299
+#define TexStorage3D_remap_index 300
+#define TextureStorage1DEXT_remap_index 301
+#define TextureStorage2DEXT_remap_index 302
+#define TextureStorage3DEXT_remap_index 303
+#define InvalidateBufferData_remap_index 304
+#define InvalidateBufferSubData_remap_index 305
+#define InvalidateFramebuffer_remap_index 306
+#define InvalidateSubFramebuffer_remap_index 307
+#define InvalidateTexImage_remap_index 308
+#define InvalidateTexSubImage_remap_index 309
+#define PolygonOffsetEXT_remap_index 310
+#define SampleMaskSGIS_remap_index 311
+#define SamplePatternSGIS_remap_index 312
+#define ColorPointerEXT_remap_index 313
+#define EdgeFlagPointerEXT_remap_index 314
+#define IndexPointerEXT_remap_index 315
+#define NormalPointerEXT_remap_index 316
+#define TexCoordPointerEXT_remap_index 317
+#define VertexPointerEXT_remap_index 318
+#define PointParameterfEXT_remap_index 319
+#define PointParameterfvEXT_remap_index 320
+#define LockArraysEXT_remap_index 321
+#define UnlockArraysEXT_remap_index 322
+#define SecondaryColor3bEXT_remap_index 323
+#define SecondaryColor3bvEXT_remap_index 324
+#define SecondaryColor3dEXT_remap_index 325
+#define SecondaryColor3dvEXT_remap_index 326
+#define SecondaryColor3fEXT_remap_index 327
+#define SecondaryColor3fvEXT_remap_index 328
+#define SecondaryColor3iEXT_remap_index 329
+#define SecondaryColor3ivEXT_remap_index 330
+#define SecondaryColor3sEXT_remap_index 331
+#define SecondaryColor3svEXT_remap_index 332
+#define SecondaryColor3ubEXT_remap_index 333
+#define SecondaryColor3ubvEXT_remap_index 334
+#define SecondaryColor3uiEXT_remap_index 335
+#define SecondaryColor3uivEXT_remap_index 336
+#define SecondaryColor3usEXT_remap_index 337
+#define SecondaryColor3usvEXT_remap_index 338
+#define SecondaryColorPointerEXT_remap_index 339
+#define MultiDrawArraysEXT_remap_index 340
+#define MultiDrawElementsEXT_remap_index 341
+#define FogCoordPointerEXT_remap_index 342
+#define FogCoorddEXT_remap_index 343
+#define FogCoorddvEXT_remap_index 344
+#define FogCoordfEXT_remap_index 345
+#define FogCoordfvEXT_remap_index 346
+#define BlendFuncSeparateEXT_remap_index 347
+#define ResizeBuffersMESA_remap_index 348
+#define WindowPos2dMESA_remap_index 349
+#define WindowPos2dvMESA_remap_index 350
+#define WindowPos2fMESA_remap_index 351
+#define WindowPos2fvMESA_remap_index 352
+#define WindowPos2iMESA_remap_index 353
+#define WindowPos2ivMESA_remap_index 354
+#define WindowPos2sMESA_remap_index 355
+#define WindowPos2svMESA_remap_index 356
+#define WindowPos3dMESA_remap_index 357
+#define WindowPos3dvMESA_remap_index 358
+#define WindowPos3fMESA_remap_index 359
+#define WindowPos3fvMESA_remap_index 360
+#define WindowPos3iMESA_remap_index 361
+#define WindowPos3ivMESA_remap_index 362
+#define WindowPos3sMESA_remap_index 363
+#define WindowPos3svMESA_remap_index 364
+#define WindowPos4dMESA_remap_index 365
+#define WindowPos4dvMESA_remap_index 366
+#define WindowPos4fMESA_remap_index 367
+#define WindowPos4fvMESA_remap_index 368
+#define WindowPos4iMESA_remap_index 369
+#define WindowPos4ivMESA_remap_index 370
+#define WindowPos4sMESA_remap_index 371
+#define WindowPos4svMESA_remap_index 372
+#define MultiModeDrawArraysIBM_remap_index 373
+#define MultiModeDrawElementsIBM_remap_index 374
+#define AreProgramsResidentNV_remap_index 375
+#define BindProgramNV_remap_index 376
+#define DeleteProgramsNV_remap_index 377
+#define ExecuteProgramNV_remap_index 378
+#define GenProgramsNV_remap_index 379
+#define GetProgramParameterdvNV_remap_index 380
+#define GetProgramParameterfvNV_remap_index 381
+#define GetProgramStringNV_remap_index 382
+#define GetProgramivNV_remap_index 383
+#define GetTrackMatrixivNV_remap_index 384
+#define GetVertexAttribPointervNV_remap_index 385
+#define GetVertexAttribdvNV_remap_index 386
+#define GetVertexAttribfvNV_remap_index 387
+#define GetVertexAttribivNV_remap_index 388
+#define IsProgramNV_remap_index 389
+#define LoadProgramNV_remap_index 390
+#define ProgramParameters4dvNV_remap_index 391
+#define ProgramParameters4fvNV_remap_index 392
+#define RequestResidentProgramsNV_remap_index 393
+#define TrackMatrixNV_remap_index 394
+#define VertexAttrib1dNV_remap_index 395
+#define VertexAttrib1dvNV_remap_index 396
+#define VertexAttrib1fNV_remap_index 397
+#define VertexAttrib1fvNV_remap_index 398
+#define VertexAttrib1sNV_remap_index 399
+#define VertexAttrib1svNV_remap_index 400
+#define VertexAttrib2dNV_remap_index 401
+#define VertexAttrib2dvNV_remap_index 402
+#define VertexAttrib2fNV_remap_index 403
+#define VertexAttrib2fvNV_remap_index 404
+#define VertexAttrib2sNV_remap_index 405
+#define VertexAttrib2svNV_remap_index 406
+#define VertexAttrib3dNV_remap_index 407
+#define VertexAttrib3dvNV_remap_index 408
+#define VertexAttrib3fNV_remap_index 409
+#define VertexAttrib3fvNV_remap_index 410
+#define VertexAttrib3sNV_remap_index 411
+#define VertexAttrib3svNV_remap_index 412
+#define VertexAttrib4dNV_remap_index 413
+#define VertexAttrib4dvNV_remap_index 414
+#define VertexAttrib4fNV_remap_index 415
+#define VertexAttrib4fvNV_remap_index 416
+#define VertexAttrib4sNV_remap_index 417
+#define VertexAttrib4svNV_remap_index 418
+#define VertexAttrib4ubNV_remap_index 419
+#define VertexAttrib4ubvNV_remap_index 420
+#define VertexAttribPointerNV_remap_index 421
+#define VertexAttribs1dvNV_remap_index 422
+#define VertexAttribs1fvNV_remap_index 423
+#define VertexAttribs1svNV_remap_index 424
+#define VertexAttribs2dvNV_remap_index 425
+#define VertexAttribs2fvNV_remap_index 426
+#define VertexAttribs2svNV_remap_index 427
+#define VertexAttribs3dvNV_remap_index 428
+#define VertexAttribs3fvNV_remap_index 429
+#define VertexAttribs3svNV_remap_index 430
+#define VertexAttribs4dvNV_remap_index 431
+#define VertexAttribs4fvNV_remap_index 432
+#define VertexAttribs4svNV_remap_index 433
+#define VertexAttribs4ubvNV_remap_index 434
+#define GetTexBumpParameterfvATI_remap_index 435
+#define GetTexBumpParameterivATI_remap_index 436
+#define TexBumpParameterfvATI_remap_index 437
+#define TexBumpParameterivATI_remap_index 438
+#define AlphaFragmentOp1ATI_remap_index 439
+#define AlphaFragmentOp2ATI_remap_index 440
+#define AlphaFragmentOp3ATI_remap_index 441
+#define BeginFragmentShaderATI_remap_index 442
+#define BindFragmentShaderATI_remap_index 443
+#define ColorFragmentOp1ATI_remap_index 444
+#define ColorFragmentOp2ATI_remap_index 445
+#define ColorFragmentOp3ATI_remap_index 446
+#define DeleteFragmentShaderATI_remap_index 447
+#define EndFragmentShaderATI_remap_index 448
+#define GenFragmentShadersATI_remap_index 449
+#define PassTexCoordATI_remap_index 450
+#define SampleMapATI_remap_index 451
+#define SetFragmentShaderConstantATI_remap_index 452
+#define PointParameteriNV_remap_index 453
+#define PointParameterivNV_remap_index 454
+#define ActiveStencilFaceEXT_remap_index 455
+#define BindVertexArrayAPPLE_remap_index 456
+#define DeleteVertexArraysAPPLE_remap_index 457
+#define GenVertexArraysAPPLE_remap_index 458
+#define IsVertexArrayAPPLE_remap_index 459
+#define GetProgramNamedParameterdvNV_remap_index 460
+#define GetProgramNamedParameterfvNV_remap_index 461
+#define ProgramNamedParameter4dNV_remap_index 462
+#define ProgramNamedParameter4dvNV_remap_index 463
+#define ProgramNamedParameter4fNV_remap_index 464
+#define ProgramNamedParameter4fvNV_remap_index 465
+#define PrimitiveRestartIndexNV_remap_index 466
+#define PrimitiveRestartNV_remap_index 467
+#define DepthBoundsEXT_remap_index 468
+#define BlendEquationSeparateEXT_remap_index 469
+#define BindFramebufferEXT_remap_index 470
+#define BindRenderbufferEXT_remap_index 471
+#define CheckFramebufferStatusEXT_remap_index 472
+#define DeleteFramebuffersEXT_remap_index 473
+#define DeleteRenderbuffersEXT_remap_index 474
+#define FramebufferRenderbufferEXT_remap_index 475
+#define FramebufferTexture1DEXT_remap_index 476
+#define FramebufferTexture2DEXT_remap_index 477
+#define FramebufferTexture3DEXT_remap_index 478
+#define GenFramebuffersEXT_remap_index 479
+#define GenRenderbuffersEXT_remap_index 480
+#define GenerateMipmapEXT_remap_index 481
+#define GetFramebufferAttachmentParameterivEXT_remap_index 482
+#define GetRenderbufferParameterivEXT_remap_index 483
+#define IsFramebufferEXT_remap_index 484
+#define IsRenderbufferEXT_remap_index 485
+#define RenderbufferStorageEXT_remap_index 486
+#define BlitFramebufferEXT_remap_index 487
+#define BufferParameteriAPPLE_remap_index 488
+#define FlushMappedBufferRangeAPPLE_remap_index 489
+#define BindFragDataLocationEXT_remap_index 490
+#define GetFragDataLocationEXT_remap_index 491
+#define GetUniformuivEXT_remap_index 492
+#define GetVertexAttribIivEXT_remap_index 493
+#define GetVertexAttribIuivEXT_remap_index 494
+#define Uniform1uiEXT_remap_index 495
+#define Uniform1uivEXT_remap_index 496
+#define Uniform2uiEXT_remap_index 497
+#define Uniform2uivEXT_remap_index 498
+#define Uniform3uiEXT_remap_index 499
+#define Uniform3uivEXT_remap_index 500
+#define Uniform4uiEXT_remap_index 501
+#define Uniform4uivEXT_remap_index 502
+#define VertexAttribI1iEXT_remap_index 503
+#define VertexAttribI1ivEXT_remap_index 504
+#define VertexAttribI1uiEXT_remap_index 505
+#define VertexAttribI1uivEXT_remap_index 506
+#define VertexAttribI2iEXT_remap_index 507
+#define VertexAttribI2ivEXT_remap_index 508
+#define VertexAttribI2uiEXT_remap_index 509
+#define VertexAttribI2uivEXT_remap_index 510
+#define VertexAttribI3iEXT_remap_index 511
+#define VertexAttribI3ivEXT_remap_index 512
+#define VertexAttribI3uiEXT_remap_index 513
+#define VertexAttribI3uivEXT_remap_index 514
+#define VertexAttribI4bvEXT_remap_index 515
+#define VertexAttribI4iEXT_remap_index 516
+#define VertexAttribI4ivEXT_remap_index 517
+#define VertexAttribI4svEXT_remap_index 518
+#define VertexAttribI4ubvEXT_remap_index 519
+#define VertexAttribI4uiEXT_remap_index 520
+#define VertexAttribI4uivEXT_remap_index 521
+#define VertexAttribI4usvEXT_remap_index 522
+#define VertexAttribIPointerEXT_remap_index 523
+#define FramebufferTextureLayerEXT_remap_index 524
+#define ColorMaskIndexedEXT_remap_index 525
+#define DisableIndexedEXT_remap_index 526
+#define EnableIndexedEXT_remap_index 527
+#define GetBooleanIndexedvEXT_remap_index 528
+#define GetIntegerIndexedvEXT_remap_index 529
+#define IsEnabledIndexedEXT_remap_index 530
+#define ClearColorIiEXT_remap_index 531
+#define ClearColorIuiEXT_remap_index 532
+#define GetTexParameterIivEXT_remap_index 533
+#define GetTexParameterIuivEXT_remap_index 534
+#define TexParameterIivEXT_remap_index 535
+#define TexParameterIuivEXT_remap_index 536
+#define BeginConditionalRenderNV_remap_index 537
+#define EndConditionalRenderNV_remap_index 538
+#define BeginTransformFeedbackEXT_remap_index 539
+#define BindBufferBaseEXT_remap_index 540
+#define BindBufferOffsetEXT_remap_index 541
+#define BindBufferRangeEXT_remap_index 542
+#define EndTransformFeedbackEXT_remap_index 543
+#define GetTransformFeedbackVaryingEXT_remap_index 544
+#define TransformFeedbackVaryingsEXT_remap_index 545
+#define ProvokingVertexEXT_remap_index 546
+#define GetObjectParameterivAPPLE_remap_index 547
+#define ObjectPurgeableAPPLE_remap_index 548
+#define ObjectUnpurgeableAPPLE_remap_index 549
+#define ActiveProgramEXT_remap_index 550
+#define CreateShaderProgramEXT_remap_index 551
+#define UseShaderProgramEXT_remap_index 552
+#define TextureBarrierNV_remap_index 553
+#define StencilFuncSeparateATI_remap_index 554
+#define ProgramEnvParameters4fvEXT_remap_index 555
+#define ProgramLocalParameters4fvEXT_remap_index 556
+#define GetQueryObjecti64vEXT_remap_index 557
+#define GetQueryObjectui64vEXT_remap_index 558
+#define EGLImageTargetRenderbufferStorageOES_remap_index 559
+#define EGLImageTargetTexture2DOES_remap_index 560
#define _gloffset_AttachShader driDispatchRemapTable[AttachShader_remap_index]
#define _gloffset_CreateProgram driDispatchRemapTable[CreateProgram_remap_index]
@@ -1635,7 +1633,6 @@ extern int driDispatchRemapTable[ driDispatchRemapTable_size ];
#define _gloffset_UniformMatrix3x4fv driDispatchRemapTable[UniformMatrix3x4fv_remap_index]
#define _gloffset_UniformMatrix4x2fv driDispatchRemapTable[UniformMatrix4x2fv_remap_index]
#define _gloffset_UniformMatrix4x3fv driDispatchRemapTable[UniformMatrix4x3fv_remap_index]
-#define _gloffset_ClampColor driDispatchRemapTable[ClampColor_remap_index]
#define _gloffset_ClearBufferfi driDispatchRemapTable[ClearBufferfi_remap_index]
#define _gloffset_ClearBufferfv driDispatchRemapTable[ClearBufferfv_remap_index]
#define _gloffset_ClearBufferiv driDispatchRemapTable[ClearBufferiv_remap_index]
@@ -1644,7 +1641,6 @@ extern int driDispatchRemapTable[ driDispatchRemapTable_size ];
#define _gloffset_FramebufferTexture driDispatchRemapTable[FramebufferTexture_remap_index]
#define _gloffset_GetBufferParameteri64v driDispatchRemapTable[GetBufferParameteri64v_remap_index]
#define _gloffset_GetInteger64i_v driDispatchRemapTable[GetInteger64i_v_remap_index]
-#define _gloffset_VertexAttribDivisor driDispatchRemapTable[VertexAttribDivisor_remap_index]
#define _gloffset_LoadTransposeMatrixdARB driDispatchRemapTable[LoadTransposeMatrixdARB_remap_index]
#define _gloffset_LoadTransposeMatrixfARB driDispatchRemapTable[LoadTransposeMatrixfARB_remap_index]
#define _gloffset_MultTransposeMatrixdARB driDispatchRemapTable[MultTransposeMatrixdARB_remap_index]
@@ -1780,9 +1776,7 @@ extern int driDispatchRemapTable[ driDispatchRemapTable_size ];
#define _gloffset_DrawArraysInstancedARB driDispatchRemapTable[DrawArraysInstancedARB_remap_index]
#define _gloffset_DrawElementsInstancedARB driDispatchRemapTable[DrawElementsInstancedARB_remap_index]
#define _gloffset_RenderbufferStorageMultisample driDispatchRemapTable[RenderbufferStorageMultisample_remap_index]
-#define _gloffset_FramebufferTextureARB driDispatchRemapTable[FramebufferTextureARB_remap_index]
#define _gloffset_FramebufferTextureFaceARB driDispatchRemapTable[FramebufferTextureFaceARB_remap_index]
-#define _gloffset_ProgramParameteriARB driDispatchRemapTable[ProgramParameteriARB_remap_index]
#define _gloffset_VertexAttribDivisorARB driDispatchRemapTable[VertexAttribDivisorARB_remap_index]
#define _gloffset_FlushMappedBufferRange driDispatchRemapTable[FlushMappedBufferRange_remap_index]
#define _gloffset_MapBufferRange driDispatchRemapTable[MapBufferRange_remap_index]
@@ -1883,6 +1877,9 @@ extern int driDispatchRemapTable[ driDispatchRemapTable_size ];
#define _gloffset_GetShaderPrecisionFormat driDispatchRemapTable[GetShaderPrecisionFormat_remap_index]
#define _gloffset_ReleaseShaderCompiler driDispatchRemapTable[ReleaseShaderCompiler_remap_index]
#define _gloffset_ShaderBinary driDispatchRemapTable[ShaderBinary_remap_index]
+#define _gloffset_GetProgramBinary driDispatchRemapTable[GetProgramBinary_remap_index]
+#define _gloffset_ProgramBinary driDispatchRemapTable[ProgramBinary_remap_index]
+#define _gloffset_ProgramParameteri driDispatchRemapTable[ProgramParameteri_remap_index]
#define _gloffset_DebugMessageCallbackARB driDispatchRemapTable[DebugMessageCallbackARB_remap_index]
#define _gloffset_DebugMessageControlARB driDispatchRemapTable[DebugMessageControlARB_remap_index]
#define _gloffset_DebugMessageInsertARB driDispatchRemapTable[DebugMessageInsertARB_remap_index]
@@ -6908,17 +6905,6 @@ static INLINE void SET_UniformMatrix4x3fv(struct _glapi_table *disp, void (GLAPI
SET_by_offset(disp, _gloffset_UniformMatrix4x3fv, fn);
}
-typedef void (GLAPIENTRYP _glptr_ClampColor)(GLenum, GLenum);
-#define CALL_ClampColor(disp, parameters) \
- (* GET_ClampColor(disp)) parameters
-static INLINE _glptr_ClampColor GET_ClampColor(struct _glapi_table *disp) {
- return (_glptr_ClampColor) (GET_by_offset(disp, _gloffset_ClampColor));
-}
-
-static INLINE void SET_ClampColor(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum)) {
- SET_by_offset(disp, _gloffset_ClampColor, fn);
-}
-
typedef void (GLAPIENTRYP _glptr_ClearBufferfi)(GLenum, GLint, GLfloat, GLint);
#define CALL_ClearBufferfi(disp, parameters) \
(* GET_ClearBufferfi(disp)) parameters
@@ -7007,17 +6993,6 @@ static INLINE void SET_GetInteger64i_v(struct _glapi_table *disp, void (GLAPIENT
SET_by_offset(disp, _gloffset_GetInteger64i_v, fn);
}
-typedef void (GLAPIENTRYP _glptr_VertexAttribDivisor)(GLuint, GLuint);
-#define CALL_VertexAttribDivisor(disp, parameters) \
- (* GET_VertexAttribDivisor(disp)) parameters
-static INLINE _glptr_VertexAttribDivisor GET_VertexAttribDivisor(struct _glapi_table *disp) {
- return (_glptr_VertexAttribDivisor) (GET_by_offset(disp, _gloffset_VertexAttribDivisor));
-}
-
-static INLINE void SET_VertexAttribDivisor(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint)) {
- SET_by_offset(disp, _gloffset_VertexAttribDivisor, fn);
-}
-
typedef void (GLAPIENTRYP _glptr_LoadTransposeMatrixdARB)(const GLdouble *);
#define CALL_LoadTransposeMatrixdARB(disp, parameters) \
(* GET_LoadTransposeMatrixdARB(disp)) parameters
@@ -8503,17 +8478,6 @@ static INLINE void SET_RenderbufferStorageMultisample(struct _glapi_table *disp,
SET_by_offset(disp, _gloffset_RenderbufferStorageMultisample, fn);
}
-typedef void (GLAPIENTRYP _glptr_FramebufferTextureARB)(GLenum, GLenum, GLuint, GLint);
-#define CALL_FramebufferTextureARB(disp, parameters) \
- (* GET_FramebufferTextureARB(disp)) parameters
-static INLINE _glptr_FramebufferTextureARB GET_FramebufferTextureARB(struct _glapi_table *disp) {
- return (_glptr_FramebufferTextureARB) (GET_by_offset(disp, _gloffset_FramebufferTextureARB));
-}
-
-static INLINE void SET_FramebufferTextureARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLenum, GLenum, GLuint, GLint)) {
- SET_by_offset(disp, _gloffset_FramebufferTextureARB, fn);
-}
-
typedef void (GLAPIENTRYP _glptr_FramebufferTextureFaceARB)(GLenum, GLenum, GLuint, GLint, GLenum);
#define CALL_FramebufferTextureFaceARB(disp, parameters) \
(* GET_FramebufferTextureFaceARB(disp)) parameters
@@ -8525,17 +8489,6 @@ static INLINE void SET_FramebufferTextureFaceARB(struct _glapi_table *disp, void
SET_by_offset(disp, _gloffset_FramebufferTextureFaceARB, fn);
}
-typedef void (GLAPIENTRYP _glptr_ProgramParameteriARB)(GLuint, GLenum, GLint);
-#define CALL_ProgramParameteriARB(disp, parameters) \
- (* GET_ProgramParameteriARB(disp)) parameters
-static INLINE _glptr_ProgramParameteriARB GET_ProgramParameteriARB(struct _glapi_table *disp) {
- return (_glptr_ProgramParameteriARB) (GET_by_offset(disp, _gloffset_ProgramParameteriARB));
-}
-
-static INLINE void SET_ProgramParameteriARB(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint)) {
- SET_by_offset(disp, _gloffset_ProgramParameteriARB, fn);
-}
-
typedef void (GLAPIENTRYP _glptr_VertexAttribDivisorARB)(GLuint, GLuint);
#define CALL_VertexAttribDivisorARB(disp, parameters) \
(* GET_VertexAttribDivisorARB(disp)) parameters
@@ -9636,6 +9589,39 @@ static INLINE void SET_ShaderBinary(struct _glapi_table *disp, void (GLAPIENTRYP
SET_by_offset(disp, _gloffset_ShaderBinary, fn);
}
+typedef void (GLAPIENTRYP _glptr_GetProgramBinary)(GLuint, GLsizei, GLsizei *, GLenum *, GLvoid *);
+#define CALL_GetProgramBinary(disp, parameters) \
+ (* GET_GetProgramBinary(disp)) parameters
+static INLINE _glptr_GetProgramBinary GET_GetProgramBinary(struct _glapi_table *disp) {
+ return (_glptr_GetProgramBinary) (GET_by_offset(disp, _gloffset_GetProgramBinary));
+}
+
+static INLINE void SET_GetProgramBinary(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLsizei, GLsizei *, GLenum *, GLvoid *)) {
+ SET_by_offset(disp, _gloffset_GetProgramBinary, fn);
+}
+
+typedef void (GLAPIENTRYP _glptr_ProgramBinary)(GLuint, GLenum, const GLvoid *, GLsizei);
+#define CALL_ProgramBinary(disp, parameters) \
+ (* GET_ProgramBinary(disp)) parameters
+static INLINE _glptr_ProgramBinary GET_ProgramBinary(struct _glapi_table *disp) {
+ return (_glptr_ProgramBinary) (GET_by_offset(disp, _gloffset_ProgramBinary));
+}
+
+static INLINE void SET_ProgramBinary(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, const GLvoid *, GLsizei)) {
+ SET_by_offset(disp, _gloffset_ProgramBinary, fn);
+}
+
+typedef void (GLAPIENTRYP _glptr_ProgramParameteri)(GLuint, GLenum, GLint);
+#define CALL_ProgramParameteri(disp, parameters) \
+ (* GET_ProgramParameteri(disp)) parameters
+static INLINE _glptr_ProgramParameteri GET_ProgramParameteri(struct _glapi_table *disp) {
+ return (_glptr_ProgramParameteri) (GET_by_offset(disp, _gloffset_ProgramParameteri));
+}
+
+static INLINE void SET_ProgramParameteri(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum, GLint)) {
+ SET_by_offset(disp, _gloffset_ProgramParameteri, fn);
+}
+
typedef void (GLAPIENTRYP _glptr_DebugMessageCallbackARB)(GLDEBUGPROCARB, const GLvoid *);
#define CALL_DebugMessageCallbackARB(disp, parameters) \
(* GET_DebugMessageCallbackARB(disp)) parameters
diff --git a/xorg-server/glx/glapi_gentable.c b/xorg-server/glx/glapi_gentable.c
index c4c0b79d2..cfbfb671f 100644
--- a/xorg-server/glx/glapi_gentable.c
+++ b/xorg-server/glx/glapi_gentable.c
@@ -48,7 +48,7 @@
#include <stdlib.h>
#include <stdio.h>
-#include <GL/gl.h>
+#include "glheader.h"
#include "glapi.h"
#include "glapitable.h"
@@ -3769,13 +3769,6 @@ _glapi_create_table_from_handle(void *handle, const char *symbol_prefix) {
}
- if(!disp->ClampColor) {
- void ** procp = (void **) &disp->ClampColor;
- snprintf(symboln, sizeof(symboln), "%sClampColor", symbol_prefix);
- *procp = dlsym(handle, symboln);
- }
-
-
if(!disp->ClearBufferfi) {
void ** procp = (void **) &disp->ClearBufferfi;
snprintf(symboln, sizeof(symboln), "%sClearBufferfi", symbol_prefix);
@@ -3813,6 +3806,13 @@ _glapi_create_table_from_handle(void *handle, const char *symbol_prefix) {
if(!disp->FramebufferTexture) {
void ** procp = (void **) &disp->FramebufferTexture;
+ snprintf(symboln, sizeof(symboln), "%sFramebufferTextureARB", symbol_prefix);
+ *procp = dlsym(handle, symboln);
+ }
+
+
+ if(!disp->FramebufferTexture) {
+ void ** procp = (void **) &disp->FramebufferTexture;
snprintf(symboln, sizeof(symboln), "%sFramebufferTexture", symbol_prefix);
*procp = dlsym(handle, symboln);
}
@@ -3832,13 +3832,6 @@ _glapi_create_table_from_handle(void *handle, const char *symbol_prefix) {
}
- if(!disp->VertexAttribDivisor) {
- void ** procp = (void **) &disp->VertexAttribDivisor;
- snprintf(symboln, sizeof(symboln), "%sVertexAttribDivisor", symbol_prefix);
- *procp = dlsym(handle, symboln);
- }
-
-
if(!disp->LoadTransposeMatrixdARB) {
void ** procp = (void **) &disp->LoadTransposeMatrixdARB;
snprintf(symboln, sizeof(symboln), "%sLoadTransposeMatrixd", symbol_prefix);
@@ -5540,6 +5533,13 @@ _glapi_create_table_from_handle(void *handle, const char *symbol_prefix) {
}
+ if(!disp->ClampColorARB) {
+ void ** procp = (void **) &disp->ClampColorARB;
+ snprintf(symboln, sizeof(symboln), "%sClampColor", symbol_prefix);
+ *procp = dlsym(handle, symboln);
+ }
+
+
if(!disp->DrawArraysInstancedARB) {
void ** procp = (void **) &disp->DrawArraysInstancedARB;
snprintf(symboln, sizeof(symboln), "%sDrawArraysInstancedARB", symbol_prefix);
@@ -5596,13 +5596,6 @@ _glapi_create_table_from_handle(void *handle, const char *symbol_prefix) {
}
- if(!disp->FramebufferTextureARB) {
- void ** procp = (void **) &disp->FramebufferTextureARB;
- snprintf(symboln, sizeof(symboln), "%sFramebufferTextureARB", symbol_prefix);
- *procp = dlsym(handle, symboln);
- }
-
-
if(!disp->FramebufferTextureFaceARB) {
void ** procp = (void **) &disp->FramebufferTextureFaceARB;
snprintf(symboln, sizeof(symboln), "%sFramebufferTextureFaceARB", symbol_prefix);
@@ -5610,16 +5603,16 @@ _glapi_create_table_from_handle(void *handle, const char *symbol_prefix) {
}
- if(!disp->ProgramParameteriARB) {
- void ** procp = (void **) &disp->ProgramParameteriARB;
- snprintf(symboln, sizeof(symboln), "%sProgramParameteriARB", symbol_prefix);
+ if(!disp->VertexAttribDivisorARB) {
+ void ** procp = (void **) &disp->VertexAttribDivisorARB;
+ snprintf(symboln, sizeof(symboln), "%sVertexAttribDivisorARB", symbol_prefix);
*procp = dlsym(handle, symboln);
}
if(!disp->VertexAttribDivisorARB) {
void ** procp = (void **) &disp->VertexAttribDivisorARB;
- snprintf(symboln, sizeof(symboln), "%sVertexAttribDivisorARB", symbol_prefix);
+ snprintf(symboln, sizeof(symboln), "%sVertexAttribDivisor", symbol_prefix);
*procp = dlsym(handle, symboln);
}
@@ -6352,6 +6345,34 @@ _glapi_create_table_from_handle(void *handle, const char *symbol_prefix) {
}
+ if(!disp->GetProgramBinary) {
+ void ** procp = (void **) &disp->GetProgramBinary;
+ snprintf(symboln, sizeof(symboln), "%sGetProgramBinary", symbol_prefix);
+ *procp = dlsym(handle, symboln);
+ }
+
+
+ if(!disp->ProgramBinary) {
+ void ** procp = (void **) &disp->ProgramBinary;
+ snprintf(symboln, sizeof(symboln), "%sProgramBinary", symbol_prefix);
+ *procp = dlsym(handle, symboln);
+ }
+
+
+ if(!disp->ProgramParameteri) {
+ void ** procp = (void **) &disp->ProgramParameteri;
+ snprintf(symboln, sizeof(symboln), "%sProgramParameteriARB", symbol_prefix);
+ *procp = dlsym(handle, symboln);
+ }
+
+
+ if(!disp->ProgramParameteri) {
+ void ** procp = (void **) &disp->ProgramParameteri;
+ snprintf(symboln, sizeof(symboln), "%sProgramParameteri", symbol_prefix);
+ *procp = dlsym(handle, symboln);
+ }
+
+
if(!disp->DebugMessageCallbackARB) {
void ** procp = (void **) &disp->DebugMessageCallbackARB;
snprintf(symboln, sizeof(symboln), "%sDebugMessageCallbackARB", symbol_prefix);
diff --git a/xorg-server/glx/glapitable.h b/xorg-server/glx/glapitable.h
index 9b6c08aca..70f3c83e5 100644
--- a/xorg-server/glx/glapitable.h
+++ b/xorg-server/glx/glapitable.h
@@ -471,546 +471,545 @@ struct _glapi_table
void (GLAPIENTRYP UniformMatrix3x4fv)(GLint location, GLsizei count, GLboolean transpose, const GLfloat * value); /* 427 */
void (GLAPIENTRYP UniformMatrix4x2fv)(GLint location, GLsizei count, GLboolean transpose, const GLfloat * value); /* 428 */
void (GLAPIENTRYP UniformMatrix4x3fv)(GLint location, GLsizei count, GLboolean transpose, const GLfloat * value); /* 429 */
- void (GLAPIENTRYP ClampColor)(GLenum target, GLenum clamp); /* 430 */
- void (GLAPIENTRYP ClearBufferfi)(GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil); /* 431 */
- void (GLAPIENTRYP ClearBufferfv)(GLenum buffer, GLint drawbuffer, const GLfloat * value); /* 432 */
- void (GLAPIENTRYP ClearBufferiv)(GLenum buffer, GLint drawbuffer, const GLint * value); /* 433 */
- void (GLAPIENTRYP ClearBufferuiv)(GLenum buffer, GLint drawbuffer, const GLuint * value); /* 434 */
- const GLubyte * (GLAPIENTRYP GetStringi)(GLenum name, GLuint index); /* 435 */
- void (GLAPIENTRYP FramebufferTexture)(GLenum target, GLenum attachment, GLuint texture, GLint level); /* 436 */
- void (GLAPIENTRYP GetBufferParameteri64v)(GLenum target, GLenum pname, GLint64 * params); /* 437 */
- void (GLAPIENTRYP GetInteger64i_v)(GLenum cap, GLuint index, GLint64 * data); /* 438 */
- void (GLAPIENTRYP VertexAttribDivisor)(GLuint index, GLuint divisor); /* 439 */
- void (GLAPIENTRYP LoadTransposeMatrixdARB)(const GLdouble * m); /* 440 */
- void (GLAPIENTRYP LoadTransposeMatrixfARB)(const GLfloat * m); /* 441 */
- void (GLAPIENTRYP MultTransposeMatrixdARB)(const GLdouble * m); /* 442 */
- void (GLAPIENTRYP MultTransposeMatrixfARB)(const GLfloat * m); /* 443 */
- void (GLAPIENTRYP SampleCoverageARB)(GLclampf value, GLboolean invert); /* 444 */
- void (GLAPIENTRYP CompressedTexImage1DARB)(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid * data); /* 445 */
- void (GLAPIENTRYP CompressedTexImage2DARB)(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid * data); /* 446 */
- void (GLAPIENTRYP CompressedTexImage3DARB)(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid * data); /* 447 */
- void (GLAPIENTRYP CompressedTexSubImage1DARB)(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid * data); /* 448 */
- void (GLAPIENTRYP CompressedTexSubImage2DARB)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid * data); /* 449 */
- void (GLAPIENTRYP CompressedTexSubImage3DARB)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid * data); /* 450 */
- void (GLAPIENTRYP GetCompressedTexImageARB)(GLenum target, GLint level, GLvoid * img); /* 451 */
- void (GLAPIENTRYP DisableVertexAttribArrayARB)(GLuint index); /* 452 */
- void (GLAPIENTRYP EnableVertexAttribArrayARB)(GLuint index); /* 453 */
- void (GLAPIENTRYP GetProgramEnvParameterdvARB)(GLenum target, GLuint index, GLdouble * params); /* 454 */
- void (GLAPIENTRYP GetProgramEnvParameterfvARB)(GLenum target, GLuint index, GLfloat * params); /* 455 */
- void (GLAPIENTRYP GetProgramLocalParameterdvARB)(GLenum target, GLuint index, GLdouble * params); /* 456 */
- void (GLAPIENTRYP GetProgramLocalParameterfvARB)(GLenum target, GLuint index, GLfloat * params); /* 457 */
- void (GLAPIENTRYP GetProgramStringARB)(GLenum target, GLenum pname, GLvoid * string); /* 458 */
- void (GLAPIENTRYP GetProgramivARB)(GLenum target, GLenum pname, GLint * params); /* 459 */
- void (GLAPIENTRYP GetVertexAttribdvARB)(GLuint index, GLenum pname, GLdouble * params); /* 460 */
- void (GLAPIENTRYP GetVertexAttribfvARB)(GLuint index, GLenum pname, GLfloat * params); /* 461 */
- void (GLAPIENTRYP GetVertexAttribivARB)(GLuint index, GLenum pname, GLint * params); /* 462 */
- void (GLAPIENTRYP ProgramEnvParameter4dARB)(GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 463 */
- void (GLAPIENTRYP ProgramEnvParameter4dvARB)(GLenum target, GLuint index, const GLdouble * params); /* 464 */
- void (GLAPIENTRYP ProgramEnvParameter4fARB)(GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 465 */
- void (GLAPIENTRYP ProgramEnvParameter4fvARB)(GLenum target, GLuint index, const GLfloat * params); /* 466 */
- void (GLAPIENTRYP ProgramLocalParameter4dARB)(GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 467 */
- void (GLAPIENTRYP ProgramLocalParameter4dvARB)(GLenum target, GLuint index, const GLdouble * params); /* 468 */
- void (GLAPIENTRYP ProgramLocalParameter4fARB)(GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 469 */
- void (GLAPIENTRYP ProgramLocalParameter4fvARB)(GLenum target, GLuint index, const GLfloat * params); /* 470 */
- void (GLAPIENTRYP ProgramStringARB)(GLenum target, GLenum format, GLsizei len, const GLvoid * string); /* 471 */
- void (GLAPIENTRYP VertexAttrib1dARB)(GLuint index, GLdouble x); /* 472 */
- void (GLAPIENTRYP VertexAttrib1dvARB)(GLuint index, const GLdouble * v); /* 473 */
- void (GLAPIENTRYP VertexAttrib1fARB)(GLuint index, GLfloat x); /* 474 */
- void (GLAPIENTRYP VertexAttrib1fvARB)(GLuint index, const GLfloat * v); /* 475 */
- void (GLAPIENTRYP VertexAttrib1sARB)(GLuint index, GLshort x); /* 476 */
- void (GLAPIENTRYP VertexAttrib1svARB)(GLuint index, const GLshort * v); /* 477 */
- void (GLAPIENTRYP VertexAttrib2dARB)(GLuint index, GLdouble x, GLdouble y); /* 478 */
- void (GLAPIENTRYP VertexAttrib2dvARB)(GLuint index, const GLdouble * v); /* 479 */
- void (GLAPIENTRYP VertexAttrib2fARB)(GLuint index, GLfloat x, GLfloat y); /* 480 */
- void (GLAPIENTRYP VertexAttrib2fvARB)(GLuint index, const GLfloat * v); /* 481 */
- void (GLAPIENTRYP VertexAttrib2sARB)(GLuint index, GLshort x, GLshort y); /* 482 */
- void (GLAPIENTRYP VertexAttrib2svARB)(GLuint index, const GLshort * v); /* 483 */
- void (GLAPIENTRYP VertexAttrib3dARB)(GLuint index, GLdouble x, GLdouble y, GLdouble z); /* 484 */
- void (GLAPIENTRYP VertexAttrib3dvARB)(GLuint index, const GLdouble * v); /* 485 */
- void (GLAPIENTRYP VertexAttrib3fARB)(GLuint index, GLfloat x, GLfloat y, GLfloat z); /* 486 */
- void (GLAPIENTRYP VertexAttrib3fvARB)(GLuint index, const GLfloat * v); /* 487 */
- void (GLAPIENTRYP VertexAttrib3sARB)(GLuint index, GLshort x, GLshort y, GLshort z); /* 488 */
- void (GLAPIENTRYP VertexAttrib3svARB)(GLuint index, const GLshort * v); /* 489 */
- void (GLAPIENTRYP VertexAttrib4NbvARB)(GLuint index, const GLbyte * v); /* 490 */
- void (GLAPIENTRYP VertexAttrib4NivARB)(GLuint index, const GLint * v); /* 491 */
- void (GLAPIENTRYP VertexAttrib4NsvARB)(GLuint index, const GLshort * v); /* 492 */
- void (GLAPIENTRYP VertexAttrib4NubARB)(GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); /* 493 */
- void (GLAPIENTRYP VertexAttrib4NubvARB)(GLuint index, const GLubyte * v); /* 494 */
- void (GLAPIENTRYP VertexAttrib4NuivARB)(GLuint index, const GLuint * v); /* 495 */
- void (GLAPIENTRYP VertexAttrib4NusvARB)(GLuint index, const GLushort * v); /* 496 */
- void (GLAPIENTRYP VertexAttrib4bvARB)(GLuint index, const GLbyte * v); /* 497 */
- void (GLAPIENTRYP VertexAttrib4dARB)(GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 498 */
- void (GLAPIENTRYP VertexAttrib4dvARB)(GLuint index, const GLdouble * v); /* 499 */
- void (GLAPIENTRYP VertexAttrib4fARB)(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 500 */
- void (GLAPIENTRYP VertexAttrib4fvARB)(GLuint index, const GLfloat * v); /* 501 */
- void (GLAPIENTRYP VertexAttrib4ivARB)(GLuint index, const GLint * v); /* 502 */
- void (GLAPIENTRYP VertexAttrib4sARB)(GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); /* 503 */
- void (GLAPIENTRYP VertexAttrib4svARB)(GLuint index, const GLshort * v); /* 504 */
- void (GLAPIENTRYP VertexAttrib4ubvARB)(GLuint index, const GLubyte * v); /* 505 */
- void (GLAPIENTRYP VertexAttrib4uivARB)(GLuint index, const GLuint * v); /* 506 */
- void (GLAPIENTRYP VertexAttrib4usvARB)(GLuint index, const GLushort * v); /* 507 */
- void (GLAPIENTRYP VertexAttribPointerARB)(GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid * pointer); /* 508 */
- void (GLAPIENTRYP BindBufferARB)(GLenum target, GLuint buffer); /* 509 */
- void (GLAPIENTRYP BufferDataARB)(GLenum target, GLsizeiptrARB size, const GLvoid * data, GLenum usage); /* 510 */
- void (GLAPIENTRYP BufferSubDataARB)(GLenum target, GLintptrARB offset, GLsizeiptrARB size, const GLvoid * data); /* 511 */
- void (GLAPIENTRYP DeleteBuffersARB)(GLsizei n, const GLuint * buffer); /* 512 */
- void (GLAPIENTRYP GenBuffersARB)(GLsizei n, GLuint * buffer); /* 513 */
- void (GLAPIENTRYP GetBufferParameterivARB)(GLenum target, GLenum pname, GLint * params); /* 514 */
- void (GLAPIENTRYP GetBufferPointervARB)(GLenum target, GLenum pname, GLvoid ** params); /* 515 */
- void (GLAPIENTRYP GetBufferSubDataARB)(GLenum target, GLintptrARB offset, GLsizeiptrARB size, GLvoid * data); /* 516 */
- GLboolean (GLAPIENTRYP IsBufferARB)(GLuint buffer); /* 517 */
- GLvoid * (GLAPIENTRYP MapBufferARB)(GLenum target, GLenum access); /* 518 */
- GLboolean (GLAPIENTRYP UnmapBufferARB)(GLenum target); /* 519 */
- void (GLAPIENTRYP BeginQueryARB)(GLenum target, GLuint id); /* 520 */
- void (GLAPIENTRYP DeleteQueriesARB)(GLsizei n, const GLuint * ids); /* 521 */
- void (GLAPIENTRYP EndQueryARB)(GLenum target); /* 522 */
- void (GLAPIENTRYP GenQueriesARB)(GLsizei n, GLuint * ids); /* 523 */
- void (GLAPIENTRYP GetQueryObjectivARB)(GLuint id, GLenum pname, GLint * params); /* 524 */
- void (GLAPIENTRYP GetQueryObjectuivARB)(GLuint id, GLenum pname, GLuint * params); /* 525 */
- void (GLAPIENTRYP GetQueryivARB)(GLenum target, GLenum pname, GLint * params); /* 526 */
- GLboolean (GLAPIENTRYP IsQueryARB)(GLuint id); /* 527 */
- void (GLAPIENTRYP AttachObjectARB)(GLhandleARB containerObj, GLhandleARB obj); /* 528 */
- void (GLAPIENTRYP CompileShaderARB)(GLhandleARB shader); /* 529 */
- GLhandleARB (GLAPIENTRYP CreateProgramObjectARB)(void); /* 530 */
- GLhandleARB (GLAPIENTRYP CreateShaderObjectARB)(GLenum shaderType); /* 531 */
- void (GLAPIENTRYP DeleteObjectARB)(GLhandleARB obj); /* 532 */
- void (GLAPIENTRYP DetachObjectARB)(GLhandleARB containerObj, GLhandleARB attachedObj); /* 533 */
- void (GLAPIENTRYP GetActiveUniformARB)(GLhandleARB program, GLuint index, GLsizei bufSize, GLsizei * length, GLint * size, GLenum * type, GLcharARB * name); /* 534 */
- void (GLAPIENTRYP GetAttachedObjectsARB)(GLhandleARB containerObj, GLsizei maxLength, GLsizei * length, GLhandleARB * infoLog); /* 535 */
- GLhandleARB (GLAPIENTRYP GetHandleARB)(GLenum pname); /* 536 */
- void (GLAPIENTRYP GetInfoLogARB)(GLhandleARB obj, GLsizei maxLength, GLsizei * length, GLcharARB * infoLog); /* 537 */
- void (GLAPIENTRYP GetObjectParameterfvARB)(GLhandleARB obj, GLenum pname, GLfloat * params); /* 538 */
- void (GLAPIENTRYP GetObjectParameterivARB)(GLhandleARB obj, GLenum pname, GLint * params); /* 539 */
- void (GLAPIENTRYP GetShaderSourceARB)(GLhandleARB shader, GLsizei bufSize, GLsizei * length, GLcharARB * source); /* 540 */
- GLint (GLAPIENTRYP GetUniformLocationARB)(GLhandleARB program, const GLcharARB * name); /* 541 */
- void (GLAPIENTRYP GetUniformfvARB)(GLhandleARB program, GLint location, GLfloat * params); /* 542 */
- void (GLAPIENTRYP GetUniformivARB)(GLhandleARB program, GLint location, GLint * params); /* 543 */
- void (GLAPIENTRYP LinkProgramARB)(GLhandleARB program); /* 544 */
- void (GLAPIENTRYP ShaderSourceARB)(GLhandleARB shader, GLsizei count, const GLcharARB ** string, const GLint * length); /* 545 */
- void (GLAPIENTRYP Uniform1fARB)(GLint location, GLfloat v0); /* 546 */
- void (GLAPIENTRYP Uniform1fvARB)(GLint location, GLsizei count, const GLfloat * value); /* 547 */
- void (GLAPIENTRYP Uniform1iARB)(GLint location, GLint v0); /* 548 */
- void (GLAPIENTRYP Uniform1ivARB)(GLint location, GLsizei count, const GLint * value); /* 549 */
- void (GLAPIENTRYP Uniform2fARB)(GLint location, GLfloat v0, GLfloat v1); /* 550 */
- void (GLAPIENTRYP Uniform2fvARB)(GLint location, GLsizei count, const GLfloat * value); /* 551 */
- void (GLAPIENTRYP Uniform2iARB)(GLint location, GLint v0, GLint v1); /* 552 */
- void (GLAPIENTRYP Uniform2ivARB)(GLint location, GLsizei count, const GLint * value); /* 553 */
- void (GLAPIENTRYP Uniform3fARB)(GLint location, GLfloat v0, GLfloat v1, GLfloat v2); /* 554 */
- void (GLAPIENTRYP Uniform3fvARB)(GLint location, GLsizei count, const GLfloat * value); /* 555 */
- void (GLAPIENTRYP Uniform3iARB)(GLint location, GLint v0, GLint v1, GLint v2); /* 556 */
- void (GLAPIENTRYP Uniform3ivARB)(GLint location, GLsizei count, const GLint * value); /* 557 */
- void (GLAPIENTRYP Uniform4fARB)(GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); /* 558 */
- void (GLAPIENTRYP Uniform4fvARB)(GLint location, GLsizei count, const GLfloat * value); /* 559 */
- void (GLAPIENTRYP Uniform4iARB)(GLint location, GLint v0, GLint v1, GLint v2, GLint v3); /* 560 */
- void (GLAPIENTRYP Uniform4ivARB)(GLint location, GLsizei count, const GLint * value); /* 561 */
- void (GLAPIENTRYP UniformMatrix2fvARB)(GLint location, GLsizei count, GLboolean transpose, const GLfloat * value); /* 562 */
- void (GLAPIENTRYP UniformMatrix3fvARB)(GLint location, GLsizei count, GLboolean transpose, const GLfloat * value); /* 563 */
- void (GLAPIENTRYP UniformMatrix4fvARB)(GLint location, GLsizei count, GLboolean transpose, const GLfloat * value); /* 564 */
- void (GLAPIENTRYP UseProgramObjectARB)(GLhandleARB program); /* 565 */
- void (GLAPIENTRYP ValidateProgramARB)(GLhandleARB program); /* 566 */
- void (GLAPIENTRYP BindAttribLocationARB)(GLhandleARB program, GLuint index, const GLcharARB * name); /* 567 */
- void (GLAPIENTRYP GetActiveAttribARB)(GLhandleARB program, GLuint index, GLsizei bufSize, GLsizei * length, GLint * size, GLenum * type, GLcharARB * name); /* 568 */
- GLint (GLAPIENTRYP GetAttribLocationARB)(GLhandleARB program, const GLcharARB * name); /* 569 */
- void (GLAPIENTRYP DrawBuffersARB)(GLsizei n, const GLenum * bufs); /* 570 */
- void (GLAPIENTRYP ClampColorARB)(GLenum target, GLenum clamp); /* 571 */
- void (GLAPIENTRYP DrawArraysInstancedARB)(GLenum mode, GLint first, GLsizei count, GLsizei primcount); /* 572 */
- void (GLAPIENTRYP DrawElementsInstancedARB)(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices, GLsizei primcount); /* 573 */
- void (GLAPIENTRYP RenderbufferStorageMultisample)(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); /* 574 */
- void (GLAPIENTRYP FramebufferTextureARB)(GLenum target, GLenum attachment, GLuint texture, GLint level); /* 575 */
- void (GLAPIENTRYP FramebufferTextureFaceARB)(GLenum target, GLenum attachment, GLuint texture, GLint level, GLenum face); /* 576 */
- void (GLAPIENTRYP ProgramParameteriARB)(GLuint program, GLenum pname, GLint value); /* 577 */
- void (GLAPIENTRYP VertexAttribDivisorARB)(GLuint index, GLuint divisor); /* 578 */
- void (GLAPIENTRYP FlushMappedBufferRange)(GLenum target, GLintptr offset, GLsizeiptr length); /* 579 */
- GLvoid * (GLAPIENTRYP MapBufferRange)(GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access); /* 580 */
- void (GLAPIENTRYP TexBufferARB)(GLenum target, GLenum internalFormat, GLuint buffer); /* 581 */
- void (GLAPIENTRYP BindVertexArray)(GLuint array); /* 582 */
- void (GLAPIENTRYP GenVertexArrays)(GLsizei n, GLuint * arrays); /* 583 */
- void (GLAPIENTRYP GetActiveUniformBlockName)(GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei * length, GLchar * uniformBlockName); /* 584 */
- void (GLAPIENTRYP GetActiveUniformBlockiv)(GLuint program, GLuint uniformBlockIndex, GLenum pname, GLint * params); /* 585 */
- void (GLAPIENTRYP GetActiveUniformName)(GLuint program, GLuint uniformIndex, GLsizei bufSize, GLsizei * length, GLchar * uniformName); /* 586 */
- void (GLAPIENTRYP GetActiveUniformsiv)(GLuint program, GLsizei uniformCount, const GLuint * uniformIndices, GLenum pname, GLint * params); /* 587 */
- GLuint (GLAPIENTRYP GetUniformBlockIndex)(GLuint program, const GLchar * uniformBlockName); /* 588 */
- void (GLAPIENTRYP GetUniformIndices)(GLuint program, GLsizei uniformCount, const GLchar * const * uniformNames, GLuint * uniformIndices); /* 589 */
- void (GLAPIENTRYP UniformBlockBinding)(GLuint program, GLuint uniformBlockIndex, GLuint uniformBlockBinding); /* 590 */
- void (GLAPIENTRYP CopyBufferSubData)(GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); /* 591 */
- GLenum (GLAPIENTRYP ClientWaitSync)(GLsync sync, GLbitfield flags, GLuint64 timeout); /* 592 */
- void (GLAPIENTRYP DeleteSync)(GLsync sync); /* 593 */
- GLsync (GLAPIENTRYP FenceSync)(GLenum condition, GLbitfield flags); /* 594 */
- void (GLAPIENTRYP GetInteger64v)(GLenum pname, GLint64 * params); /* 595 */
- void (GLAPIENTRYP GetSynciv)(GLsync sync, GLenum pname, GLsizei bufSize, GLsizei * length, GLint * values); /* 596 */
- GLboolean (GLAPIENTRYP IsSync)(GLsync sync); /* 597 */
- void (GLAPIENTRYP WaitSync)(GLsync sync, GLbitfield flags, GLuint64 timeout); /* 598 */
- void (GLAPIENTRYP DrawElementsBaseVertex)(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices, GLint basevertex); /* 599 */
- void (GLAPIENTRYP DrawElementsInstancedBaseVertex)(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices, GLsizei primcount, GLint basevertex); /* 600 */
- void (GLAPIENTRYP DrawRangeElementsBaseVertex)(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid * indices, GLint basevertex); /* 601 */
- void (GLAPIENTRYP MultiDrawElementsBaseVertex)(GLenum mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, const GLint * basevertex); /* 602 */
- void (GLAPIENTRYP BlendEquationSeparateiARB)(GLuint buf, GLenum modeRGB, GLenum modeA); /* 603 */
- void (GLAPIENTRYP BlendEquationiARB)(GLuint buf, GLenum mode); /* 604 */
- void (GLAPIENTRYP BlendFuncSeparateiARB)(GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcA, GLenum dstA); /* 605 */
- void (GLAPIENTRYP BlendFunciARB)(GLuint buf, GLenum src, GLenum dst); /* 606 */
- void (GLAPIENTRYP BindFragDataLocationIndexed)(GLuint program, GLuint colorNumber, GLuint index, const GLchar * name); /* 607 */
- GLint (GLAPIENTRYP GetFragDataIndex)(GLuint program, const GLchar * name); /* 608 */
- void (GLAPIENTRYP BindSampler)(GLuint unit, GLuint sampler); /* 609 */
- void (GLAPIENTRYP DeleteSamplers)(GLsizei count, const GLuint * samplers); /* 610 */
- void (GLAPIENTRYP GenSamplers)(GLsizei count, GLuint * samplers); /* 611 */
- void (GLAPIENTRYP GetSamplerParameterIiv)(GLuint sampler, GLenum pname, GLint * params); /* 612 */
- void (GLAPIENTRYP GetSamplerParameterIuiv)(GLuint sampler, GLenum pname, GLuint * params); /* 613 */
- void (GLAPIENTRYP GetSamplerParameterfv)(GLuint sampler, GLenum pname, GLfloat * params); /* 614 */
- void (GLAPIENTRYP GetSamplerParameteriv)(GLuint sampler, GLenum pname, GLint * params); /* 615 */
- GLboolean (GLAPIENTRYP IsSampler)(GLuint sampler); /* 616 */
- void (GLAPIENTRYP SamplerParameterIiv)(GLuint sampler, GLenum pname, const GLint * params); /* 617 */
- void (GLAPIENTRYP SamplerParameterIuiv)(GLuint sampler, GLenum pname, const GLuint * params); /* 618 */
- void (GLAPIENTRYP SamplerParameterf)(GLuint sampler, GLenum pname, GLfloat param); /* 619 */
- void (GLAPIENTRYP SamplerParameterfv)(GLuint sampler, GLenum pname, const GLfloat * params); /* 620 */
- void (GLAPIENTRYP SamplerParameteri)(GLuint sampler, GLenum pname, GLint param); /* 621 */
- void (GLAPIENTRYP SamplerParameteriv)(GLuint sampler, GLenum pname, const GLint * params); /* 622 */
- void (GLAPIENTRYP QueryCounter)(GLuint id, GLenum target); /* 623 */
- void (GLAPIENTRYP ColorP3ui)(GLenum type, GLuint color); /* 624 */
- void (GLAPIENTRYP ColorP3uiv)(GLenum type, const GLuint * color); /* 625 */
- void (GLAPIENTRYP ColorP4ui)(GLenum type, GLuint color); /* 626 */
- void (GLAPIENTRYP ColorP4uiv)(GLenum type, const GLuint * color); /* 627 */
- void (GLAPIENTRYP MultiTexCoordP1ui)(GLenum texture, GLenum type, GLuint coords); /* 628 */
- void (GLAPIENTRYP MultiTexCoordP1uiv)(GLenum texture, GLenum type, const GLuint * coords); /* 629 */
- void (GLAPIENTRYP MultiTexCoordP2ui)(GLenum texture, GLenum type, GLuint coords); /* 630 */
- void (GLAPIENTRYP MultiTexCoordP2uiv)(GLenum texture, GLenum type, const GLuint * coords); /* 631 */
- void (GLAPIENTRYP MultiTexCoordP3ui)(GLenum texture, GLenum type, GLuint coords); /* 632 */
- void (GLAPIENTRYP MultiTexCoordP3uiv)(GLenum texture, GLenum type, const GLuint * coords); /* 633 */
- void (GLAPIENTRYP MultiTexCoordP4ui)(GLenum texture, GLenum type, GLuint coords); /* 634 */
- void (GLAPIENTRYP MultiTexCoordP4uiv)(GLenum texture, GLenum type, const GLuint * coords); /* 635 */
- void (GLAPIENTRYP NormalP3ui)(GLenum type, GLuint coords); /* 636 */
- void (GLAPIENTRYP NormalP3uiv)(GLenum type, const GLuint * coords); /* 637 */
- void (GLAPIENTRYP SecondaryColorP3ui)(GLenum type, GLuint color); /* 638 */
- void (GLAPIENTRYP SecondaryColorP3uiv)(GLenum type, const GLuint * color); /* 639 */
- void (GLAPIENTRYP TexCoordP1ui)(GLenum type, GLuint coords); /* 640 */
- void (GLAPIENTRYP TexCoordP1uiv)(GLenum type, const GLuint * coords); /* 641 */
- void (GLAPIENTRYP TexCoordP2ui)(GLenum type, GLuint coords); /* 642 */
- void (GLAPIENTRYP TexCoordP2uiv)(GLenum type, const GLuint * coords); /* 643 */
- void (GLAPIENTRYP TexCoordP3ui)(GLenum type, GLuint coords); /* 644 */
- void (GLAPIENTRYP TexCoordP3uiv)(GLenum type, const GLuint * coords); /* 645 */
- void (GLAPIENTRYP TexCoordP4ui)(GLenum type, GLuint coords); /* 646 */
- void (GLAPIENTRYP TexCoordP4uiv)(GLenum type, const GLuint * coords); /* 647 */
- void (GLAPIENTRYP VertexAttribP1ui)(GLuint index, GLenum type, GLboolean normalized, GLuint value); /* 648 */
- void (GLAPIENTRYP VertexAttribP1uiv)(GLuint index, GLenum type, GLboolean normalized, const GLuint * value); /* 649 */
- void (GLAPIENTRYP VertexAttribP2ui)(GLuint index, GLenum type, GLboolean normalized, GLuint value); /* 650 */
- void (GLAPIENTRYP VertexAttribP2uiv)(GLuint index, GLenum type, GLboolean normalized, const GLuint * value); /* 651 */
- void (GLAPIENTRYP VertexAttribP3ui)(GLuint index, GLenum type, GLboolean normalized, GLuint value); /* 652 */
- void (GLAPIENTRYP VertexAttribP3uiv)(GLuint index, GLenum type, GLboolean normalized, const GLuint * value); /* 653 */
- void (GLAPIENTRYP VertexAttribP4ui)(GLuint index, GLenum type, GLboolean normalized, GLuint value); /* 654 */
- void (GLAPIENTRYP VertexAttribP4uiv)(GLuint index, GLenum type, GLboolean normalized, const GLuint * value); /* 655 */
- void (GLAPIENTRYP VertexP2ui)(GLenum type, GLuint value); /* 656 */
- void (GLAPIENTRYP VertexP2uiv)(GLenum type, const GLuint * value); /* 657 */
- void (GLAPIENTRYP VertexP3ui)(GLenum type, GLuint value); /* 658 */
- void (GLAPIENTRYP VertexP3uiv)(GLenum type, const GLuint * value); /* 659 */
- void (GLAPIENTRYP VertexP4ui)(GLenum type, GLuint value); /* 660 */
- void (GLAPIENTRYP VertexP4uiv)(GLenum type, const GLuint * value); /* 661 */
- void (GLAPIENTRYP BindTransformFeedback)(GLenum target, GLuint id); /* 662 */
- void (GLAPIENTRYP DeleteTransformFeedbacks)(GLsizei n, const GLuint * ids); /* 663 */
- void (GLAPIENTRYP DrawTransformFeedback)(GLenum mode, GLuint id); /* 664 */
- void (GLAPIENTRYP GenTransformFeedbacks)(GLsizei n, GLuint * ids); /* 665 */
- GLboolean (GLAPIENTRYP IsTransformFeedback)(GLuint id); /* 666 */
- void (GLAPIENTRYP PauseTransformFeedback)(void); /* 667 */
- void (GLAPIENTRYP ResumeTransformFeedback)(void); /* 668 */
- void (GLAPIENTRYP BeginQueryIndexed)(GLenum target, GLuint index, GLuint id); /* 669 */
- void (GLAPIENTRYP DrawTransformFeedbackStream)(GLenum mode, GLuint id, GLuint stream); /* 670 */
- void (GLAPIENTRYP EndQueryIndexed)(GLenum target, GLuint index); /* 671 */
- void (GLAPIENTRYP GetQueryIndexediv)(GLenum target, GLuint index, GLenum pname, GLint * params); /* 672 */
- void (GLAPIENTRYP ClearDepthf)(GLclampf depth); /* 673 */
- void (GLAPIENTRYP DepthRangef)(GLclampf zNear, GLclampf zFar); /* 674 */
- void (GLAPIENTRYP GetShaderPrecisionFormat)(GLenum shadertype, GLenum precisiontype, GLint * range, GLint * precision); /* 675 */
- void (GLAPIENTRYP ReleaseShaderCompiler)(void); /* 676 */
- void (GLAPIENTRYP ShaderBinary)(GLsizei n, const GLuint * shaders, GLenum binaryformat, const GLvoid * binary, GLsizei length); /* 677 */
- void (GLAPIENTRYP DebugMessageCallbackARB)(GLDEBUGPROCARB callback, const GLvoid * userParam); /* 678 */
- void (GLAPIENTRYP DebugMessageControlARB)(GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint * ids, GLboolean enabled); /* 679 */
- void (GLAPIENTRYP DebugMessageInsertARB)(GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLcharARB * buf); /* 680 */
- GLuint (GLAPIENTRYP GetDebugMessageLogARB)(GLuint count, GLsizei bufsize, GLenum * sources, GLenum * types, GLuint * ids, GLenum * severities, GLsizei * lengths, GLcharARB * messageLog); /* 681 */
- GLenum (GLAPIENTRYP GetGraphicsResetStatusARB)(void); /* 682 */
- void (GLAPIENTRYP GetnColorTableARB)(GLenum target, GLenum format, GLenum type, GLsizei bufSize, GLvoid * table); /* 683 */
- void (GLAPIENTRYP GetnCompressedTexImageARB)(GLenum target, GLint lod, GLsizei bufSize, GLvoid * img); /* 684 */
- void (GLAPIENTRYP GetnConvolutionFilterARB)(GLenum target, GLenum format, GLenum type, GLsizei bufSize, GLvoid * image); /* 685 */
- void (GLAPIENTRYP GetnHistogramARB)(GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, GLvoid * values); /* 686 */
- void (GLAPIENTRYP GetnMapdvARB)(GLenum target, GLenum query, GLsizei bufSize, GLdouble * v); /* 687 */
- void (GLAPIENTRYP GetnMapfvARB)(GLenum target, GLenum query, GLsizei bufSize, GLfloat * v); /* 688 */
- void (GLAPIENTRYP GetnMapivARB)(GLenum target, GLenum query, GLsizei bufSize, GLint * v); /* 689 */
- void (GLAPIENTRYP GetnMinmaxARB)(GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, GLvoid * values); /* 690 */
- void (GLAPIENTRYP GetnPixelMapfvARB)(GLenum map, GLsizei bufSize, GLfloat * values); /* 691 */
- void (GLAPIENTRYP GetnPixelMapuivARB)(GLenum map, GLsizei bufSize, GLuint * values); /* 692 */
- void (GLAPIENTRYP GetnPixelMapusvARB)(GLenum map, GLsizei bufSize, GLushort * values); /* 693 */
- void (GLAPIENTRYP GetnPolygonStippleARB)(GLsizei bufSize, GLubyte * pattern); /* 694 */
- void (GLAPIENTRYP GetnSeparableFilterARB)(GLenum target, GLenum format, GLenum type, GLsizei rowBufSize, GLvoid * row, GLsizei columnBufSize, GLvoid * column, GLvoid * span); /* 695 */
- void (GLAPIENTRYP GetnTexImageARB)(GLenum target, GLint level, GLenum format, GLenum type, GLsizei bufSize, GLvoid * img); /* 696 */
- void (GLAPIENTRYP GetnUniformdvARB)(GLhandleARB program, GLint location, GLsizei bufSize, GLdouble * params); /* 697 */
- void (GLAPIENTRYP GetnUniformfvARB)(GLhandleARB program, GLint location, GLsizei bufSize, GLfloat * params); /* 698 */
- void (GLAPIENTRYP GetnUniformivARB)(GLhandleARB program, GLint location, GLsizei bufSize, GLint * params); /* 699 */
- void (GLAPIENTRYP GetnUniformuivARB)(GLhandleARB program, GLint location, GLsizei bufSize, GLuint * params); /* 700 */
- void (GLAPIENTRYP ReadnPixelsARB)(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, GLvoid * data); /* 701 */
- void (GLAPIENTRYP DrawArraysInstancedBaseInstance)(GLenum mode, GLint first, GLsizei count, GLsizei primcount, GLuint baseinstance); /* 702 */
- void (GLAPIENTRYP DrawElementsInstancedBaseInstance)(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices, GLsizei primcount, GLuint baseinstance); /* 703 */
- void (GLAPIENTRYP DrawElementsInstancedBaseVertexBaseInstance)(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices, GLsizei primcount, GLint basevertex, GLuint baseinstance); /* 704 */
- void (GLAPIENTRYP DrawTransformFeedbackInstanced)(GLenum mode, GLuint id, GLsizei primcount); /* 705 */
- void (GLAPIENTRYP DrawTransformFeedbackStreamInstanced)(GLenum mode, GLuint id, GLuint stream, GLsizei primcount); /* 706 */
- void (GLAPIENTRYP TexStorage1D)(GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width); /* 707 */
- void (GLAPIENTRYP TexStorage2D)(GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height); /* 708 */
- void (GLAPIENTRYP TexStorage3D)(GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth); /* 709 */
- void (GLAPIENTRYP TextureStorage1DEXT)(GLuint texture, GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width); /* 710 */
- void (GLAPIENTRYP TextureStorage2DEXT)(GLuint texture, GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height); /* 711 */
- void (GLAPIENTRYP TextureStorage3DEXT)(GLuint texture, GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth); /* 712 */
- void (GLAPIENTRYP InvalidateBufferData)(GLuint buffer); /* 713 */
- void (GLAPIENTRYP InvalidateBufferSubData)(GLuint buffer, GLintptr offset, GLsizeiptr length); /* 714 */
- void (GLAPIENTRYP InvalidateFramebuffer)(GLenum target, GLsizei numAttachments, const GLenum * attachments); /* 715 */
- void (GLAPIENTRYP InvalidateSubFramebuffer)(GLenum target, GLsizei numAttachments, const GLenum * attachments, GLint x, GLint y, GLsizei width, GLsizei height); /* 716 */
- void (GLAPIENTRYP InvalidateTexImage)(GLuint texture, GLint level); /* 717 */
- void (GLAPIENTRYP InvalidateTexSubImage)(GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth); /* 718 */
- void (GLAPIENTRYP PolygonOffsetEXT)(GLfloat factor, GLfloat bias); /* 719 */
- void (GLAPIENTRYP SampleMaskSGIS)(GLclampf value, GLboolean invert); /* 720 */
- void (GLAPIENTRYP SamplePatternSGIS)(GLenum pattern); /* 721 */
- void (GLAPIENTRYP ColorPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 722 */
- void (GLAPIENTRYP EdgeFlagPointerEXT)(GLsizei stride, GLsizei count, const GLboolean * pointer); /* 723 */
- void (GLAPIENTRYP IndexPointerEXT)(GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 724 */
- void (GLAPIENTRYP NormalPointerEXT)(GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 725 */
- void (GLAPIENTRYP TexCoordPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 726 */
- void (GLAPIENTRYP VertexPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 727 */
- void (GLAPIENTRYP PointParameterfEXT)(GLenum pname, GLfloat param); /* 728 */
- void (GLAPIENTRYP PointParameterfvEXT)(GLenum pname, const GLfloat * params); /* 729 */
- void (GLAPIENTRYP LockArraysEXT)(GLint first, GLsizei count); /* 730 */
- void (GLAPIENTRYP UnlockArraysEXT)(void); /* 731 */
- void (GLAPIENTRYP SecondaryColor3bEXT)(GLbyte red, GLbyte green, GLbyte blue); /* 732 */
- void (GLAPIENTRYP SecondaryColor3bvEXT)(const GLbyte * v); /* 733 */
- void (GLAPIENTRYP SecondaryColor3dEXT)(GLdouble red, GLdouble green, GLdouble blue); /* 734 */
- void (GLAPIENTRYP SecondaryColor3dvEXT)(const GLdouble * v); /* 735 */
- void (GLAPIENTRYP SecondaryColor3fEXT)(GLfloat red, GLfloat green, GLfloat blue); /* 736 */
- void (GLAPIENTRYP SecondaryColor3fvEXT)(const GLfloat * v); /* 737 */
- void (GLAPIENTRYP SecondaryColor3iEXT)(GLint red, GLint green, GLint blue); /* 738 */
- void (GLAPIENTRYP SecondaryColor3ivEXT)(const GLint * v); /* 739 */
- void (GLAPIENTRYP SecondaryColor3sEXT)(GLshort red, GLshort green, GLshort blue); /* 740 */
- void (GLAPIENTRYP SecondaryColor3svEXT)(const GLshort * v); /* 741 */
- void (GLAPIENTRYP SecondaryColor3ubEXT)(GLubyte red, GLubyte green, GLubyte blue); /* 742 */
- void (GLAPIENTRYP SecondaryColor3ubvEXT)(const GLubyte * v); /* 743 */
- void (GLAPIENTRYP SecondaryColor3uiEXT)(GLuint red, GLuint green, GLuint blue); /* 744 */
- void (GLAPIENTRYP SecondaryColor3uivEXT)(const GLuint * v); /* 745 */
- void (GLAPIENTRYP SecondaryColor3usEXT)(GLushort red, GLushort green, GLushort blue); /* 746 */
- void (GLAPIENTRYP SecondaryColor3usvEXT)(const GLushort * v); /* 747 */
- void (GLAPIENTRYP SecondaryColorPointerEXT)(GLint size, GLenum type, GLsizei stride, const GLvoid * pointer); /* 748 */
- void (GLAPIENTRYP MultiDrawArraysEXT)(GLenum mode, const GLint * first, const GLsizei * count, GLsizei primcount); /* 749 */
- void (GLAPIENTRYP MultiDrawElementsEXT)(GLenum mode, const GLsizei * count, GLenum type, const GLvoid ** indices, GLsizei primcount); /* 750 */
- void (GLAPIENTRYP FogCoordPointerEXT)(GLenum type, GLsizei stride, const GLvoid * pointer); /* 751 */
- void (GLAPIENTRYP FogCoorddEXT)(GLdouble coord); /* 752 */
- void (GLAPIENTRYP FogCoorddvEXT)(const GLdouble * coord); /* 753 */
- void (GLAPIENTRYP FogCoordfEXT)(GLfloat coord); /* 754 */
- void (GLAPIENTRYP FogCoordfvEXT)(const GLfloat * coord); /* 755 */
- void (GLAPIENTRYP BlendFuncSeparateEXT)(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); /* 756 */
- void (GLAPIENTRYP ResizeBuffersMESA)(void); /* 757 */
- void (GLAPIENTRYP WindowPos2dMESA)(GLdouble x, GLdouble y); /* 758 */
- void (GLAPIENTRYP WindowPos2dvMESA)(const GLdouble * v); /* 759 */
- void (GLAPIENTRYP WindowPos2fMESA)(GLfloat x, GLfloat y); /* 760 */
- void (GLAPIENTRYP WindowPos2fvMESA)(const GLfloat * v); /* 761 */
- void (GLAPIENTRYP WindowPos2iMESA)(GLint x, GLint y); /* 762 */
- void (GLAPIENTRYP WindowPos2ivMESA)(const GLint * v); /* 763 */
- void (GLAPIENTRYP WindowPos2sMESA)(GLshort x, GLshort y); /* 764 */
- void (GLAPIENTRYP WindowPos2svMESA)(const GLshort * v); /* 765 */
- void (GLAPIENTRYP WindowPos3dMESA)(GLdouble x, GLdouble y, GLdouble z); /* 766 */
- void (GLAPIENTRYP WindowPos3dvMESA)(const GLdouble * v); /* 767 */
- void (GLAPIENTRYP WindowPos3fMESA)(GLfloat x, GLfloat y, GLfloat z); /* 768 */
- void (GLAPIENTRYP WindowPos3fvMESA)(const GLfloat * v); /* 769 */
- void (GLAPIENTRYP WindowPos3iMESA)(GLint x, GLint y, GLint z); /* 770 */
- void (GLAPIENTRYP WindowPos3ivMESA)(const GLint * v); /* 771 */
- void (GLAPIENTRYP WindowPos3sMESA)(GLshort x, GLshort y, GLshort z); /* 772 */
- void (GLAPIENTRYP WindowPos3svMESA)(const GLshort * v); /* 773 */
- void (GLAPIENTRYP WindowPos4dMESA)(GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 774 */
- void (GLAPIENTRYP WindowPos4dvMESA)(const GLdouble * v); /* 775 */
- void (GLAPIENTRYP WindowPos4fMESA)(GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 776 */
- void (GLAPIENTRYP WindowPos4fvMESA)(const GLfloat * v); /* 777 */
- void (GLAPIENTRYP WindowPos4iMESA)(GLint x, GLint y, GLint z, GLint w); /* 778 */
- void (GLAPIENTRYP WindowPos4ivMESA)(const GLint * v); /* 779 */
- void (GLAPIENTRYP WindowPos4sMESA)(GLshort x, GLshort y, GLshort z, GLshort w); /* 780 */
- void (GLAPIENTRYP WindowPos4svMESA)(const GLshort * v); /* 781 */
- void (GLAPIENTRYP MultiModeDrawArraysIBM)(const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride); /* 782 */
- void (GLAPIENTRYP MultiModeDrawElementsIBM)(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride); /* 783 */
- GLboolean (GLAPIENTRYP AreProgramsResidentNV)(GLsizei n, const GLuint * ids, GLboolean * residences); /* 784 */
- void (GLAPIENTRYP BindProgramNV)(GLenum target, GLuint program); /* 785 */
- void (GLAPIENTRYP DeleteProgramsNV)(GLsizei n, const GLuint * programs); /* 786 */
- void (GLAPIENTRYP ExecuteProgramNV)(GLenum target, GLuint id, const GLfloat * params); /* 787 */
- void (GLAPIENTRYP GenProgramsNV)(GLsizei n, GLuint * programs); /* 788 */
- void (GLAPIENTRYP GetProgramParameterdvNV)(GLenum target, GLuint index, GLenum pname, GLdouble * params); /* 789 */
- void (GLAPIENTRYP GetProgramParameterfvNV)(GLenum target, GLuint index, GLenum pname, GLfloat * params); /* 790 */
- void (GLAPIENTRYP GetProgramStringNV)(GLuint id, GLenum pname, GLubyte * program); /* 791 */
- void (GLAPIENTRYP GetProgramivNV)(GLuint id, GLenum pname, GLint * params); /* 792 */
- void (GLAPIENTRYP GetTrackMatrixivNV)(GLenum target, GLuint address, GLenum pname, GLint * params); /* 793 */
- void (GLAPIENTRYP GetVertexAttribPointervNV)(GLuint index, GLenum pname, GLvoid ** pointer); /* 794 */
- void (GLAPIENTRYP GetVertexAttribdvNV)(GLuint index, GLenum pname, GLdouble * params); /* 795 */
- void (GLAPIENTRYP GetVertexAttribfvNV)(GLuint index, GLenum pname, GLfloat * params); /* 796 */
- void (GLAPIENTRYP GetVertexAttribivNV)(GLuint index, GLenum pname, GLint * params); /* 797 */
- GLboolean (GLAPIENTRYP IsProgramNV)(GLuint program); /* 798 */
- void (GLAPIENTRYP LoadProgramNV)(GLenum target, GLuint id, GLsizei len, const GLubyte * program); /* 799 */
- void (GLAPIENTRYP ProgramParameters4dvNV)(GLenum target, GLuint index, GLsizei num, const GLdouble * params); /* 800 */
- void (GLAPIENTRYP ProgramParameters4fvNV)(GLenum target, GLuint index, GLsizei num, const GLfloat * params); /* 801 */
- void (GLAPIENTRYP RequestResidentProgramsNV)(GLsizei n, const GLuint * ids); /* 802 */
- void (GLAPIENTRYP TrackMatrixNV)(GLenum target, GLuint address, GLenum matrix, GLenum transform); /* 803 */
- void (GLAPIENTRYP VertexAttrib1dNV)(GLuint index, GLdouble x); /* 804 */
- void (GLAPIENTRYP VertexAttrib1dvNV)(GLuint index, const GLdouble * v); /* 805 */
- void (GLAPIENTRYP VertexAttrib1fNV)(GLuint index, GLfloat x); /* 806 */
- void (GLAPIENTRYP VertexAttrib1fvNV)(GLuint index, const GLfloat * v); /* 807 */
- void (GLAPIENTRYP VertexAttrib1sNV)(GLuint index, GLshort x); /* 808 */
- void (GLAPIENTRYP VertexAttrib1svNV)(GLuint index, const GLshort * v); /* 809 */
- void (GLAPIENTRYP VertexAttrib2dNV)(GLuint index, GLdouble x, GLdouble y); /* 810 */
- void (GLAPIENTRYP VertexAttrib2dvNV)(GLuint index, const GLdouble * v); /* 811 */
- void (GLAPIENTRYP VertexAttrib2fNV)(GLuint index, GLfloat x, GLfloat y); /* 812 */
- void (GLAPIENTRYP VertexAttrib2fvNV)(GLuint index, const GLfloat * v); /* 813 */
- void (GLAPIENTRYP VertexAttrib2sNV)(GLuint index, GLshort x, GLshort y); /* 814 */
- void (GLAPIENTRYP VertexAttrib2svNV)(GLuint index, const GLshort * v); /* 815 */
- void (GLAPIENTRYP VertexAttrib3dNV)(GLuint index, GLdouble x, GLdouble y, GLdouble z); /* 816 */
- void (GLAPIENTRYP VertexAttrib3dvNV)(GLuint index, const GLdouble * v); /* 817 */
- void (GLAPIENTRYP VertexAttrib3fNV)(GLuint index, GLfloat x, GLfloat y, GLfloat z); /* 818 */
- void (GLAPIENTRYP VertexAttrib3fvNV)(GLuint index, const GLfloat * v); /* 819 */
- void (GLAPIENTRYP VertexAttrib3sNV)(GLuint index, GLshort x, GLshort y, GLshort z); /* 820 */
- void (GLAPIENTRYP VertexAttrib3svNV)(GLuint index, const GLshort * v); /* 821 */
- void (GLAPIENTRYP VertexAttrib4dNV)(GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 822 */
- void (GLAPIENTRYP VertexAttrib4dvNV)(GLuint index, const GLdouble * v); /* 823 */
- void (GLAPIENTRYP VertexAttrib4fNV)(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 824 */
- void (GLAPIENTRYP VertexAttrib4fvNV)(GLuint index, const GLfloat * v); /* 825 */
- void (GLAPIENTRYP VertexAttrib4sNV)(GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); /* 826 */
- void (GLAPIENTRYP VertexAttrib4svNV)(GLuint index, const GLshort * v); /* 827 */
- void (GLAPIENTRYP VertexAttrib4ubNV)(GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); /* 828 */
- void (GLAPIENTRYP VertexAttrib4ubvNV)(GLuint index, const GLubyte * v); /* 829 */
- void (GLAPIENTRYP VertexAttribPointerNV)(GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid * pointer); /* 830 */
- void (GLAPIENTRYP VertexAttribs1dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 831 */
- void (GLAPIENTRYP VertexAttribs1fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 832 */
- void (GLAPIENTRYP VertexAttribs1svNV)(GLuint index, GLsizei n, const GLshort * v); /* 833 */
- void (GLAPIENTRYP VertexAttribs2dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 834 */
- void (GLAPIENTRYP VertexAttribs2fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 835 */
- void (GLAPIENTRYP VertexAttribs2svNV)(GLuint index, GLsizei n, const GLshort * v); /* 836 */
- void (GLAPIENTRYP VertexAttribs3dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 837 */
- void (GLAPIENTRYP VertexAttribs3fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 838 */
- void (GLAPIENTRYP VertexAttribs3svNV)(GLuint index, GLsizei n, const GLshort * v); /* 839 */
- void (GLAPIENTRYP VertexAttribs4dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 840 */
- void (GLAPIENTRYP VertexAttribs4fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 841 */
- void (GLAPIENTRYP VertexAttribs4svNV)(GLuint index, GLsizei n, const GLshort * v); /* 842 */
- void (GLAPIENTRYP VertexAttribs4ubvNV)(GLuint index, GLsizei n, const GLubyte * v); /* 843 */
- void (GLAPIENTRYP GetTexBumpParameterfvATI)(GLenum pname, GLfloat * param); /* 844 */
- void (GLAPIENTRYP GetTexBumpParameterivATI)(GLenum pname, GLint * param); /* 845 */
- void (GLAPIENTRYP TexBumpParameterfvATI)(GLenum pname, const GLfloat * param); /* 846 */
- void (GLAPIENTRYP TexBumpParameterivATI)(GLenum pname, const GLint * param); /* 847 */
- void (GLAPIENTRYP AlphaFragmentOp1ATI)(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); /* 848 */
- void (GLAPIENTRYP AlphaFragmentOp2ATI)(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); /* 849 */
- 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); /* 850 */
- void (GLAPIENTRYP BeginFragmentShaderATI)(void); /* 851 */
- void (GLAPIENTRYP BindFragmentShaderATI)(GLuint id); /* 852 */
- void (GLAPIENTRYP ColorFragmentOp1ATI)(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); /* 853 */
- void (GLAPIENTRYP ColorFragmentOp2ATI)(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); /* 854 */
- 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); /* 855 */
- void (GLAPIENTRYP DeleteFragmentShaderATI)(GLuint id); /* 856 */
- void (GLAPIENTRYP EndFragmentShaderATI)(void); /* 857 */
- GLuint (GLAPIENTRYP GenFragmentShadersATI)(GLuint range); /* 858 */
- void (GLAPIENTRYP PassTexCoordATI)(GLuint dst, GLuint coord, GLenum swizzle); /* 859 */
- void (GLAPIENTRYP SampleMapATI)(GLuint dst, GLuint interp, GLenum swizzle); /* 860 */
- void (GLAPIENTRYP SetFragmentShaderConstantATI)(GLuint dst, const GLfloat * value); /* 861 */
- void (GLAPIENTRYP PointParameteriNV)(GLenum pname, GLint param); /* 862 */
- void (GLAPIENTRYP PointParameterivNV)(GLenum pname, const GLint * params); /* 863 */
- void (GLAPIENTRYP ActiveStencilFaceEXT)(GLenum face); /* 864 */
- void (GLAPIENTRYP BindVertexArrayAPPLE)(GLuint array); /* 865 */
- void (GLAPIENTRYP DeleteVertexArraysAPPLE)(GLsizei n, const GLuint * arrays); /* 866 */
- void (GLAPIENTRYP GenVertexArraysAPPLE)(GLsizei n, GLuint * arrays); /* 867 */
- GLboolean (GLAPIENTRYP IsVertexArrayAPPLE)(GLuint array); /* 868 */
- void (GLAPIENTRYP GetProgramNamedParameterdvNV)(GLuint id, GLsizei len, const GLubyte * name, GLdouble * params); /* 869 */
- void (GLAPIENTRYP GetProgramNamedParameterfvNV)(GLuint id, GLsizei len, const GLubyte * name, GLfloat * params); /* 870 */
- void (GLAPIENTRYP ProgramNamedParameter4dNV)(GLuint id, GLsizei len, const GLubyte * name, GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 871 */
- void (GLAPIENTRYP ProgramNamedParameter4dvNV)(GLuint id, GLsizei len, const GLubyte * name, const GLdouble * v); /* 872 */
- void (GLAPIENTRYP ProgramNamedParameter4fNV)(GLuint id, GLsizei len, const GLubyte * name, GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 873 */
- void (GLAPIENTRYP ProgramNamedParameter4fvNV)(GLuint id, GLsizei len, const GLubyte * name, const GLfloat * v); /* 874 */
- void (GLAPIENTRYP PrimitiveRestartIndexNV)(GLuint index); /* 875 */
- void (GLAPIENTRYP PrimitiveRestartNV)(void); /* 876 */
- void (GLAPIENTRYP DepthBoundsEXT)(GLclampd zmin, GLclampd zmax); /* 877 */
- void (GLAPIENTRYP BlendEquationSeparateEXT)(GLenum modeRGB, GLenum modeA); /* 878 */
- void (GLAPIENTRYP BindFramebufferEXT)(GLenum target, GLuint framebuffer); /* 879 */
- void (GLAPIENTRYP BindRenderbufferEXT)(GLenum target, GLuint renderbuffer); /* 880 */
- GLenum (GLAPIENTRYP CheckFramebufferStatusEXT)(GLenum target); /* 881 */
- void (GLAPIENTRYP DeleteFramebuffersEXT)(GLsizei n, const GLuint * framebuffers); /* 882 */
- void (GLAPIENTRYP DeleteRenderbuffersEXT)(GLsizei n, const GLuint * renderbuffers); /* 883 */
- void (GLAPIENTRYP FramebufferRenderbufferEXT)(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); /* 884 */
- void (GLAPIENTRYP FramebufferTexture1DEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); /* 885 */
- void (GLAPIENTRYP FramebufferTexture2DEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); /* 886 */
- void (GLAPIENTRYP FramebufferTexture3DEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); /* 887 */
- void (GLAPIENTRYP GenFramebuffersEXT)(GLsizei n, GLuint * framebuffers); /* 888 */
- void (GLAPIENTRYP GenRenderbuffersEXT)(GLsizei n, GLuint * renderbuffers); /* 889 */
- void (GLAPIENTRYP GenerateMipmapEXT)(GLenum target); /* 890 */
- void (GLAPIENTRYP GetFramebufferAttachmentParameterivEXT)(GLenum target, GLenum attachment, GLenum pname, GLint * params); /* 891 */
- void (GLAPIENTRYP GetRenderbufferParameterivEXT)(GLenum target, GLenum pname, GLint * params); /* 892 */
- GLboolean (GLAPIENTRYP IsFramebufferEXT)(GLuint framebuffer); /* 893 */
- GLboolean (GLAPIENTRYP IsRenderbufferEXT)(GLuint renderbuffer); /* 894 */
- void (GLAPIENTRYP RenderbufferStorageEXT)(GLenum target, GLenum internalformat, GLsizei width, GLsizei height); /* 895 */
- void (GLAPIENTRYP BlitFramebufferEXT)(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); /* 896 */
- void (GLAPIENTRYP BufferParameteriAPPLE)(GLenum target, GLenum pname, GLint param); /* 897 */
- void (GLAPIENTRYP FlushMappedBufferRangeAPPLE)(GLenum target, GLintptr offset, GLsizeiptr size); /* 898 */
- void (GLAPIENTRYP BindFragDataLocationEXT)(GLuint program, GLuint colorNumber, const GLchar * name); /* 899 */
- GLint (GLAPIENTRYP GetFragDataLocationEXT)(GLuint program, const GLchar * name); /* 900 */
- void (GLAPIENTRYP GetUniformuivEXT)(GLuint program, GLint location, GLuint * params); /* 901 */
- void (GLAPIENTRYP GetVertexAttribIivEXT)(GLuint index, GLenum pname, GLint * params); /* 902 */
- void (GLAPIENTRYP GetVertexAttribIuivEXT)(GLuint index, GLenum pname, GLuint * params); /* 903 */
- void (GLAPIENTRYP Uniform1uiEXT)(GLint location, GLuint x); /* 904 */
- void (GLAPIENTRYP Uniform1uivEXT)(GLint location, GLsizei count, const GLuint * value); /* 905 */
- void (GLAPIENTRYP Uniform2uiEXT)(GLint location, GLuint x, GLuint y); /* 906 */
- void (GLAPIENTRYP Uniform2uivEXT)(GLint location, GLsizei count, const GLuint * value); /* 907 */
- void (GLAPIENTRYP Uniform3uiEXT)(GLint location, GLuint x, GLuint y, GLuint z); /* 908 */
- void (GLAPIENTRYP Uniform3uivEXT)(GLint location, GLsizei count, const GLuint * value); /* 909 */
- void (GLAPIENTRYP Uniform4uiEXT)(GLint location, GLuint x, GLuint y, GLuint z, GLuint w); /* 910 */
- void (GLAPIENTRYP Uniform4uivEXT)(GLint location, GLsizei count, const GLuint * value); /* 911 */
- void (GLAPIENTRYP VertexAttribI1iEXT)(GLuint index, GLint x); /* 912 */
- void (GLAPIENTRYP VertexAttribI1ivEXT)(GLuint index, const GLint * v); /* 913 */
- void (GLAPIENTRYP VertexAttribI1uiEXT)(GLuint index, GLuint x); /* 914 */
- void (GLAPIENTRYP VertexAttribI1uivEXT)(GLuint index, const GLuint * v); /* 915 */
- void (GLAPIENTRYP VertexAttribI2iEXT)(GLuint index, GLint x, GLint y); /* 916 */
- void (GLAPIENTRYP VertexAttribI2ivEXT)(GLuint index, const GLint * v); /* 917 */
- void (GLAPIENTRYP VertexAttribI2uiEXT)(GLuint index, GLuint x, GLuint y); /* 918 */
- void (GLAPIENTRYP VertexAttribI2uivEXT)(GLuint index, const GLuint * v); /* 919 */
- void (GLAPIENTRYP VertexAttribI3iEXT)(GLuint index, GLint x, GLint y, GLint z); /* 920 */
- void (GLAPIENTRYP VertexAttribI3ivEXT)(GLuint index, const GLint * v); /* 921 */
- void (GLAPIENTRYP VertexAttribI3uiEXT)(GLuint index, GLuint x, GLuint y, GLuint z); /* 922 */
- void (GLAPIENTRYP VertexAttribI3uivEXT)(GLuint index, const GLuint * v); /* 923 */
- void (GLAPIENTRYP VertexAttribI4bvEXT)(GLuint index, const GLbyte * v); /* 924 */
- void (GLAPIENTRYP VertexAttribI4iEXT)(GLuint index, GLint x, GLint y, GLint z, GLint w); /* 925 */
- void (GLAPIENTRYP VertexAttribI4ivEXT)(GLuint index, const GLint * v); /* 926 */
- void (GLAPIENTRYP VertexAttribI4svEXT)(GLuint index, const GLshort * v); /* 927 */
- void (GLAPIENTRYP VertexAttribI4ubvEXT)(GLuint index, const GLubyte * v); /* 928 */
- void (GLAPIENTRYP VertexAttribI4uiEXT)(GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); /* 929 */
- void (GLAPIENTRYP VertexAttribI4uivEXT)(GLuint index, const GLuint * v); /* 930 */
- void (GLAPIENTRYP VertexAttribI4usvEXT)(GLuint index, const GLushort * v); /* 931 */
- void (GLAPIENTRYP VertexAttribIPointerEXT)(GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid * pointer); /* 932 */
- void (GLAPIENTRYP FramebufferTextureLayerEXT)(GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); /* 933 */
- void (GLAPIENTRYP ColorMaskIndexedEXT)(GLuint buf, GLboolean r, GLboolean g, GLboolean b, GLboolean a); /* 934 */
- void (GLAPIENTRYP DisableIndexedEXT)(GLenum target, GLuint index); /* 935 */
- void (GLAPIENTRYP EnableIndexedEXT)(GLenum target, GLuint index); /* 936 */
- void (GLAPIENTRYP GetBooleanIndexedvEXT)(GLenum value, GLuint index, GLboolean * data); /* 937 */
- void (GLAPIENTRYP GetIntegerIndexedvEXT)(GLenum value, GLuint index, GLint * data); /* 938 */
- GLboolean (GLAPIENTRYP IsEnabledIndexedEXT)(GLenum target, GLuint index); /* 939 */
- void (GLAPIENTRYP ClearColorIiEXT)(GLint r, GLint g, GLint b, GLint a); /* 940 */
- void (GLAPIENTRYP ClearColorIuiEXT)(GLuint r, GLuint g, GLuint b, GLuint a); /* 941 */
- void (GLAPIENTRYP GetTexParameterIivEXT)(GLenum target, GLenum pname, GLint * params); /* 942 */
- void (GLAPIENTRYP GetTexParameterIuivEXT)(GLenum target, GLenum pname, GLuint * params); /* 943 */
- void (GLAPIENTRYP TexParameterIivEXT)(GLenum target, GLenum pname, const GLint * params); /* 944 */
- void (GLAPIENTRYP TexParameterIuivEXT)(GLenum target, GLenum pname, const GLuint * params); /* 945 */
- void (GLAPIENTRYP BeginConditionalRenderNV)(GLuint query, GLenum mode); /* 946 */
- void (GLAPIENTRYP EndConditionalRenderNV)(void); /* 947 */
- void (GLAPIENTRYP BeginTransformFeedbackEXT)(GLenum mode); /* 948 */
- void (GLAPIENTRYP BindBufferBaseEXT)(GLenum target, GLuint index, GLuint buffer); /* 949 */
- void (GLAPIENTRYP BindBufferOffsetEXT)(GLenum target, GLuint index, GLuint buffer, GLintptr offset); /* 950 */
- void (GLAPIENTRYP BindBufferRangeEXT)(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); /* 951 */
- void (GLAPIENTRYP EndTransformFeedbackEXT)(void); /* 952 */
- void (GLAPIENTRYP GetTransformFeedbackVaryingEXT)(GLuint program, GLuint index, GLsizei bufSize, GLsizei * length, GLsizei * size, GLenum * type, GLchar * name); /* 953 */
- void (GLAPIENTRYP TransformFeedbackVaryingsEXT)(GLuint program, GLsizei count, const char ** varyings, GLenum bufferMode); /* 954 */
- void (GLAPIENTRYP ProvokingVertexEXT)(GLenum mode); /* 955 */
- void (GLAPIENTRYP GetObjectParameterivAPPLE)(GLenum objectType, GLuint name, GLenum pname, GLint * value); /* 956 */
- GLenum (GLAPIENTRYP ObjectPurgeableAPPLE)(GLenum objectType, GLuint name, GLenum option); /* 957 */
- GLenum (GLAPIENTRYP ObjectUnpurgeableAPPLE)(GLenum objectType, GLuint name, GLenum option); /* 958 */
- void (GLAPIENTRYP ActiveProgramEXT)(GLuint program); /* 959 */
- GLuint (GLAPIENTRYP CreateShaderProgramEXT)(GLenum type, const GLchar * string); /* 960 */
- void (GLAPIENTRYP UseShaderProgramEXT)(GLenum type, GLuint program); /* 961 */
- void (GLAPIENTRYP TextureBarrierNV)(void); /* 962 */
- void (GLAPIENTRYP StencilFuncSeparateATI)(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask); /* 963 */
- void (GLAPIENTRYP ProgramEnvParameters4fvEXT)(GLenum target, GLuint index, GLsizei count, const GLfloat * params); /* 964 */
- void (GLAPIENTRYP ProgramLocalParameters4fvEXT)(GLenum target, GLuint index, GLsizei count, const GLfloat * params); /* 965 */
- void (GLAPIENTRYP GetQueryObjecti64vEXT)(GLuint id, GLenum pname, GLint64EXT * params); /* 966 */
- void (GLAPIENTRYP GetQueryObjectui64vEXT)(GLuint id, GLenum pname, GLuint64EXT * params); /* 967 */
- void (GLAPIENTRYP EGLImageTargetRenderbufferStorageOES)(GLenum target, GLvoid * writeOffset); /* 968 */
- void (GLAPIENTRYP EGLImageTargetTexture2DOES)(GLenum target, GLvoid * writeOffset); /* 969 */
+ void (GLAPIENTRYP ClearBufferfi)(GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil); /* 430 */
+ void (GLAPIENTRYP ClearBufferfv)(GLenum buffer, GLint drawbuffer, const GLfloat * value); /* 431 */
+ void (GLAPIENTRYP ClearBufferiv)(GLenum buffer, GLint drawbuffer, const GLint * value); /* 432 */
+ void (GLAPIENTRYP ClearBufferuiv)(GLenum buffer, GLint drawbuffer, const GLuint * value); /* 433 */
+ const GLubyte * (GLAPIENTRYP GetStringi)(GLenum name, GLuint index); /* 434 */
+ void (GLAPIENTRYP FramebufferTexture)(GLenum target, GLenum attachment, GLuint texture, GLint level); /* 435 */
+ void (GLAPIENTRYP GetBufferParameteri64v)(GLenum target, GLenum pname, GLint64 * params); /* 436 */
+ void (GLAPIENTRYP GetInteger64i_v)(GLenum cap, GLuint index, GLint64 * data); /* 437 */
+ void (GLAPIENTRYP LoadTransposeMatrixdARB)(const GLdouble * m); /* 438 */
+ void (GLAPIENTRYP LoadTransposeMatrixfARB)(const GLfloat * m); /* 439 */
+ void (GLAPIENTRYP MultTransposeMatrixdARB)(const GLdouble * m); /* 440 */
+ void (GLAPIENTRYP MultTransposeMatrixfARB)(const GLfloat * m); /* 441 */
+ void (GLAPIENTRYP SampleCoverageARB)(GLclampf value, GLboolean invert); /* 442 */
+ void (GLAPIENTRYP CompressedTexImage1DARB)(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid * data); /* 443 */
+ void (GLAPIENTRYP CompressedTexImage2DARB)(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid * data); /* 444 */
+ void (GLAPIENTRYP CompressedTexImage3DARB)(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid * data); /* 445 */
+ void (GLAPIENTRYP CompressedTexSubImage1DARB)(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid * data); /* 446 */
+ void (GLAPIENTRYP CompressedTexSubImage2DARB)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid * data); /* 447 */
+ void (GLAPIENTRYP CompressedTexSubImage3DARB)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid * data); /* 448 */
+ void (GLAPIENTRYP GetCompressedTexImageARB)(GLenum target, GLint level, GLvoid * img); /* 449 */
+ void (GLAPIENTRYP DisableVertexAttribArrayARB)(GLuint index); /* 450 */
+ void (GLAPIENTRYP EnableVertexAttribArrayARB)(GLuint index); /* 451 */
+ void (GLAPIENTRYP GetProgramEnvParameterdvARB)(GLenum target, GLuint index, GLdouble * params); /* 452 */
+ void (GLAPIENTRYP GetProgramEnvParameterfvARB)(GLenum target, GLuint index, GLfloat * params); /* 453 */
+ void (GLAPIENTRYP GetProgramLocalParameterdvARB)(GLenum target, GLuint index, GLdouble * params); /* 454 */
+ void (GLAPIENTRYP GetProgramLocalParameterfvARB)(GLenum target, GLuint index, GLfloat * params); /* 455 */
+ void (GLAPIENTRYP GetProgramStringARB)(GLenum target, GLenum pname, GLvoid * string); /* 456 */
+ void (GLAPIENTRYP GetProgramivARB)(GLenum target, GLenum pname, GLint * params); /* 457 */
+ void (GLAPIENTRYP GetVertexAttribdvARB)(GLuint index, GLenum pname, GLdouble * params); /* 458 */
+ void (GLAPIENTRYP GetVertexAttribfvARB)(GLuint index, GLenum pname, GLfloat * params); /* 459 */
+ void (GLAPIENTRYP GetVertexAttribivARB)(GLuint index, GLenum pname, GLint * params); /* 460 */
+ void (GLAPIENTRYP ProgramEnvParameter4dARB)(GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 461 */
+ void (GLAPIENTRYP ProgramEnvParameter4dvARB)(GLenum target, GLuint index, const GLdouble * params); /* 462 */
+ void (GLAPIENTRYP ProgramEnvParameter4fARB)(GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 463 */
+ void (GLAPIENTRYP ProgramEnvParameter4fvARB)(GLenum target, GLuint index, const GLfloat * params); /* 464 */
+ void (GLAPIENTRYP ProgramLocalParameter4dARB)(GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 465 */
+ void (GLAPIENTRYP ProgramLocalParameter4dvARB)(GLenum target, GLuint index, const GLdouble * params); /* 466 */
+ void (GLAPIENTRYP ProgramLocalParameter4fARB)(GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 467 */
+ void (GLAPIENTRYP ProgramLocalParameter4fvARB)(GLenum target, GLuint index, const GLfloat * params); /* 468 */
+ void (GLAPIENTRYP ProgramStringARB)(GLenum target, GLenum format, GLsizei len, const GLvoid * string); /* 469 */
+ void (GLAPIENTRYP VertexAttrib1dARB)(GLuint index, GLdouble x); /* 470 */
+ void (GLAPIENTRYP VertexAttrib1dvARB)(GLuint index, const GLdouble * v); /* 471 */
+ void (GLAPIENTRYP VertexAttrib1fARB)(GLuint index, GLfloat x); /* 472 */
+ void (GLAPIENTRYP VertexAttrib1fvARB)(GLuint index, const GLfloat * v); /* 473 */
+ void (GLAPIENTRYP VertexAttrib1sARB)(GLuint index, GLshort x); /* 474 */
+ void (GLAPIENTRYP VertexAttrib1svARB)(GLuint index, const GLshort * v); /* 475 */
+ void (GLAPIENTRYP VertexAttrib2dARB)(GLuint index, GLdouble x, GLdouble y); /* 476 */
+ void (GLAPIENTRYP VertexAttrib2dvARB)(GLuint index, const GLdouble * v); /* 477 */
+ void (GLAPIENTRYP VertexAttrib2fARB)(GLuint index, GLfloat x, GLfloat y); /* 478 */
+ void (GLAPIENTRYP VertexAttrib2fvARB)(GLuint index, const GLfloat * v); /* 479 */
+ void (GLAPIENTRYP VertexAttrib2sARB)(GLuint index, GLshort x, GLshort y); /* 480 */
+ void (GLAPIENTRYP VertexAttrib2svARB)(GLuint index, const GLshort * v); /* 481 */
+ void (GLAPIENTRYP VertexAttrib3dARB)(GLuint index, GLdouble x, GLdouble y, GLdouble z); /* 482 */
+ void (GLAPIENTRYP VertexAttrib3dvARB)(GLuint index, const GLdouble * v); /* 483 */
+ void (GLAPIENTRYP VertexAttrib3fARB)(GLuint index, GLfloat x, GLfloat y, GLfloat z); /* 484 */
+ void (GLAPIENTRYP VertexAttrib3fvARB)(GLuint index, const GLfloat * v); /* 485 */
+ void (GLAPIENTRYP VertexAttrib3sARB)(GLuint index, GLshort x, GLshort y, GLshort z); /* 486 */
+ void (GLAPIENTRYP VertexAttrib3svARB)(GLuint index, const GLshort * v); /* 487 */
+ void (GLAPIENTRYP VertexAttrib4NbvARB)(GLuint index, const GLbyte * v); /* 488 */
+ void (GLAPIENTRYP VertexAttrib4NivARB)(GLuint index, const GLint * v); /* 489 */
+ void (GLAPIENTRYP VertexAttrib4NsvARB)(GLuint index, const GLshort * v); /* 490 */
+ void (GLAPIENTRYP VertexAttrib4NubARB)(GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); /* 491 */
+ void (GLAPIENTRYP VertexAttrib4NubvARB)(GLuint index, const GLubyte * v); /* 492 */
+ void (GLAPIENTRYP VertexAttrib4NuivARB)(GLuint index, const GLuint * v); /* 493 */
+ void (GLAPIENTRYP VertexAttrib4NusvARB)(GLuint index, const GLushort * v); /* 494 */
+ void (GLAPIENTRYP VertexAttrib4bvARB)(GLuint index, const GLbyte * v); /* 495 */
+ void (GLAPIENTRYP VertexAttrib4dARB)(GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 496 */
+ void (GLAPIENTRYP VertexAttrib4dvARB)(GLuint index, const GLdouble * v); /* 497 */
+ void (GLAPIENTRYP VertexAttrib4fARB)(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 498 */
+ void (GLAPIENTRYP VertexAttrib4fvARB)(GLuint index, const GLfloat * v); /* 499 */
+ void (GLAPIENTRYP VertexAttrib4ivARB)(GLuint index, const GLint * v); /* 500 */
+ void (GLAPIENTRYP VertexAttrib4sARB)(GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); /* 501 */
+ void (GLAPIENTRYP VertexAttrib4svARB)(GLuint index, const GLshort * v); /* 502 */
+ void (GLAPIENTRYP VertexAttrib4ubvARB)(GLuint index, const GLubyte * v); /* 503 */
+ void (GLAPIENTRYP VertexAttrib4uivARB)(GLuint index, const GLuint * v); /* 504 */
+ void (GLAPIENTRYP VertexAttrib4usvARB)(GLuint index, const GLushort * v); /* 505 */
+ void (GLAPIENTRYP VertexAttribPointerARB)(GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid * pointer); /* 506 */
+ void (GLAPIENTRYP BindBufferARB)(GLenum target, GLuint buffer); /* 507 */
+ void (GLAPIENTRYP BufferDataARB)(GLenum target, GLsizeiptrARB size, const GLvoid * data, GLenum usage); /* 508 */
+ void (GLAPIENTRYP BufferSubDataARB)(GLenum target, GLintptrARB offset, GLsizeiptrARB size, const GLvoid * data); /* 509 */
+ void (GLAPIENTRYP DeleteBuffersARB)(GLsizei n, const GLuint * buffer); /* 510 */
+ void (GLAPIENTRYP GenBuffersARB)(GLsizei n, GLuint * buffer); /* 511 */
+ void (GLAPIENTRYP GetBufferParameterivARB)(GLenum target, GLenum pname, GLint * params); /* 512 */
+ void (GLAPIENTRYP GetBufferPointervARB)(GLenum target, GLenum pname, GLvoid ** params); /* 513 */
+ void (GLAPIENTRYP GetBufferSubDataARB)(GLenum target, GLintptrARB offset, GLsizeiptrARB size, GLvoid * data); /* 514 */
+ GLboolean (GLAPIENTRYP IsBufferARB)(GLuint buffer); /* 515 */
+ GLvoid * (GLAPIENTRYP MapBufferARB)(GLenum target, GLenum access); /* 516 */
+ GLboolean (GLAPIENTRYP UnmapBufferARB)(GLenum target); /* 517 */
+ void (GLAPIENTRYP BeginQueryARB)(GLenum target, GLuint id); /* 518 */
+ void (GLAPIENTRYP DeleteQueriesARB)(GLsizei n, const GLuint * ids); /* 519 */
+ void (GLAPIENTRYP EndQueryARB)(GLenum target); /* 520 */
+ void (GLAPIENTRYP GenQueriesARB)(GLsizei n, GLuint * ids); /* 521 */
+ void (GLAPIENTRYP GetQueryObjectivARB)(GLuint id, GLenum pname, GLint * params); /* 522 */
+ void (GLAPIENTRYP GetQueryObjectuivARB)(GLuint id, GLenum pname, GLuint * params); /* 523 */
+ void (GLAPIENTRYP GetQueryivARB)(GLenum target, GLenum pname, GLint * params); /* 524 */
+ GLboolean (GLAPIENTRYP IsQueryARB)(GLuint id); /* 525 */
+ void (GLAPIENTRYP AttachObjectARB)(GLhandleARB containerObj, GLhandleARB obj); /* 526 */
+ void (GLAPIENTRYP CompileShaderARB)(GLhandleARB shader); /* 527 */
+ GLhandleARB (GLAPIENTRYP CreateProgramObjectARB)(void); /* 528 */
+ GLhandleARB (GLAPIENTRYP CreateShaderObjectARB)(GLenum shaderType); /* 529 */
+ void (GLAPIENTRYP DeleteObjectARB)(GLhandleARB obj); /* 530 */
+ void (GLAPIENTRYP DetachObjectARB)(GLhandleARB containerObj, GLhandleARB attachedObj); /* 531 */
+ void (GLAPIENTRYP GetActiveUniformARB)(GLhandleARB program, GLuint index, GLsizei bufSize, GLsizei * length, GLint * size, GLenum * type, GLcharARB * name); /* 532 */
+ void (GLAPIENTRYP GetAttachedObjectsARB)(GLhandleARB containerObj, GLsizei maxLength, GLsizei * length, GLhandleARB * infoLog); /* 533 */
+ GLhandleARB (GLAPIENTRYP GetHandleARB)(GLenum pname); /* 534 */
+ void (GLAPIENTRYP GetInfoLogARB)(GLhandleARB obj, GLsizei maxLength, GLsizei * length, GLcharARB * infoLog); /* 535 */
+ void (GLAPIENTRYP GetObjectParameterfvARB)(GLhandleARB obj, GLenum pname, GLfloat * params); /* 536 */
+ void (GLAPIENTRYP GetObjectParameterivARB)(GLhandleARB obj, GLenum pname, GLint * params); /* 537 */
+ void (GLAPIENTRYP GetShaderSourceARB)(GLhandleARB shader, GLsizei bufSize, GLsizei * length, GLcharARB * source); /* 538 */
+ GLint (GLAPIENTRYP GetUniformLocationARB)(GLhandleARB program, const GLcharARB * name); /* 539 */
+ void (GLAPIENTRYP GetUniformfvARB)(GLhandleARB program, GLint location, GLfloat * params); /* 540 */
+ void (GLAPIENTRYP GetUniformivARB)(GLhandleARB program, GLint location, GLint * params); /* 541 */
+ void (GLAPIENTRYP LinkProgramARB)(GLhandleARB program); /* 542 */
+ void (GLAPIENTRYP ShaderSourceARB)(GLhandleARB shader, GLsizei count, const GLcharARB ** string, const GLint * length); /* 543 */
+ void (GLAPIENTRYP Uniform1fARB)(GLint location, GLfloat v0); /* 544 */
+ void (GLAPIENTRYP Uniform1fvARB)(GLint location, GLsizei count, const GLfloat * value); /* 545 */
+ void (GLAPIENTRYP Uniform1iARB)(GLint location, GLint v0); /* 546 */
+ void (GLAPIENTRYP Uniform1ivARB)(GLint location, GLsizei count, const GLint * value); /* 547 */
+ void (GLAPIENTRYP Uniform2fARB)(GLint location, GLfloat v0, GLfloat v1); /* 548 */
+ void (GLAPIENTRYP Uniform2fvARB)(GLint location, GLsizei count, const GLfloat * value); /* 549 */
+ void (GLAPIENTRYP Uniform2iARB)(GLint location, GLint v0, GLint v1); /* 550 */
+ void (GLAPIENTRYP Uniform2ivARB)(GLint location, GLsizei count, const GLint * value); /* 551 */
+ void (GLAPIENTRYP Uniform3fARB)(GLint location, GLfloat v0, GLfloat v1, GLfloat v2); /* 552 */
+ void (GLAPIENTRYP Uniform3fvARB)(GLint location, GLsizei count, const GLfloat * value); /* 553 */
+ void (GLAPIENTRYP Uniform3iARB)(GLint location, GLint v0, GLint v1, GLint v2); /* 554 */
+ void (GLAPIENTRYP Uniform3ivARB)(GLint location, GLsizei count, const GLint * value); /* 555 */
+ void (GLAPIENTRYP Uniform4fARB)(GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); /* 556 */
+ void (GLAPIENTRYP Uniform4fvARB)(GLint location, GLsizei count, const GLfloat * value); /* 557 */
+ void (GLAPIENTRYP Uniform4iARB)(GLint location, GLint v0, GLint v1, GLint v2, GLint v3); /* 558 */
+ void (GLAPIENTRYP Uniform4ivARB)(GLint location, GLsizei count, const GLint * value); /* 559 */
+ void (GLAPIENTRYP UniformMatrix2fvARB)(GLint location, GLsizei count, GLboolean transpose, const GLfloat * value); /* 560 */
+ void (GLAPIENTRYP UniformMatrix3fvARB)(GLint location, GLsizei count, GLboolean transpose, const GLfloat * value); /* 561 */
+ void (GLAPIENTRYP UniformMatrix4fvARB)(GLint location, GLsizei count, GLboolean transpose, const GLfloat * value); /* 562 */
+ void (GLAPIENTRYP UseProgramObjectARB)(GLhandleARB program); /* 563 */
+ void (GLAPIENTRYP ValidateProgramARB)(GLhandleARB program); /* 564 */
+ void (GLAPIENTRYP BindAttribLocationARB)(GLhandleARB program, GLuint index, const GLcharARB * name); /* 565 */
+ void (GLAPIENTRYP GetActiveAttribARB)(GLhandleARB program, GLuint index, GLsizei bufSize, GLsizei * length, GLint * size, GLenum * type, GLcharARB * name); /* 566 */
+ GLint (GLAPIENTRYP GetAttribLocationARB)(GLhandleARB program, const GLcharARB * name); /* 567 */
+ void (GLAPIENTRYP DrawBuffersARB)(GLsizei n, const GLenum * bufs); /* 568 */
+ void (GLAPIENTRYP ClampColorARB)(GLenum target, GLenum clamp); /* 569 */
+ void (GLAPIENTRYP DrawArraysInstancedARB)(GLenum mode, GLint first, GLsizei count, GLsizei primcount); /* 570 */
+ void (GLAPIENTRYP DrawElementsInstancedARB)(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices, GLsizei primcount); /* 571 */
+ void (GLAPIENTRYP RenderbufferStorageMultisample)(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); /* 572 */
+ void (GLAPIENTRYP FramebufferTextureFaceARB)(GLenum target, GLenum attachment, GLuint texture, GLint level, GLenum face); /* 573 */
+ void (GLAPIENTRYP VertexAttribDivisorARB)(GLuint index, GLuint divisor); /* 574 */
+ void (GLAPIENTRYP FlushMappedBufferRange)(GLenum target, GLintptr offset, GLsizeiptr length); /* 575 */
+ GLvoid * (GLAPIENTRYP MapBufferRange)(GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access); /* 576 */
+ void (GLAPIENTRYP TexBufferARB)(GLenum target, GLenum internalFormat, GLuint buffer); /* 577 */
+ void (GLAPIENTRYP BindVertexArray)(GLuint array); /* 578 */
+ void (GLAPIENTRYP GenVertexArrays)(GLsizei n, GLuint * arrays); /* 579 */
+ void (GLAPIENTRYP GetActiveUniformBlockName)(GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei * length, GLchar * uniformBlockName); /* 580 */
+ void (GLAPIENTRYP GetActiveUniformBlockiv)(GLuint program, GLuint uniformBlockIndex, GLenum pname, GLint * params); /* 581 */
+ void (GLAPIENTRYP GetActiveUniformName)(GLuint program, GLuint uniformIndex, GLsizei bufSize, GLsizei * length, GLchar * uniformName); /* 582 */
+ void (GLAPIENTRYP GetActiveUniformsiv)(GLuint program, GLsizei uniformCount, const GLuint * uniformIndices, GLenum pname, GLint * params); /* 583 */
+ GLuint (GLAPIENTRYP GetUniformBlockIndex)(GLuint program, const GLchar * uniformBlockName); /* 584 */
+ void (GLAPIENTRYP GetUniformIndices)(GLuint program, GLsizei uniformCount, const GLchar * const * uniformNames, GLuint * uniformIndices); /* 585 */
+ void (GLAPIENTRYP UniformBlockBinding)(GLuint program, GLuint uniformBlockIndex, GLuint uniformBlockBinding); /* 586 */
+ void (GLAPIENTRYP CopyBufferSubData)(GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); /* 587 */
+ GLenum (GLAPIENTRYP ClientWaitSync)(GLsync sync, GLbitfield flags, GLuint64 timeout); /* 588 */
+ void (GLAPIENTRYP DeleteSync)(GLsync sync); /* 589 */
+ GLsync (GLAPIENTRYP FenceSync)(GLenum condition, GLbitfield flags); /* 590 */
+ void (GLAPIENTRYP GetInteger64v)(GLenum pname, GLint64 * params); /* 591 */
+ void (GLAPIENTRYP GetSynciv)(GLsync sync, GLenum pname, GLsizei bufSize, GLsizei * length, GLint * values); /* 592 */
+ GLboolean (GLAPIENTRYP IsSync)(GLsync sync); /* 593 */
+ void (GLAPIENTRYP WaitSync)(GLsync sync, GLbitfield flags, GLuint64 timeout); /* 594 */
+ void (GLAPIENTRYP DrawElementsBaseVertex)(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices, GLint basevertex); /* 595 */
+ void (GLAPIENTRYP DrawElementsInstancedBaseVertex)(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices, GLsizei primcount, GLint basevertex); /* 596 */
+ void (GLAPIENTRYP DrawRangeElementsBaseVertex)(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid * indices, GLint basevertex); /* 597 */
+ void (GLAPIENTRYP MultiDrawElementsBaseVertex)(GLenum mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, const GLint * basevertex); /* 598 */
+ void (GLAPIENTRYP BlendEquationSeparateiARB)(GLuint buf, GLenum modeRGB, GLenum modeA); /* 599 */
+ void (GLAPIENTRYP BlendEquationiARB)(GLuint buf, GLenum mode); /* 600 */
+ void (GLAPIENTRYP BlendFuncSeparateiARB)(GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcA, GLenum dstA); /* 601 */
+ void (GLAPIENTRYP BlendFunciARB)(GLuint buf, GLenum src, GLenum dst); /* 602 */
+ void (GLAPIENTRYP BindFragDataLocationIndexed)(GLuint program, GLuint colorNumber, GLuint index, const GLchar * name); /* 603 */
+ GLint (GLAPIENTRYP GetFragDataIndex)(GLuint program, const GLchar * name); /* 604 */
+ void (GLAPIENTRYP BindSampler)(GLuint unit, GLuint sampler); /* 605 */
+ void (GLAPIENTRYP DeleteSamplers)(GLsizei count, const GLuint * samplers); /* 606 */
+ void (GLAPIENTRYP GenSamplers)(GLsizei count, GLuint * samplers); /* 607 */
+ void (GLAPIENTRYP GetSamplerParameterIiv)(GLuint sampler, GLenum pname, GLint * params); /* 608 */
+ void (GLAPIENTRYP GetSamplerParameterIuiv)(GLuint sampler, GLenum pname, GLuint * params); /* 609 */
+ void (GLAPIENTRYP GetSamplerParameterfv)(GLuint sampler, GLenum pname, GLfloat * params); /* 610 */
+ void (GLAPIENTRYP GetSamplerParameteriv)(GLuint sampler, GLenum pname, GLint * params); /* 611 */
+ GLboolean (GLAPIENTRYP IsSampler)(GLuint sampler); /* 612 */
+ void (GLAPIENTRYP SamplerParameterIiv)(GLuint sampler, GLenum pname, const GLint * params); /* 613 */
+ void (GLAPIENTRYP SamplerParameterIuiv)(GLuint sampler, GLenum pname, const GLuint * params); /* 614 */
+ void (GLAPIENTRYP SamplerParameterf)(GLuint sampler, GLenum pname, GLfloat param); /* 615 */
+ void (GLAPIENTRYP SamplerParameterfv)(GLuint sampler, GLenum pname, const GLfloat * params); /* 616 */
+ void (GLAPIENTRYP SamplerParameteri)(GLuint sampler, GLenum pname, GLint param); /* 617 */
+ void (GLAPIENTRYP SamplerParameteriv)(GLuint sampler, GLenum pname, const GLint * params); /* 618 */
+ void (GLAPIENTRYP QueryCounter)(GLuint id, GLenum target); /* 619 */
+ void (GLAPIENTRYP ColorP3ui)(GLenum type, GLuint color); /* 620 */
+ void (GLAPIENTRYP ColorP3uiv)(GLenum type, const GLuint * color); /* 621 */
+ void (GLAPIENTRYP ColorP4ui)(GLenum type, GLuint color); /* 622 */
+ void (GLAPIENTRYP ColorP4uiv)(GLenum type, const GLuint * color); /* 623 */
+ void (GLAPIENTRYP MultiTexCoordP1ui)(GLenum texture, GLenum type, GLuint coords); /* 624 */
+ void (GLAPIENTRYP MultiTexCoordP1uiv)(GLenum texture, GLenum type, const GLuint * coords); /* 625 */
+ void (GLAPIENTRYP MultiTexCoordP2ui)(GLenum texture, GLenum type, GLuint coords); /* 626 */
+ void (GLAPIENTRYP MultiTexCoordP2uiv)(GLenum texture, GLenum type, const GLuint * coords); /* 627 */
+ void (GLAPIENTRYP MultiTexCoordP3ui)(GLenum texture, GLenum type, GLuint coords); /* 628 */
+ void (GLAPIENTRYP MultiTexCoordP3uiv)(GLenum texture, GLenum type, const GLuint * coords); /* 629 */
+ void (GLAPIENTRYP MultiTexCoordP4ui)(GLenum texture, GLenum type, GLuint coords); /* 630 */
+ void (GLAPIENTRYP MultiTexCoordP4uiv)(GLenum texture, GLenum type, const GLuint * coords); /* 631 */
+ void (GLAPIENTRYP NormalP3ui)(GLenum type, GLuint coords); /* 632 */
+ void (GLAPIENTRYP NormalP3uiv)(GLenum type, const GLuint * coords); /* 633 */
+ void (GLAPIENTRYP SecondaryColorP3ui)(GLenum type, GLuint color); /* 634 */
+ void (GLAPIENTRYP SecondaryColorP3uiv)(GLenum type, const GLuint * color); /* 635 */
+ void (GLAPIENTRYP TexCoordP1ui)(GLenum type, GLuint coords); /* 636 */
+ void (GLAPIENTRYP TexCoordP1uiv)(GLenum type, const GLuint * coords); /* 637 */
+ void (GLAPIENTRYP TexCoordP2ui)(GLenum type, GLuint coords); /* 638 */
+ void (GLAPIENTRYP TexCoordP2uiv)(GLenum type, const GLuint * coords); /* 639 */
+ void (GLAPIENTRYP TexCoordP3ui)(GLenum type, GLuint coords); /* 640 */
+ void (GLAPIENTRYP TexCoordP3uiv)(GLenum type, const GLuint * coords); /* 641 */
+ void (GLAPIENTRYP TexCoordP4ui)(GLenum type, GLuint coords); /* 642 */
+ void (GLAPIENTRYP TexCoordP4uiv)(GLenum type, const GLuint * coords); /* 643 */
+ void (GLAPIENTRYP VertexAttribP1ui)(GLuint index, GLenum type, GLboolean normalized, GLuint value); /* 644 */
+ void (GLAPIENTRYP VertexAttribP1uiv)(GLuint index, GLenum type, GLboolean normalized, const GLuint * value); /* 645 */
+ void (GLAPIENTRYP VertexAttribP2ui)(GLuint index, GLenum type, GLboolean normalized, GLuint value); /* 646 */
+ void (GLAPIENTRYP VertexAttribP2uiv)(GLuint index, GLenum type, GLboolean normalized, const GLuint * value); /* 647 */
+ void (GLAPIENTRYP VertexAttribP3ui)(GLuint index, GLenum type, GLboolean normalized, GLuint value); /* 648 */
+ void (GLAPIENTRYP VertexAttribP3uiv)(GLuint index, GLenum type, GLboolean normalized, const GLuint * value); /* 649 */
+ void (GLAPIENTRYP VertexAttribP4ui)(GLuint index, GLenum type, GLboolean normalized, GLuint value); /* 650 */
+ void (GLAPIENTRYP VertexAttribP4uiv)(GLuint index, GLenum type, GLboolean normalized, const GLuint * value); /* 651 */
+ void (GLAPIENTRYP VertexP2ui)(GLenum type, GLuint value); /* 652 */
+ void (GLAPIENTRYP VertexP2uiv)(GLenum type, const GLuint * value); /* 653 */
+ void (GLAPIENTRYP VertexP3ui)(GLenum type, GLuint value); /* 654 */
+ void (GLAPIENTRYP VertexP3uiv)(GLenum type, const GLuint * value); /* 655 */
+ void (GLAPIENTRYP VertexP4ui)(GLenum type, GLuint value); /* 656 */
+ void (GLAPIENTRYP VertexP4uiv)(GLenum type, const GLuint * value); /* 657 */
+ void (GLAPIENTRYP BindTransformFeedback)(GLenum target, GLuint id); /* 658 */
+ void (GLAPIENTRYP DeleteTransformFeedbacks)(GLsizei n, const GLuint * ids); /* 659 */
+ void (GLAPIENTRYP DrawTransformFeedback)(GLenum mode, GLuint id); /* 660 */
+ void (GLAPIENTRYP GenTransformFeedbacks)(GLsizei n, GLuint * ids); /* 661 */
+ GLboolean (GLAPIENTRYP IsTransformFeedback)(GLuint id); /* 662 */
+ void (GLAPIENTRYP PauseTransformFeedback)(void); /* 663 */
+ void (GLAPIENTRYP ResumeTransformFeedback)(void); /* 664 */
+ void (GLAPIENTRYP BeginQueryIndexed)(GLenum target, GLuint index, GLuint id); /* 665 */
+ void (GLAPIENTRYP DrawTransformFeedbackStream)(GLenum mode, GLuint id, GLuint stream); /* 666 */
+ void (GLAPIENTRYP EndQueryIndexed)(GLenum target, GLuint index); /* 667 */
+ void (GLAPIENTRYP GetQueryIndexediv)(GLenum target, GLuint index, GLenum pname, GLint * params); /* 668 */
+ void (GLAPIENTRYP ClearDepthf)(GLclampf depth); /* 669 */
+ void (GLAPIENTRYP DepthRangef)(GLclampf zNear, GLclampf zFar); /* 670 */
+ void (GLAPIENTRYP GetShaderPrecisionFormat)(GLenum shadertype, GLenum precisiontype, GLint * range, GLint * precision); /* 671 */
+ void (GLAPIENTRYP ReleaseShaderCompiler)(void); /* 672 */
+ void (GLAPIENTRYP ShaderBinary)(GLsizei n, const GLuint * shaders, GLenum binaryformat, const GLvoid * binary, GLsizei length); /* 673 */
+ void (GLAPIENTRYP GetProgramBinary)(GLuint program, GLsizei bufSize, GLsizei * length, GLenum * binaryFormat, GLvoid * binary); /* 674 */
+ void (GLAPIENTRYP ProgramBinary)(GLuint program, GLenum binaryFormat, const GLvoid * binary, GLsizei length); /* 675 */
+ void (GLAPIENTRYP ProgramParameteri)(GLuint program, GLenum pname, GLint value); /* 676 */
+ void (GLAPIENTRYP DebugMessageCallbackARB)(GLDEBUGPROCARB callback, const GLvoid * userParam); /* 677 */
+ void (GLAPIENTRYP DebugMessageControlARB)(GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint * ids, GLboolean enabled); /* 678 */
+ void (GLAPIENTRYP DebugMessageInsertARB)(GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLcharARB * buf); /* 679 */
+ GLuint (GLAPIENTRYP GetDebugMessageLogARB)(GLuint count, GLsizei bufsize, GLenum * sources, GLenum * types, GLuint * ids, GLenum * severities, GLsizei * lengths, GLcharARB * messageLog); /* 680 */
+ GLenum (GLAPIENTRYP GetGraphicsResetStatusARB)(void); /* 681 */
+ void (GLAPIENTRYP GetnColorTableARB)(GLenum target, GLenum format, GLenum type, GLsizei bufSize, GLvoid * table); /* 682 */
+ void (GLAPIENTRYP GetnCompressedTexImageARB)(GLenum target, GLint lod, GLsizei bufSize, GLvoid * img); /* 683 */
+ void (GLAPIENTRYP GetnConvolutionFilterARB)(GLenum target, GLenum format, GLenum type, GLsizei bufSize, GLvoid * image); /* 684 */
+ void (GLAPIENTRYP GetnHistogramARB)(GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, GLvoid * values); /* 685 */
+ void (GLAPIENTRYP GetnMapdvARB)(GLenum target, GLenum query, GLsizei bufSize, GLdouble * v); /* 686 */
+ void (GLAPIENTRYP GetnMapfvARB)(GLenum target, GLenum query, GLsizei bufSize, GLfloat * v); /* 687 */
+ void (GLAPIENTRYP GetnMapivARB)(GLenum target, GLenum query, GLsizei bufSize, GLint * v); /* 688 */
+ void (GLAPIENTRYP GetnMinmaxARB)(GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, GLvoid * values); /* 689 */
+ void (GLAPIENTRYP GetnPixelMapfvARB)(GLenum map, GLsizei bufSize, GLfloat * values); /* 690 */
+ void (GLAPIENTRYP GetnPixelMapuivARB)(GLenum map, GLsizei bufSize, GLuint * values); /* 691 */
+ void (GLAPIENTRYP GetnPixelMapusvARB)(GLenum map, GLsizei bufSize, GLushort * values); /* 692 */
+ void (GLAPIENTRYP GetnPolygonStippleARB)(GLsizei bufSize, GLubyte * pattern); /* 693 */
+ void (GLAPIENTRYP GetnSeparableFilterARB)(GLenum target, GLenum format, GLenum type, GLsizei rowBufSize, GLvoid * row, GLsizei columnBufSize, GLvoid * column, GLvoid * span); /* 694 */
+ void (GLAPIENTRYP GetnTexImageARB)(GLenum target, GLint level, GLenum format, GLenum type, GLsizei bufSize, GLvoid * img); /* 695 */
+ void (GLAPIENTRYP GetnUniformdvARB)(GLhandleARB program, GLint location, GLsizei bufSize, GLdouble * params); /* 696 */
+ void (GLAPIENTRYP GetnUniformfvARB)(GLhandleARB program, GLint location, GLsizei bufSize, GLfloat * params); /* 697 */
+ void (GLAPIENTRYP GetnUniformivARB)(GLhandleARB program, GLint location, GLsizei bufSize, GLint * params); /* 698 */
+ void (GLAPIENTRYP GetnUniformuivARB)(GLhandleARB program, GLint location, GLsizei bufSize, GLuint * params); /* 699 */
+ void (GLAPIENTRYP ReadnPixelsARB)(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, GLvoid * data); /* 700 */
+ void (GLAPIENTRYP DrawArraysInstancedBaseInstance)(GLenum mode, GLint first, GLsizei count, GLsizei primcount, GLuint baseinstance); /* 701 */
+ void (GLAPIENTRYP DrawElementsInstancedBaseInstance)(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices, GLsizei primcount, GLuint baseinstance); /* 702 */
+ void (GLAPIENTRYP DrawElementsInstancedBaseVertexBaseInstance)(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices, GLsizei primcount, GLint basevertex, GLuint baseinstance); /* 703 */
+ void (GLAPIENTRYP DrawTransformFeedbackInstanced)(GLenum mode, GLuint id, GLsizei primcount); /* 704 */
+ void (GLAPIENTRYP DrawTransformFeedbackStreamInstanced)(GLenum mode, GLuint id, GLuint stream, GLsizei primcount); /* 705 */
+ void (GLAPIENTRYP TexStorage1D)(GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width); /* 706 */
+ void (GLAPIENTRYP TexStorage2D)(GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height); /* 707 */
+ void (GLAPIENTRYP TexStorage3D)(GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth); /* 708 */
+ void (GLAPIENTRYP TextureStorage1DEXT)(GLuint texture, GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width); /* 709 */
+ void (GLAPIENTRYP TextureStorage2DEXT)(GLuint texture, GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height); /* 710 */
+ void (GLAPIENTRYP TextureStorage3DEXT)(GLuint texture, GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth); /* 711 */
+ void (GLAPIENTRYP InvalidateBufferData)(GLuint buffer); /* 712 */
+ void (GLAPIENTRYP InvalidateBufferSubData)(GLuint buffer, GLintptr offset, GLsizeiptr length); /* 713 */
+ void (GLAPIENTRYP InvalidateFramebuffer)(GLenum target, GLsizei numAttachments, const GLenum * attachments); /* 714 */
+ void (GLAPIENTRYP InvalidateSubFramebuffer)(GLenum target, GLsizei numAttachments, const GLenum * attachments, GLint x, GLint y, GLsizei width, GLsizei height); /* 715 */
+ void (GLAPIENTRYP InvalidateTexImage)(GLuint texture, GLint level); /* 716 */
+ void (GLAPIENTRYP InvalidateTexSubImage)(GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth); /* 717 */
+ void (GLAPIENTRYP PolygonOffsetEXT)(GLfloat factor, GLfloat bias); /* 718 */
+ void (GLAPIENTRYP SampleMaskSGIS)(GLclampf value, GLboolean invert); /* 719 */
+ void (GLAPIENTRYP SamplePatternSGIS)(GLenum pattern); /* 720 */
+ void (GLAPIENTRYP ColorPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 721 */
+ void (GLAPIENTRYP EdgeFlagPointerEXT)(GLsizei stride, GLsizei count, const GLboolean * pointer); /* 722 */
+ void (GLAPIENTRYP IndexPointerEXT)(GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 723 */
+ void (GLAPIENTRYP NormalPointerEXT)(GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 724 */
+ void (GLAPIENTRYP TexCoordPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 725 */
+ void (GLAPIENTRYP VertexPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 726 */
+ void (GLAPIENTRYP PointParameterfEXT)(GLenum pname, GLfloat param); /* 727 */
+ void (GLAPIENTRYP PointParameterfvEXT)(GLenum pname, const GLfloat * params); /* 728 */
+ void (GLAPIENTRYP LockArraysEXT)(GLint first, GLsizei count); /* 729 */
+ void (GLAPIENTRYP UnlockArraysEXT)(void); /* 730 */
+ void (GLAPIENTRYP SecondaryColor3bEXT)(GLbyte red, GLbyte green, GLbyte blue); /* 731 */
+ void (GLAPIENTRYP SecondaryColor3bvEXT)(const GLbyte * v); /* 732 */
+ void (GLAPIENTRYP SecondaryColor3dEXT)(GLdouble red, GLdouble green, GLdouble blue); /* 733 */
+ void (GLAPIENTRYP SecondaryColor3dvEXT)(const GLdouble * v); /* 734 */
+ void (GLAPIENTRYP SecondaryColor3fEXT)(GLfloat red, GLfloat green, GLfloat blue); /* 735 */
+ void (GLAPIENTRYP SecondaryColor3fvEXT)(const GLfloat * v); /* 736 */
+ void (GLAPIENTRYP SecondaryColor3iEXT)(GLint red, GLint green, GLint blue); /* 737 */
+ void (GLAPIENTRYP SecondaryColor3ivEXT)(const GLint * v); /* 738 */
+ void (GLAPIENTRYP SecondaryColor3sEXT)(GLshort red, GLshort green, GLshort blue); /* 739 */
+ void (GLAPIENTRYP SecondaryColor3svEXT)(const GLshort * v); /* 740 */
+ void (GLAPIENTRYP SecondaryColor3ubEXT)(GLubyte red, GLubyte green, GLubyte blue); /* 741 */
+ void (GLAPIENTRYP SecondaryColor3ubvEXT)(const GLubyte * v); /* 742 */
+ void (GLAPIENTRYP SecondaryColor3uiEXT)(GLuint red, GLuint green, GLuint blue); /* 743 */
+ void (GLAPIENTRYP SecondaryColor3uivEXT)(const GLuint * v); /* 744 */
+ void (GLAPIENTRYP SecondaryColor3usEXT)(GLushort red, GLushort green, GLushort blue); /* 745 */
+ void (GLAPIENTRYP SecondaryColor3usvEXT)(const GLushort * v); /* 746 */
+ void (GLAPIENTRYP SecondaryColorPointerEXT)(GLint size, GLenum type, GLsizei stride, const GLvoid * pointer); /* 747 */
+ void (GLAPIENTRYP MultiDrawArraysEXT)(GLenum mode, const GLint * first, const GLsizei * count, GLsizei primcount); /* 748 */
+ void (GLAPIENTRYP MultiDrawElementsEXT)(GLenum mode, const GLsizei * count, GLenum type, const GLvoid ** indices, GLsizei primcount); /* 749 */
+ void (GLAPIENTRYP FogCoordPointerEXT)(GLenum type, GLsizei stride, const GLvoid * pointer); /* 750 */
+ void (GLAPIENTRYP FogCoorddEXT)(GLdouble coord); /* 751 */
+ void (GLAPIENTRYP FogCoorddvEXT)(const GLdouble * coord); /* 752 */
+ void (GLAPIENTRYP FogCoordfEXT)(GLfloat coord); /* 753 */
+ void (GLAPIENTRYP FogCoordfvEXT)(const GLfloat * coord); /* 754 */
+ void (GLAPIENTRYP BlendFuncSeparateEXT)(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); /* 755 */
+ void (GLAPIENTRYP ResizeBuffersMESA)(void); /* 756 */
+ void (GLAPIENTRYP WindowPos2dMESA)(GLdouble x, GLdouble y); /* 757 */
+ void (GLAPIENTRYP WindowPos2dvMESA)(const GLdouble * v); /* 758 */
+ void (GLAPIENTRYP WindowPos2fMESA)(GLfloat x, GLfloat y); /* 759 */
+ void (GLAPIENTRYP WindowPos2fvMESA)(const GLfloat * v); /* 760 */
+ void (GLAPIENTRYP WindowPos2iMESA)(GLint x, GLint y); /* 761 */
+ void (GLAPIENTRYP WindowPos2ivMESA)(const GLint * v); /* 762 */
+ void (GLAPIENTRYP WindowPos2sMESA)(GLshort x, GLshort y); /* 763 */
+ void (GLAPIENTRYP WindowPos2svMESA)(const GLshort * v); /* 764 */
+ void (GLAPIENTRYP WindowPos3dMESA)(GLdouble x, GLdouble y, GLdouble z); /* 765 */
+ void (GLAPIENTRYP WindowPos3dvMESA)(const GLdouble * v); /* 766 */
+ void (GLAPIENTRYP WindowPos3fMESA)(GLfloat x, GLfloat y, GLfloat z); /* 767 */
+ void (GLAPIENTRYP WindowPos3fvMESA)(const GLfloat * v); /* 768 */
+ void (GLAPIENTRYP WindowPos3iMESA)(GLint x, GLint y, GLint z); /* 769 */
+ void (GLAPIENTRYP WindowPos3ivMESA)(const GLint * v); /* 770 */
+ void (GLAPIENTRYP WindowPos3sMESA)(GLshort x, GLshort y, GLshort z); /* 771 */
+ void (GLAPIENTRYP WindowPos3svMESA)(const GLshort * v); /* 772 */
+ void (GLAPIENTRYP WindowPos4dMESA)(GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 773 */
+ void (GLAPIENTRYP WindowPos4dvMESA)(const GLdouble * v); /* 774 */
+ void (GLAPIENTRYP WindowPos4fMESA)(GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 775 */
+ void (GLAPIENTRYP WindowPos4fvMESA)(const GLfloat * v); /* 776 */
+ void (GLAPIENTRYP WindowPos4iMESA)(GLint x, GLint y, GLint z, GLint w); /* 777 */
+ void (GLAPIENTRYP WindowPos4ivMESA)(const GLint * v); /* 778 */
+ void (GLAPIENTRYP WindowPos4sMESA)(GLshort x, GLshort y, GLshort z, GLshort w); /* 779 */
+ void (GLAPIENTRYP WindowPos4svMESA)(const GLshort * v); /* 780 */
+ void (GLAPIENTRYP MultiModeDrawArraysIBM)(const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride); /* 781 */
+ void (GLAPIENTRYP MultiModeDrawElementsIBM)(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride); /* 782 */
+ GLboolean (GLAPIENTRYP AreProgramsResidentNV)(GLsizei n, const GLuint * ids, GLboolean * residences); /* 783 */
+ void (GLAPIENTRYP BindProgramNV)(GLenum target, GLuint program); /* 784 */
+ void (GLAPIENTRYP DeleteProgramsNV)(GLsizei n, const GLuint * programs); /* 785 */
+ void (GLAPIENTRYP ExecuteProgramNV)(GLenum target, GLuint id, const GLfloat * params); /* 786 */
+ void (GLAPIENTRYP GenProgramsNV)(GLsizei n, GLuint * programs); /* 787 */
+ void (GLAPIENTRYP GetProgramParameterdvNV)(GLenum target, GLuint index, GLenum pname, GLdouble * params); /* 788 */
+ void (GLAPIENTRYP GetProgramParameterfvNV)(GLenum target, GLuint index, GLenum pname, GLfloat * params); /* 789 */
+ void (GLAPIENTRYP GetProgramStringNV)(GLuint id, GLenum pname, GLubyte * program); /* 790 */
+ void (GLAPIENTRYP GetProgramivNV)(GLuint id, GLenum pname, GLint * params); /* 791 */
+ void (GLAPIENTRYP GetTrackMatrixivNV)(GLenum target, GLuint address, GLenum pname, GLint * params); /* 792 */
+ void (GLAPIENTRYP GetVertexAttribPointervNV)(GLuint index, GLenum pname, GLvoid ** pointer); /* 793 */
+ void (GLAPIENTRYP GetVertexAttribdvNV)(GLuint index, GLenum pname, GLdouble * params); /* 794 */
+ void (GLAPIENTRYP GetVertexAttribfvNV)(GLuint index, GLenum pname, GLfloat * params); /* 795 */
+ void (GLAPIENTRYP GetVertexAttribivNV)(GLuint index, GLenum pname, GLint * params); /* 796 */
+ GLboolean (GLAPIENTRYP IsProgramNV)(GLuint program); /* 797 */
+ void (GLAPIENTRYP LoadProgramNV)(GLenum target, GLuint id, GLsizei len, const GLubyte * program); /* 798 */
+ void (GLAPIENTRYP ProgramParameters4dvNV)(GLenum target, GLuint index, GLsizei num, const GLdouble * params); /* 799 */
+ void (GLAPIENTRYP ProgramParameters4fvNV)(GLenum target, GLuint index, GLsizei num, const GLfloat * params); /* 800 */
+ void (GLAPIENTRYP RequestResidentProgramsNV)(GLsizei n, const GLuint * ids); /* 801 */
+ void (GLAPIENTRYP TrackMatrixNV)(GLenum target, GLuint address, GLenum matrix, GLenum transform); /* 802 */
+ void (GLAPIENTRYP VertexAttrib1dNV)(GLuint index, GLdouble x); /* 803 */
+ void (GLAPIENTRYP VertexAttrib1dvNV)(GLuint index, const GLdouble * v); /* 804 */
+ void (GLAPIENTRYP VertexAttrib1fNV)(GLuint index, GLfloat x); /* 805 */
+ void (GLAPIENTRYP VertexAttrib1fvNV)(GLuint index, const GLfloat * v); /* 806 */
+ void (GLAPIENTRYP VertexAttrib1sNV)(GLuint index, GLshort x); /* 807 */
+ void (GLAPIENTRYP VertexAttrib1svNV)(GLuint index, const GLshort * v); /* 808 */
+ void (GLAPIENTRYP VertexAttrib2dNV)(GLuint index, GLdouble x, GLdouble y); /* 809 */
+ void (GLAPIENTRYP VertexAttrib2dvNV)(GLuint index, const GLdouble * v); /* 810 */
+ void (GLAPIENTRYP VertexAttrib2fNV)(GLuint index, GLfloat x, GLfloat y); /* 811 */
+ void (GLAPIENTRYP VertexAttrib2fvNV)(GLuint index, const GLfloat * v); /* 812 */
+ void (GLAPIENTRYP VertexAttrib2sNV)(GLuint index, GLshort x, GLshort y); /* 813 */
+ void (GLAPIENTRYP VertexAttrib2svNV)(GLuint index, const GLshort * v); /* 814 */
+ void (GLAPIENTRYP VertexAttrib3dNV)(GLuint index, GLdouble x, GLdouble y, GLdouble z); /* 815 */
+ void (GLAPIENTRYP VertexAttrib3dvNV)(GLuint index, const GLdouble * v); /* 816 */
+ void (GLAPIENTRYP VertexAttrib3fNV)(GLuint index, GLfloat x, GLfloat y, GLfloat z); /* 817 */
+ void (GLAPIENTRYP VertexAttrib3fvNV)(GLuint index, const GLfloat * v); /* 818 */
+ void (GLAPIENTRYP VertexAttrib3sNV)(GLuint index, GLshort x, GLshort y, GLshort z); /* 819 */
+ void (GLAPIENTRYP VertexAttrib3svNV)(GLuint index, const GLshort * v); /* 820 */
+ void (GLAPIENTRYP VertexAttrib4dNV)(GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 821 */
+ void (GLAPIENTRYP VertexAttrib4dvNV)(GLuint index, const GLdouble * v); /* 822 */
+ void (GLAPIENTRYP VertexAttrib4fNV)(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 823 */
+ void (GLAPIENTRYP VertexAttrib4fvNV)(GLuint index, const GLfloat * v); /* 824 */
+ void (GLAPIENTRYP VertexAttrib4sNV)(GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); /* 825 */
+ void (GLAPIENTRYP VertexAttrib4svNV)(GLuint index, const GLshort * v); /* 826 */
+ void (GLAPIENTRYP VertexAttrib4ubNV)(GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); /* 827 */
+ void (GLAPIENTRYP VertexAttrib4ubvNV)(GLuint index, const GLubyte * v); /* 828 */
+ void (GLAPIENTRYP VertexAttribPointerNV)(GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid * pointer); /* 829 */
+ void (GLAPIENTRYP VertexAttribs1dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 830 */
+ void (GLAPIENTRYP VertexAttribs1fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 831 */
+ void (GLAPIENTRYP VertexAttribs1svNV)(GLuint index, GLsizei n, const GLshort * v); /* 832 */
+ void (GLAPIENTRYP VertexAttribs2dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 833 */
+ void (GLAPIENTRYP VertexAttribs2fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 834 */
+ void (GLAPIENTRYP VertexAttribs2svNV)(GLuint index, GLsizei n, const GLshort * v); /* 835 */
+ void (GLAPIENTRYP VertexAttribs3dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 836 */
+ void (GLAPIENTRYP VertexAttribs3fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 837 */
+ void (GLAPIENTRYP VertexAttribs3svNV)(GLuint index, GLsizei n, const GLshort * v); /* 838 */
+ void (GLAPIENTRYP VertexAttribs4dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 839 */
+ void (GLAPIENTRYP VertexAttribs4fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 840 */
+ void (GLAPIENTRYP VertexAttribs4svNV)(GLuint index, GLsizei n, const GLshort * v); /* 841 */
+ void (GLAPIENTRYP VertexAttribs4ubvNV)(GLuint index, GLsizei n, const GLubyte * v); /* 842 */
+ void (GLAPIENTRYP GetTexBumpParameterfvATI)(GLenum pname, GLfloat * param); /* 843 */
+ void (GLAPIENTRYP GetTexBumpParameterivATI)(GLenum pname, GLint * param); /* 844 */
+ void (GLAPIENTRYP TexBumpParameterfvATI)(GLenum pname, const GLfloat * param); /* 845 */
+ void (GLAPIENTRYP TexBumpParameterivATI)(GLenum pname, const GLint * param); /* 846 */
+ void (GLAPIENTRYP AlphaFragmentOp1ATI)(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); /* 847 */
+ void (GLAPIENTRYP AlphaFragmentOp2ATI)(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); /* 848 */
+ 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); /* 849 */
+ void (GLAPIENTRYP BeginFragmentShaderATI)(void); /* 850 */
+ void (GLAPIENTRYP BindFragmentShaderATI)(GLuint id); /* 851 */
+ void (GLAPIENTRYP ColorFragmentOp1ATI)(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); /* 852 */
+ void (GLAPIENTRYP ColorFragmentOp2ATI)(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); /* 853 */
+ 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); /* 854 */
+ void (GLAPIENTRYP DeleteFragmentShaderATI)(GLuint id); /* 855 */
+ void (GLAPIENTRYP EndFragmentShaderATI)(void); /* 856 */
+ GLuint (GLAPIENTRYP GenFragmentShadersATI)(GLuint range); /* 857 */
+ void (GLAPIENTRYP PassTexCoordATI)(GLuint dst, GLuint coord, GLenum swizzle); /* 858 */
+ void (GLAPIENTRYP SampleMapATI)(GLuint dst, GLuint interp, GLenum swizzle); /* 859 */
+ void (GLAPIENTRYP SetFragmentShaderConstantATI)(GLuint dst, const GLfloat * value); /* 860 */
+ void (GLAPIENTRYP PointParameteriNV)(GLenum pname, GLint param); /* 861 */
+ void (GLAPIENTRYP PointParameterivNV)(GLenum pname, const GLint * params); /* 862 */
+ void (GLAPIENTRYP ActiveStencilFaceEXT)(GLenum face); /* 863 */
+ void (GLAPIENTRYP BindVertexArrayAPPLE)(GLuint array); /* 864 */
+ void (GLAPIENTRYP DeleteVertexArraysAPPLE)(GLsizei n, const GLuint * arrays); /* 865 */
+ void (GLAPIENTRYP GenVertexArraysAPPLE)(GLsizei n, GLuint * arrays); /* 866 */
+ GLboolean (GLAPIENTRYP IsVertexArrayAPPLE)(GLuint array); /* 867 */
+ void (GLAPIENTRYP GetProgramNamedParameterdvNV)(GLuint id, GLsizei len, const GLubyte * name, GLdouble * params); /* 868 */
+ void (GLAPIENTRYP GetProgramNamedParameterfvNV)(GLuint id, GLsizei len, const GLubyte * name, GLfloat * params); /* 869 */
+ void (GLAPIENTRYP ProgramNamedParameter4dNV)(GLuint id, GLsizei len, const GLubyte * name, GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 870 */
+ void (GLAPIENTRYP ProgramNamedParameter4dvNV)(GLuint id, GLsizei len, const GLubyte * name, const GLdouble * v); /* 871 */
+ void (GLAPIENTRYP ProgramNamedParameter4fNV)(GLuint id, GLsizei len, const GLubyte * name, GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 872 */
+ void (GLAPIENTRYP ProgramNamedParameter4fvNV)(GLuint id, GLsizei len, const GLubyte * name, const GLfloat * v); /* 873 */
+ void (GLAPIENTRYP PrimitiveRestartIndexNV)(GLuint index); /* 874 */
+ void (GLAPIENTRYP PrimitiveRestartNV)(void); /* 875 */
+ void (GLAPIENTRYP DepthBoundsEXT)(GLclampd zmin, GLclampd zmax); /* 876 */
+ void (GLAPIENTRYP BlendEquationSeparateEXT)(GLenum modeRGB, GLenum modeA); /* 877 */
+ void (GLAPIENTRYP BindFramebufferEXT)(GLenum target, GLuint framebuffer); /* 878 */
+ void (GLAPIENTRYP BindRenderbufferEXT)(GLenum target, GLuint renderbuffer); /* 879 */
+ GLenum (GLAPIENTRYP CheckFramebufferStatusEXT)(GLenum target); /* 880 */
+ void (GLAPIENTRYP DeleteFramebuffersEXT)(GLsizei n, const GLuint * framebuffers); /* 881 */
+ void (GLAPIENTRYP DeleteRenderbuffersEXT)(GLsizei n, const GLuint * renderbuffers); /* 882 */
+ void (GLAPIENTRYP FramebufferRenderbufferEXT)(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); /* 883 */
+ void (GLAPIENTRYP FramebufferTexture1DEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); /* 884 */
+ void (GLAPIENTRYP FramebufferTexture2DEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); /* 885 */
+ void (GLAPIENTRYP FramebufferTexture3DEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); /* 886 */
+ void (GLAPIENTRYP GenFramebuffersEXT)(GLsizei n, GLuint * framebuffers); /* 887 */
+ void (GLAPIENTRYP GenRenderbuffersEXT)(GLsizei n, GLuint * renderbuffers); /* 888 */
+ void (GLAPIENTRYP GenerateMipmapEXT)(GLenum target); /* 889 */
+ void (GLAPIENTRYP GetFramebufferAttachmentParameterivEXT)(GLenum target, GLenum attachment, GLenum pname, GLint * params); /* 890 */
+ void (GLAPIENTRYP GetRenderbufferParameterivEXT)(GLenum target, GLenum pname, GLint * params); /* 891 */
+ GLboolean (GLAPIENTRYP IsFramebufferEXT)(GLuint framebuffer); /* 892 */
+ GLboolean (GLAPIENTRYP IsRenderbufferEXT)(GLuint renderbuffer); /* 893 */
+ void (GLAPIENTRYP RenderbufferStorageEXT)(GLenum target, GLenum internalformat, GLsizei width, GLsizei height); /* 894 */
+ void (GLAPIENTRYP BlitFramebufferEXT)(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); /* 895 */
+ void (GLAPIENTRYP BufferParameteriAPPLE)(GLenum target, GLenum pname, GLint param); /* 896 */
+ void (GLAPIENTRYP FlushMappedBufferRangeAPPLE)(GLenum target, GLintptr offset, GLsizeiptr size); /* 897 */
+ void (GLAPIENTRYP BindFragDataLocationEXT)(GLuint program, GLuint colorNumber, const GLchar * name); /* 898 */
+ GLint (GLAPIENTRYP GetFragDataLocationEXT)(GLuint program, const GLchar * name); /* 899 */
+ void (GLAPIENTRYP GetUniformuivEXT)(GLuint program, GLint location, GLuint * params); /* 900 */
+ void (GLAPIENTRYP GetVertexAttribIivEXT)(GLuint index, GLenum pname, GLint * params); /* 901 */
+ void (GLAPIENTRYP GetVertexAttribIuivEXT)(GLuint index, GLenum pname, GLuint * params); /* 902 */
+ void (GLAPIENTRYP Uniform1uiEXT)(GLint location, GLuint x); /* 903 */
+ void (GLAPIENTRYP Uniform1uivEXT)(GLint location, GLsizei count, const GLuint * value); /* 904 */
+ void (GLAPIENTRYP Uniform2uiEXT)(GLint location, GLuint x, GLuint y); /* 905 */
+ void (GLAPIENTRYP Uniform2uivEXT)(GLint location, GLsizei count, const GLuint * value); /* 906 */
+ void (GLAPIENTRYP Uniform3uiEXT)(GLint location, GLuint x, GLuint y, GLuint z); /* 907 */
+ void (GLAPIENTRYP Uniform3uivEXT)(GLint location, GLsizei count, const GLuint * value); /* 908 */
+ void (GLAPIENTRYP Uniform4uiEXT)(GLint location, GLuint x, GLuint y, GLuint z, GLuint w); /* 909 */
+ void (GLAPIENTRYP Uniform4uivEXT)(GLint location, GLsizei count, const GLuint * value); /* 910 */
+ void (GLAPIENTRYP VertexAttribI1iEXT)(GLuint index, GLint x); /* 911 */
+ void (GLAPIENTRYP VertexAttribI1ivEXT)(GLuint index, const GLint * v); /* 912 */
+ void (GLAPIENTRYP VertexAttribI1uiEXT)(GLuint index, GLuint x); /* 913 */
+ void (GLAPIENTRYP VertexAttribI1uivEXT)(GLuint index, const GLuint * v); /* 914 */
+ void (GLAPIENTRYP VertexAttribI2iEXT)(GLuint index, GLint x, GLint y); /* 915 */
+ void (GLAPIENTRYP VertexAttribI2ivEXT)(GLuint index, const GLint * v); /* 916 */
+ void (GLAPIENTRYP VertexAttribI2uiEXT)(GLuint index, GLuint x, GLuint y); /* 917 */
+ void (GLAPIENTRYP VertexAttribI2uivEXT)(GLuint index, const GLuint * v); /* 918 */
+ void (GLAPIENTRYP VertexAttribI3iEXT)(GLuint index, GLint x, GLint y, GLint z); /* 919 */
+ void (GLAPIENTRYP VertexAttribI3ivEXT)(GLuint index, const GLint * v); /* 920 */
+ void (GLAPIENTRYP VertexAttribI3uiEXT)(GLuint index, GLuint x, GLuint y, GLuint z); /* 921 */
+ void (GLAPIENTRYP VertexAttribI3uivEXT)(GLuint index, const GLuint * v); /* 922 */
+ void (GLAPIENTRYP VertexAttribI4bvEXT)(GLuint index, const GLbyte * v); /* 923 */
+ void (GLAPIENTRYP VertexAttribI4iEXT)(GLuint index, GLint x, GLint y, GLint z, GLint w); /* 924 */
+ void (GLAPIENTRYP VertexAttribI4ivEXT)(GLuint index, const GLint * v); /* 925 */
+ void (GLAPIENTRYP VertexAttribI4svEXT)(GLuint index, const GLshort * v); /* 926 */
+ void (GLAPIENTRYP VertexAttribI4ubvEXT)(GLuint index, const GLubyte * v); /* 927 */
+ void (GLAPIENTRYP VertexAttribI4uiEXT)(GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); /* 928 */
+ void (GLAPIENTRYP VertexAttribI4uivEXT)(GLuint index, const GLuint * v); /* 929 */
+ void (GLAPIENTRYP VertexAttribI4usvEXT)(GLuint index, const GLushort * v); /* 930 */
+ void (GLAPIENTRYP VertexAttribIPointerEXT)(GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid * pointer); /* 931 */
+ void (GLAPIENTRYP FramebufferTextureLayerEXT)(GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); /* 932 */
+ void (GLAPIENTRYP ColorMaskIndexedEXT)(GLuint buf, GLboolean r, GLboolean g, GLboolean b, GLboolean a); /* 933 */
+ void (GLAPIENTRYP DisableIndexedEXT)(GLenum target, GLuint index); /* 934 */
+ void (GLAPIENTRYP EnableIndexedEXT)(GLenum target, GLuint index); /* 935 */
+ void (GLAPIENTRYP GetBooleanIndexedvEXT)(GLenum value, GLuint index, GLboolean * data); /* 936 */
+ void (GLAPIENTRYP GetIntegerIndexedvEXT)(GLenum value, GLuint index, GLint * data); /* 937 */
+ GLboolean (GLAPIENTRYP IsEnabledIndexedEXT)(GLenum target, GLuint index); /* 938 */
+ void (GLAPIENTRYP ClearColorIiEXT)(GLint r, GLint g, GLint b, GLint a); /* 939 */
+ void (GLAPIENTRYP ClearColorIuiEXT)(GLuint r, GLuint g, GLuint b, GLuint a); /* 940 */
+ void (GLAPIENTRYP GetTexParameterIivEXT)(GLenum target, GLenum pname, GLint * params); /* 941 */
+ void (GLAPIENTRYP GetTexParameterIuivEXT)(GLenum target, GLenum pname, GLuint * params); /* 942 */
+ void (GLAPIENTRYP TexParameterIivEXT)(GLenum target, GLenum pname, const GLint * params); /* 943 */
+ void (GLAPIENTRYP TexParameterIuivEXT)(GLenum target, GLenum pname, const GLuint * params); /* 944 */
+ void (GLAPIENTRYP BeginConditionalRenderNV)(GLuint query, GLenum mode); /* 945 */
+ void (GLAPIENTRYP EndConditionalRenderNV)(void); /* 946 */
+ void (GLAPIENTRYP BeginTransformFeedbackEXT)(GLenum mode); /* 947 */
+ void (GLAPIENTRYP BindBufferBaseEXT)(GLenum target, GLuint index, GLuint buffer); /* 948 */
+ void (GLAPIENTRYP BindBufferOffsetEXT)(GLenum target, GLuint index, GLuint buffer, GLintptr offset); /* 949 */
+ void (GLAPIENTRYP BindBufferRangeEXT)(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); /* 950 */
+ void (GLAPIENTRYP EndTransformFeedbackEXT)(void); /* 951 */
+ void (GLAPIENTRYP GetTransformFeedbackVaryingEXT)(GLuint program, GLuint index, GLsizei bufSize, GLsizei * length, GLsizei * size, GLenum * type, GLchar * name); /* 952 */
+ void (GLAPIENTRYP TransformFeedbackVaryingsEXT)(GLuint program, GLsizei count, const char ** varyings, GLenum bufferMode); /* 953 */
+ void (GLAPIENTRYP ProvokingVertexEXT)(GLenum mode); /* 954 */
+ void (GLAPIENTRYP GetObjectParameterivAPPLE)(GLenum objectType, GLuint name, GLenum pname, GLint * value); /* 955 */
+ GLenum (GLAPIENTRYP ObjectPurgeableAPPLE)(GLenum objectType, GLuint name, GLenum option); /* 956 */
+ GLenum (GLAPIENTRYP ObjectUnpurgeableAPPLE)(GLenum objectType, GLuint name, GLenum option); /* 957 */
+ void (GLAPIENTRYP ActiveProgramEXT)(GLuint program); /* 958 */
+ GLuint (GLAPIENTRYP CreateShaderProgramEXT)(GLenum type, const GLchar * string); /* 959 */
+ void (GLAPIENTRYP UseShaderProgramEXT)(GLenum type, GLuint program); /* 960 */
+ void (GLAPIENTRYP TextureBarrierNV)(void); /* 961 */
+ void (GLAPIENTRYP StencilFuncSeparateATI)(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask); /* 962 */
+ void (GLAPIENTRYP ProgramEnvParameters4fvEXT)(GLenum target, GLuint index, GLsizei count, const GLfloat * params); /* 963 */
+ void (GLAPIENTRYP ProgramLocalParameters4fvEXT)(GLenum target, GLuint index, GLsizei count, const GLfloat * params); /* 964 */
+ void (GLAPIENTRYP GetQueryObjecti64vEXT)(GLuint id, GLenum pname, GLint64EXT * params); /* 965 */
+ void (GLAPIENTRYP GetQueryObjectui64vEXT)(GLuint id, GLenum pname, GLuint64EXT * params); /* 966 */
+ void (GLAPIENTRYP EGLImageTargetRenderbufferStorageOES)(GLenum target, GLvoid * writeOffset); /* 967 */
+ void (GLAPIENTRYP EGLImageTargetTexture2DOES)(GLenum target, GLvoid * writeOffset); /* 968 */
#endif /* !defined HAVE_SHARED_GLAPI */
};
diff --git a/xorg-server/glx/glprocs.h b/xorg-server/glx/glprocs.h
index a448a4a37..33f5b1282 100644
--- a/xorg-server/glx/glprocs.h
+++ b/xorg-server/glx/glprocs.h
@@ -482,7 +482,6 @@ static const char gl_string_table[] =
"glUniformMatrix3x4fv\0"
"glUniformMatrix4x2fv\0"
"glUniformMatrix4x3fv\0"
- "glClampColor\0"
"glClearBufferfi\0"
"glClearBufferfv\0"
"glClearBufferiv\0"
@@ -491,7 +490,6 @@ static const char gl_string_table[] =
"glFramebufferTexture\0"
"glGetBufferParameteri64v\0"
"glGetInteger64i_v\0"
- "glVertexAttribDivisor\0"
"glLoadTransposeMatrixdARB\0"
"glLoadTransposeMatrixfARB\0"
"glMultTransposeMatrixdARB\0"
@@ -627,9 +625,7 @@ static const char gl_string_table[] =
"glDrawArraysInstancedARB\0"
"glDrawElementsInstancedARB\0"
"glRenderbufferStorageMultisample\0"
- "glFramebufferTextureARB\0"
"glFramebufferTextureFaceARB\0"
- "glProgramParameteriARB\0"
"glVertexAttribDivisorARB\0"
"glFlushMappedBufferRange\0"
"glMapBufferRange\0"
@@ -730,6 +726,9 @@ static const char gl_string_table[] =
"glGetShaderPrecisionFormat\0"
"glReleaseShaderCompiler\0"
"glShaderBinary\0"
+ "glGetProgramBinary\0"
+ "glProgramBinary\0"
+ "glProgramParameteri\0"
"glDebugMessageCallbackARB\0"
"glDebugMessageControlARB\0"
"glDebugMessageInsertARB\0"
@@ -1114,6 +1113,7 @@ static const char gl_string_table[] =
"glMultiTexCoord4s\0"
"glMultiTexCoord4sv\0"
"glStencilOpSeparateATI\0"
+ "glFramebufferTextureARB\0"
"glLoadTransposeMatrixd\0"
"glLoadTransposeMatrixf\0"
"glMultTransposeMatrixd\0"
@@ -1225,16 +1225,19 @@ static const char gl_string_table[] =
"glGetAttribLocation\0"
"glDrawBuffers\0"
"glDrawBuffersATI\0"
+ "glClampColor\0"
"glDrawArraysInstancedEXT\0"
"glDrawArraysInstanced\0"
"glDrawElementsInstancedEXT\0"
"glDrawElementsInstanced\0"
"glRenderbufferStorageMultisampleEXT\0"
+ "glVertexAttribDivisor\0"
"glTexBuffer\0"
"glBlendEquationSeparateIndexedAMD\0"
"glBlendEquationIndexedAMD\0"
"glBlendFuncSeparateIndexedAMD\0"
"glBlendFuncIndexedAMD\0"
+ "glProgramParameteriARB\0"
"glSampleMaskEXT\0"
"glSamplePatternEXT\0"
"glPointParameterf\0"
@@ -1406,26 +1409,29 @@ static const char gl_string_table[] =
#define gl_dispatch_stub_364 mgl_dispatch_stub_364
#define gl_dispatch_stub_365 mgl_dispatch_stub_365
#define gl_dispatch_stub_366 mgl_dispatch_stub_366
-#define gl_dispatch_stub_623 mgl_dispatch_stub_623
+#define gl_dispatch_stub_619 mgl_dispatch_stub_619
+#define gl_dispatch_stub_674 mgl_dispatch_stub_674
+#define gl_dispatch_stub_675 mgl_dispatch_stub_675
+#define gl_dispatch_stub_676 mgl_dispatch_stub_676
+#define gl_dispatch_stub_719 mgl_dispatch_stub_719
#define gl_dispatch_stub_720 mgl_dispatch_stub_720
-#define gl_dispatch_stub_721 mgl_dispatch_stub_721
+#define gl_dispatch_stub_781 mgl_dispatch_stub_781
#define gl_dispatch_stub_782 mgl_dispatch_stub_782
-#define gl_dispatch_stub_783 mgl_dispatch_stub_783
+#define gl_dispatch_stub_863 mgl_dispatch_stub_863
#define gl_dispatch_stub_864 mgl_dispatch_stub_864
#define gl_dispatch_stub_865 mgl_dispatch_stub_865
#define gl_dispatch_stub_866 mgl_dispatch_stub_866
#define gl_dispatch_stub_867 mgl_dispatch_stub_867
-#define gl_dispatch_stub_868 mgl_dispatch_stub_868
+#define gl_dispatch_stub_876 mgl_dispatch_stub_876
#define gl_dispatch_stub_877 mgl_dispatch_stub_877
-#define gl_dispatch_stub_878 mgl_dispatch_stub_878
+#define gl_dispatch_stub_895 mgl_dispatch_stub_895
#define gl_dispatch_stub_896 mgl_dispatch_stub_896
#define gl_dispatch_stub_897 mgl_dispatch_stub_897
-#define gl_dispatch_stub_898 mgl_dispatch_stub_898
+#define gl_dispatch_stub_962 mgl_dispatch_stub_962
#define gl_dispatch_stub_963 mgl_dispatch_stub_963
#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_967 mgl_dispatch_stub_967
#endif /* USE_MGL_NAMESPACE */
@@ -1443,26 +1449,29 @@ void GLAPIENTRY gl_dispatch_stub_363(GLenum target, GLenum pname, GLint * params
void GLAPIENTRY gl_dispatch_stub_364(GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid * values);
void GLAPIENTRY gl_dispatch_stub_365(GLenum target, GLenum pname, GLfloat * params);
void GLAPIENTRY gl_dispatch_stub_366(GLenum target, GLenum pname, GLint * params);
-void GLAPIENTRY gl_dispatch_stub_623(GLuint id, GLenum target);
-void GLAPIENTRY gl_dispatch_stub_720(GLclampf value, GLboolean invert);
-void GLAPIENTRY gl_dispatch_stub_721(GLenum pattern);
-void GLAPIENTRY gl_dispatch_stub_782(const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride);
-void GLAPIENTRY gl_dispatch_stub_783(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride);
-void GLAPIENTRY gl_dispatch_stub_864(GLenum face);
-void GLAPIENTRY gl_dispatch_stub_865(GLuint array);
-void GLAPIENTRY gl_dispatch_stub_866(GLsizei n, const GLuint * arrays);
-void GLAPIENTRY gl_dispatch_stub_867(GLsizei n, GLuint * arrays);
-GLboolean GLAPIENTRY gl_dispatch_stub_868(GLuint array);
-void GLAPIENTRY gl_dispatch_stub_877(GLclampd zmin, GLclampd zmax);
-void GLAPIENTRY gl_dispatch_stub_878(GLenum modeRGB, GLenum modeA);
-void GLAPIENTRY gl_dispatch_stub_896(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter);
-void GLAPIENTRY gl_dispatch_stub_897(GLenum target, GLenum pname, GLint param);
-void GLAPIENTRY gl_dispatch_stub_898(GLenum target, GLintptr offset, GLsizeiptr size);
-void GLAPIENTRY gl_dispatch_stub_963(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask);
+void GLAPIENTRY gl_dispatch_stub_619(GLuint id, GLenum target);
+void GLAPIENTRY gl_dispatch_stub_674(GLuint program, GLsizei bufSize, GLsizei * length, GLenum * binaryFormat, GLvoid * binary);
+void GLAPIENTRY gl_dispatch_stub_675(GLuint program, GLenum binaryFormat, const GLvoid * binary, GLsizei length);
+void GLAPIENTRY gl_dispatch_stub_676(GLuint program, GLenum pname, GLint value);
+void GLAPIENTRY gl_dispatch_stub_719(GLclampf value, GLboolean invert);
+void GLAPIENTRY gl_dispatch_stub_720(GLenum pattern);
+void GLAPIENTRY gl_dispatch_stub_781(const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride);
+void GLAPIENTRY gl_dispatch_stub_782(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride);
+void GLAPIENTRY gl_dispatch_stub_863(GLenum face);
+void GLAPIENTRY gl_dispatch_stub_864(GLuint array);
+void GLAPIENTRY gl_dispatch_stub_865(GLsizei n, const GLuint * arrays);
+void GLAPIENTRY gl_dispatch_stub_866(GLsizei n, GLuint * arrays);
+GLboolean GLAPIENTRY gl_dispatch_stub_867(GLuint array);
+void GLAPIENTRY gl_dispatch_stub_876(GLclampd zmin, GLclampd zmax);
+void GLAPIENTRY gl_dispatch_stub_877(GLenum modeRGB, GLenum modeA);
+void GLAPIENTRY gl_dispatch_stub_895(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter);
+void GLAPIENTRY gl_dispatch_stub_896(GLenum target, GLenum pname, GLint param);
+void GLAPIENTRY gl_dispatch_stub_897(GLenum target, GLintptr offset, GLsizeiptr size);
+void GLAPIENTRY gl_dispatch_stub_962(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask);
+void GLAPIENTRY gl_dispatch_stub_963(GLenum target, GLuint index, GLsizei count, const GLfloat * params);
void GLAPIENTRY gl_dispatch_stub_964(GLenum target, GLuint index, GLsizei count, const GLfloat * params);
-void GLAPIENTRY gl_dispatch_stub_965(GLenum target, GLuint index, GLsizei count, const GLfloat * params);
-void GLAPIENTRY gl_dispatch_stub_966(GLuint id, GLenum pname, GLint64EXT * params);
-void GLAPIENTRY gl_dispatch_stub_967(GLuint id, GLenum pname, GLuint64EXT * params);
+void GLAPIENTRY gl_dispatch_stub_965(GLuint id, GLenum pname, GLint64EXT * params);
+void GLAPIENTRY gl_dispatch_stub_966(GLuint id, GLenum pname, GLuint64EXT * params);
#endif /* defined(NEED_FUNCTION_POINTER) || defined(GLX_INDIRECT_RENDERING) */
static const glprocs_table_t static_functions[] = {
@@ -1896,913 +1905,916 @@ static const glprocs_table_t static_functions[] = {
NAME_FUNC_OFFSET( 6100, glUniformMatrix3x4fv, glUniformMatrix3x4fv, NULL, 427),
NAME_FUNC_OFFSET( 6121, glUniformMatrix4x2fv, glUniformMatrix4x2fv, NULL, 428),
NAME_FUNC_OFFSET( 6142, glUniformMatrix4x3fv, glUniformMatrix4x3fv, NULL, 429),
- NAME_FUNC_OFFSET( 6163, glClampColor, glClampColor, NULL, 430),
- NAME_FUNC_OFFSET( 6176, glClearBufferfi, glClearBufferfi, NULL, 431),
- NAME_FUNC_OFFSET( 6192, glClearBufferfv, glClearBufferfv, NULL, 432),
- NAME_FUNC_OFFSET( 6208, glClearBufferiv, glClearBufferiv, NULL, 433),
- NAME_FUNC_OFFSET( 6224, glClearBufferuiv, glClearBufferuiv, NULL, 434),
- NAME_FUNC_OFFSET( 6241, glGetStringi, glGetStringi, NULL, 435),
- NAME_FUNC_OFFSET( 6254, glFramebufferTexture, glFramebufferTexture, NULL, 436),
- NAME_FUNC_OFFSET( 6275, glGetBufferParameteri64v, glGetBufferParameteri64v, NULL, 437),
- NAME_FUNC_OFFSET( 6300, glGetInteger64i_v, glGetInteger64i_v, NULL, 438),
- NAME_FUNC_OFFSET( 6318, glVertexAttribDivisor, glVertexAttribDivisor, NULL, 439),
- NAME_FUNC_OFFSET( 6340, glLoadTransposeMatrixdARB, glLoadTransposeMatrixdARB, NULL, 440),
- NAME_FUNC_OFFSET( 6366, glLoadTransposeMatrixfARB, glLoadTransposeMatrixfARB, NULL, 441),
- NAME_FUNC_OFFSET( 6392, glMultTransposeMatrixdARB, glMultTransposeMatrixdARB, NULL, 442),
- NAME_FUNC_OFFSET( 6418, glMultTransposeMatrixfARB, glMultTransposeMatrixfARB, NULL, 443),
- NAME_FUNC_OFFSET( 6444, glSampleCoverageARB, glSampleCoverageARB, NULL, 444),
- NAME_FUNC_OFFSET( 6464, glCompressedTexImage1DARB, glCompressedTexImage1DARB, NULL, 445),
- NAME_FUNC_OFFSET( 6490, glCompressedTexImage2DARB, glCompressedTexImage2DARB, NULL, 446),
- NAME_FUNC_OFFSET( 6516, glCompressedTexImage3DARB, glCompressedTexImage3DARB, NULL, 447),
- NAME_FUNC_OFFSET( 6542, glCompressedTexSubImage1DARB, glCompressedTexSubImage1DARB, NULL, 448),
- NAME_FUNC_OFFSET( 6571, glCompressedTexSubImage2DARB, glCompressedTexSubImage2DARB, NULL, 449),
- NAME_FUNC_OFFSET( 6600, glCompressedTexSubImage3DARB, glCompressedTexSubImage3DARB, NULL, 450),
- NAME_FUNC_OFFSET( 6629, glGetCompressedTexImageARB, glGetCompressedTexImageARB, NULL, 451),
- NAME_FUNC_OFFSET( 6656, glDisableVertexAttribArrayARB, glDisableVertexAttribArrayARB, NULL, 452),
- NAME_FUNC_OFFSET( 6686, glEnableVertexAttribArrayARB, glEnableVertexAttribArrayARB, NULL, 453),
- NAME_FUNC_OFFSET( 6715, glGetProgramEnvParameterdvARB, glGetProgramEnvParameterdvARB, NULL, 454),
- NAME_FUNC_OFFSET( 6745, glGetProgramEnvParameterfvARB, glGetProgramEnvParameterfvARB, NULL, 455),
- NAME_FUNC_OFFSET( 6775, glGetProgramLocalParameterdvARB, glGetProgramLocalParameterdvARB, NULL, 456),
- NAME_FUNC_OFFSET( 6807, glGetProgramLocalParameterfvARB, glGetProgramLocalParameterfvARB, NULL, 457),
- NAME_FUNC_OFFSET( 6839, glGetProgramStringARB, glGetProgramStringARB, NULL, 458),
- NAME_FUNC_OFFSET( 6861, glGetProgramivARB, glGetProgramivARB, NULL, 459),
- NAME_FUNC_OFFSET( 6879, glGetVertexAttribdvARB, glGetVertexAttribdvARB, NULL, 460),
- NAME_FUNC_OFFSET( 6902, glGetVertexAttribfvARB, glGetVertexAttribfvARB, NULL, 461),
- NAME_FUNC_OFFSET( 6925, glGetVertexAttribivARB, glGetVertexAttribivARB, NULL, 462),
- NAME_FUNC_OFFSET( 6948, glProgramEnvParameter4dARB, glProgramEnvParameter4dARB, NULL, 463),
- NAME_FUNC_OFFSET( 6975, glProgramEnvParameter4dvARB, glProgramEnvParameter4dvARB, NULL, 464),
- NAME_FUNC_OFFSET( 7003, glProgramEnvParameter4fARB, glProgramEnvParameter4fARB, NULL, 465),
- NAME_FUNC_OFFSET( 7030, glProgramEnvParameter4fvARB, glProgramEnvParameter4fvARB, NULL, 466),
- NAME_FUNC_OFFSET( 7058, glProgramLocalParameter4dARB, glProgramLocalParameter4dARB, NULL, 467),
- NAME_FUNC_OFFSET( 7087, glProgramLocalParameter4dvARB, glProgramLocalParameter4dvARB, NULL, 468),
- NAME_FUNC_OFFSET( 7117, glProgramLocalParameter4fARB, glProgramLocalParameter4fARB, NULL, 469),
- NAME_FUNC_OFFSET( 7146, glProgramLocalParameter4fvARB, glProgramLocalParameter4fvARB, NULL, 470),
- NAME_FUNC_OFFSET( 7176, glProgramStringARB, glProgramStringARB, NULL, 471),
- NAME_FUNC_OFFSET( 7195, glVertexAttrib1dARB, glVertexAttrib1dARB, NULL, 472),
- NAME_FUNC_OFFSET( 7215, glVertexAttrib1dvARB, glVertexAttrib1dvARB, NULL, 473),
- NAME_FUNC_OFFSET( 7236, glVertexAttrib1fARB, glVertexAttrib1fARB, NULL, 474),
- NAME_FUNC_OFFSET( 7256, glVertexAttrib1fvARB, glVertexAttrib1fvARB, NULL, 475),
- NAME_FUNC_OFFSET( 7277, glVertexAttrib1sARB, glVertexAttrib1sARB, NULL, 476),
- NAME_FUNC_OFFSET( 7297, glVertexAttrib1svARB, glVertexAttrib1svARB, NULL, 477),
- NAME_FUNC_OFFSET( 7318, glVertexAttrib2dARB, glVertexAttrib2dARB, NULL, 478),
- NAME_FUNC_OFFSET( 7338, glVertexAttrib2dvARB, glVertexAttrib2dvARB, NULL, 479),
- NAME_FUNC_OFFSET( 7359, glVertexAttrib2fARB, glVertexAttrib2fARB, NULL, 480),
- NAME_FUNC_OFFSET( 7379, glVertexAttrib2fvARB, glVertexAttrib2fvARB, NULL, 481),
- NAME_FUNC_OFFSET( 7400, glVertexAttrib2sARB, glVertexAttrib2sARB, NULL, 482),
- NAME_FUNC_OFFSET( 7420, glVertexAttrib2svARB, glVertexAttrib2svARB, NULL, 483),
- NAME_FUNC_OFFSET( 7441, glVertexAttrib3dARB, glVertexAttrib3dARB, NULL, 484),
- NAME_FUNC_OFFSET( 7461, glVertexAttrib3dvARB, glVertexAttrib3dvARB, NULL, 485),
- NAME_FUNC_OFFSET( 7482, glVertexAttrib3fARB, glVertexAttrib3fARB, NULL, 486),
- NAME_FUNC_OFFSET( 7502, glVertexAttrib3fvARB, glVertexAttrib3fvARB, NULL, 487),
- NAME_FUNC_OFFSET( 7523, glVertexAttrib3sARB, glVertexAttrib3sARB, NULL, 488),
- NAME_FUNC_OFFSET( 7543, glVertexAttrib3svARB, glVertexAttrib3svARB, NULL, 489),
- NAME_FUNC_OFFSET( 7564, glVertexAttrib4NbvARB, glVertexAttrib4NbvARB, NULL, 490),
- NAME_FUNC_OFFSET( 7586, glVertexAttrib4NivARB, glVertexAttrib4NivARB, NULL, 491),
- NAME_FUNC_OFFSET( 7608, glVertexAttrib4NsvARB, glVertexAttrib4NsvARB, NULL, 492),
- NAME_FUNC_OFFSET( 7630, glVertexAttrib4NubARB, glVertexAttrib4NubARB, NULL, 493),
- NAME_FUNC_OFFSET( 7652, glVertexAttrib4NubvARB, glVertexAttrib4NubvARB, NULL, 494),
- NAME_FUNC_OFFSET( 7675, glVertexAttrib4NuivARB, glVertexAttrib4NuivARB, NULL, 495),
- NAME_FUNC_OFFSET( 7698, glVertexAttrib4NusvARB, glVertexAttrib4NusvARB, NULL, 496),
- NAME_FUNC_OFFSET( 7721, glVertexAttrib4bvARB, glVertexAttrib4bvARB, NULL, 497),
- NAME_FUNC_OFFSET( 7742, glVertexAttrib4dARB, glVertexAttrib4dARB, NULL, 498),
- NAME_FUNC_OFFSET( 7762, glVertexAttrib4dvARB, glVertexAttrib4dvARB, NULL, 499),
- NAME_FUNC_OFFSET( 7783, glVertexAttrib4fARB, glVertexAttrib4fARB, NULL, 500),
- NAME_FUNC_OFFSET( 7803, glVertexAttrib4fvARB, glVertexAttrib4fvARB, NULL, 501),
- NAME_FUNC_OFFSET( 7824, glVertexAttrib4ivARB, glVertexAttrib4ivARB, NULL, 502),
- NAME_FUNC_OFFSET( 7845, glVertexAttrib4sARB, glVertexAttrib4sARB, NULL, 503),
- NAME_FUNC_OFFSET( 7865, glVertexAttrib4svARB, glVertexAttrib4svARB, NULL, 504),
- NAME_FUNC_OFFSET( 7886, glVertexAttrib4ubvARB, glVertexAttrib4ubvARB, NULL, 505),
- NAME_FUNC_OFFSET( 7908, glVertexAttrib4uivARB, glVertexAttrib4uivARB, NULL, 506),
- NAME_FUNC_OFFSET( 7930, glVertexAttrib4usvARB, glVertexAttrib4usvARB, NULL, 507),
- NAME_FUNC_OFFSET( 7952, glVertexAttribPointerARB, glVertexAttribPointerARB, NULL, 508),
- NAME_FUNC_OFFSET( 7977, glBindBufferARB, glBindBufferARB, NULL, 509),
- NAME_FUNC_OFFSET( 7993, glBufferDataARB, glBufferDataARB, NULL, 510),
- NAME_FUNC_OFFSET( 8009, glBufferSubDataARB, glBufferSubDataARB, NULL, 511),
- NAME_FUNC_OFFSET( 8028, glDeleteBuffersARB, glDeleteBuffersARB, NULL, 512),
- NAME_FUNC_OFFSET( 8047, glGenBuffersARB, glGenBuffersARB, NULL, 513),
- NAME_FUNC_OFFSET( 8063, glGetBufferParameterivARB, glGetBufferParameterivARB, NULL, 514),
- NAME_FUNC_OFFSET( 8089, glGetBufferPointervARB, glGetBufferPointervARB, NULL, 515),
- NAME_FUNC_OFFSET( 8112, glGetBufferSubDataARB, glGetBufferSubDataARB, NULL, 516),
- NAME_FUNC_OFFSET( 8134, glIsBufferARB, glIsBufferARB, NULL, 517),
- NAME_FUNC_OFFSET( 8148, glMapBufferARB, glMapBufferARB, NULL, 518),
- NAME_FUNC_OFFSET( 8163, glUnmapBufferARB, glUnmapBufferARB, NULL, 519),
- NAME_FUNC_OFFSET( 8180, glBeginQueryARB, glBeginQueryARB, NULL, 520),
- NAME_FUNC_OFFSET( 8196, glDeleteQueriesARB, glDeleteQueriesARB, NULL, 521),
- NAME_FUNC_OFFSET( 8215, glEndQueryARB, glEndQueryARB, NULL, 522),
- NAME_FUNC_OFFSET( 8229, glGenQueriesARB, glGenQueriesARB, NULL, 523),
- NAME_FUNC_OFFSET( 8245, glGetQueryObjectivARB, glGetQueryObjectivARB, NULL, 524),
- NAME_FUNC_OFFSET( 8267, glGetQueryObjectuivARB, glGetQueryObjectuivARB, NULL, 525),
- NAME_FUNC_OFFSET( 8290, glGetQueryivARB, glGetQueryivARB, NULL, 526),
- NAME_FUNC_OFFSET( 8306, glIsQueryARB, glIsQueryARB, NULL, 527),
- NAME_FUNC_OFFSET( 8319, glAttachObjectARB, glAttachObjectARB, NULL, 528),
- NAME_FUNC_OFFSET( 8337, glCompileShaderARB, glCompileShaderARB, NULL, 529),
- NAME_FUNC_OFFSET( 8356, glCreateProgramObjectARB, glCreateProgramObjectARB, NULL, 530),
- NAME_FUNC_OFFSET( 8381, glCreateShaderObjectARB, glCreateShaderObjectARB, NULL, 531),
- NAME_FUNC_OFFSET( 8405, glDeleteObjectARB, glDeleteObjectARB, NULL, 532),
- NAME_FUNC_OFFSET( 8423, glDetachObjectARB, glDetachObjectARB, NULL, 533),
- NAME_FUNC_OFFSET( 8441, glGetActiveUniformARB, glGetActiveUniformARB, NULL, 534),
- NAME_FUNC_OFFSET( 8463, glGetAttachedObjectsARB, glGetAttachedObjectsARB, NULL, 535),
- NAME_FUNC_OFFSET( 8487, glGetHandleARB, glGetHandleARB, NULL, 536),
- NAME_FUNC_OFFSET( 8502, glGetInfoLogARB, glGetInfoLogARB, NULL, 537),
- NAME_FUNC_OFFSET( 8518, glGetObjectParameterfvARB, glGetObjectParameterfvARB, NULL, 538),
- NAME_FUNC_OFFSET( 8544, glGetObjectParameterivARB, glGetObjectParameterivARB, NULL, 539),
- NAME_FUNC_OFFSET( 8570, glGetShaderSourceARB, glGetShaderSourceARB, NULL, 540),
- NAME_FUNC_OFFSET( 8591, glGetUniformLocationARB, glGetUniformLocationARB, NULL, 541),
- NAME_FUNC_OFFSET( 8615, glGetUniformfvARB, glGetUniformfvARB, NULL, 542),
- NAME_FUNC_OFFSET( 8633, glGetUniformivARB, glGetUniformivARB, NULL, 543),
- NAME_FUNC_OFFSET( 8651, glLinkProgramARB, glLinkProgramARB, NULL, 544),
- NAME_FUNC_OFFSET( 8668, glShaderSourceARB, glShaderSourceARB, NULL, 545),
- NAME_FUNC_OFFSET( 8686, glUniform1fARB, glUniform1fARB, NULL, 546),
- NAME_FUNC_OFFSET( 8701, glUniform1fvARB, glUniform1fvARB, NULL, 547),
- NAME_FUNC_OFFSET( 8717, glUniform1iARB, glUniform1iARB, NULL, 548),
- NAME_FUNC_OFFSET( 8732, glUniform1ivARB, glUniform1ivARB, NULL, 549),
- NAME_FUNC_OFFSET( 8748, glUniform2fARB, glUniform2fARB, NULL, 550),
- NAME_FUNC_OFFSET( 8763, glUniform2fvARB, glUniform2fvARB, NULL, 551),
- NAME_FUNC_OFFSET( 8779, glUniform2iARB, glUniform2iARB, NULL, 552),
- NAME_FUNC_OFFSET( 8794, glUniform2ivARB, glUniform2ivARB, NULL, 553),
- NAME_FUNC_OFFSET( 8810, glUniform3fARB, glUniform3fARB, NULL, 554),
- NAME_FUNC_OFFSET( 8825, glUniform3fvARB, glUniform3fvARB, NULL, 555),
- NAME_FUNC_OFFSET( 8841, glUniform3iARB, glUniform3iARB, NULL, 556),
- NAME_FUNC_OFFSET( 8856, glUniform3ivARB, glUniform3ivARB, NULL, 557),
- NAME_FUNC_OFFSET( 8872, glUniform4fARB, glUniform4fARB, NULL, 558),
- NAME_FUNC_OFFSET( 8887, glUniform4fvARB, glUniform4fvARB, NULL, 559),
- NAME_FUNC_OFFSET( 8903, glUniform4iARB, glUniform4iARB, NULL, 560),
- NAME_FUNC_OFFSET( 8918, glUniform4ivARB, glUniform4ivARB, NULL, 561),
- NAME_FUNC_OFFSET( 8934, glUniformMatrix2fvARB, glUniformMatrix2fvARB, NULL, 562),
- NAME_FUNC_OFFSET( 8956, glUniformMatrix3fvARB, glUniformMatrix3fvARB, NULL, 563),
- NAME_FUNC_OFFSET( 8978, glUniformMatrix4fvARB, glUniformMatrix4fvARB, NULL, 564),
- NAME_FUNC_OFFSET( 9000, glUseProgramObjectARB, glUseProgramObjectARB, NULL, 565),
- NAME_FUNC_OFFSET( 9022, glValidateProgramARB, glValidateProgramARB, NULL, 566),
- NAME_FUNC_OFFSET( 9043, glBindAttribLocationARB, glBindAttribLocationARB, NULL, 567),
- NAME_FUNC_OFFSET( 9067, glGetActiveAttribARB, glGetActiveAttribARB, NULL, 568),
- NAME_FUNC_OFFSET( 9088, glGetAttribLocationARB, glGetAttribLocationARB, NULL, 569),
- NAME_FUNC_OFFSET( 9111, glDrawBuffersARB, glDrawBuffersARB, NULL, 570),
- NAME_FUNC_OFFSET( 9128, glClampColorARB, glClampColorARB, NULL, 571),
- NAME_FUNC_OFFSET( 9144, glDrawArraysInstancedARB, glDrawArraysInstancedARB, NULL, 572),
- NAME_FUNC_OFFSET( 9169, glDrawElementsInstancedARB, glDrawElementsInstancedARB, NULL, 573),
- NAME_FUNC_OFFSET( 9196, glRenderbufferStorageMultisample, glRenderbufferStorageMultisample, NULL, 574),
- NAME_FUNC_OFFSET( 9229, glFramebufferTextureARB, glFramebufferTextureARB, NULL, 575),
- NAME_FUNC_OFFSET( 9253, glFramebufferTextureFaceARB, glFramebufferTextureFaceARB, NULL, 576),
- NAME_FUNC_OFFSET( 9281, glProgramParameteriARB, glProgramParameteriARB, NULL, 577),
- NAME_FUNC_OFFSET( 9304, glVertexAttribDivisorARB, glVertexAttribDivisorARB, NULL, 578),
- NAME_FUNC_OFFSET( 9329, glFlushMappedBufferRange, glFlushMappedBufferRange, NULL, 579),
- NAME_FUNC_OFFSET( 9354, glMapBufferRange, glMapBufferRange, NULL, 580),
- NAME_FUNC_OFFSET( 9371, glTexBufferARB, glTexBufferARB, NULL, 581),
- NAME_FUNC_OFFSET( 9386, glBindVertexArray, glBindVertexArray, NULL, 582),
- NAME_FUNC_OFFSET( 9404, glGenVertexArrays, glGenVertexArrays, NULL, 583),
- NAME_FUNC_OFFSET( 9422, glGetActiveUniformBlockName, glGetActiveUniformBlockName, NULL, 584),
- NAME_FUNC_OFFSET( 9450, glGetActiveUniformBlockiv, glGetActiveUniformBlockiv, NULL, 585),
- NAME_FUNC_OFFSET( 9476, glGetActiveUniformName, glGetActiveUniformName, NULL, 586),
- NAME_FUNC_OFFSET( 9499, glGetActiveUniformsiv, glGetActiveUniformsiv, NULL, 587),
- NAME_FUNC_OFFSET( 9521, glGetUniformBlockIndex, glGetUniformBlockIndex, NULL, 588),
- NAME_FUNC_OFFSET( 9544, glGetUniformIndices, glGetUniformIndices, NULL, 589),
- NAME_FUNC_OFFSET( 9564, glUniformBlockBinding, glUniformBlockBinding, NULL, 590),
- NAME_FUNC_OFFSET( 9586, glCopyBufferSubData, glCopyBufferSubData, NULL, 591),
- NAME_FUNC_OFFSET( 9606, glClientWaitSync, glClientWaitSync, NULL, 592),
- NAME_FUNC_OFFSET( 9623, glDeleteSync, glDeleteSync, NULL, 593),
- NAME_FUNC_OFFSET( 9636, glFenceSync, glFenceSync, NULL, 594),
- NAME_FUNC_OFFSET( 9648, glGetInteger64v, glGetInteger64v, NULL, 595),
- NAME_FUNC_OFFSET( 9664, glGetSynciv, glGetSynciv, NULL, 596),
- NAME_FUNC_OFFSET( 9676, glIsSync, glIsSync, NULL, 597),
- NAME_FUNC_OFFSET( 9685, glWaitSync, glWaitSync, NULL, 598),
- NAME_FUNC_OFFSET( 9696, glDrawElementsBaseVertex, glDrawElementsBaseVertex, NULL, 599),
- NAME_FUNC_OFFSET( 9721, glDrawElementsInstancedBaseVertex, glDrawElementsInstancedBaseVertex, NULL, 600),
- NAME_FUNC_OFFSET( 9755, glDrawRangeElementsBaseVertex, glDrawRangeElementsBaseVertex, NULL, 601),
- NAME_FUNC_OFFSET( 9785, glMultiDrawElementsBaseVertex, glMultiDrawElementsBaseVertex, NULL, 602),
- NAME_FUNC_OFFSET( 9815, glBlendEquationSeparateiARB, glBlendEquationSeparateiARB, NULL, 603),
- NAME_FUNC_OFFSET( 9843, glBlendEquationiARB, glBlendEquationiARB, NULL, 604),
- NAME_FUNC_OFFSET( 9863, glBlendFuncSeparateiARB, glBlendFuncSeparateiARB, NULL, 605),
- NAME_FUNC_OFFSET( 9887, glBlendFunciARB, glBlendFunciARB, NULL, 606),
- NAME_FUNC_OFFSET( 9903, glBindFragDataLocationIndexed, glBindFragDataLocationIndexed, NULL, 607),
- NAME_FUNC_OFFSET( 9933, glGetFragDataIndex, glGetFragDataIndex, NULL, 608),
- NAME_FUNC_OFFSET( 9952, glBindSampler, glBindSampler, NULL, 609),
- NAME_FUNC_OFFSET( 9966, glDeleteSamplers, glDeleteSamplers, NULL, 610),
- NAME_FUNC_OFFSET( 9983, glGenSamplers, glGenSamplers, NULL, 611),
- NAME_FUNC_OFFSET( 9997, glGetSamplerParameterIiv, glGetSamplerParameterIiv, NULL, 612),
- NAME_FUNC_OFFSET(10022, glGetSamplerParameterIuiv, glGetSamplerParameterIuiv, NULL, 613),
- NAME_FUNC_OFFSET(10048, glGetSamplerParameterfv, glGetSamplerParameterfv, NULL, 614),
- NAME_FUNC_OFFSET(10072, glGetSamplerParameteriv, glGetSamplerParameteriv, NULL, 615),
- NAME_FUNC_OFFSET(10096, glIsSampler, glIsSampler, NULL, 616),
- NAME_FUNC_OFFSET(10108, glSamplerParameterIiv, glSamplerParameterIiv, NULL, 617),
- NAME_FUNC_OFFSET(10130, glSamplerParameterIuiv, glSamplerParameterIuiv, NULL, 618),
- NAME_FUNC_OFFSET(10153, glSamplerParameterf, glSamplerParameterf, NULL, 619),
- NAME_FUNC_OFFSET(10173, glSamplerParameterfv, glSamplerParameterfv, NULL, 620),
- NAME_FUNC_OFFSET(10194, glSamplerParameteri, glSamplerParameteri, NULL, 621),
- NAME_FUNC_OFFSET(10214, glSamplerParameteriv, glSamplerParameteriv, NULL, 622),
- NAME_FUNC_OFFSET(10235, gl_dispatch_stub_623, gl_dispatch_stub_623, NULL, 623),
- NAME_FUNC_OFFSET(10250, glColorP3ui, glColorP3ui, NULL, 624),
- NAME_FUNC_OFFSET(10262, glColorP3uiv, glColorP3uiv, NULL, 625),
- NAME_FUNC_OFFSET(10275, glColorP4ui, glColorP4ui, NULL, 626),
- NAME_FUNC_OFFSET(10287, glColorP4uiv, glColorP4uiv, NULL, 627),
- NAME_FUNC_OFFSET(10300, glMultiTexCoordP1ui, glMultiTexCoordP1ui, NULL, 628),
- NAME_FUNC_OFFSET(10320, glMultiTexCoordP1uiv, glMultiTexCoordP1uiv, NULL, 629),
- NAME_FUNC_OFFSET(10341, glMultiTexCoordP2ui, glMultiTexCoordP2ui, NULL, 630),
- NAME_FUNC_OFFSET(10361, glMultiTexCoordP2uiv, glMultiTexCoordP2uiv, NULL, 631),
- NAME_FUNC_OFFSET(10382, glMultiTexCoordP3ui, glMultiTexCoordP3ui, NULL, 632),
- NAME_FUNC_OFFSET(10402, glMultiTexCoordP3uiv, glMultiTexCoordP3uiv, NULL, 633),
- NAME_FUNC_OFFSET(10423, glMultiTexCoordP4ui, glMultiTexCoordP4ui, NULL, 634),
- NAME_FUNC_OFFSET(10443, glMultiTexCoordP4uiv, glMultiTexCoordP4uiv, NULL, 635),
- NAME_FUNC_OFFSET(10464, glNormalP3ui, glNormalP3ui, NULL, 636),
- NAME_FUNC_OFFSET(10477, glNormalP3uiv, glNormalP3uiv, NULL, 637),
- NAME_FUNC_OFFSET(10491, glSecondaryColorP3ui, glSecondaryColorP3ui, NULL, 638),
- NAME_FUNC_OFFSET(10512, glSecondaryColorP3uiv, glSecondaryColorP3uiv, NULL, 639),
- NAME_FUNC_OFFSET(10534, glTexCoordP1ui, glTexCoordP1ui, NULL, 640),
- NAME_FUNC_OFFSET(10549, glTexCoordP1uiv, glTexCoordP1uiv, NULL, 641),
- NAME_FUNC_OFFSET(10565, glTexCoordP2ui, glTexCoordP2ui, NULL, 642),
- NAME_FUNC_OFFSET(10580, glTexCoordP2uiv, glTexCoordP2uiv, NULL, 643),
- NAME_FUNC_OFFSET(10596, glTexCoordP3ui, glTexCoordP3ui, NULL, 644),
- NAME_FUNC_OFFSET(10611, glTexCoordP3uiv, glTexCoordP3uiv, NULL, 645),
- NAME_FUNC_OFFSET(10627, glTexCoordP4ui, glTexCoordP4ui, NULL, 646),
- NAME_FUNC_OFFSET(10642, glTexCoordP4uiv, glTexCoordP4uiv, NULL, 647),
- NAME_FUNC_OFFSET(10658, glVertexAttribP1ui, glVertexAttribP1ui, NULL, 648),
- NAME_FUNC_OFFSET(10677, glVertexAttribP1uiv, glVertexAttribP1uiv, NULL, 649),
- NAME_FUNC_OFFSET(10697, glVertexAttribP2ui, glVertexAttribP2ui, NULL, 650),
- NAME_FUNC_OFFSET(10716, glVertexAttribP2uiv, glVertexAttribP2uiv, NULL, 651),
- NAME_FUNC_OFFSET(10736, glVertexAttribP3ui, glVertexAttribP3ui, NULL, 652),
- NAME_FUNC_OFFSET(10755, glVertexAttribP3uiv, glVertexAttribP3uiv, NULL, 653),
- NAME_FUNC_OFFSET(10775, glVertexAttribP4ui, glVertexAttribP4ui, NULL, 654),
- NAME_FUNC_OFFSET(10794, glVertexAttribP4uiv, glVertexAttribP4uiv, NULL, 655),
- NAME_FUNC_OFFSET(10814, glVertexP2ui, glVertexP2ui, NULL, 656),
- NAME_FUNC_OFFSET(10827, glVertexP2uiv, glVertexP2uiv, NULL, 657),
- NAME_FUNC_OFFSET(10841, glVertexP3ui, glVertexP3ui, NULL, 658),
- NAME_FUNC_OFFSET(10854, glVertexP3uiv, glVertexP3uiv, NULL, 659),
- NAME_FUNC_OFFSET(10868, glVertexP4ui, glVertexP4ui, NULL, 660),
- NAME_FUNC_OFFSET(10881, glVertexP4uiv, glVertexP4uiv, NULL, 661),
- NAME_FUNC_OFFSET(10895, glBindTransformFeedback, glBindTransformFeedback, NULL, 662),
- NAME_FUNC_OFFSET(10919, glDeleteTransformFeedbacks, glDeleteTransformFeedbacks, NULL, 663),
- NAME_FUNC_OFFSET(10946, glDrawTransformFeedback, glDrawTransformFeedback, NULL, 664),
- NAME_FUNC_OFFSET(10970, glGenTransformFeedbacks, glGenTransformFeedbacks, NULL, 665),
- NAME_FUNC_OFFSET(10994, glIsTransformFeedback, glIsTransformFeedback, NULL, 666),
- NAME_FUNC_OFFSET(11016, glPauseTransformFeedback, glPauseTransformFeedback, NULL, 667),
- NAME_FUNC_OFFSET(11041, glResumeTransformFeedback, glResumeTransformFeedback, NULL, 668),
- NAME_FUNC_OFFSET(11067, glBeginQueryIndexed, glBeginQueryIndexed, NULL, 669),
- NAME_FUNC_OFFSET(11087, glDrawTransformFeedbackStream, glDrawTransformFeedbackStream, NULL, 670),
- NAME_FUNC_OFFSET(11117, glEndQueryIndexed, glEndQueryIndexed, NULL, 671),
- NAME_FUNC_OFFSET(11135, glGetQueryIndexediv, glGetQueryIndexediv, NULL, 672),
- NAME_FUNC_OFFSET(11155, glClearDepthf, glClearDepthf, NULL, 673),
- NAME_FUNC_OFFSET(11169, glDepthRangef, glDepthRangef, NULL, 674),
- NAME_FUNC_OFFSET(11183, glGetShaderPrecisionFormat, glGetShaderPrecisionFormat, NULL, 675),
- NAME_FUNC_OFFSET(11210, glReleaseShaderCompiler, glReleaseShaderCompiler, NULL, 676),
- NAME_FUNC_OFFSET(11234, glShaderBinary, glShaderBinary, NULL, 677),
- NAME_FUNC_OFFSET(11249, glDebugMessageCallbackARB, glDebugMessageCallbackARB, NULL, 678),
- NAME_FUNC_OFFSET(11275, glDebugMessageControlARB, glDebugMessageControlARB, NULL, 679),
- NAME_FUNC_OFFSET(11300, glDebugMessageInsertARB, glDebugMessageInsertARB, NULL, 680),
- NAME_FUNC_OFFSET(11324, glGetDebugMessageLogARB, glGetDebugMessageLogARB, NULL, 681),
- NAME_FUNC_OFFSET(11348, glGetGraphicsResetStatusARB, glGetGraphicsResetStatusARB, NULL, 682),
- NAME_FUNC_OFFSET(11376, glGetnColorTableARB, glGetnColorTableARB, NULL, 683),
- NAME_FUNC_OFFSET(11396, glGetnCompressedTexImageARB, glGetnCompressedTexImageARB, NULL, 684),
- NAME_FUNC_OFFSET(11424, glGetnConvolutionFilterARB, glGetnConvolutionFilterARB, NULL, 685),
- NAME_FUNC_OFFSET(11451, glGetnHistogramARB, glGetnHistogramARB, NULL, 686),
- NAME_FUNC_OFFSET(11470, glGetnMapdvARB, glGetnMapdvARB, NULL, 687),
- NAME_FUNC_OFFSET(11485, glGetnMapfvARB, glGetnMapfvARB, NULL, 688),
- NAME_FUNC_OFFSET(11500, glGetnMapivARB, glGetnMapivARB, NULL, 689),
- NAME_FUNC_OFFSET(11515, glGetnMinmaxARB, glGetnMinmaxARB, NULL, 690),
- NAME_FUNC_OFFSET(11531, glGetnPixelMapfvARB, glGetnPixelMapfvARB, NULL, 691),
- NAME_FUNC_OFFSET(11551, glGetnPixelMapuivARB, glGetnPixelMapuivARB, NULL, 692),
- NAME_FUNC_OFFSET(11572, glGetnPixelMapusvARB, glGetnPixelMapusvARB, NULL, 693),
- NAME_FUNC_OFFSET(11593, glGetnPolygonStippleARB, glGetnPolygonStippleARB, NULL, 694),
- NAME_FUNC_OFFSET(11617, glGetnSeparableFilterARB, glGetnSeparableFilterARB, NULL, 695),
- NAME_FUNC_OFFSET(11642, glGetnTexImageARB, glGetnTexImageARB, NULL, 696),
- NAME_FUNC_OFFSET(11660, glGetnUniformdvARB, glGetnUniformdvARB, NULL, 697),
- NAME_FUNC_OFFSET(11679, glGetnUniformfvARB, glGetnUniformfvARB, NULL, 698),
- NAME_FUNC_OFFSET(11698, glGetnUniformivARB, glGetnUniformivARB, NULL, 699),
- NAME_FUNC_OFFSET(11717, glGetnUniformuivARB, glGetnUniformuivARB, NULL, 700),
- NAME_FUNC_OFFSET(11737, glReadnPixelsARB, glReadnPixelsARB, NULL, 701),
- NAME_FUNC_OFFSET(11754, glDrawArraysInstancedBaseInstance, glDrawArraysInstancedBaseInstance, NULL, 702),
- NAME_FUNC_OFFSET(11788, glDrawElementsInstancedBaseInstance, glDrawElementsInstancedBaseInstance, NULL, 703),
- NAME_FUNC_OFFSET(11824, glDrawElementsInstancedBaseVertexBaseInstance, glDrawElementsInstancedBaseVertexBaseInstance, NULL, 704),
- NAME_FUNC_OFFSET(11870, glDrawTransformFeedbackInstanced, glDrawTransformFeedbackInstanced, NULL, 705),
- NAME_FUNC_OFFSET(11903, glDrawTransformFeedbackStreamInstanced, glDrawTransformFeedbackStreamInstanced, NULL, 706),
- NAME_FUNC_OFFSET(11942, glTexStorage1D, glTexStorage1D, NULL, 707),
- NAME_FUNC_OFFSET(11957, glTexStorage2D, glTexStorage2D, NULL, 708),
- NAME_FUNC_OFFSET(11972, glTexStorage3D, glTexStorage3D, NULL, 709),
- NAME_FUNC_OFFSET(11987, glTextureStorage1DEXT, glTextureStorage1DEXT, NULL, 710),
- NAME_FUNC_OFFSET(12009, glTextureStorage2DEXT, glTextureStorage2DEXT, NULL, 711),
- NAME_FUNC_OFFSET(12031, glTextureStorage3DEXT, glTextureStorage3DEXT, NULL, 712),
- NAME_FUNC_OFFSET(12053, glInvalidateBufferData, glInvalidateBufferData, NULL, 713),
- NAME_FUNC_OFFSET(12076, glInvalidateBufferSubData, glInvalidateBufferSubData, NULL, 714),
- NAME_FUNC_OFFSET(12102, glInvalidateFramebuffer, glInvalidateFramebuffer, NULL, 715),
- NAME_FUNC_OFFSET(12126, glInvalidateSubFramebuffer, glInvalidateSubFramebuffer, NULL, 716),
- NAME_FUNC_OFFSET(12153, glInvalidateTexImage, glInvalidateTexImage, NULL, 717),
- NAME_FUNC_OFFSET(12174, glInvalidateTexSubImage, glInvalidateTexSubImage, NULL, 718),
- NAME_FUNC_OFFSET(12198, glPolygonOffsetEXT, glPolygonOffsetEXT, NULL, 719),
- NAME_FUNC_OFFSET(12217, gl_dispatch_stub_720, gl_dispatch_stub_720, NULL, 720),
- NAME_FUNC_OFFSET(12234, gl_dispatch_stub_721, gl_dispatch_stub_721, NULL, 721),
- NAME_FUNC_OFFSET(12254, glColorPointerEXT, glColorPointerEXT, NULL, 722),
- NAME_FUNC_OFFSET(12272, glEdgeFlagPointerEXT, glEdgeFlagPointerEXT, NULL, 723),
- NAME_FUNC_OFFSET(12293, glIndexPointerEXT, glIndexPointerEXT, NULL, 724),
- NAME_FUNC_OFFSET(12311, glNormalPointerEXT, glNormalPointerEXT, NULL, 725),
- NAME_FUNC_OFFSET(12330, glTexCoordPointerEXT, glTexCoordPointerEXT, NULL, 726),
- NAME_FUNC_OFFSET(12351, glVertexPointerEXT, glVertexPointerEXT, NULL, 727),
- NAME_FUNC_OFFSET(12370, glPointParameterfEXT, glPointParameterfEXT, NULL, 728),
- NAME_FUNC_OFFSET(12391, glPointParameterfvEXT, glPointParameterfvEXT, NULL, 729),
- NAME_FUNC_OFFSET(12413, glLockArraysEXT, glLockArraysEXT, NULL, 730),
- NAME_FUNC_OFFSET(12429, glUnlockArraysEXT, glUnlockArraysEXT, NULL, 731),
- NAME_FUNC_OFFSET(12447, glSecondaryColor3bEXT, glSecondaryColor3bEXT, NULL, 732),
- NAME_FUNC_OFFSET(12469, glSecondaryColor3bvEXT, glSecondaryColor3bvEXT, NULL, 733),
- NAME_FUNC_OFFSET(12492, glSecondaryColor3dEXT, glSecondaryColor3dEXT, NULL, 734),
- NAME_FUNC_OFFSET(12514, glSecondaryColor3dvEXT, glSecondaryColor3dvEXT, NULL, 735),
- NAME_FUNC_OFFSET(12537, glSecondaryColor3fEXT, glSecondaryColor3fEXT, NULL, 736),
- NAME_FUNC_OFFSET(12559, glSecondaryColor3fvEXT, glSecondaryColor3fvEXT, NULL, 737),
- NAME_FUNC_OFFSET(12582, glSecondaryColor3iEXT, glSecondaryColor3iEXT, NULL, 738),
- NAME_FUNC_OFFSET(12604, glSecondaryColor3ivEXT, glSecondaryColor3ivEXT, NULL, 739),
- NAME_FUNC_OFFSET(12627, glSecondaryColor3sEXT, glSecondaryColor3sEXT, NULL, 740),
- NAME_FUNC_OFFSET(12649, glSecondaryColor3svEXT, glSecondaryColor3svEXT, NULL, 741),
- NAME_FUNC_OFFSET(12672, glSecondaryColor3ubEXT, glSecondaryColor3ubEXT, NULL, 742),
- NAME_FUNC_OFFSET(12695, glSecondaryColor3ubvEXT, glSecondaryColor3ubvEXT, NULL, 743),
- NAME_FUNC_OFFSET(12719, glSecondaryColor3uiEXT, glSecondaryColor3uiEXT, NULL, 744),
- NAME_FUNC_OFFSET(12742, glSecondaryColor3uivEXT, glSecondaryColor3uivEXT, NULL, 745),
- NAME_FUNC_OFFSET(12766, glSecondaryColor3usEXT, glSecondaryColor3usEXT, NULL, 746),
- NAME_FUNC_OFFSET(12789, glSecondaryColor3usvEXT, glSecondaryColor3usvEXT, NULL, 747),
- NAME_FUNC_OFFSET(12813, glSecondaryColorPointerEXT, glSecondaryColorPointerEXT, NULL, 748),
- NAME_FUNC_OFFSET(12840, glMultiDrawArraysEXT, glMultiDrawArraysEXT, NULL, 749),
- NAME_FUNC_OFFSET(12861, glMultiDrawElementsEXT, glMultiDrawElementsEXT, NULL, 750),
- NAME_FUNC_OFFSET(12884, glFogCoordPointerEXT, glFogCoordPointerEXT, NULL, 751),
- NAME_FUNC_OFFSET(12905, glFogCoorddEXT, glFogCoorddEXT, NULL, 752),
- NAME_FUNC_OFFSET(12920, glFogCoorddvEXT, glFogCoorddvEXT, NULL, 753),
- NAME_FUNC_OFFSET(12936, glFogCoordfEXT, glFogCoordfEXT, NULL, 754),
- NAME_FUNC_OFFSET(12951, glFogCoordfvEXT, glFogCoordfvEXT, NULL, 755),
- NAME_FUNC_OFFSET(12967, glBlendFuncSeparateEXT, glBlendFuncSeparateEXT, NULL, 756),
- NAME_FUNC_OFFSET(12990, glResizeBuffersMESA, glResizeBuffersMESA, NULL, 757),
- NAME_FUNC_OFFSET(13010, glWindowPos2dMESA, glWindowPos2dMESA, NULL, 758),
- NAME_FUNC_OFFSET(13028, glWindowPos2dvMESA, glWindowPos2dvMESA, NULL, 759),
- NAME_FUNC_OFFSET(13047, glWindowPos2fMESA, glWindowPos2fMESA, NULL, 760),
- NAME_FUNC_OFFSET(13065, glWindowPos2fvMESA, glWindowPos2fvMESA, NULL, 761),
- NAME_FUNC_OFFSET(13084, glWindowPos2iMESA, glWindowPos2iMESA, NULL, 762),
- NAME_FUNC_OFFSET(13102, glWindowPos2ivMESA, glWindowPos2ivMESA, NULL, 763),
- NAME_FUNC_OFFSET(13121, glWindowPos2sMESA, glWindowPos2sMESA, NULL, 764),
- NAME_FUNC_OFFSET(13139, glWindowPos2svMESA, glWindowPos2svMESA, NULL, 765),
- NAME_FUNC_OFFSET(13158, glWindowPos3dMESA, glWindowPos3dMESA, NULL, 766),
- NAME_FUNC_OFFSET(13176, glWindowPos3dvMESA, glWindowPos3dvMESA, NULL, 767),
- NAME_FUNC_OFFSET(13195, glWindowPos3fMESA, glWindowPos3fMESA, NULL, 768),
- NAME_FUNC_OFFSET(13213, glWindowPos3fvMESA, glWindowPos3fvMESA, NULL, 769),
- NAME_FUNC_OFFSET(13232, glWindowPos3iMESA, glWindowPos3iMESA, NULL, 770),
- NAME_FUNC_OFFSET(13250, glWindowPos3ivMESA, glWindowPos3ivMESA, NULL, 771),
- NAME_FUNC_OFFSET(13269, glWindowPos3sMESA, glWindowPos3sMESA, NULL, 772),
- NAME_FUNC_OFFSET(13287, glWindowPos3svMESA, glWindowPos3svMESA, NULL, 773),
- NAME_FUNC_OFFSET(13306, glWindowPos4dMESA, glWindowPos4dMESA, NULL, 774),
- NAME_FUNC_OFFSET(13324, glWindowPos4dvMESA, glWindowPos4dvMESA, NULL, 775),
- NAME_FUNC_OFFSET(13343, glWindowPos4fMESA, glWindowPos4fMESA, NULL, 776),
- NAME_FUNC_OFFSET(13361, glWindowPos4fvMESA, glWindowPos4fvMESA, NULL, 777),
- NAME_FUNC_OFFSET(13380, glWindowPos4iMESA, glWindowPos4iMESA, NULL, 778),
- NAME_FUNC_OFFSET(13398, glWindowPos4ivMESA, glWindowPos4ivMESA, NULL, 779),
- NAME_FUNC_OFFSET(13417, glWindowPos4sMESA, glWindowPos4sMESA, NULL, 780),
- NAME_FUNC_OFFSET(13435, glWindowPos4svMESA, glWindowPos4svMESA, NULL, 781),
- NAME_FUNC_OFFSET(13454, gl_dispatch_stub_782, gl_dispatch_stub_782, NULL, 782),
- NAME_FUNC_OFFSET(13479, gl_dispatch_stub_783, gl_dispatch_stub_783, NULL, 783),
- NAME_FUNC_OFFSET(13506, glAreProgramsResidentNV, glAreProgramsResidentNV, NULL, 784),
- NAME_FUNC_OFFSET(13530, glBindProgramNV, glBindProgramNV, NULL, 785),
- NAME_FUNC_OFFSET(13546, glDeleteProgramsNV, glDeleteProgramsNV, NULL, 786),
- NAME_FUNC_OFFSET(13565, glExecuteProgramNV, glExecuteProgramNV, NULL, 787),
- NAME_FUNC_OFFSET(13584, glGenProgramsNV, glGenProgramsNV, NULL, 788),
- NAME_FUNC_OFFSET(13600, glGetProgramParameterdvNV, glGetProgramParameterdvNV, NULL, 789),
- NAME_FUNC_OFFSET(13626, glGetProgramParameterfvNV, glGetProgramParameterfvNV, NULL, 790),
- NAME_FUNC_OFFSET(13652, glGetProgramStringNV, glGetProgramStringNV, NULL, 791),
- NAME_FUNC_OFFSET(13673, glGetProgramivNV, glGetProgramivNV, NULL, 792),
- NAME_FUNC_OFFSET(13690, glGetTrackMatrixivNV, glGetTrackMatrixivNV, NULL, 793),
- NAME_FUNC_OFFSET(13711, glGetVertexAttribPointervNV, glGetVertexAttribPointervNV, NULL, 794),
- NAME_FUNC_OFFSET(13739, glGetVertexAttribdvNV, glGetVertexAttribdvNV, NULL, 795),
- NAME_FUNC_OFFSET(13761, glGetVertexAttribfvNV, glGetVertexAttribfvNV, NULL, 796),
- NAME_FUNC_OFFSET(13783, glGetVertexAttribivNV, glGetVertexAttribivNV, NULL, 797),
- NAME_FUNC_OFFSET(13805, glIsProgramNV, glIsProgramNV, NULL, 798),
- NAME_FUNC_OFFSET(13819, glLoadProgramNV, glLoadProgramNV, NULL, 799),
- NAME_FUNC_OFFSET(13835, glProgramParameters4dvNV, glProgramParameters4dvNV, NULL, 800),
- NAME_FUNC_OFFSET(13860, glProgramParameters4fvNV, glProgramParameters4fvNV, NULL, 801),
- NAME_FUNC_OFFSET(13885, glRequestResidentProgramsNV, glRequestResidentProgramsNV, NULL, 802),
- NAME_FUNC_OFFSET(13913, glTrackMatrixNV, glTrackMatrixNV, NULL, 803),
- NAME_FUNC_OFFSET(13929, glVertexAttrib1dNV, glVertexAttrib1dNV, NULL, 804),
- NAME_FUNC_OFFSET(13948, glVertexAttrib1dvNV, glVertexAttrib1dvNV, NULL, 805),
- NAME_FUNC_OFFSET(13968, glVertexAttrib1fNV, glVertexAttrib1fNV, NULL, 806),
- NAME_FUNC_OFFSET(13987, glVertexAttrib1fvNV, glVertexAttrib1fvNV, NULL, 807),
- NAME_FUNC_OFFSET(14007, glVertexAttrib1sNV, glVertexAttrib1sNV, NULL, 808),
- NAME_FUNC_OFFSET(14026, glVertexAttrib1svNV, glVertexAttrib1svNV, NULL, 809),
- NAME_FUNC_OFFSET(14046, glVertexAttrib2dNV, glVertexAttrib2dNV, NULL, 810),
- NAME_FUNC_OFFSET(14065, glVertexAttrib2dvNV, glVertexAttrib2dvNV, NULL, 811),
- NAME_FUNC_OFFSET(14085, glVertexAttrib2fNV, glVertexAttrib2fNV, NULL, 812),
- NAME_FUNC_OFFSET(14104, glVertexAttrib2fvNV, glVertexAttrib2fvNV, NULL, 813),
- NAME_FUNC_OFFSET(14124, glVertexAttrib2sNV, glVertexAttrib2sNV, NULL, 814),
- NAME_FUNC_OFFSET(14143, glVertexAttrib2svNV, glVertexAttrib2svNV, NULL, 815),
- NAME_FUNC_OFFSET(14163, glVertexAttrib3dNV, glVertexAttrib3dNV, NULL, 816),
- NAME_FUNC_OFFSET(14182, glVertexAttrib3dvNV, glVertexAttrib3dvNV, NULL, 817),
- NAME_FUNC_OFFSET(14202, glVertexAttrib3fNV, glVertexAttrib3fNV, NULL, 818),
- NAME_FUNC_OFFSET(14221, glVertexAttrib3fvNV, glVertexAttrib3fvNV, NULL, 819),
- NAME_FUNC_OFFSET(14241, glVertexAttrib3sNV, glVertexAttrib3sNV, NULL, 820),
- NAME_FUNC_OFFSET(14260, glVertexAttrib3svNV, glVertexAttrib3svNV, NULL, 821),
- NAME_FUNC_OFFSET(14280, glVertexAttrib4dNV, glVertexAttrib4dNV, NULL, 822),
- NAME_FUNC_OFFSET(14299, glVertexAttrib4dvNV, glVertexAttrib4dvNV, NULL, 823),
- NAME_FUNC_OFFSET(14319, glVertexAttrib4fNV, glVertexAttrib4fNV, NULL, 824),
- NAME_FUNC_OFFSET(14338, glVertexAttrib4fvNV, glVertexAttrib4fvNV, NULL, 825),
- NAME_FUNC_OFFSET(14358, glVertexAttrib4sNV, glVertexAttrib4sNV, NULL, 826),
- NAME_FUNC_OFFSET(14377, glVertexAttrib4svNV, glVertexAttrib4svNV, NULL, 827),
- NAME_FUNC_OFFSET(14397, glVertexAttrib4ubNV, glVertexAttrib4ubNV, NULL, 828),
- NAME_FUNC_OFFSET(14417, glVertexAttrib4ubvNV, glVertexAttrib4ubvNV, NULL, 829),
- NAME_FUNC_OFFSET(14438, glVertexAttribPointerNV, glVertexAttribPointerNV, NULL, 830),
- NAME_FUNC_OFFSET(14462, glVertexAttribs1dvNV, glVertexAttribs1dvNV, NULL, 831),
- NAME_FUNC_OFFSET(14483, glVertexAttribs1fvNV, glVertexAttribs1fvNV, NULL, 832),
- NAME_FUNC_OFFSET(14504, glVertexAttribs1svNV, glVertexAttribs1svNV, NULL, 833),
- NAME_FUNC_OFFSET(14525, glVertexAttribs2dvNV, glVertexAttribs2dvNV, NULL, 834),
- NAME_FUNC_OFFSET(14546, glVertexAttribs2fvNV, glVertexAttribs2fvNV, NULL, 835),
- NAME_FUNC_OFFSET(14567, glVertexAttribs2svNV, glVertexAttribs2svNV, NULL, 836),
- NAME_FUNC_OFFSET(14588, glVertexAttribs3dvNV, glVertexAttribs3dvNV, NULL, 837),
- NAME_FUNC_OFFSET(14609, glVertexAttribs3fvNV, glVertexAttribs3fvNV, NULL, 838),
- NAME_FUNC_OFFSET(14630, glVertexAttribs3svNV, glVertexAttribs3svNV, NULL, 839),
- NAME_FUNC_OFFSET(14651, glVertexAttribs4dvNV, glVertexAttribs4dvNV, NULL, 840),
- NAME_FUNC_OFFSET(14672, glVertexAttribs4fvNV, glVertexAttribs4fvNV, NULL, 841),
- NAME_FUNC_OFFSET(14693, glVertexAttribs4svNV, glVertexAttribs4svNV, NULL, 842),
- NAME_FUNC_OFFSET(14714, glVertexAttribs4ubvNV, glVertexAttribs4ubvNV, NULL, 843),
- NAME_FUNC_OFFSET(14736, glGetTexBumpParameterfvATI, glGetTexBumpParameterfvATI, NULL, 844),
- NAME_FUNC_OFFSET(14763, glGetTexBumpParameterivATI, glGetTexBumpParameterivATI, NULL, 845),
- NAME_FUNC_OFFSET(14790, glTexBumpParameterfvATI, glTexBumpParameterfvATI, NULL, 846),
- NAME_FUNC_OFFSET(14814, glTexBumpParameterivATI, glTexBumpParameterivATI, NULL, 847),
- NAME_FUNC_OFFSET(14838, glAlphaFragmentOp1ATI, glAlphaFragmentOp1ATI, NULL, 848),
- NAME_FUNC_OFFSET(14860, glAlphaFragmentOp2ATI, glAlphaFragmentOp2ATI, NULL, 849),
- NAME_FUNC_OFFSET(14882, glAlphaFragmentOp3ATI, glAlphaFragmentOp3ATI, NULL, 850),
- NAME_FUNC_OFFSET(14904, glBeginFragmentShaderATI, glBeginFragmentShaderATI, NULL, 851),
- NAME_FUNC_OFFSET(14929, glBindFragmentShaderATI, glBindFragmentShaderATI, NULL, 852),
- NAME_FUNC_OFFSET(14953, glColorFragmentOp1ATI, glColorFragmentOp1ATI, NULL, 853),
- NAME_FUNC_OFFSET(14975, glColorFragmentOp2ATI, glColorFragmentOp2ATI, NULL, 854),
- NAME_FUNC_OFFSET(14997, glColorFragmentOp3ATI, glColorFragmentOp3ATI, NULL, 855),
- NAME_FUNC_OFFSET(15019, glDeleteFragmentShaderATI, glDeleteFragmentShaderATI, NULL, 856),
- NAME_FUNC_OFFSET(15045, glEndFragmentShaderATI, glEndFragmentShaderATI, NULL, 857),
- NAME_FUNC_OFFSET(15068, glGenFragmentShadersATI, glGenFragmentShadersATI, NULL, 858),
- NAME_FUNC_OFFSET(15092, glPassTexCoordATI, glPassTexCoordATI, NULL, 859),
- NAME_FUNC_OFFSET(15110, glSampleMapATI, glSampleMapATI, NULL, 860),
- NAME_FUNC_OFFSET(15125, glSetFragmentShaderConstantATI, glSetFragmentShaderConstantATI, NULL, 861),
- NAME_FUNC_OFFSET(15156, glPointParameteriNV, glPointParameteriNV, NULL, 862),
- NAME_FUNC_OFFSET(15176, glPointParameterivNV, glPointParameterivNV, NULL, 863),
- NAME_FUNC_OFFSET(15197, gl_dispatch_stub_864, gl_dispatch_stub_864, NULL, 864),
- NAME_FUNC_OFFSET(15220, gl_dispatch_stub_865, gl_dispatch_stub_865, NULL, 865),
- NAME_FUNC_OFFSET(15243, gl_dispatch_stub_866, gl_dispatch_stub_866, NULL, 866),
- NAME_FUNC_OFFSET(15269, gl_dispatch_stub_867, gl_dispatch_stub_867, NULL, 867),
- NAME_FUNC_OFFSET(15292, gl_dispatch_stub_868, gl_dispatch_stub_868, NULL, 868),
- NAME_FUNC_OFFSET(15313, glGetProgramNamedParameterdvNV, glGetProgramNamedParameterdvNV, NULL, 869),
- NAME_FUNC_OFFSET(15344, glGetProgramNamedParameterfvNV, glGetProgramNamedParameterfvNV, NULL, 870),
- NAME_FUNC_OFFSET(15375, glProgramNamedParameter4dNV, glProgramNamedParameter4dNV, NULL, 871),
- NAME_FUNC_OFFSET(15403, glProgramNamedParameter4dvNV, glProgramNamedParameter4dvNV, NULL, 872),
- NAME_FUNC_OFFSET(15432, glProgramNamedParameter4fNV, glProgramNamedParameter4fNV, NULL, 873),
- NAME_FUNC_OFFSET(15460, glProgramNamedParameter4fvNV, glProgramNamedParameter4fvNV, NULL, 874),
- NAME_FUNC_OFFSET(15489, glPrimitiveRestartIndexNV, glPrimitiveRestartIndexNV, NULL, 875),
- NAME_FUNC_OFFSET(15515, glPrimitiveRestartNV, glPrimitiveRestartNV, NULL, 876),
- NAME_FUNC_OFFSET(15536, gl_dispatch_stub_877, gl_dispatch_stub_877, NULL, 877),
- NAME_FUNC_OFFSET(15553, gl_dispatch_stub_878, gl_dispatch_stub_878, NULL, 878),
- NAME_FUNC_OFFSET(15580, glBindFramebufferEXT, glBindFramebufferEXT, NULL, 879),
- NAME_FUNC_OFFSET(15601, glBindRenderbufferEXT, glBindRenderbufferEXT, NULL, 880),
- NAME_FUNC_OFFSET(15623, glCheckFramebufferStatusEXT, glCheckFramebufferStatusEXT, NULL, 881),
- NAME_FUNC_OFFSET(15651, glDeleteFramebuffersEXT, glDeleteFramebuffersEXT, NULL, 882),
- NAME_FUNC_OFFSET(15675, glDeleteRenderbuffersEXT, glDeleteRenderbuffersEXT, NULL, 883),
- NAME_FUNC_OFFSET(15700, glFramebufferRenderbufferEXT, glFramebufferRenderbufferEXT, NULL, 884),
- NAME_FUNC_OFFSET(15729, glFramebufferTexture1DEXT, glFramebufferTexture1DEXT, NULL, 885),
- NAME_FUNC_OFFSET(15755, glFramebufferTexture2DEXT, glFramebufferTexture2DEXT, NULL, 886),
- NAME_FUNC_OFFSET(15781, glFramebufferTexture3DEXT, glFramebufferTexture3DEXT, NULL, 887),
- NAME_FUNC_OFFSET(15807, glGenFramebuffersEXT, glGenFramebuffersEXT, NULL, 888),
- NAME_FUNC_OFFSET(15828, glGenRenderbuffersEXT, glGenRenderbuffersEXT, NULL, 889),
- NAME_FUNC_OFFSET(15850, glGenerateMipmapEXT, glGenerateMipmapEXT, NULL, 890),
- NAME_FUNC_OFFSET(15870, glGetFramebufferAttachmentParameterivEXT, glGetFramebufferAttachmentParameterivEXT, NULL, 891),
- NAME_FUNC_OFFSET(15911, glGetRenderbufferParameterivEXT, glGetRenderbufferParameterivEXT, NULL, 892),
- NAME_FUNC_OFFSET(15943, glIsFramebufferEXT, glIsFramebufferEXT, NULL, 893),
- NAME_FUNC_OFFSET(15962, glIsRenderbufferEXT, glIsRenderbufferEXT, NULL, 894),
- NAME_FUNC_OFFSET(15982, glRenderbufferStorageEXT, glRenderbufferStorageEXT, NULL, 895),
- NAME_FUNC_OFFSET(16007, gl_dispatch_stub_896, gl_dispatch_stub_896, NULL, 896),
- NAME_FUNC_OFFSET(16028, gl_dispatch_stub_897, gl_dispatch_stub_897, NULL, 897),
- NAME_FUNC_OFFSET(16052, gl_dispatch_stub_898, gl_dispatch_stub_898, NULL, 898),
- NAME_FUNC_OFFSET(16082, glBindFragDataLocationEXT, glBindFragDataLocationEXT, NULL, 899),
- NAME_FUNC_OFFSET(16108, glGetFragDataLocationEXT, glGetFragDataLocationEXT, NULL, 900),
- NAME_FUNC_OFFSET(16133, glGetUniformuivEXT, glGetUniformuivEXT, NULL, 901),
- NAME_FUNC_OFFSET(16152, glGetVertexAttribIivEXT, glGetVertexAttribIivEXT, NULL, 902),
- NAME_FUNC_OFFSET(16176, glGetVertexAttribIuivEXT, glGetVertexAttribIuivEXT, NULL, 903),
- NAME_FUNC_OFFSET(16201, glUniform1uiEXT, glUniform1uiEXT, NULL, 904),
- NAME_FUNC_OFFSET(16217, glUniform1uivEXT, glUniform1uivEXT, NULL, 905),
- NAME_FUNC_OFFSET(16234, glUniform2uiEXT, glUniform2uiEXT, NULL, 906),
- NAME_FUNC_OFFSET(16250, glUniform2uivEXT, glUniform2uivEXT, NULL, 907),
- NAME_FUNC_OFFSET(16267, glUniform3uiEXT, glUniform3uiEXT, NULL, 908),
- NAME_FUNC_OFFSET(16283, glUniform3uivEXT, glUniform3uivEXT, NULL, 909),
- NAME_FUNC_OFFSET(16300, glUniform4uiEXT, glUniform4uiEXT, NULL, 910),
- NAME_FUNC_OFFSET(16316, glUniform4uivEXT, glUniform4uivEXT, NULL, 911),
- NAME_FUNC_OFFSET(16333, glVertexAttribI1iEXT, glVertexAttribI1iEXT, NULL, 912),
- NAME_FUNC_OFFSET(16354, glVertexAttribI1ivEXT, glVertexAttribI1ivEXT, NULL, 913),
- NAME_FUNC_OFFSET(16376, glVertexAttribI1uiEXT, glVertexAttribI1uiEXT, NULL, 914),
- NAME_FUNC_OFFSET(16398, glVertexAttribI1uivEXT, glVertexAttribI1uivEXT, NULL, 915),
- NAME_FUNC_OFFSET(16421, glVertexAttribI2iEXT, glVertexAttribI2iEXT, NULL, 916),
- NAME_FUNC_OFFSET(16442, glVertexAttribI2ivEXT, glVertexAttribI2ivEXT, NULL, 917),
- NAME_FUNC_OFFSET(16464, glVertexAttribI2uiEXT, glVertexAttribI2uiEXT, NULL, 918),
- NAME_FUNC_OFFSET(16486, glVertexAttribI2uivEXT, glVertexAttribI2uivEXT, NULL, 919),
- NAME_FUNC_OFFSET(16509, glVertexAttribI3iEXT, glVertexAttribI3iEXT, NULL, 920),
- NAME_FUNC_OFFSET(16530, glVertexAttribI3ivEXT, glVertexAttribI3ivEXT, NULL, 921),
- NAME_FUNC_OFFSET(16552, glVertexAttribI3uiEXT, glVertexAttribI3uiEXT, NULL, 922),
- NAME_FUNC_OFFSET(16574, glVertexAttribI3uivEXT, glVertexAttribI3uivEXT, NULL, 923),
- NAME_FUNC_OFFSET(16597, glVertexAttribI4bvEXT, glVertexAttribI4bvEXT, NULL, 924),
- NAME_FUNC_OFFSET(16619, glVertexAttribI4iEXT, glVertexAttribI4iEXT, NULL, 925),
- NAME_FUNC_OFFSET(16640, glVertexAttribI4ivEXT, glVertexAttribI4ivEXT, NULL, 926),
- NAME_FUNC_OFFSET(16662, glVertexAttribI4svEXT, glVertexAttribI4svEXT, NULL, 927),
- NAME_FUNC_OFFSET(16684, glVertexAttribI4ubvEXT, glVertexAttribI4ubvEXT, NULL, 928),
- NAME_FUNC_OFFSET(16707, glVertexAttribI4uiEXT, glVertexAttribI4uiEXT, NULL, 929),
- NAME_FUNC_OFFSET(16729, glVertexAttribI4uivEXT, glVertexAttribI4uivEXT, NULL, 930),
- NAME_FUNC_OFFSET(16752, glVertexAttribI4usvEXT, glVertexAttribI4usvEXT, NULL, 931),
- NAME_FUNC_OFFSET(16775, glVertexAttribIPointerEXT, glVertexAttribIPointerEXT, NULL, 932),
- NAME_FUNC_OFFSET(16801, glFramebufferTextureLayerEXT, glFramebufferTextureLayerEXT, NULL, 933),
- NAME_FUNC_OFFSET(16830, glColorMaskIndexedEXT, glColorMaskIndexedEXT, NULL, 934),
- NAME_FUNC_OFFSET(16852, glDisableIndexedEXT, glDisableIndexedEXT, NULL, 935),
- NAME_FUNC_OFFSET(16872, glEnableIndexedEXT, glEnableIndexedEXT, NULL, 936),
- NAME_FUNC_OFFSET(16891, glGetBooleanIndexedvEXT, glGetBooleanIndexedvEXT, NULL, 937),
- NAME_FUNC_OFFSET(16915, glGetIntegerIndexedvEXT, glGetIntegerIndexedvEXT, NULL, 938),
- NAME_FUNC_OFFSET(16939, glIsEnabledIndexedEXT, glIsEnabledIndexedEXT, NULL, 939),
- NAME_FUNC_OFFSET(16961, glClearColorIiEXT, glClearColorIiEXT, NULL, 940),
- NAME_FUNC_OFFSET(16979, glClearColorIuiEXT, glClearColorIuiEXT, NULL, 941),
- NAME_FUNC_OFFSET(16998, glGetTexParameterIivEXT, glGetTexParameterIivEXT, NULL, 942),
- NAME_FUNC_OFFSET(17022, glGetTexParameterIuivEXT, glGetTexParameterIuivEXT, NULL, 943),
- NAME_FUNC_OFFSET(17047, glTexParameterIivEXT, glTexParameterIivEXT, NULL, 944),
- NAME_FUNC_OFFSET(17068, glTexParameterIuivEXT, glTexParameterIuivEXT, NULL, 945),
- NAME_FUNC_OFFSET(17090, glBeginConditionalRenderNV, glBeginConditionalRenderNV, NULL, 946),
- NAME_FUNC_OFFSET(17117, glEndConditionalRenderNV, glEndConditionalRenderNV, NULL, 947),
- NAME_FUNC_OFFSET(17142, glBeginTransformFeedbackEXT, glBeginTransformFeedbackEXT, NULL, 948),
- NAME_FUNC_OFFSET(17170, glBindBufferBaseEXT, glBindBufferBaseEXT, NULL, 949),
- NAME_FUNC_OFFSET(17190, glBindBufferOffsetEXT, glBindBufferOffsetEXT, NULL, 950),
- NAME_FUNC_OFFSET(17212, glBindBufferRangeEXT, glBindBufferRangeEXT, NULL, 951),
- NAME_FUNC_OFFSET(17233, glEndTransformFeedbackEXT, glEndTransformFeedbackEXT, NULL, 952),
- NAME_FUNC_OFFSET(17259, glGetTransformFeedbackVaryingEXT, glGetTransformFeedbackVaryingEXT, NULL, 953),
- NAME_FUNC_OFFSET(17292, glTransformFeedbackVaryingsEXT, glTransformFeedbackVaryingsEXT, NULL, 954),
- NAME_FUNC_OFFSET(17323, glProvokingVertexEXT, glProvokingVertexEXT, NULL, 955),
- NAME_FUNC_OFFSET(17344, glGetObjectParameterivAPPLE, glGetObjectParameterivAPPLE, NULL, 956),
- NAME_FUNC_OFFSET(17372, glObjectPurgeableAPPLE, glObjectPurgeableAPPLE, NULL, 957),
- NAME_FUNC_OFFSET(17395, glObjectUnpurgeableAPPLE, glObjectUnpurgeableAPPLE, NULL, 958),
- NAME_FUNC_OFFSET(17420, glActiveProgramEXT, glActiveProgramEXT, NULL, 959),
- NAME_FUNC_OFFSET(17439, glCreateShaderProgramEXT, glCreateShaderProgramEXT, NULL, 960),
- NAME_FUNC_OFFSET(17464, glUseShaderProgramEXT, glUseShaderProgramEXT, NULL, 961),
- NAME_FUNC_OFFSET(17486, glTextureBarrierNV, glTextureBarrierNV, NULL, 962),
- NAME_FUNC_OFFSET(17505, gl_dispatch_stub_963, gl_dispatch_stub_963, NULL, 963),
- NAME_FUNC_OFFSET(17530, gl_dispatch_stub_964, gl_dispatch_stub_964, NULL, 964),
- NAME_FUNC_OFFSET(17559, gl_dispatch_stub_965, gl_dispatch_stub_965, NULL, 965),
- NAME_FUNC_OFFSET(17590, gl_dispatch_stub_966, gl_dispatch_stub_966, NULL, 966),
- NAME_FUNC_OFFSET(17614, gl_dispatch_stub_967, gl_dispatch_stub_967, NULL, 967),
- NAME_FUNC_OFFSET(17639, glEGLImageTargetRenderbufferStorageOES, glEGLImageTargetRenderbufferStorageOES, NULL, 968),
- NAME_FUNC_OFFSET(17678, glEGLImageTargetTexture2DOES, glEGLImageTargetTexture2DOES, NULL, 969),
- NAME_FUNC_OFFSET(17707, glArrayElement, glArrayElement, NULL, 306),
- NAME_FUNC_OFFSET(17725, glBindTexture, glBindTexture, NULL, 307),
- NAME_FUNC_OFFSET(17742, glDrawArrays, glDrawArrays, NULL, 310),
- NAME_FUNC_OFFSET(17758, glAreTexturesResident, glAreTexturesResidentEXT, glAreTexturesResidentEXT, 322),
- NAME_FUNC_OFFSET(17783, glCopyTexImage1D, glCopyTexImage1D, NULL, 323),
- NAME_FUNC_OFFSET(17803, glCopyTexImage2D, glCopyTexImage2D, NULL, 324),
- NAME_FUNC_OFFSET(17823, glCopyTexSubImage1D, glCopyTexSubImage1D, NULL, 325),
- NAME_FUNC_OFFSET(17846, glCopyTexSubImage2D, glCopyTexSubImage2D, NULL, 326),
- NAME_FUNC_OFFSET(17869, glDeleteTextures, glDeleteTexturesEXT, glDeleteTexturesEXT, 327),
- NAME_FUNC_OFFSET(17889, glGenTextures, glGenTexturesEXT, glGenTexturesEXT, 328),
- NAME_FUNC_OFFSET(17906, glGetPointerv, glGetPointerv, NULL, 329),
- NAME_FUNC_OFFSET(17923, glIsTexture, glIsTextureEXT, glIsTextureEXT, 330),
- NAME_FUNC_OFFSET(17938, glPrioritizeTextures, glPrioritizeTextures, NULL, 331),
- NAME_FUNC_OFFSET(17962, glTexSubImage1D, glTexSubImage1D, NULL, 332),
- NAME_FUNC_OFFSET(17981, glTexSubImage2D, glTexSubImage2D, NULL, 333),
- NAME_FUNC_OFFSET(18000, glBlendColor, glBlendColor, NULL, 336),
- NAME_FUNC_OFFSET(18016, glBlendEquation, glBlendEquation, NULL, 337),
- NAME_FUNC_OFFSET(18035, glDrawRangeElements, glDrawRangeElements, NULL, 338),
- NAME_FUNC_OFFSET(18058, glColorTable, glColorTable, NULL, 339),
- NAME_FUNC_OFFSET(18074, glColorTable, glColorTable, NULL, 339),
- NAME_FUNC_OFFSET(18090, glColorTableParameterfv, glColorTableParameterfv, NULL, 340),
- NAME_FUNC_OFFSET(18117, glColorTableParameteriv, glColorTableParameteriv, NULL, 341),
- NAME_FUNC_OFFSET(18144, glCopyColorTable, glCopyColorTable, NULL, 342),
- NAME_FUNC_OFFSET(18164, glGetColorTable, glGetColorTableEXT, glGetColorTableEXT, 343),
- NAME_FUNC_OFFSET(18183, glGetColorTable, glGetColorTableEXT, glGetColorTableEXT, 343),
- NAME_FUNC_OFFSET(18202, glGetColorTableParameterfv, glGetColorTableParameterfvEXT, glGetColorTableParameterfvEXT, 344),
- NAME_FUNC_OFFSET(18232, glGetColorTableParameterfv, glGetColorTableParameterfvEXT, glGetColorTableParameterfvEXT, 344),
- NAME_FUNC_OFFSET(18262, glGetColorTableParameteriv, glGetColorTableParameterivEXT, glGetColorTableParameterivEXT, 345),
- NAME_FUNC_OFFSET(18292, glGetColorTableParameteriv, glGetColorTableParameterivEXT, glGetColorTableParameterivEXT, 345),
- NAME_FUNC_OFFSET(18322, glColorSubTable, glColorSubTable, NULL, 346),
- NAME_FUNC_OFFSET(18341, glCopyColorSubTable, glCopyColorSubTable, NULL, 347),
- NAME_FUNC_OFFSET(18364, glConvolutionFilter1D, glConvolutionFilter1D, NULL, 348),
- NAME_FUNC_OFFSET(18389, glConvolutionFilter2D, glConvolutionFilter2D, NULL, 349),
- NAME_FUNC_OFFSET(18414, glConvolutionParameterf, glConvolutionParameterf, NULL, 350),
- NAME_FUNC_OFFSET(18441, glConvolutionParameterfv, glConvolutionParameterfv, NULL, 351),
- NAME_FUNC_OFFSET(18469, glConvolutionParameteri, glConvolutionParameteri, NULL, 352),
- NAME_FUNC_OFFSET(18496, glConvolutionParameteriv, glConvolutionParameteriv, NULL, 353),
- NAME_FUNC_OFFSET(18524, glCopyConvolutionFilter1D, glCopyConvolutionFilter1D, NULL, 354),
- NAME_FUNC_OFFSET(18553, glCopyConvolutionFilter2D, glCopyConvolutionFilter2D, NULL, 355),
- NAME_FUNC_OFFSET(18582, glGetConvolutionFilter, gl_dispatch_stub_356, gl_dispatch_stub_356, 356),
- NAME_FUNC_OFFSET(18608, glGetConvolutionParameterfv, gl_dispatch_stub_357, gl_dispatch_stub_357, 357),
- NAME_FUNC_OFFSET(18639, glGetConvolutionParameteriv, gl_dispatch_stub_358, gl_dispatch_stub_358, 358),
- NAME_FUNC_OFFSET(18670, glGetSeparableFilter, gl_dispatch_stub_359, gl_dispatch_stub_359, 359),
- NAME_FUNC_OFFSET(18694, glSeparableFilter2D, glSeparableFilter2D, NULL, 360),
- NAME_FUNC_OFFSET(18717, glGetHistogram, gl_dispatch_stub_361, gl_dispatch_stub_361, 361),
- NAME_FUNC_OFFSET(18735, glGetHistogramParameterfv, gl_dispatch_stub_362, gl_dispatch_stub_362, 362),
- NAME_FUNC_OFFSET(18764, glGetHistogramParameteriv, gl_dispatch_stub_363, gl_dispatch_stub_363, 363),
- NAME_FUNC_OFFSET(18793, glGetMinmax, gl_dispatch_stub_364, gl_dispatch_stub_364, 364),
- NAME_FUNC_OFFSET(18808, glGetMinmaxParameterfv, gl_dispatch_stub_365, gl_dispatch_stub_365, 365),
- NAME_FUNC_OFFSET(18834, glGetMinmaxParameteriv, gl_dispatch_stub_366, gl_dispatch_stub_366, 366),
- NAME_FUNC_OFFSET(18860, glHistogram, glHistogram, NULL, 367),
- NAME_FUNC_OFFSET(18875, glMinmax, glMinmax, NULL, 368),
- NAME_FUNC_OFFSET(18887, glResetHistogram, glResetHistogram, NULL, 369),
- NAME_FUNC_OFFSET(18907, glResetMinmax, glResetMinmax, NULL, 370),
- NAME_FUNC_OFFSET(18924, glTexImage3D, glTexImage3D, NULL, 371),
- NAME_FUNC_OFFSET(18940, glTexSubImage3D, glTexSubImage3D, NULL, 372),
- NAME_FUNC_OFFSET(18959, glCopyTexSubImage3D, glCopyTexSubImage3D, NULL, 373),
- NAME_FUNC_OFFSET(18982, glActiveTextureARB, glActiveTextureARB, NULL, 374),
- NAME_FUNC_OFFSET(18998, glClientActiveTextureARB, glClientActiveTextureARB, NULL, 375),
- NAME_FUNC_OFFSET(19020, glMultiTexCoord1dARB, glMultiTexCoord1dARB, NULL, 376),
- NAME_FUNC_OFFSET(19038, glMultiTexCoord1dvARB, glMultiTexCoord1dvARB, NULL, 377),
- NAME_FUNC_OFFSET(19057, glMultiTexCoord1fARB, glMultiTexCoord1fARB, NULL, 378),
- NAME_FUNC_OFFSET(19075, glMultiTexCoord1fvARB, glMultiTexCoord1fvARB, NULL, 379),
- NAME_FUNC_OFFSET(19094, glMultiTexCoord1iARB, glMultiTexCoord1iARB, NULL, 380),
- NAME_FUNC_OFFSET(19112, glMultiTexCoord1ivARB, glMultiTexCoord1ivARB, NULL, 381),
- NAME_FUNC_OFFSET(19131, glMultiTexCoord1sARB, glMultiTexCoord1sARB, NULL, 382),
- NAME_FUNC_OFFSET(19149, glMultiTexCoord1svARB, glMultiTexCoord1svARB, NULL, 383),
- NAME_FUNC_OFFSET(19168, glMultiTexCoord2dARB, glMultiTexCoord2dARB, NULL, 384),
- NAME_FUNC_OFFSET(19186, glMultiTexCoord2dvARB, glMultiTexCoord2dvARB, NULL, 385),
- NAME_FUNC_OFFSET(19205, glMultiTexCoord2fARB, glMultiTexCoord2fARB, NULL, 386),
- NAME_FUNC_OFFSET(19223, glMultiTexCoord2fvARB, glMultiTexCoord2fvARB, NULL, 387),
- NAME_FUNC_OFFSET(19242, glMultiTexCoord2iARB, glMultiTexCoord2iARB, NULL, 388),
- NAME_FUNC_OFFSET(19260, glMultiTexCoord2ivARB, glMultiTexCoord2ivARB, NULL, 389),
- NAME_FUNC_OFFSET(19279, glMultiTexCoord2sARB, glMultiTexCoord2sARB, NULL, 390),
- NAME_FUNC_OFFSET(19297, glMultiTexCoord2svARB, glMultiTexCoord2svARB, NULL, 391),
- NAME_FUNC_OFFSET(19316, glMultiTexCoord3dARB, glMultiTexCoord3dARB, NULL, 392),
- NAME_FUNC_OFFSET(19334, glMultiTexCoord3dvARB, glMultiTexCoord3dvARB, NULL, 393),
- NAME_FUNC_OFFSET(19353, glMultiTexCoord3fARB, glMultiTexCoord3fARB, NULL, 394),
- NAME_FUNC_OFFSET(19371, glMultiTexCoord3fvARB, glMultiTexCoord3fvARB, NULL, 395),
- NAME_FUNC_OFFSET(19390, glMultiTexCoord3iARB, glMultiTexCoord3iARB, NULL, 396),
- NAME_FUNC_OFFSET(19408, glMultiTexCoord3ivARB, glMultiTexCoord3ivARB, NULL, 397),
- NAME_FUNC_OFFSET(19427, glMultiTexCoord3sARB, glMultiTexCoord3sARB, NULL, 398),
- NAME_FUNC_OFFSET(19445, glMultiTexCoord3svARB, glMultiTexCoord3svARB, NULL, 399),
- NAME_FUNC_OFFSET(19464, glMultiTexCoord4dARB, glMultiTexCoord4dARB, NULL, 400),
- NAME_FUNC_OFFSET(19482, glMultiTexCoord4dvARB, glMultiTexCoord4dvARB, NULL, 401),
- NAME_FUNC_OFFSET(19501, glMultiTexCoord4fARB, glMultiTexCoord4fARB, NULL, 402),
- NAME_FUNC_OFFSET(19519, glMultiTexCoord4fvARB, glMultiTexCoord4fvARB, NULL, 403),
- NAME_FUNC_OFFSET(19538, glMultiTexCoord4iARB, glMultiTexCoord4iARB, NULL, 404),
- NAME_FUNC_OFFSET(19556, glMultiTexCoord4ivARB, glMultiTexCoord4ivARB, NULL, 405),
- NAME_FUNC_OFFSET(19575, glMultiTexCoord4sARB, glMultiTexCoord4sARB, NULL, 406),
- NAME_FUNC_OFFSET(19593, glMultiTexCoord4svARB, glMultiTexCoord4svARB, NULL, 407),
- NAME_FUNC_OFFSET(19612, glStencilOpSeparate, glStencilOpSeparate, NULL, 423),
- NAME_FUNC_OFFSET(19635, glLoadTransposeMatrixdARB, glLoadTransposeMatrixdARB, NULL, 440),
- NAME_FUNC_OFFSET(19658, glLoadTransposeMatrixfARB, glLoadTransposeMatrixfARB, NULL, 441),
- NAME_FUNC_OFFSET(19681, glMultTransposeMatrixdARB, glMultTransposeMatrixdARB, NULL, 442),
- NAME_FUNC_OFFSET(19704, glMultTransposeMatrixfARB, glMultTransposeMatrixfARB, NULL, 443),
- NAME_FUNC_OFFSET(19727, glSampleCoverageARB, glSampleCoverageARB, NULL, 444),
- NAME_FUNC_OFFSET(19744, glCompressedTexImage1DARB, glCompressedTexImage1DARB, NULL, 445),
- NAME_FUNC_OFFSET(19767, glCompressedTexImage2DARB, glCompressedTexImage2DARB, NULL, 446),
- NAME_FUNC_OFFSET(19790, glCompressedTexImage3DARB, glCompressedTexImage3DARB, NULL, 447),
- NAME_FUNC_OFFSET(19813, glCompressedTexSubImage1DARB, glCompressedTexSubImage1DARB, NULL, 448),
- NAME_FUNC_OFFSET(19839, glCompressedTexSubImage2DARB, glCompressedTexSubImage2DARB, NULL, 449),
- NAME_FUNC_OFFSET(19865, glCompressedTexSubImage3DARB, glCompressedTexSubImage3DARB, NULL, 450),
- NAME_FUNC_OFFSET(19891, glGetCompressedTexImageARB, glGetCompressedTexImageARB, NULL, 451),
- NAME_FUNC_OFFSET(19915, glDisableVertexAttribArrayARB, glDisableVertexAttribArrayARB, NULL, 452),
- NAME_FUNC_OFFSET(19942, glEnableVertexAttribArrayARB, glEnableVertexAttribArrayARB, NULL, 453),
- NAME_FUNC_OFFSET(19968, glGetVertexAttribdvARB, glGetVertexAttribdvARB, NULL, 460),
- NAME_FUNC_OFFSET(19988, glGetVertexAttribfvARB, glGetVertexAttribfvARB, NULL, 461),
- NAME_FUNC_OFFSET(20008, glGetVertexAttribivARB, glGetVertexAttribivARB, NULL, 462),
- NAME_FUNC_OFFSET(20028, glProgramEnvParameter4dARB, glProgramEnvParameter4dARB, NULL, 463),
- NAME_FUNC_OFFSET(20051, glProgramEnvParameter4dvARB, glProgramEnvParameter4dvARB, NULL, 464),
- NAME_FUNC_OFFSET(20075, glProgramEnvParameter4fARB, glProgramEnvParameter4fARB, NULL, 465),
- NAME_FUNC_OFFSET(20098, glProgramEnvParameter4fvARB, glProgramEnvParameter4fvARB, NULL, 466),
- NAME_FUNC_OFFSET(20122, glVertexAttrib1dARB, glVertexAttrib1dARB, NULL, 472),
- NAME_FUNC_OFFSET(20139, glVertexAttrib1dvARB, glVertexAttrib1dvARB, NULL, 473),
- NAME_FUNC_OFFSET(20157, glVertexAttrib1fARB, glVertexAttrib1fARB, NULL, 474),
- NAME_FUNC_OFFSET(20174, glVertexAttrib1fvARB, glVertexAttrib1fvARB, NULL, 475),
- NAME_FUNC_OFFSET(20192, glVertexAttrib1sARB, glVertexAttrib1sARB, NULL, 476),
- NAME_FUNC_OFFSET(20209, glVertexAttrib1svARB, glVertexAttrib1svARB, NULL, 477),
- NAME_FUNC_OFFSET(20227, glVertexAttrib2dARB, glVertexAttrib2dARB, NULL, 478),
- NAME_FUNC_OFFSET(20244, glVertexAttrib2dvARB, glVertexAttrib2dvARB, NULL, 479),
- NAME_FUNC_OFFSET(20262, glVertexAttrib2fARB, glVertexAttrib2fARB, NULL, 480),
- NAME_FUNC_OFFSET(20279, glVertexAttrib2fvARB, glVertexAttrib2fvARB, NULL, 481),
- NAME_FUNC_OFFSET(20297, glVertexAttrib2sARB, glVertexAttrib2sARB, NULL, 482),
- NAME_FUNC_OFFSET(20314, glVertexAttrib2svARB, glVertexAttrib2svARB, NULL, 483),
- NAME_FUNC_OFFSET(20332, glVertexAttrib3dARB, glVertexAttrib3dARB, NULL, 484),
- NAME_FUNC_OFFSET(20349, glVertexAttrib3dvARB, glVertexAttrib3dvARB, NULL, 485),
- NAME_FUNC_OFFSET(20367, glVertexAttrib3fARB, glVertexAttrib3fARB, NULL, 486),
- NAME_FUNC_OFFSET(20384, glVertexAttrib3fvARB, glVertexAttrib3fvARB, NULL, 487),
- NAME_FUNC_OFFSET(20402, glVertexAttrib3sARB, glVertexAttrib3sARB, NULL, 488),
- NAME_FUNC_OFFSET(20419, glVertexAttrib3svARB, glVertexAttrib3svARB, NULL, 489),
- NAME_FUNC_OFFSET(20437, glVertexAttrib4NbvARB, glVertexAttrib4NbvARB, NULL, 490),
- NAME_FUNC_OFFSET(20456, glVertexAttrib4NivARB, glVertexAttrib4NivARB, NULL, 491),
- NAME_FUNC_OFFSET(20475, glVertexAttrib4NsvARB, glVertexAttrib4NsvARB, NULL, 492),
- NAME_FUNC_OFFSET(20494, glVertexAttrib4NubARB, glVertexAttrib4NubARB, NULL, 493),
- NAME_FUNC_OFFSET(20513, glVertexAttrib4NubvARB, glVertexAttrib4NubvARB, NULL, 494),
- NAME_FUNC_OFFSET(20533, glVertexAttrib4NuivARB, glVertexAttrib4NuivARB, NULL, 495),
- NAME_FUNC_OFFSET(20553, glVertexAttrib4NusvARB, glVertexAttrib4NusvARB, NULL, 496),
- NAME_FUNC_OFFSET(20573, glVertexAttrib4bvARB, glVertexAttrib4bvARB, NULL, 497),
- NAME_FUNC_OFFSET(20591, glVertexAttrib4dARB, glVertexAttrib4dARB, NULL, 498),
- NAME_FUNC_OFFSET(20608, glVertexAttrib4dvARB, glVertexAttrib4dvARB, NULL, 499),
- NAME_FUNC_OFFSET(20626, glVertexAttrib4fARB, glVertexAttrib4fARB, NULL, 500),
- NAME_FUNC_OFFSET(20643, glVertexAttrib4fvARB, glVertexAttrib4fvARB, NULL, 501),
- NAME_FUNC_OFFSET(20661, glVertexAttrib4ivARB, glVertexAttrib4ivARB, NULL, 502),
- NAME_FUNC_OFFSET(20679, glVertexAttrib4sARB, glVertexAttrib4sARB, NULL, 503),
- NAME_FUNC_OFFSET(20696, glVertexAttrib4svARB, glVertexAttrib4svARB, NULL, 504),
- NAME_FUNC_OFFSET(20714, glVertexAttrib4ubvARB, glVertexAttrib4ubvARB, NULL, 505),
- NAME_FUNC_OFFSET(20733, glVertexAttrib4uivARB, glVertexAttrib4uivARB, NULL, 506),
- NAME_FUNC_OFFSET(20752, glVertexAttrib4usvARB, glVertexAttrib4usvARB, NULL, 507),
- NAME_FUNC_OFFSET(20771, glVertexAttribPointerARB, glVertexAttribPointerARB, NULL, 508),
- NAME_FUNC_OFFSET(20793, glBindBufferARB, glBindBufferARB, NULL, 509),
- NAME_FUNC_OFFSET(20806, glBufferDataARB, glBufferDataARB, NULL, 510),
- NAME_FUNC_OFFSET(20819, glBufferSubDataARB, glBufferSubDataARB, NULL, 511),
- NAME_FUNC_OFFSET(20835, glDeleteBuffersARB, glDeleteBuffersARB, NULL, 512),
- NAME_FUNC_OFFSET(20851, glGenBuffersARB, glGenBuffersARB, NULL, 513),
- NAME_FUNC_OFFSET(20864, glGetBufferParameterivARB, glGetBufferParameterivARB, NULL, 514),
- NAME_FUNC_OFFSET(20887, glGetBufferPointervARB, glGetBufferPointervARB, NULL, 515),
- NAME_FUNC_OFFSET(20907, glGetBufferSubDataARB, glGetBufferSubDataARB, NULL, 516),
- NAME_FUNC_OFFSET(20926, glIsBufferARB, glIsBufferARB, NULL, 517),
- NAME_FUNC_OFFSET(20937, glMapBufferARB, glMapBufferARB, NULL, 518),
- NAME_FUNC_OFFSET(20949, glUnmapBufferARB, glUnmapBufferARB, NULL, 519),
- NAME_FUNC_OFFSET(20963, glBeginQueryARB, glBeginQueryARB, NULL, 520),
- NAME_FUNC_OFFSET(20976, glDeleteQueriesARB, glDeleteQueriesARB, NULL, 521),
- NAME_FUNC_OFFSET(20992, glEndQueryARB, glEndQueryARB, NULL, 522),
- NAME_FUNC_OFFSET(21003, glGenQueriesARB, glGenQueriesARB, NULL, 523),
- NAME_FUNC_OFFSET(21016, glGetQueryObjectivARB, glGetQueryObjectivARB, NULL, 524),
- NAME_FUNC_OFFSET(21035, glGetQueryObjectuivARB, glGetQueryObjectuivARB, NULL, 525),
- NAME_FUNC_OFFSET(21055, glGetQueryivARB, glGetQueryivARB, NULL, 526),
- NAME_FUNC_OFFSET(21068, glIsQueryARB, glIsQueryARB, NULL, 527),
- NAME_FUNC_OFFSET(21078, glCompileShaderARB, glCompileShaderARB, NULL, 529),
- NAME_FUNC_OFFSET(21094, glGetActiveUniformARB, glGetActiveUniformARB, NULL, 534),
- NAME_FUNC_OFFSET(21113, glGetShaderSourceARB, glGetShaderSourceARB, NULL, 540),
- NAME_FUNC_OFFSET(21131, glGetUniformLocationARB, glGetUniformLocationARB, NULL, 541),
- NAME_FUNC_OFFSET(21152, glGetUniformfvARB, glGetUniformfvARB, NULL, 542),
- NAME_FUNC_OFFSET(21167, glGetUniformivARB, glGetUniformivARB, NULL, 543),
- NAME_FUNC_OFFSET(21182, glLinkProgramARB, glLinkProgramARB, NULL, 544),
- NAME_FUNC_OFFSET(21196, glShaderSourceARB, glShaderSourceARB, NULL, 545),
- NAME_FUNC_OFFSET(21211, glUniform1fARB, glUniform1fARB, NULL, 546),
- NAME_FUNC_OFFSET(21223, glUniform1fvARB, glUniform1fvARB, NULL, 547),
- NAME_FUNC_OFFSET(21236, glUniform1iARB, glUniform1iARB, NULL, 548),
- NAME_FUNC_OFFSET(21248, glUniform1ivARB, glUniform1ivARB, NULL, 549),
- NAME_FUNC_OFFSET(21261, glUniform2fARB, glUniform2fARB, NULL, 550),
- NAME_FUNC_OFFSET(21273, glUniform2fvARB, glUniform2fvARB, NULL, 551),
- NAME_FUNC_OFFSET(21286, glUniform2iARB, glUniform2iARB, NULL, 552),
- NAME_FUNC_OFFSET(21298, glUniform2ivARB, glUniform2ivARB, NULL, 553),
- NAME_FUNC_OFFSET(21311, glUniform3fARB, glUniform3fARB, NULL, 554),
- NAME_FUNC_OFFSET(21323, glUniform3fvARB, glUniform3fvARB, NULL, 555),
- NAME_FUNC_OFFSET(21336, glUniform3iARB, glUniform3iARB, NULL, 556),
- NAME_FUNC_OFFSET(21348, glUniform3ivARB, glUniform3ivARB, NULL, 557),
- NAME_FUNC_OFFSET(21361, glUniform4fARB, glUniform4fARB, NULL, 558),
- NAME_FUNC_OFFSET(21373, glUniform4fvARB, glUniform4fvARB, NULL, 559),
- NAME_FUNC_OFFSET(21386, glUniform4iARB, glUniform4iARB, NULL, 560),
- NAME_FUNC_OFFSET(21398, glUniform4ivARB, glUniform4ivARB, NULL, 561),
- NAME_FUNC_OFFSET(21411, glUniformMatrix2fvARB, glUniformMatrix2fvARB, NULL, 562),
- NAME_FUNC_OFFSET(21430, glUniformMatrix3fvARB, glUniformMatrix3fvARB, NULL, 563),
- NAME_FUNC_OFFSET(21449, glUniformMatrix4fvARB, glUniformMatrix4fvARB, NULL, 564),
- NAME_FUNC_OFFSET(21468, glUseProgramObjectARB, glUseProgramObjectARB, NULL, 565),
- NAME_FUNC_OFFSET(21481, glValidateProgramARB, glValidateProgramARB, NULL, 566),
- NAME_FUNC_OFFSET(21499, glBindAttribLocationARB, glBindAttribLocationARB, NULL, 567),
- NAME_FUNC_OFFSET(21520, glGetActiveAttribARB, glGetActiveAttribARB, NULL, 568),
- NAME_FUNC_OFFSET(21538, glGetAttribLocationARB, glGetAttribLocationARB, NULL, 569),
- NAME_FUNC_OFFSET(21558, glDrawBuffersARB, glDrawBuffersARB, NULL, 570),
- NAME_FUNC_OFFSET(21572, glDrawBuffersARB, glDrawBuffersARB, NULL, 570),
- NAME_FUNC_OFFSET(21589, glDrawArraysInstancedARB, glDrawArraysInstancedARB, NULL, 572),
- NAME_FUNC_OFFSET(21614, glDrawArraysInstancedARB, glDrawArraysInstancedARB, NULL, 572),
- NAME_FUNC_OFFSET(21636, glDrawElementsInstancedARB, glDrawElementsInstancedARB, NULL, 573),
- NAME_FUNC_OFFSET(21663, glDrawElementsInstancedARB, glDrawElementsInstancedARB, NULL, 573),
- NAME_FUNC_OFFSET(21687, glRenderbufferStorageMultisample, glRenderbufferStorageMultisample, NULL, 574),
- NAME_FUNC_OFFSET(21723, glTexBufferARB, glTexBufferARB, NULL, 581),
- NAME_FUNC_OFFSET(21735, glBlendEquationSeparateiARB, glBlendEquationSeparateiARB, NULL, 603),
- NAME_FUNC_OFFSET(21769, glBlendEquationiARB, glBlendEquationiARB, NULL, 604),
- NAME_FUNC_OFFSET(21795, glBlendFuncSeparateiARB, glBlendFuncSeparateiARB, NULL, 605),
- NAME_FUNC_OFFSET(21825, glBlendFunciARB, glBlendFunciARB, NULL, 606),
- NAME_FUNC_OFFSET(21847, gl_dispatch_stub_720, gl_dispatch_stub_720, NULL, 720),
- NAME_FUNC_OFFSET(21863, gl_dispatch_stub_721, gl_dispatch_stub_721, NULL, 721),
- NAME_FUNC_OFFSET(21882, glPointParameterfEXT, glPointParameterfEXT, NULL, 728),
- NAME_FUNC_OFFSET(21900, glPointParameterfEXT, glPointParameterfEXT, NULL, 728),
- NAME_FUNC_OFFSET(21921, glPointParameterfEXT, glPointParameterfEXT, NULL, 728),
- NAME_FUNC_OFFSET(21943, glPointParameterfvEXT, glPointParameterfvEXT, NULL, 729),
- NAME_FUNC_OFFSET(21962, glPointParameterfvEXT, glPointParameterfvEXT, NULL, 729),
- NAME_FUNC_OFFSET(21984, glPointParameterfvEXT, glPointParameterfvEXT, NULL, 729),
- NAME_FUNC_OFFSET(22007, glSecondaryColor3bEXT, glSecondaryColor3bEXT, NULL, 732),
- NAME_FUNC_OFFSET(22026, glSecondaryColor3bvEXT, glSecondaryColor3bvEXT, NULL, 733),
- NAME_FUNC_OFFSET(22046, glSecondaryColor3dEXT, glSecondaryColor3dEXT, NULL, 734),
- NAME_FUNC_OFFSET(22065, glSecondaryColor3dvEXT, glSecondaryColor3dvEXT, NULL, 735),
- NAME_FUNC_OFFSET(22085, glSecondaryColor3fEXT, glSecondaryColor3fEXT, NULL, 736),
- NAME_FUNC_OFFSET(22104, glSecondaryColor3fvEXT, glSecondaryColor3fvEXT, NULL, 737),
- NAME_FUNC_OFFSET(22124, glSecondaryColor3iEXT, glSecondaryColor3iEXT, NULL, 738),
- NAME_FUNC_OFFSET(22143, glSecondaryColor3ivEXT, glSecondaryColor3ivEXT, NULL, 739),
- NAME_FUNC_OFFSET(22163, glSecondaryColor3sEXT, glSecondaryColor3sEXT, NULL, 740),
- NAME_FUNC_OFFSET(22182, glSecondaryColor3svEXT, glSecondaryColor3svEXT, NULL, 741),
- NAME_FUNC_OFFSET(22202, glSecondaryColor3ubEXT, glSecondaryColor3ubEXT, NULL, 742),
- NAME_FUNC_OFFSET(22222, glSecondaryColor3ubvEXT, glSecondaryColor3ubvEXT, NULL, 743),
- NAME_FUNC_OFFSET(22243, glSecondaryColor3uiEXT, glSecondaryColor3uiEXT, NULL, 744),
- NAME_FUNC_OFFSET(22263, glSecondaryColor3uivEXT, glSecondaryColor3uivEXT, NULL, 745),
- NAME_FUNC_OFFSET(22284, glSecondaryColor3usEXT, glSecondaryColor3usEXT, NULL, 746),
- NAME_FUNC_OFFSET(22304, glSecondaryColor3usvEXT, glSecondaryColor3usvEXT, NULL, 747),
- NAME_FUNC_OFFSET(22325, glSecondaryColorPointerEXT, glSecondaryColorPointerEXT, NULL, 748),
- NAME_FUNC_OFFSET(22349, glMultiDrawArraysEXT, glMultiDrawArraysEXT, NULL, 749),
- NAME_FUNC_OFFSET(22367, glMultiDrawElementsEXT, glMultiDrawElementsEXT, NULL, 750),
- NAME_FUNC_OFFSET(22387, glFogCoordPointerEXT, glFogCoordPointerEXT, NULL, 751),
- NAME_FUNC_OFFSET(22405, glFogCoorddEXT, glFogCoorddEXT, NULL, 752),
- NAME_FUNC_OFFSET(22417, glFogCoorddvEXT, glFogCoorddvEXT, NULL, 753),
- NAME_FUNC_OFFSET(22430, glFogCoordfEXT, glFogCoordfEXT, NULL, 754),
- NAME_FUNC_OFFSET(22442, glFogCoordfvEXT, glFogCoordfvEXT, NULL, 755),
- NAME_FUNC_OFFSET(22455, glBlendFuncSeparateEXT, glBlendFuncSeparateEXT, NULL, 756),
- NAME_FUNC_OFFSET(22475, glBlendFuncSeparateEXT, glBlendFuncSeparateEXT, NULL, 756),
- NAME_FUNC_OFFSET(22499, glWindowPos2dMESA, glWindowPos2dMESA, NULL, 758),
- NAME_FUNC_OFFSET(22513, glWindowPos2dMESA, glWindowPos2dMESA, NULL, 758),
- NAME_FUNC_OFFSET(22530, glWindowPos2dvMESA, glWindowPos2dvMESA, NULL, 759),
- NAME_FUNC_OFFSET(22545, glWindowPos2dvMESA, glWindowPos2dvMESA, NULL, 759),
- NAME_FUNC_OFFSET(22563, glWindowPos2fMESA, glWindowPos2fMESA, NULL, 760),
- NAME_FUNC_OFFSET(22577, glWindowPos2fMESA, glWindowPos2fMESA, NULL, 760),
- NAME_FUNC_OFFSET(22594, glWindowPos2fvMESA, glWindowPos2fvMESA, NULL, 761),
- NAME_FUNC_OFFSET(22609, glWindowPos2fvMESA, glWindowPos2fvMESA, NULL, 761),
- NAME_FUNC_OFFSET(22627, glWindowPos2iMESA, glWindowPos2iMESA, NULL, 762),
- NAME_FUNC_OFFSET(22641, glWindowPos2iMESA, glWindowPos2iMESA, NULL, 762),
- NAME_FUNC_OFFSET(22658, glWindowPos2ivMESA, glWindowPos2ivMESA, NULL, 763),
- NAME_FUNC_OFFSET(22673, glWindowPos2ivMESA, glWindowPos2ivMESA, NULL, 763),
- NAME_FUNC_OFFSET(22691, glWindowPos2sMESA, glWindowPos2sMESA, NULL, 764),
- NAME_FUNC_OFFSET(22705, glWindowPos2sMESA, glWindowPos2sMESA, NULL, 764),
- NAME_FUNC_OFFSET(22722, glWindowPos2svMESA, glWindowPos2svMESA, NULL, 765),
- NAME_FUNC_OFFSET(22737, glWindowPos2svMESA, glWindowPos2svMESA, NULL, 765),
- NAME_FUNC_OFFSET(22755, glWindowPos3dMESA, glWindowPos3dMESA, NULL, 766),
- NAME_FUNC_OFFSET(22769, glWindowPos3dMESA, glWindowPos3dMESA, NULL, 766),
- NAME_FUNC_OFFSET(22786, glWindowPos3dvMESA, glWindowPos3dvMESA, NULL, 767),
- NAME_FUNC_OFFSET(22801, glWindowPos3dvMESA, glWindowPos3dvMESA, NULL, 767),
- NAME_FUNC_OFFSET(22819, glWindowPos3fMESA, glWindowPos3fMESA, NULL, 768),
- NAME_FUNC_OFFSET(22833, glWindowPos3fMESA, glWindowPos3fMESA, NULL, 768),
- NAME_FUNC_OFFSET(22850, glWindowPos3fvMESA, glWindowPos3fvMESA, NULL, 769),
- NAME_FUNC_OFFSET(22865, glWindowPos3fvMESA, glWindowPos3fvMESA, NULL, 769),
- NAME_FUNC_OFFSET(22883, glWindowPos3iMESA, glWindowPos3iMESA, NULL, 770),
- NAME_FUNC_OFFSET(22897, glWindowPos3iMESA, glWindowPos3iMESA, NULL, 770),
- NAME_FUNC_OFFSET(22914, glWindowPos3ivMESA, glWindowPos3ivMESA, NULL, 771),
- NAME_FUNC_OFFSET(22929, glWindowPos3ivMESA, glWindowPos3ivMESA, NULL, 771),
- NAME_FUNC_OFFSET(22947, glWindowPos3sMESA, glWindowPos3sMESA, NULL, 772),
- NAME_FUNC_OFFSET(22961, glWindowPos3sMESA, glWindowPos3sMESA, NULL, 772),
- NAME_FUNC_OFFSET(22978, glWindowPos3svMESA, glWindowPos3svMESA, NULL, 773),
- NAME_FUNC_OFFSET(22993, glWindowPos3svMESA, glWindowPos3svMESA, NULL, 773),
- NAME_FUNC_OFFSET(23011, glBindProgramNV, glBindProgramNV, NULL, 785),
- NAME_FUNC_OFFSET(23028, glDeleteProgramsNV, glDeleteProgramsNV, NULL, 786),
- NAME_FUNC_OFFSET(23048, glGenProgramsNV, glGenProgramsNV, NULL, 788),
- NAME_FUNC_OFFSET(23065, glGetVertexAttribPointervNV, glGetVertexAttribPointervNV, NULL, 794),
- NAME_FUNC_OFFSET(23091, glGetVertexAttribPointervNV, glGetVertexAttribPointervNV, NULL, 794),
- NAME_FUNC_OFFSET(23120, glIsProgramNV, glIsProgramNV, NULL, 798),
- NAME_FUNC_OFFSET(23135, glPointParameteriNV, glPointParameteriNV, NULL, 862),
- NAME_FUNC_OFFSET(23153, glPointParameterivNV, glPointParameterivNV, NULL, 863),
- NAME_FUNC_OFFSET(23172, gl_dispatch_stub_866, gl_dispatch_stub_866, NULL, 866),
- NAME_FUNC_OFFSET(23193, gl_dispatch_stub_868, gl_dispatch_stub_868, NULL, 868),
- NAME_FUNC_OFFSET(23209, glPrimitiveRestartIndexNV, glPrimitiveRestartIndexNV, NULL, 875),
- NAME_FUNC_OFFSET(23233, gl_dispatch_stub_878, gl_dispatch_stub_878, NULL, 878),
- NAME_FUNC_OFFSET(23257, gl_dispatch_stub_878, gl_dispatch_stub_878, NULL, 878),
- NAME_FUNC_OFFSET(23284, glBindFramebufferEXT, glBindFramebufferEXT, NULL, 879),
- NAME_FUNC_OFFSET(23302, glBindRenderbufferEXT, glBindRenderbufferEXT, NULL, 880),
- NAME_FUNC_OFFSET(23321, glCheckFramebufferStatusEXT, glCheckFramebufferStatusEXT, NULL, 881),
- NAME_FUNC_OFFSET(23346, glDeleteFramebuffersEXT, glDeleteFramebuffersEXT, NULL, 882),
- NAME_FUNC_OFFSET(23367, glDeleteRenderbuffersEXT, glDeleteRenderbuffersEXT, NULL, 883),
- NAME_FUNC_OFFSET(23389, glFramebufferRenderbufferEXT, glFramebufferRenderbufferEXT, NULL, 884),
- NAME_FUNC_OFFSET(23415, glFramebufferTexture1DEXT, glFramebufferTexture1DEXT, NULL, 885),
- NAME_FUNC_OFFSET(23438, glFramebufferTexture2DEXT, glFramebufferTexture2DEXT, NULL, 886),
- NAME_FUNC_OFFSET(23461, glFramebufferTexture3DEXT, glFramebufferTexture3DEXT, NULL, 887),
- NAME_FUNC_OFFSET(23484, glGenFramebuffersEXT, glGenFramebuffersEXT, NULL, 888),
- NAME_FUNC_OFFSET(23502, glGenRenderbuffersEXT, glGenRenderbuffersEXT, NULL, 889),
- NAME_FUNC_OFFSET(23521, glGenerateMipmapEXT, glGenerateMipmapEXT, NULL, 890),
- NAME_FUNC_OFFSET(23538, glGetFramebufferAttachmentParameterivEXT, glGetFramebufferAttachmentParameterivEXT, NULL, 891),
- NAME_FUNC_OFFSET(23576, glGetRenderbufferParameterivEXT, glGetRenderbufferParameterivEXT, NULL, 892),
- NAME_FUNC_OFFSET(23605, glIsFramebufferEXT, glIsFramebufferEXT, NULL, 893),
- NAME_FUNC_OFFSET(23621, glIsRenderbufferEXT, glIsRenderbufferEXT, NULL, 894),
- NAME_FUNC_OFFSET(23638, glRenderbufferStorageEXT, glRenderbufferStorageEXT, NULL, 895),
- NAME_FUNC_OFFSET(23660, gl_dispatch_stub_896, gl_dispatch_stub_896, NULL, 896),
- NAME_FUNC_OFFSET(23678, glBindFragDataLocationEXT, glBindFragDataLocationEXT, NULL, 899),
- NAME_FUNC_OFFSET(23701, glGetFragDataLocationEXT, glGetFragDataLocationEXT, NULL, 900),
- NAME_FUNC_OFFSET(23723, glGetUniformuivEXT, glGetUniformuivEXT, NULL, 901),
- NAME_FUNC_OFFSET(23739, glGetVertexAttribIivEXT, glGetVertexAttribIivEXT, NULL, 902),
- NAME_FUNC_OFFSET(23760, glGetVertexAttribIuivEXT, glGetVertexAttribIuivEXT, NULL, 903),
- NAME_FUNC_OFFSET(23782, glUniform1uiEXT, glUniform1uiEXT, NULL, 904),
- NAME_FUNC_OFFSET(23795, glUniform1uivEXT, glUniform1uivEXT, NULL, 905),
- NAME_FUNC_OFFSET(23809, glUniform2uiEXT, glUniform2uiEXT, NULL, 906),
- NAME_FUNC_OFFSET(23822, glUniform2uivEXT, glUniform2uivEXT, NULL, 907),
- NAME_FUNC_OFFSET(23836, glUniform3uiEXT, glUniform3uiEXT, NULL, 908),
- NAME_FUNC_OFFSET(23849, glUniform3uivEXT, glUniform3uivEXT, NULL, 909),
- NAME_FUNC_OFFSET(23863, glUniform4uiEXT, glUniform4uiEXT, NULL, 910),
- NAME_FUNC_OFFSET(23876, glUniform4uivEXT, glUniform4uivEXT, NULL, 911),
- NAME_FUNC_OFFSET(23890, glVertexAttribI1iEXT, glVertexAttribI1iEXT, NULL, 912),
- NAME_FUNC_OFFSET(23908, glVertexAttribI1ivEXT, glVertexAttribI1ivEXT, NULL, 913),
- NAME_FUNC_OFFSET(23927, glVertexAttribI1uiEXT, glVertexAttribI1uiEXT, NULL, 914),
- NAME_FUNC_OFFSET(23946, glVertexAttribI1uivEXT, glVertexAttribI1uivEXT, NULL, 915),
- NAME_FUNC_OFFSET(23966, glVertexAttribI2iEXT, glVertexAttribI2iEXT, NULL, 916),
- NAME_FUNC_OFFSET(23984, glVertexAttribI2ivEXT, glVertexAttribI2ivEXT, NULL, 917),
- NAME_FUNC_OFFSET(24003, glVertexAttribI2uiEXT, glVertexAttribI2uiEXT, NULL, 918),
- NAME_FUNC_OFFSET(24022, glVertexAttribI2uivEXT, glVertexAttribI2uivEXT, NULL, 919),
- NAME_FUNC_OFFSET(24042, glVertexAttribI3iEXT, glVertexAttribI3iEXT, NULL, 920),
- NAME_FUNC_OFFSET(24060, glVertexAttribI3ivEXT, glVertexAttribI3ivEXT, NULL, 921),
- NAME_FUNC_OFFSET(24079, glVertexAttribI3uiEXT, glVertexAttribI3uiEXT, NULL, 922),
- NAME_FUNC_OFFSET(24098, glVertexAttribI3uivEXT, glVertexAttribI3uivEXT, NULL, 923),
- NAME_FUNC_OFFSET(24118, glVertexAttribI4bvEXT, glVertexAttribI4bvEXT, NULL, 924),
- NAME_FUNC_OFFSET(24137, glVertexAttribI4iEXT, glVertexAttribI4iEXT, NULL, 925),
- NAME_FUNC_OFFSET(24155, glVertexAttribI4ivEXT, glVertexAttribI4ivEXT, NULL, 926),
- NAME_FUNC_OFFSET(24174, glVertexAttribI4svEXT, glVertexAttribI4svEXT, NULL, 927),
- NAME_FUNC_OFFSET(24193, glVertexAttribI4ubvEXT, glVertexAttribI4ubvEXT, NULL, 928),
- NAME_FUNC_OFFSET(24213, glVertexAttribI4uiEXT, glVertexAttribI4uiEXT, NULL, 929),
- NAME_FUNC_OFFSET(24232, glVertexAttribI4uivEXT, glVertexAttribI4uivEXT, NULL, 930),
- NAME_FUNC_OFFSET(24252, glVertexAttribI4usvEXT, glVertexAttribI4usvEXT, NULL, 931),
- NAME_FUNC_OFFSET(24272, glVertexAttribIPointerEXT, glVertexAttribIPointerEXT, NULL, 932),
- NAME_FUNC_OFFSET(24295, glFramebufferTextureLayerEXT, glFramebufferTextureLayerEXT, NULL, 933),
- NAME_FUNC_OFFSET(24321, glFramebufferTextureLayerEXT, glFramebufferTextureLayerEXT, NULL, 933),
- NAME_FUNC_OFFSET(24350, glColorMaskIndexedEXT, glColorMaskIndexedEXT, NULL, 934),
- NAME_FUNC_OFFSET(24363, glDisableIndexedEXT, glDisableIndexedEXT, NULL, 935),
- NAME_FUNC_OFFSET(24374, glEnableIndexedEXT, glEnableIndexedEXT, NULL, 936),
- NAME_FUNC_OFFSET(24384, glGetBooleanIndexedvEXT, glGetBooleanIndexedvEXT, NULL, 937),
- NAME_FUNC_OFFSET(24400, glGetIntegerIndexedvEXT, glGetIntegerIndexedvEXT, NULL, 938),
- NAME_FUNC_OFFSET(24416, glIsEnabledIndexedEXT, glIsEnabledIndexedEXT, NULL, 939),
- NAME_FUNC_OFFSET(24429, glGetTexParameterIivEXT, glGetTexParameterIivEXT, NULL, 942),
- NAME_FUNC_OFFSET(24450, glGetTexParameterIuivEXT, glGetTexParameterIuivEXT, NULL, 943),
- NAME_FUNC_OFFSET(24472, glTexParameterIivEXT, glTexParameterIivEXT, NULL, 944),
- NAME_FUNC_OFFSET(24490, glTexParameterIuivEXT, glTexParameterIuivEXT, NULL, 945),
- NAME_FUNC_OFFSET(24509, glBeginConditionalRenderNV, glBeginConditionalRenderNV, NULL, 946),
- NAME_FUNC_OFFSET(24534, glEndConditionalRenderNV, glEndConditionalRenderNV, NULL, 947),
- NAME_FUNC_OFFSET(24557, glBeginTransformFeedbackEXT, glBeginTransformFeedbackEXT, NULL, 948),
- NAME_FUNC_OFFSET(24582, glBindBufferBaseEXT, glBindBufferBaseEXT, NULL, 949),
- NAME_FUNC_OFFSET(24599, glBindBufferRangeEXT, glBindBufferRangeEXT, NULL, 951),
- NAME_FUNC_OFFSET(24617, glEndTransformFeedbackEXT, glEndTransformFeedbackEXT, NULL, 952),
- NAME_FUNC_OFFSET(24640, glGetTransformFeedbackVaryingEXT, glGetTransformFeedbackVaryingEXT, NULL, 953),
- NAME_FUNC_OFFSET(24670, glTransformFeedbackVaryingsEXT, glTransformFeedbackVaryingsEXT, NULL, 954),
- NAME_FUNC_OFFSET(24698, glProvokingVertexEXT, glProvokingVertexEXT, NULL, 955),
- NAME_FUNC_OFFSET(24716, gl_dispatch_stub_966, gl_dispatch_stub_966, NULL, 966),
- NAME_FUNC_OFFSET(24737, gl_dispatch_stub_967, gl_dispatch_stub_967, NULL, 967),
+ NAME_FUNC_OFFSET( 6163, glClearBufferfi, glClearBufferfi, NULL, 430),
+ NAME_FUNC_OFFSET( 6179, glClearBufferfv, glClearBufferfv, NULL, 431),
+ NAME_FUNC_OFFSET( 6195, glClearBufferiv, glClearBufferiv, NULL, 432),
+ NAME_FUNC_OFFSET( 6211, glClearBufferuiv, glClearBufferuiv, NULL, 433),
+ NAME_FUNC_OFFSET( 6228, glGetStringi, glGetStringi, NULL, 434),
+ NAME_FUNC_OFFSET( 6241, glFramebufferTexture, glFramebufferTexture, NULL, 435),
+ NAME_FUNC_OFFSET( 6262, glGetBufferParameteri64v, glGetBufferParameteri64v, NULL, 436),
+ NAME_FUNC_OFFSET( 6287, glGetInteger64i_v, glGetInteger64i_v, NULL, 437),
+ NAME_FUNC_OFFSET( 6305, glLoadTransposeMatrixdARB, glLoadTransposeMatrixdARB, NULL, 438),
+ NAME_FUNC_OFFSET( 6331, glLoadTransposeMatrixfARB, glLoadTransposeMatrixfARB, NULL, 439),
+ NAME_FUNC_OFFSET( 6357, glMultTransposeMatrixdARB, glMultTransposeMatrixdARB, NULL, 440),
+ NAME_FUNC_OFFSET( 6383, glMultTransposeMatrixfARB, glMultTransposeMatrixfARB, NULL, 441),
+ NAME_FUNC_OFFSET( 6409, glSampleCoverageARB, glSampleCoverageARB, NULL, 442),
+ NAME_FUNC_OFFSET( 6429, glCompressedTexImage1DARB, glCompressedTexImage1DARB, NULL, 443),
+ NAME_FUNC_OFFSET( 6455, glCompressedTexImage2DARB, glCompressedTexImage2DARB, NULL, 444),
+ NAME_FUNC_OFFSET( 6481, glCompressedTexImage3DARB, glCompressedTexImage3DARB, NULL, 445),
+ NAME_FUNC_OFFSET( 6507, glCompressedTexSubImage1DARB, glCompressedTexSubImage1DARB, NULL, 446),
+ NAME_FUNC_OFFSET( 6536, glCompressedTexSubImage2DARB, glCompressedTexSubImage2DARB, NULL, 447),
+ NAME_FUNC_OFFSET( 6565, glCompressedTexSubImage3DARB, glCompressedTexSubImage3DARB, NULL, 448),
+ NAME_FUNC_OFFSET( 6594, glGetCompressedTexImageARB, glGetCompressedTexImageARB, NULL, 449),
+ NAME_FUNC_OFFSET( 6621, glDisableVertexAttribArrayARB, glDisableVertexAttribArrayARB, NULL, 450),
+ NAME_FUNC_OFFSET( 6651, glEnableVertexAttribArrayARB, glEnableVertexAttribArrayARB, NULL, 451),
+ NAME_FUNC_OFFSET( 6680, glGetProgramEnvParameterdvARB, glGetProgramEnvParameterdvARB, NULL, 452),
+ NAME_FUNC_OFFSET( 6710, glGetProgramEnvParameterfvARB, glGetProgramEnvParameterfvARB, NULL, 453),
+ NAME_FUNC_OFFSET( 6740, glGetProgramLocalParameterdvARB, glGetProgramLocalParameterdvARB, NULL, 454),
+ NAME_FUNC_OFFSET( 6772, glGetProgramLocalParameterfvARB, glGetProgramLocalParameterfvARB, NULL, 455),
+ NAME_FUNC_OFFSET( 6804, glGetProgramStringARB, glGetProgramStringARB, NULL, 456),
+ NAME_FUNC_OFFSET( 6826, glGetProgramivARB, glGetProgramivARB, NULL, 457),
+ NAME_FUNC_OFFSET( 6844, glGetVertexAttribdvARB, glGetVertexAttribdvARB, NULL, 458),
+ NAME_FUNC_OFFSET( 6867, glGetVertexAttribfvARB, glGetVertexAttribfvARB, NULL, 459),
+ NAME_FUNC_OFFSET( 6890, glGetVertexAttribivARB, glGetVertexAttribivARB, NULL, 460),
+ NAME_FUNC_OFFSET( 6913, glProgramEnvParameter4dARB, glProgramEnvParameter4dARB, NULL, 461),
+ NAME_FUNC_OFFSET( 6940, glProgramEnvParameter4dvARB, glProgramEnvParameter4dvARB, NULL, 462),
+ NAME_FUNC_OFFSET( 6968, glProgramEnvParameter4fARB, glProgramEnvParameter4fARB, NULL, 463),
+ NAME_FUNC_OFFSET( 6995, glProgramEnvParameter4fvARB, glProgramEnvParameter4fvARB, NULL, 464),
+ NAME_FUNC_OFFSET( 7023, glProgramLocalParameter4dARB, glProgramLocalParameter4dARB, NULL, 465),
+ NAME_FUNC_OFFSET( 7052, glProgramLocalParameter4dvARB, glProgramLocalParameter4dvARB, NULL, 466),
+ NAME_FUNC_OFFSET( 7082, glProgramLocalParameter4fARB, glProgramLocalParameter4fARB, NULL, 467),
+ NAME_FUNC_OFFSET( 7111, glProgramLocalParameter4fvARB, glProgramLocalParameter4fvARB, NULL, 468),
+ NAME_FUNC_OFFSET( 7141, glProgramStringARB, glProgramStringARB, NULL, 469),
+ NAME_FUNC_OFFSET( 7160, glVertexAttrib1dARB, glVertexAttrib1dARB, NULL, 470),
+ NAME_FUNC_OFFSET( 7180, glVertexAttrib1dvARB, glVertexAttrib1dvARB, NULL, 471),
+ NAME_FUNC_OFFSET( 7201, glVertexAttrib1fARB, glVertexAttrib1fARB, NULL, 472),
+ NAME_FUNC_OFFSET( 7221, glVertexAttrib1fvARB, glVertexAttrib1fvARB, NULL, 473),
+ NAME_FUNC_OFFSET( 7242, glVertexAttrib1sARB, glVertexAttrib1sARB, NULL, 474),
+ NAME_FUNC_OFFSET( 7262, glVertexAttrib1svARB, glVertexAttrib1svARB, NULL, 475),
+ NAME_FUNC_OFFSET( 7283, glVertexAttrib2dARB, glVertexAttrib2dARB, NULL, 476),
+ NAME_FUNC_OFFSET( 7303, glVertexAttrib2dvARB, glVertexAttrib2dvARB, NULL, 477),
+ NAME_FUNC_OFFSET( 7324, glVertexAttrib2fARB, glVertexAttrib2fARB, NULL, 478),
+ NAME_FUNC_OFFSET( 7344, glVertexAttrib2fvARB, glVertexAttrib2fvARB, NULL, 479),
+ NAME_FUNC_OFFSET( 7365, glVertexAttrib2sARB, glVertexAttrib2sARB, NULL, 480),
+ NAME_FUNC_OFFSET( 7385, glVertexAttrib2svARB, glVertexAttrib2svARB, NULL, 481),
+ NAME_FUNC_OFFSET( 7406, glVertexAttrib3dARB, glVertexAttrib3dARB, NULL, 482),
+ NAME_FUNC_OFFSET( 7426, glVertexAttrib3dvARB, glVertexAttrib3dvARB, NULL, 483),
+ NAME_FUNC_OFFSET( 7447, glVertexAttrib3fARB, glVertexAttrib3fARB, NULL, 484),
+ NAME_FUNC_OFFSET( 7467, glVertexAttrib3fvARB, glVertexAttrib3fvARB, NULL, 485),
+ NAME_FUNC_OFFSET( 7488, glVertexAttrib3sARB, glVertexAttrib3sARB, NULL, 486),
+ NAME_FUNC_OFFSET( 7508, glVertexAttrib3svARB, glVertexAttrib3svARB, NULL, 487),
+ NAME_FUNC_OFFSET( 7529, glVertexAttrib4NbvARB, glVertexAttrib4NbvARB, NULL, 488),
+ NAME_FUNC_OFFSET( 7551, glVertexAttrib4NivARB, glVertexAttrib4NivARB, NULL, 489),
+ NAME_FUNC_OFFSET( 7573, glVertexAttrib4NsvARB, glVertexAttrib4NsvARB, NULL, 490),
+ NAME_FUNC_OFFSET( 7595, glVertexAttrib4NubARB, glVertexAttrib4NubARB, NULL, 491),
+ NAME_FUNC_OFFSET( 7617, glVertexAttrib4NubvARB, glVertexAttrib4NubvARB, NULL, 492),
+ NAME_FUNC_OFFSET( 7640, glVertexAttrib4NuivARB, glVertexAttrib4NuivARB, NULL, 493),
+ NAME_FUNC_OFFSET( 7663, glVertexAttrib4NusvARB, glVertexAttrib4NusvARB, NULL, 494),
+ NAME_FUNC_OFFSET( 7686, glVertexAttrib4bvARB, glVertexAttrib4bvARB, NULL, 495),
+ NAME_FUNC_OFFSET( 7707, glVertexAttrib4dARB, glVertexAttrib4dARB, NULL, 496),
+ NAME_FUNC_OFFSET( 7727, glVertexAttrib4dvARB, glVertexAttrib4dvARB, NULL, 497),
+ NAME_FUNC_OFFSET( 7748, glVertexAttrib4fARB, glVertexAttrib4fARB, NULL, 498),
+ NAME_FUNC_OFFSET( 7768, glVertexAttrib4fvARB, glVertexAttrib4fvARB, NULL, 499),
+ NAME_FUNC_OFFSET( 7789, glVertexAttrib4ivARB, glVertexAttrib4ivARB, NULL, 500),
+ NAME_FUNC_OFFSET( 7810, glVertexAttrib4sARB, glVertexAttrib4sARB, NULL, 501),
+ NAME_FUNC_OFFSET( 7830, glVertexAttrib4svARB, glVertexAttrib4svARB, NULL, 502),
+ NAME_FUNC_OFFSET( 7851, glVertexAttrib4ubvARB, glVertexAttrib4ubvARB, NULL, 503),
+ NAME_FUNC_OFFSET( 7873, glVertexAttrib4uivARB, glVertexAttrib4uivARB, NULL, 504),
+ NAME_FUNC_OFFSET( 7895, glVertexAttrib4usvARB, glVertexAttrib4usvARB, NULL, 505),
+ NAME_FUNC_OFFSET( 7917, glVertexAttribPointerARB, glVertexAttribPointerARB, NULL, 506),
+ NAME_FUNC_OFFSET( 7942, glBindBufferARB, glBindBufferARB, NULL, 507),
+ NAME_FUNC_OFFSET( 7958, glBufferDataARB, glBufferDataARB, NULL, 508),
+ NAME_FUNC_OFFSET( 7974, glBufferSubDataARB, glBufferSubDataARB, NULL, 509),
+ NAME_FUNC_OFFSET( 7993, glDeleteBuffersARB, glDeleteBuffersARB, NULL, 510),
+ NAME_FUNC_OFFSET( 8012, glGenBuffersARB, glGenBuffersARB, NULL, 511),
+ NAME_FUNC_OFFSET( 8028, glGetBufferParameterivARB, glGetBufferParameterivARB, NULL, 512),
+ NAME_FUNC_OFFSET( 8054, glGetBufferPointervARB, glGetBufferPointervARB, NULL, 513),
+ NAME_FUNC_OFFSET( 8077, glGetBufferSubDataARB, glGetBufferSubDataARB, NULL, 514),
+ NAME_FUNC_OFFSET( 8099, glIsBufferARB, glIsBufferARB, NULL, 515),
+ NAME_FUNC_OFFSET( 8113, glMapBufferARB, glMapBufferARB, NULL, 516),
+ NAME_FUNC_OFFSET( 8128, glUnmapBufferARB, glUnmapBufferARB, NULL, 517),
+ NAME_FUNC_OFFSET( 8145, glBeginQueryARB, glBeginQueryARB, NULL, 518),
+ NAME_FUNC_OFFSET( 8161, glDeleteQueriesARB, glDeleteQueriesARB, NULL, 519),
+ NAME_FUNC_OFFSET( 8180, glEndQueryARB, glEndQueryARB, NULL, 520),
+ NAME_FUNC_OFFSET( 8194, glGenQueriesARB, glGenQueriesARB, NULL, 521),
+ NAME_FUNC_OFFSET( 8210, glGetQueryObjectivARB, glGetQueryObjectivARB, NULL, 522),
+ NAME_FUNC_OFFSET( 8232, glGetQueryObjectuivARB, glGetQueryObjectuivARB, NULL, 523),
+ NAME_FUNC_OFFSET( 8255, glGetQueryivARB, glGetQueryivARB, NULL, 524),
+ NAME_FUNC_OFFSET( 8271, glIsQueryARB, glIsQueryARB, NULL, 525),
+ NAME_FUNC_OFFSET( 8284, glAttachObjectARB, glAttachObjectARB, NULL, 526),
+ NAME_FUNC_OFFSET( 8302, glCompileShaderARB, glCompileShaderARB, NULL, 527),
+ NAME_FUNC_OFFSET( 8321, glCreateProgramObjectARB, glCreateProgramObjectARB, NULL, 528),
+ NAME_FUNC_OFFSET( 8346, glCreateShaderObjectARB, glCreateShaderObjectARB, NULL, 529),
+ NAME_FUNC_OFFSET( 8370, glDeleteObjectARB, glDeleteObjectARB, NULL, 530),
+ NAME_FUNC_OFFSET( 8388, glDetachObjectARB, glDetachObjectARB, NULL, 531),
+ NAME_FUNC_OFFSET( 8406, glGetActiveUniformARB, glGetActiveUniformARB, NULL, 532),
+ NAME_FUNC_OFFSET( 8428, glGetAttachedObjectsARB, glGetAttachedObjectsARB, NULL, 533),
+ NAME_FUNC_OFFSET( 8452, glGetHandleARB, glGetHandleARB, NULL, 534),
+ NAME_FUNC_OFFSET( 8467, glGetInfoLogARB, glGetInfoLogARB, NULL, 535),
+ NAME_FUNC_OFFSET( 8483, glGetObjectParameterfvARB, glGetObjectParameterfvARB, NULL, 536),
+ NAME_FUNC_OFFSET( 8509, glGetObjectParameterivARB, glGetObjectParameterivARB, NULL, 537),
+ NAME_FUNC_OFFSET( 8535, glGetShaderSourceARB, glGetShaderSourceARB, NULL, 538),
+ NAME_FUNC_OFFSET( 8556, glGetUniformLocationARB, glGetUniformLocationARB, NULL, 539),
+ NAME_FUNC_OFFSET( 8580, glGetUniformfvARB, glGetUniformfvARB, NULL, 540),
+ NAME_FUNC_OFFSET( 8598, glGetUniformivARB, glGetUniformivARB, NULL, 541),
+ NAME_FUNC_OFFSET( 8616, glLinkProgramARB, glLinkProgramARB, NULL, 542),
+ NAME_FUNC_OFFSET( 8633, glShaderSourceARB, glShaderSourceARB, NULL, 543),
+ NAME_FUNC_OFFSET( 8651, glUniform1fARB, glUniform1fARB, NULL, 544),
+ NAME_FUNC_OFFSET( 8666, glUniform1fvARB, glUniform1fvARB, NULL, 545),
+ NAME_FUNC_OFFSET( 8682, glUniform1iARB, glUniform1iARB, NULL, 546),
+ NAME_FUNC_OFFSET( 8697, glUniform1ivARB, glUniform1ivARB, NULL, 547),
+ NAME_FUNC_OFFSET( 8713, glUniform2fARB, glUniform2fARB, NULL, 548),
+ NAME_FUNC_OFFSET( 8728, glUniform2fvARB, glUniform2fvARB, NULL, 549),
+ NAME_FUNC_OFFSET( 8744, glUniform2iARB, glUniform2iARB, NULL, 550),
+ NAME_FUNC_OFFSET( 8759, glUniform2ivARB, glUniform2ivARB, NULL, 551),
+ NAME_FUNC_OFFSET( 8775, glUniform3fARB, glUniform3fARB, NULL, 552),
+ NAME_FUNC_OFFSET( 8790, glUniform3fvARB, glUniform3fvARB, NULL, 553),
+ NAME_FUNC_OFFSET( 8806, glUniform3iARB, glUniform3iARB, NULL, 554),
+ NAME_FUNC_OFFSET( 8821, glUniform3ivARB, glUniform3ivARB, NULL, 555),
+ NAME_FUNC_OFFSET( 8837, glUniform4fARB, glUniform4fARB, NULL, 556),
+ NAME_FUNC_OFFSET( 8852, glUniform4fvARB, glUniform4fvARB, NULL, 557),
+ NAME_FUNC_OFFSET( 8868, glUniform4iARB, glUniform4iARB, NULL, 558),
+ NAME_FUNC_OFFSET( 8883, glUniform4ivARB, glUniform4ivARB, NULL, 559),
+ NAME_FUNC_OFFSET( 8899, glUniformMatrix2fvARB, glUniformMatrix2fvARB, NULL, 560),
+ NAME_FUNC_OFFSET( 8921, glUniformMatrix3fvARB, glUniformMatrix3fvARB, NULL, 561),
+ NAME_FUNC_OFFSET( 8943, glUniformMatrix4fvARB, glUniformMatrix4fvARB, NULL, 562),
+ NAME_FUNC_OFFSET( 8965, glUseProgramObjectARB, glUseProgramObjectARB, NULL, 563),
+ NAME_FUNC_OFFSET( 8987, glValidateProgramARB, glValidateProgramARB, NULL, 564),
+ NAME_FUNC_OFFSET( 9008, glBindAttribLocationARB, glBindAttribLocationARB, NULL, 565),
+ NAME_FUNC_OFFSET( 9032, glGetActiveAttribARB, glGetActiveAttribARB, NULL, 566),
+ NAME_FUNC_OFFSET( 9053, glGetAttribLocationARB, glGetAttribLocationARB, NULL, 567),
+ NAME_FUNC_OFFSET( 9076, glDrawBuffersARB, glDrawBuffersARB, NULL, 568),
+ NAME_FUNC_OFFSET( 9093, glClampColorARB, glClampColorARB, NULL, 569),
+ NAME_FUNC_OFFSET( 9109, glDrawArraysInstancedARB, glDrawArraysInstancedARB, NULL, 570),
+ NAME_FUNC_OFFSET( 9134, glDrawElementsInstancedARB, glDrawElementsInstancedARB, NULL, 571),
+ NAME_FUNC_OFFSET( 9161, glRenderbufferStorageMultisample, glRenderbufferStorageMultisample, NULL, 572),
+ NAME_FUNC_OFFSET( 9194, glFramebufferTextureFaceARB, glFramebufferTextureFaceARB, NULL, 573),
+ NAME_FUNC_OFFSET( 9222, glVertexAttribDivisorARB, glVertexAttribDivisorARB, NULL, 574),
+ NAME_FUNC_OFFSET( 9247, glFlushMappedBufferRange, glFlushMappedBufferRange, NULL, 575),
+ NAME_FUNC_OFFSET( 9272, glMapBufferRange, glMapBufferRange, NULL, 576),
+ NAME_FUNC_OFFSET( 9289, glTexBufferARB, glTexBufferARB, NULL, 577),
+ NAME_FUNC_OFFSET( 9304, glBindVertexArray, glBindVertexArray, NULL, 578),
+ NAME_FUNC_OFFSET( 9322, glGenVertexArrays, glGenVertexArrays, NULL, 579),
+ NAME_FUNC_OFFSET( 9340, glGetActiveUniformBlockName, glGetActiveUniformBlockName, NULL, 580),
+ NAME_FUNC_OFFSET( 9368, glGetActiveUniformBlockiv, glGetActiveUniformBlockiv, NULL, 581),
+ NAME_FUNC_OFFSET( 9394, glGetActiveUniformName, glGetActiveUniformName, NULL, 582),
+ NAME_FUNC_OFFSET( 9417, glGetActiveUniformsiv, glGetActiveUniformsiv, NULL, 583),
+ NAME_FUNC_OFFSET( 9439, glGetUniformBlockIndex, glGetUniformBlockIndex, NULL, 584),
+ NAME_FUNC_OFFSET( 9462, glGetUniformIndices, glGetUniformIndices, NULL, 585),
+ NAME_FUNC_OFFSET( 9482, glUniformBlockBinding, glUniformBlockBinding, NULL, 586),
+ NAME_FUNC_OFFSET( 9504, glCopyBufferSubData, glCopyBufferSubData, NULL, 587),
+ NAME_FUNC_OFFSET( 9524, glClientWaitSync, glClientWaitSync, NULL, 588),
+ NAME_FUNC_OFFSET( 9541, glDeleteSync, glDeleteSync, NULL, 589),
+ NAME_FUNC_OFFSET( 9554, glFenceSync, glFenceSync, NULL, 590),
+ NAME_FUNC_OFFSET( 9566, glGetInteger64v, glGetInteger64v, NULL, 591),
+ NAME_FUNC_OFFSET( 9582, glGetSynciv, glGetSynciv, NULL, 592),
+ NAME_FUNC_OFFSET( 9594, glIsSync, glIsSync, NULL, 593),
+ NAME_FUNC_OFFSET( 9603, glWaitSync, glWaitSync, NULL, 594),
+ NAME_FUNC_OFFSET( 9614, glDrawElementsBaseVertex, glDrawElementsBaseVertex, NULL, 595),
+ NAME_FUNC_OFFSET( 9639, glDrawElementsInstancedBaseVertex, glDrawElementsInstancedBaseVertex, NULL, 596),
+ NAME_FUNC_OFFSET( 9673, glDrawRangeElementsBaseVertex, glDrawRangeElementsBaseVertex, NULL, 597),
+ NAME_FUNC_OFFSET( 9703, glMultiDrawElementsBaseVertex, glMultiDrawElementsBaseVertex, NULL, 598),
+ NAME_FUNC_OFFSET( 9733, glBlendEquationSeparateiARB, glBlendEquationSeparateiARB, NULL, 599),
+ NAME_FUNC_OFFSET( 9761, glBlendEquationiARB, glBlendEquationiARB, NULL, 600),
+ NAME_FUNC_OFFSET( 9781, glBlendFuncSeparateiARB, glBlendFuncSeparateiARB, NULL, 601),
+ NAME_FUNC_OFFSET( 9805, glBlendFunciARB, glBlendFunciARB, NULL, 602),
+ NAME_FUNC_OFFSET( 9821, glBindFragDataLocationIndexed, glBindFragDataLocationIndexed, NULL, 603),
+ NAME_FUNC_OFFSET( 9851, glGetFragDataIndex, glGetFragDataIndex, NULL, 604),
+ NAME_FUNC_OFFSET( 9870, glBindSampler, glBindSampler, NULL, 605),
+ NAME_FUNC_OFFSET( 9884, glDeleteSamplers, glDeleteSamplers, NULL, 606),
+ NAME_FUNC_OFFSET( 9901, glGenSamplers, glGenSamplers, NULL, 607),
+ NAME_FUNC_OFFSET( 9915, glGetSamplerParameterIiv, glGetSamplerParameterIiv, NULL, 608),
+ NAME_FUNC_OFFSET( 9940, glGetSamplerParameterIuiv, glGetSamplerParameterIuiv, NULL, 609),
+ NAME_FUNC_OFFSET( 9966, glGetSamplerParameterfv, glGetSamplerParameterfv, NULL, 610),
+ NAME_FUNC_OFFSET( 9990, glGetSamplerParameteriv, glGetSamplerParameteriv, NULL, 611),
+ NAME_FUNC_OFFSET(10014, glIsSampler, glIsSampler, NULL, 612),
+ NAME_FUNC_OFFSET(10026, glSamplerParameterIiv, glSamplerParameterIiv, NULL, 613),
+ NAME_FUNC_OFFSET(10048, glSamplerParameterIuiv, glSamplerParameterIuiv, NULL, 614),
+ NAME_FUNC_OFFSET(10071, glSamplerParameterf, glSamplerParameterf, NULL, 615),
+ NAME_FUNC_OFFSET(10091, glSamplerParameterfv, glSamplerParameterfv, NULL, 616),
+ NAME_FUNC_OFFSET(10112, glSamplerParameteri, glSamplerParameteri, NULL, 617),
+ NAME_FUNC_OFFSET(10132, glSamplerParameteriv, glSamplerParameteriv, NULL, 618),
+ NAME_FUNC_OFFSET(10153, gl_dispatch_stub_619, gl_dispatch_stub_619, NULL, 619),
+ NAME_FUNC_OFFSET(10168, glColorP3ui, glColorP3ui, NULL, 620),
+ NAME_FUNC_OFFSET(10180, glColorP3uiv, glColorP3uiv, NULL, 621),
+ NAME_FUNC_OFFSET(10193, glColorP4ui, glColorP4ui, NULL, 622),
+ NAME_FUNC_OFFSET(10205, glColorP4uiv, glColorP4uiv, NULL, 623),
+ NAME_FUNC_OFFSET(10218, glMultiTexCoordP1ui, glMultiTexCoordP1ui, NULL, 624),
+ NAME_FUNC_OFFSET(10238, glMultiTexCoordP1uiv, glMultiTexCoordP1uiv, NULL, 625),
+ NAME_FUNC_OFFSET(10259, glMultiTexCoordP2ui, glMultiTexCoordP2ui, NULL, 626),
+ NAME_FUNC_OFFSET(10279, glMultiTexCoordP2uiv, glMultiTexCoordP2uiv, NULL, 627),
+ NAME_FUNC_OFFSET(10300, glMultiTexCoordP3ui, glMultiTexCoordP3ui, NULL, 628),
+ NAME_FUNC_OFFSET(10320, glMultiTexCoordP3uiv, glMultiTexCoordP3uiv, NULL, 629),
+ NAME_FUNC_OFFSET(10341, glMultiTexCoordP4ui, glMultiTexCoordP4ui, NULL, 630),
+ NAME_FUNC_OFFSET(10361, glMultiTexCoordP4uiv, glMultiTexCoordP4uiv, NULL, 631),
+ NAME_FUNC_OFFSET(10382, glNormalP3ui, glNormalP3ui, NULL, 632),
+ NAME_FUNC_OFFSET(10395, glNormalP3uiv, glNormalP3uiv, NULL, 633),
+ NAME_FUNC_OFFSET(10409, glSecondaryColorP3ui, glSecondaryColorP3ui, NULL, 634),
+ NAME_FUNC_OFFSET(10430, glSecondaryColorP3uiv, glSecondaryColorP3uiv, NULL, 635),
+ NAME_FUNC_OFFSET(10452, glTexCoordP1ui, glTexCoordP1ui, NULL, 636),
+ NAME_FUNC_OFFSET(10467, glTexCoordP1uiv, glTexCoordP1uiv, NULL, 637),
+ NAME_FUNC_OFFSET(10483, glTexCoordP2ui, glTexCoordP2ui, NULL, 638),
+ NAME_FUNC_OFFSET(10498, glTexCoordP2uiv, glTexCoordP2uiv, NULL, 639),
+ NAME_FUNC_OFFSET(10514, glTexCoordP3ui, glTexCoordP3ui, NULL, 640),
+ NAME_FUNC_OFFSET(10529, glTexCoordP3uiv, glTexCoordP3uiv, NULL, 641),
+ NAME_FUNC_OFFSET(10545, glTexCoordP4ui, glTexCoordP4ui, NULL, 642),
+ NAME_FUNC_OFFSET(10560, glTexCoordP4uiv, glTexCoordP4uiv, NULL, 643),
+ NAME_FUNC_OFFSET(10576, glVertexAttribP1ui, glVertexAttribP1ui, NULL, 644),
+ NAME_FUNC_OFFSET(10595, glVertexAttribP1uiv, glVertexAttribP1uiv, NULL, 645),
+ NAME_FUNC_OFFSET(10615, glVertexAttribP2ui, glVertexAttribP2ui, NULL, 646),
+ NAME_FUNC_OFFSET(10634, glVertexAttribP2uiv, glVertexAttribP2uiv, NULL, 647),
+ NAME_FUNC_OFFSET(10654, glVertexAttribP3ui, glVertexAttribP3ui, NULL, 648),
+ NAME_FUNC_OFFSET(10673, glVertexAttribP3uiv, glVertexAttribP3uiv, NULL, 649),
+ NAME_FUNC_OFFSET(10693, glVertexAttribP4ui, glVertexAttribP4ui, NULL, 650),
+ NAME_FUNC_OFFSET(10712, glVertexAttribP4uiv, glVertexAttribP4uiv, NULL, 651),
+ NAME_FUNC_OFFSET(10732, glVertexP2ui, glVertexP2ui, NULL, 652),
+ NAME_FUNC_OFFSET(10745, glVertexP2uiv, glVertexP2uiv, NULL, 653),
+ NAME_FUNC_OFFSET(10759, glVertexP3ui, glVertexP3ui, NULL, 654),
+ NAME_FUNC_OFFSET(10772, glVertexP3uiv, glVertexP3uiv, NULL, 655),
+ NAME_FUNC_OFFSET(10786, glVertexP4ui, glVertexP4ui, NULL, 656),
+ NAME_FUNC_OFFSET(10799, glVertexP4uiv, glVertexP4uiv, NULL, 657),
+ NAME_FUNC_OFFSET(10813, glBindTransformFeedback, glBindTransformFeedback, NULL, 658),
+ NAME_FUNC_OFFSET(10837, glDeleteTransformFeedbacks, glDeleteTransformFeedbacks, NULL, 659),
+ NAME_FUNC_OFFSET(10864, glDrawTransformFeedback, glDrawTransformFeedback, NULL, 660),
+ NAME_FUNC_OFFSET(10888, glGenTransformFeedbacks, glGenTransformFeedbacks, NULL, 661),
+ NAME_FUNC_OFFSET(10912, glIsTransformFeedback, glIsTransformFeedback, NULL, 662),
+ NAME_FUNC_OFFSET(10934, glPauseTransformFeedback, glPauseTransformFeedback, NULL, 663),
+ NAME_FUNC_OFFSET(10959, glResumeTransformFeedback, glResumeTransformFeedback, NULL, 664),
+ NAME_FUNC_OFFSET(10985, glBeginQueryIndexed, glBeginQueryIndexed, NULL, 665),
+ NAME_FUNC_OFFSET(11005, glDrawTransformFeedbackStream, glDrawTransformFeedbackStream, NULL, 666),
+ NAME_FUNC_OFFSET(11035, glEndQueryIndexed, glEndQueryIndexed, NULL, 667),
+ NAME_FUNC_OFFSET(11053, glGetQueryIndexediv, glGetQueryIndexediv, NULL, 668),
+ NAME_FUNC_OFFSET(11073, glClearDepthf, glClearDepthf, NULL, 669),
+ NAME_FUNC_OFFSET(11087, glDepthRangef, glDepthRangef, NULL, 670),
+ NAME_FUNC_OFFSET(11101, glGetShaderPrecisionFormat, glGetShaderPrecisionFormat, NULL, 671),
+ NAME_FUNC_OFFSET(11128, glReleaseShaderCompiler, glReleaseShaderCompiler, NULL, 672),
+ NAME_FUNC_OFFSET(11152, glShaderBinary, glShaderBinary, NULL, 673),
+ NAME_FUNC_OFFSET(11167, gl_dispatch_stub_674, gl_dispatch_stub_674, NULL, 674),
+ NAME_FUNC_OFFSET(11186, gl_dispatch_stub_675, gl_dispatch_stub_675, NULL, 675),
+ NAME_FUNC_OFFSET(11202, gl_dispatch_stub_676, gl_dispatch_stub_676, NULL, 676),
+ NAME_FUNC_OFFSET(11222, glDebugMessageCallbackARB, glDebugMessageCallbackARB, NULL, 677),
+ NAME_FUNC_OFFSET(11248, glDebugMessageControlARB, glDebugMessageControlARB, NULL, 678),
+ NAME_FUNC_OFFSET(11273, glDebugMessageInsertARB, glDebugMessageInsertARB, NULL, 679),
+ NAME_FUNC_OFFSET(11297, glGetDebugMessageLogARB, glGetDebugMessageLogARB, NULL, 680),
+ NAME_FUNC_OFFSET(11321, glGetGraphicsResetStatusARB, glGetGraphicsResetStatusARB, NULL, 681),
+ NAME_FUNC_OFFSET(11349, glGetnColorTableARB, glGetnColorTableARB, NULL, 682),
+ NAME_FUNC_OFFSET(11369, glGetnCompressedTexImageARB, glGetnCompressedTexImageARB, NULL, 683),
+ NAME_FUNC_OFFSET(11397, glGetnConvolutionFilterARB, glGetnConvolutionFilterARB, NULL, 684),
+ NAME_FUNC_OFFSET(11424, glGetnHistogramARB, glGetnHistogramARB, NULL, 685),
+ NAME_FUNC_OFFSET(11443, glGetnMapdvARB, glGetnMapdvARB, NULL, 686),
+ NAME_FUNC_OFFSET(11458, glGetnMapfvARB, glGetnMapfvARB, NULL, 687),
+ NAME_FUNC_OFFSET(11473, glGetnMapivARB, glGetnMapivARB, NULL, 688),
+ NAME_FUNC_OFFSET(11488, glGetnMinmaxARB, glGetnMinmaxARB, NULL, 689),
+ NAME_FUNC_OFFSET(11504, glGetnPixelMapfvARB, glGetnPixelMapfvARB, NULL, 690),
+ NAME_FUNC_OFFSET(11524, glGetnPixelMapuivARB, glGetnPixelMapuivARB, NULL, 691),
+ NAME_FUNC_OFFSET(11545, glGetnPixelMapusvARB, glGetnPixelMapusvARB, NULL, 692),
+ NAME_FUNC_OFFSET(11566, glGetnPolygonStippleARB, glGetnPolygonStippleARB, NULL, 693),
+ NAME_FUNC_OFFSET(11590, glGetnSeparableFilterARB, glGetnSeparableFilterARB, NULL, 694),
+ NAME_FUNC_OFFSET(11615, glGetnTexImageARB, glGetnTexImageARB, NULL, 695),
+ NAME_FUNC_OFFSET(11633, glGetnUniformdvARB, glGetnUniformdvARB, NULL, 696),
+ NAME_FUNC_OFFSET(11652, glGetnUniformfvARB, glGetnUniformfvARB, NULL, 697),
+ NAME_FUNC_OFFSET(11671, glGetnUniformivARB, glGetnUniformivARB, NULL, 698),
+ NAME_FUNC_OFFSET(11690, glGetnUniformuivARB, glGetnUniformuivARB, NULL, 699),
+ NAME_FUNC_OFFSET(11710, glReadnPixelsARB, glReadnPixelsARB, NULL, 700),
+ NAME_FUNC_OFFSET(11727, glDrawArraysInstancedBaseInstance, glDrawArraysInstancedBaseInstance, NULL, 701),
+ NAME_FUNC_OFFSET(11761, glDrawElementsInstancedBaseInstance, glDrawElementsInstancedBaseInstance, NULL, 702),
+ NAME_FUNC_OFFSET(11797, glDrawElementsInstancedBaseVertexBaseInstance, glDrawElementsInstancedBaseVertexBaseInstance, NULL, 703),
+ NAME_FUNC_OFFSET(11843, glDrawTransformFeedbackInstanced, glDrawTransformFeedbackInstanced, NULL, 704),
+ NAME_FUNC_OFFSET(11876, glDrawTransformFeedbackStreamInstanced, glDrawTransformFeedbackStreamInstanced, NULL, 705),
+ NAME_FUNC_OFFSET(11915, glTexStorage1D, glTexStorage1D, NULL, 706),
+ NAME_FUNC_OFFSET(11930, glTexStorage2D, glTexStorage2D, NULL, 707),
+ NAME_FUNC_OFFSET(11945, glTexStorage3D, glTexStorage3D, NULL, 708),
+ NAME_FUNC_OFFSET(11960, glTextureStorage1DEXT, glTextureStorage1DEXT, NULL, 709),
+ NAME_FUNC_OFFSET(11982, glTextureStorage2DEXT, glTextureStorage2DEXT, NULL, 710),
+ NAME_FUNC_OFFSET(12004, glTextureStorage3DEXT, glTextureStorage3DEXT, NULL, 711),
+ NAME_FUNC_OFFSET(12026, glInvalidateBufferData, glInvalidateBufferData, NULL, 712),
+ NAME_FUNC_OFFSET(12049, glInvalidateBufferSubData, glInvalidateBufferSubData, NULL, 713),
+ NAME_FUNC_OFFSET(12075, glInvalidateFramebuffer, glInvalidateFramebuffer, NULL, 714),
+ NAME_FUNC_OFFSET(12099, glInvalidateSubFramebuffer, glInvalidateSubFramebuffer, NULL, 715),
+ NAME_FUNC_OFFSET(12126, glInvalidateTexImage, glInvalidateTexImage, NULL, 716),
+ NAME_FUNC_OFFSET(12147, glInvalidateTexSubImage, glInvalidateTexSubImage, NULL, 717),
+ NAME_FUNC_OFFSET(12171, glPolygonOffsetEXT, glPolygonOffsetEXT, NULL, 718),
+ NAME_FUNC_OFFSET(12190, gl_dispatch_stub_719, gl_dispatch_stub_719, NULL, 719),
+ NAME_FUNC_OFFSET(12207, gl_dispatch_stub_720, gl_dispatch_stub_720, NULL, 720),
+ NAME_FUNC_OFFSET(12227, glColorPointerEXT, glColorPointerEXT, NULL, 721),
+ NAME_FUNC_OFFSET(12245, glEdgeFlagPointerEXT, glEdgeFlagPointerEXT, NULL, 722),
+ NAME_FUNC_OFFSET(12266, glIndexPointerEXT, glIndexPointerEXT, NULL, 723),
+ NAME_FUNC_OFFSET(12284, glNormalPointerEXT, glNormalPointerEXT, NULL, 724),
+ NAME_FUNC_OFFSET(12303, glTexCoordPointerEXT, glTexCoordPointerEXT, NULL, 725),
+ NAME_FUNC_OFFSET(12324, glVertexPointerEXT, glVertexPointerEXT, NULL, 726),
+ NAME_FUNC_OFFSET(12343, glPointParameterfEXT, glPointParameterfEXT, NULL, 727),
+ NAME_FUNC_OFFSET(12364, glPointParameterfvEXT, glPointParameterfvEXT, NULL, 728),
+ NAME_FUNC_OFFSET(12386, glLockArraysEXT, glLockArraysEXT, NULL, 729),
+ NAME_FUNC_OFFSET(12402, glUnlockArraysEXT, glUnlockArraysEXT, NULL, 730),
+ NAME_FUNC_OFFSET(12420, glSecondaryColor3bEXT, glSecondaryColor3bEXT, NULL, 731),
+ NAME_FUNC_OFFSET(12442, glSecondaryColor3bvEXT, glSecondaryColor3bvEXT, NULL, 732),
+ NAME_FUNC_OFFSET(12465, glSecondaryColor3dEXT, glSecondaryColor3dEXT, NULL, 733),
+ NAME_FUNC_OFFSET(12487, glSecondaryColor3dvEXT, glSecondaryColor3dvEXT, NULL, 734),
+ NAME_FUNC_OFFSET(12510, glSecondaryColor3fEXT, glSecondaryColor3fEXT, NULL, 735),
+ NAME_FUNC_OFFSET(12532, glSecondaryColor3fvEXT, glSecondaryColor3fvEXT, NULL, 736),
+ NAME_FUNC_OFFSET(12555, glSecondaryColor3iEXT, glSecondaryColor3iEXT, NULL, 737),
+ NAME_FUNC_OFFSET(12577, glSecondaryColor3ivEXT, glSecondaryColor3ivEXT, NULL, 738),
+ NAME_FUNC_OFFSET(12600, glSecondaryColor3sEXT, glSecondaryColor3sEXT, NULL, 739),
+ NAME_FUNC_OFFSET(12622, glSecondaryColor3svEXT, glSecondaryColor3svEXT, NULL, 740),
+ NAME_FUNC_OFFSET(12645, glSecondaryColor3ubEXT, glSecondaryColor3ubEXT, NULL, 741),
+ NAME_FUNC_OFFSET(12668, glSecondaryColor3ubvEXT, glSecondaryColor3ubvEXT, NULL, 742),
+ NAME_FUNC_OFFSET(12692, glSecondaryColor3uiEXT, glSecondaryColor3uiEXT, NULL, 743),
+ NAME_FUNC_OFFSET(12715, glSecondaryColor3uivEXT, glSecondaryColor3uivEXT, NULL, 744),
+ NAME_FUNC_OFFSET(12739, glSecondaryColor3usEXT, glSecondaryColor3usEXT, NULL, 745),
+ NAME_FUNC_OFFSET(12762, glSecondaryColor3usvEXT, glSecondaryColor3usvEXT, NULL, 746),
+ NAME_FUNC_OFFSET(12786, glSecondaryColorPointerEXT, glSecondaryColorPointerEXT, NULL, 747),
+ NAME_FUNC_OFFSET(12813, glMultiDrawArraysEXT, glMultiDrawArraysEXT, NULL, 748),
+ NAME_FUNC_OFFSET(12834, glMultiDrawElementsEXT, glMultiDrawElementsEXT, NULL, 749),
+ NAME_FUNC_OFFSET(12857, glFogCoordPointerEXT, glFogCoordPointerEXT, NULL, 750),
+ NAME_FUNC_OFFSET(12878, glFogCoorddEXT, glFogCoorddEXT, NULL, 751),
+ NAME_FUNC_OFFSET(12893, glFogCoorddvEXT, glFogCoorddvEXT, NULL, 752),
+ NAME_FUNC_OFFSET(12909, glFogCoordfEXT, glFogCoordfEXT, NULL, 753),
+ NAME_FUNC_OFFSET(12924, glFogCoordfvEXT, glFogCoordfvEXT, NULL, 754),
+ NAME_FUNC_OFFSET(12940, glBlendFuncSeparateEXT, glBlendFuncSeparateEXT, NULL, 755),
+ NAME_FUNC_OFFSET(12963, glResizeBuffersMESA, glResizeBuffersMESA, NULL, 756),
+ NAME_FUNC_OFFSET(12983, glWindowPos2dMESA, glWindowPos2dMESA, NULL, 757),
+ NAME_FUNC_OFFSET(13001, glWindowPos2dvMESA, glWindowPos2dvMESA, NULL, 758),
+ NAME_FUNC_OFFSET(13020, glWindowPos2fMESA, glWindowPos2fMESA, NULL, 759),
+ NAME_FUNC_OFFSET(13038, glWindowPos2fvMESA, glWindowPos2fvMESA, NULL, 760),
+ NAME_FUNC_OFFSET(13057, glWindowPos2iMESA, glWindowPos2iMESA, NULL, 761),
+ NAME_FUNC_OFFSET(13075, glWindowPos2ivMESA, glWindowPos2ivMESA, NULL, 762),
+ NAME_FUNC_OFFSET(13094, glWindowPos2sMESA, glWindowPos2sMESA, NULL, 763),
+ NAME_FUNC_OFFSET(13112, glWindowPos2svMESA, glWindowPos2svMESA, NULL, 764),
+ NAME_FUNC_OFFSET(13131, glWindowPos3dMESA, glWindowPos3dMESA, NULL, 765),
+ NAME_FUNC_OFFSET(13149, glWindowPos3dvMESA, glWindowPos3dvMESA, NULL, 766),
+ NAME_FUNC_OFFSET(13168, glWindowPos3fMESA, glWindowPos3fMESA, NULL, 767),
+ NAME_FUNC_OFFSET(13186, glWindowPos3fvMESA, glWindowPos3fvMESA, NULL, 768),
+ NAME_FUNC_OFFSET(13205, glWindowPos3iMESA, glWindowPos3iMESA, NULL, 769),
+ NAME_FUNC_OFFSET(13223, glWindowPos3ivMESA, glWindowPos3ivMESA, NULL, 770),
+ NAME_FUNC_OFFSET(13242, glWindowPos3sMESA, glWindowPos3sMESA, NULL, 771),
+ NAME_FUNC_OFFSET(13260, glWindowPos3svMESA, glWindowPos3svMESA, NULL, 772),
+ NAME_FUNC_OFFSET(13279, glWindowPos4dMESA, glWindowPos4dMESA, NULL, 773),
+ NAME_FUNC_OFFSET(13297, glWindowPos4dvMESA, glWindowPos4dvMESA, NULL, 774),
+ NAME_FUNC_OFFSET(13316, glWindowPos4fMESA, glWindowPos4fMESA, NULL, 775),
+ NAME_FUNC_OFFSET(13334, glWindowPos4fvMESA, glWindowPos4fvMESA, NULL, 776),
+ NAME_FUNC_OFFSET(13353, glWindowPos4iMESA, glWindowPos4iMESA, NULL, 777),
+ NAME_FUNC_OFFSET(13371, glWindowPos4ivMESA, glWindowPos4ivMESA, NULL, 778),
+ NAME_FUNC_OFFSET(13390, glWindowPos4sMESA, glWindowPos4sMESA, NULL, 779),
+ NAME_FUNC_OFFSET(13408, glWindowPos4svMESA, glWindowPos4svMESA, NULL, 780),
+ NAME_FUNC_OFFSET(13427, gl_dispatch_stub_781, gl_dispatch_stub_781, NULL, 781),
+ NAME_FUNC_OFFSET(13452, gl_dispatch_stub_782, gl_dispatch_stub_782, NULL, 782),
+ NAME_FUNC_OFFSET(13479, glAreProgramsResidentNV, glAreProgramsResidentNV, NULL, 783),
+ NAME_FUNC_OFFSET(13503, glBindProgramNV, glBindProgramNV, NULL, 784),
+ NAME_FUNC_OFFSET(13519, glDeleteProgramsNV, glDeleteProgramsNV, NULL, 785),
+ NAME_FUNC_OFFSET(13538, glExecuteProgramNV, glExecuteProgramNV, NULL, 786),
+ NAME_FUNC_OFFSET(13557, glGenProgramsNV, glGenProgramsNV, NULL, 787),
+ NAME_FUNC_OFFSET(13573, glGetProgramParameterdvNV, glGetProgramParameterdvNV, NULL, 788),
+ NAME_FUNC_OFFSET(13599, glGetProgramParameterfvNV, glGetProgramParameterfvNV, NULL, 789),
+ NAME_FUNC_OFFSET(13625, glGetProgramStringNV, glGetProgramStringNV, NULL, 790),
+ NAME_FUNC_OFFSET(13646, glGetProgramivNV, glGetProgramivNV, NULL, 791),
+ NAME_FUNC_OFFSET(13663, glGetTrackMatrixivNV, glGetTrackMatrixivNV, NULL, 792),
+ NAME_FUNC_OFFSET(13684, glGetVertexAttribPointervNV, glGetVertexAttribPointervNV, NULL, 793),
+ NAME_FUNC_OFFSET(13712, glGetVertexAttribdvNV, glGetVertexAttribdvNV, NULL, 794),
+ NAME_FUNC_OFFSET(13734, glGetVertexAttribfvNV, glGetVertexAttribfvNV, NULL, 795),
+ NAME_FUNC_OFFSET(13756, glGetVertexAttribivNV, glGetVertexAttribivNV, NULL, 796),
+ NAME_FUNC_OFFSET(13778, glIsProgramNV, glIsProgramNV, NULL, 797),
+ NAME_FUNC_OFFSET(13792, glLoadProgramNV, glLoadProgramNV, NULL, 798),
+ NAME_FUNC_OFFSET(13808, glProgramParameters4dvNV, glProgramParameters4dvNV, NULL, 799),
+ NAME_FUNC_OFFSET(13833, glProgramParameters4fvNV, glProgramParameters4fvNV, NULL, 800),
+ NAME_FUNC_OFFSET(13858, glRequestResidentProgramsNV, glRequestResidentProgramsNV, NULL, 801),
+ NAME_FUNC_OFFSET(13886, glTrackMatrixNV, glTrackMatrixNV, NULL, 802),
+ NAME_FUNC_OFFSET(13902, glVertexAttrib1dNV, glVertexAttrib1dNV, NULL, 803),
+ NAME_FUNC_OFFSET(13921, glVertexAttrib1dvNV, glVertexAttrib1dvNV, NULL, 804),
+ NAME_FUNC_OFFSET(13941, glVertexAttrib1fNV, glVertexAttrib1fNV, NULL, 805),
+ NAME_FUNC_OFFSET(13960, glVertexAttrib1fvNV, glVertexAttrib1fvNV, NULL, 806),
+ NAME_FUNC_OFFSET(13980, glVertexAttrib1sNV, glVertexAttrib1sNV, NULL, 807),
+ NAME_FUNC_OFFSET(13999, glVertexAttrib1svNV, glVertexAttrib1svNV, NULL, 808),
+ NAME_FUNC_OFFSET(14019, glVertexAttrib2dNV, glVertexAttrib2dNV, NULL, 809),
+ NAME_FUNC_OFFSET(14038, glVertexAttrib2dvNV, glVertexAttrib2dvNV, NULL, 810),
+ NAME_FUNC_OFFSET(14058, glVertexAttrib2fNV, glVertexAttrib2fNV, NULL, 811),
+ NAME_FUNC_OFFSET(14077, glVertexAttrib2fvNV, glVertexAttrib2fvNV, NULL, 812),
+ NAME_FUNC_OFFSET(14097, glVertexAttrib2sNV, glVertexAttrib2sNV, NULL, 813),
+ NAME_FUNC_OFFSET(14116, glVertexAttrib2svNV, glVertexAttrib2svNV, NULL, 814),
+ NAME_FUNC_OFFSET(14136, glVertexAttrib3dNV, glVertexAttrib3dNV, NULL, 815),
+ NAME_FUNC_OFFSET(14155, glVertexAttrib3dvNV, glVertexAttrib3dvNV, NULL, 816),
+ NAME_FUNC_OFFSET(14175, glVertexAttrib3fNV, glVertexAttrib3fNV, NULL, 817),
+ NAME_FUNC_OFFSET(14194, glVertexAttrib3fvNV, glVertexAttrib3fvNV, NULL, 818),
+ NAME_FUNC_OFFSET(14214, glVertexAttrib3sNV, glVertexAttrib3sNV, NULL, 819),
+ NAME_FUNC_OFFSET(14233, glVertexAttrib3svNV, glVertexAttrib3svNV, NULL, 820),
+ NAME_FUNC_OFFSET(14253, glVertexAttrib4dNV, glVertexAttrib4dNV, NULL, 821),
+ NAME_FUNC_OFFSET(14272, glVertexAttrib4dvNV, glVertexAttrib4dvNV, NULL, 822),
+ NAME_FUNC_OFFSET(14292, glVertexAttrib4fNV, glVertexAttrib4fNV, NULL, 823),
+ NAME_FUNC_OFFSET(14311, glVertexAttrib4fvNV, glVertexAttrib4fvNV, NULL, 824),
+ NAME_FUNC_OFFSET(14331, glVertexAttrib4sNV, glVertexAttrib4sNV, NULL, 825),
+ NAME_FUNC_OFFSET(14350, glVertexAttrib4svNV, glVertexAttrib4svNV, NULL, 826),
+ NAME_FUNC_OFFSET(14370, glVertexAttrib4ubNV, glVertexAttrib4ubNV, NULL, 827),
+ NAME_FUNC_OFFSET(14390, glVertexAttrib4ubvNV, glVertexAttrib4ubvNV, NULL, 828),
+ NAME_FUNC_OFFSET(14411, glVertexAttribPointerNV, glVertexAttribPointerNV, NULL, 829),
+ NAME_FUNC_OFFSET(14435, glVertexAttribs1dvNV, glVertexAttribs1dvNV, NULL, 830),
+ NAME_FUNC_OFFSET(14456, glVertexAttribs1fvNV, glVertexAttribs1fvNV, NULL, 831),
+ NAME_FUNC_OFFSET(14477, glVertexAttribs1svNV, glVertexAttribs1svNV, NULL, 832),
+ NAME_FUNC_OFFSET(14498, glVertexAttribs2dvNV, glVertexAttribs2dvNV, NULL, 833),
+ NAME_FUNC_OFFSET(14519, glVertexAttribs2fvNV, glVertexAttribs2fvNV, NULL, 834),
+ NAME_FUNC_OFFSET(14540, glVertexAttribs2svNV, glVertexAttribs2svNV, NULL, 835),
+ NAME_FUNC_OFFSET(14561, glVertexAttribs3dvNV, glVertexAttribs3dvNV, NULL, 836),
+ NAME_FUNC_OFFSET(14582, glVertexAttribs3fvNV, glVertexAttribs3fvNV, NULL, 837),
+ NAME_FUNC_OFFSET(14603, glVertexAttribs3svNV, glVertexAttribs3svNV, NULL, 838),
+ NAME_FUNC_OFFSET(14624, glVertexAttribs4dvNV, glVertexAttribs4dvNV, NULL, 839),
+ NAME_FUNC_OFFSET(14645, glVertexAttribs4fvNV, glVertexAttribs4fvNV, NULL, 840),
+ NAME_FUNC_OFFSET(14666, glVertexAttribs4svNV, glVertexAttribs4svNV, NULL, 841),
+ NAME_FUNC_OFFSET(14687, glVertexAttribs4ubvNV, glVertexAttribs4ubvNV, NULL, 842),
+ NAME_FUNC_OFFSET(14709, glGetTexBumpParameterfvATI, glGetTexBumpParameterfvATI, NULL, 843),
+ NAME_FUNC_OFFSET(14736, glGetTexBumpParameterivATI, glGetTexBumpParameterivATI, NULL, 844),
+ NAME_FUNC_OFFSET(14763, glTexBumpParameterfvATI, glTexBumpParameterfvATI, NULL, 845),
+ NAME_FUNC_OFFSET(14787, glTexBumpParameterivATI, glTexBumpParameterivATI, NULL, 846),
+ NAME_FUNC_OFFSET(14811, glAlphaFragmentOp1ATI, glAlphaFragmentOp1ATI, NULL, 847),
+ NAME_FUNC_OFFSET(14833, glAlphaFragmentOp2ATI, glAlphaFragmentOp2ATI, NULL, 848),
+ NAME_FUNC_OFFSET(14855, glAlphaFragmentOp3ATI, glAlphaFragmentOp3ATI, NULL, 849),
+ NAME_FUNC_OFFSET(14877, glBeginFragmentShaderATI, glBeginFragmentShaderATI, NULL, 850),
+ NAME_FUNC_OFFSET(14902, glBindFragmentShaderATI, glBindFragmentShaderATI, NULL, 851),
+ NAME_FUNC_OFFSET(14926, glColorFragmentOp1ATI, glColorFragmentOp1ATI, NULL, 852),
+ NAME_FUNC_OFFSET(14948, glColorFragmentOp2ATI, glColorFragmentOp2ATI, NULL, 853),
+ NAME_FUNC_OFFSET(14970, glColorFragmentOp3ATI, glColorFragmentOp3ATI, NULL, 854),
+ NAME_FUNC_OFFSET(14992, glDeleteFragmentShaderATI, glDeleteFragmentShaderATI, NULL, 855),
+ NAME_FUNC_OFFSET(15018, glEndFragmentShaderATI, glEndFragmentShaderATI, NULL, 856),
+ NAME_FUNC_OFFSET(15041, glGenFragmentShadersATI, glGenFragmentShadersATI, NULL, 857),
+ NAME_FUNC_OFFSET(15065, glPassTexCoordATI, glPassTexCoordATI, NULL, 858),
+ NAME_FUNC_OFFSET(15083, glSampleMapATI, glSampleMapATI, NULL, 859),
+ NAME_FUNC_OFFSET(15098, glSetFragmentShaderConstantATI, glSetFragmentShaderConstantATI, NULL, 860),
+ NAME_FUNC_OFFSET(15129, glPointParameteriNV, glPointParameteriNV, NULL, 861),
+ NAME_FUNC_OFFSET(15149, glPointParameterivNV, glPointParameterivNV, NULL, 862),
+ NAME_FUNC_OFFSET(15170, gl_dispatch_stub_863, gl_dispatch_stub_863, NULL, 863),
+ NAME_FUNC_OFFSET(15193, gl_dispatch_stub_864, gl_dispatch_stub_864, NULL, 864),
+ NAME_FUNC_OFFSET(15216, gl_dispatch_stub_865, gl_dispatch_stub_865, NULL, 865),
+ NAME_FUNC_OFFSET(15242, gl_dispatch_stub_866, gl_dispatch_stub_866, NULL, 866),
+ NAME_FUNC_OFFSET(15265, gl_dispatch_stub_867, gl_dispatch_stub_867, NULL, 867),
+ NAME_FUNC_OFFSET(15286, glGetProgramNamedParameterdvNV, glGetProgramNamedParameterdvNV, NULL, 868),
+ NAME_FUNC_OFFSET(15317, glGetProgramNamedParameterfvNV, glGetProgramNamedParameterfvNV, NULL, 869),
+ NAME_FUNC_OFFSET(15348, glProgramNamedParameter4dNV, glProgramNamedParameter4dNV, NULL, 870),
+ NAME_FUNC_OFFSET(15376, glProgramNamedParameter4dvNV, glProgramNamedParameter4dvNV, NULL, 871),
+ NAME_FUNC_OFFSET(15405, glProgramNamedParameter4fNV, glProgramNamedParameter4fNV, NULL, 872),
+ NAME_FUNC_OFFSET(15433, glProgramNamedParameter4fvNV, glProgramNamedParameter4fvNV, NULL, 873),
+ NAME_FUNC_OFFSET(15462, glPrimitiveRestartIndexNV, glPrimitiveRestartIndexNV, NULL, 874),
+ NAME_FUNC_OFFSET(15488, glPrimitiveRestartNV, glPrimitiveRestartNV, NULL, 875),
+ NAME_FUNC_OFFSET(15509, gl_dispatch_stub_876, gl_dispatch_stub_876, NULL, 876),
+ NAME_FUNC_OFFSET(15526, gl_dispatch_stub_877, gl_dispatch_stub_877, NULL, 877),
+ NAME_FUNC_OFFSET(15553, glBindFramebufferEXT, glBindFramebufferEXT, NULL, 878),
+ NAME_FUNC_OFFSET(15574, glBindRenderbufferEXT, glBindRenderbufferEXT, NULL, 879),
+ NAME_FUNC_OFFSET(15596, glCheckFramebufferStatusEXT, glCheckFramebufferStatusEXT, NULL, 880),
+ NAME_FUNC_OFFSET(15624, glDeleteFramebuffersEXT, glDeleteFramebuffersEXT, NULL, 881),
+ NAME_FUNC_OFFSET(15648, glDeleteRenderbuffersEXT, glDeleteRenderbuffersEXT, NULL, 882),
+ NAME_FUNC_OFFSET(15673, glFramebufferRenderbufferEXT, glFramebufferRenderbufferEXT, NULL, 883),
+ NAME_FUNC_OFFSET(15702, glFramebufferTexture1DEXT, glFramebufferTexture1DEXT, NULL, 884),
+ NAME_FUNC_OFFSET(15728, glFramebufferTexture2DEXT, glFramebufferTexture2DEXT, NULL, 885),
+ NAME_FUNC_OFFSET(15754, glFramebufferTexture3DEXT, glFramebufferTexture3DEXT, NULL, 886),
+ NAME_FUNC_OFFSET(15780, glGenFramebuffersEXT, glGenFramebuffersEXT, NULL, 887),
+ NAME_FUNC_OFFSET(15801, glGenRenderbuffersEXT, glGenRenderbuffersEXT, NULL, 888),
+ NAME_FUNC_OFFSET(15823, glGenerateMipmapEXT, glGenerateMipmapEXT, NULL, 889),
+ NAME_FUNC_OFFSET(15843, glGetFramebufferAttachmentParameterivEXT, glGetFramebufferAttachmentParameterivEXT, NULL, 890),
+ NAME_FUNC_OFFSET(15884, glGetRenderbufferParameterivEXT, glGetRenderbufferParameterivEXT, NULL, 891),
+ NAME_FUNC_OFFSET(15916, glIsFramebufferEXT, glIsFramebufferEXT, NULL, 892),
+ NAME_FUNC_OFFSET(15935, glIsRenderbufferEXT, glIsRenderbufferEXT, NULL, 893),
+ NAME_FUNC_OFFSET(15955, glRenderbufferStorageEXT, glRenderbufferStorageEXT, NULL, 894),
+ NAME_FUNC_OFFSET(15980, gl_dispatch_stub_895, gl_dispatch_stub_895, NULL, 895),
+ NAME_FUNC_OFFSET(16001, gl_dispatch_stub_896, gl_dispatch_stub_896, NULL, 896),
+ NAME_FUNC_OFFSET(16025, gl_dispatch_stub_897, gl_dispatch_stub_897, NULL, 897),
+ NAME_FUNC_OFFSET(16055, glBindFragDataLocationEXT, glBindFragDataLocationEXT, NULL, 898),
+ NAME_FUNC_OFFSET(16081, glGetFragDataLocationEXT, glGetFragDataLocationEXT, NULL, 899),
+ NAME_FUNC_OFFSET(16106, glGetUniformuivEXT, glGetUniformuivEXT, NULL, 900),
+ NAME_FUNC_OFFSET(16125, glGetVertexAttribIivEXT, glGetVertexAttribIivEXT, NULL, 901),
+ NAME_FUNC_OFFSET(16149, glGetVertexAttribIuivEXT, glGetVertexAttribIuivEXT, NULL, 902),
+ NAME_FUNC_OFFSET(16174, glUniform1uiEXT, glUniform1uiEXT, NULL, 903),
+ NAME_FUNC_OFFSET(16190, glUniform1uivEXT, glUniform1uivEXT, NULL, 904),
+ NAME_FUNC_OFFSET(16207, glUniform2uiEXT, glUniform2uiEXT, NULL, 905),
+ NAME_FUNC_OFFSET(16223, glUniform2uivEXT, glUniform2uivEXT, NULL, 906),
+ NAME_FUNC_OFFSET(16240, glUniform3uiEXT, glUniform3uiEXT, NULL, 907),
+ NAME_FUNC_OFFSET(16256, glUniform3uivEXT, glUniform3uivEXT, NULL, 908),
+ NAME_FUNC_OFFSET(16273, glUniform4uiEXT, glUniform4uiEXT, NULL, 909),
+ NAME_FUNC_OFFSET(16289, glUniform4uivEXT, glUniform4uivEXT, NULL, 910),
+ NAME_FUNC_OFFSET(16306, glVertexAttribI1iEXT, glVertexAttribI1iEXT, NULL, 911),
+ NAME_FUNC_OFFSET(16327, glVertexAttribI1ivEXT, glVertexAttribI1ivEXT, NULL, 912),
+ NAME_FUNC_OFFSET(16349, glVertexAttribI1uiEXT, glVertexAttribI1uiEXT, NULL, 913),
+ NAME_FUNC_OFFSET(16371, glVertexAttribI1uivEXT, glVertexAttribI1uivEXT, NULL, 914),
+ NAME_FUNC_OFFSET(16394, glVertexAttribI2iEXT, glVertexAttribI2iEXT, NULL, 915),
+ NAME_FUNC_OFFSET(16415, glVertexAttribI2ivEXT, glVertexAttribI2ivEXT, NULL, 916),
+ NAME_FUNC_OFFSET(16437, glVertexAttribI2uiEXT, glVertexAttribI2uiEXT, NULL, 917),
+ NAME_FUNC_OFFSET(16459, glVertexAttribI2uivEXT, glVertexAttribI2uivEXT, NULL, 918),
+ NAME_FUNC_OFFSET(16482, glVertexAttribI3iEXT, glVertexAttribI3iEXT, NULL, 919),
+ NAME_FUNC_OFFSET(16503, glVertexAttribI3ivEXT, glVertexAttribI3ivEXT, NULL, 920),
+ NAME_FUNC_OFFSET(16525, glVertexAttribI3uiEXT, glVertexAttribI3uiEXT, NULL, 921),
+ NAME_FUNC_OFFSET(16547, glVertexAttribI3uivEXT, glVertexAttribI3uivEXT, NULL, 922),
+ NAME_FUNC_OFFSET(16570, glVertexAttribI4bvEXT, glVertexAttribI4bvEXT, NULL, 923),
+ NAME_FUNC_OFFSET(16592, glVertexAttribI4iEXT, glVertexAttribI4iEXT, NULL, 924),
+ NAME_FUNC_OFFSET(16613, glVertexAttribI4ivEXT, glVertexAttribI4ivEXT, NULL, 925),
+ NAME_FUNC_OFFSET(16635, glVertexAttribI4svEXT, glVertexAttribI4svEXT, NULL, 926),
+ NAME_FUNC_OFFSET(16657, glVertexAttribI4ubvEXT, glVertexAttribI4ubvEXT, NULL, 927),
+ NAME_FUNC_OFFSET(16680, glVertexAttribI4uiEXT, glVertexAttribI4uiEXT, NULL, 928),
+ NAME_FUNC_OFFSET(16702, glVertexAttribI4uivEXT, glVertexAttribI4uivEXT, NULL, 929),
+ NAME_FUNC_OFFSET(16725, glVertexAttribI4usvEXT, glVertexAttribI4usvEXT, NULL, 930),
+ NAME_FUNC_OFFSET(16748, glVertexAttribIPointerEXT, glVertexAttribIPointerEXT, NULL, 931),
+ NAME_FUNC_OFFSET(16774, glFramebufferTextureLayerEXT, glFramebufferTextureLayerEXT, NULL, 932),
+ NAME_FUNC_OFFSET(16803, glColorMaskIndexedEXT, glColorMaskIndexedEXT, NULL, 933),
+ NAME_FUNC_OFFSET(16825, glDisableIndexedEXT, glDisableIndexedEXT, NULL, 934),
+ NAME_FUNC_OFFSET(16845, glEnableIndexedEXT, glEnableIndexedEXT, NULL, 935),
+ NAME_FUNC_OFFSET(16864, glGetBooleanIndexedvEXT, glGetBooleanIndexedvEXT, NULL, 936),
+ NAME_FUNC_OFFSET(16888, glGetIntegerIndexedvEXT, glGetIntegerIndexedvEXT, NULL, 937),
+ NAME_FUNC_OFFSET(16912, glIsEnabledIndexedEXT, glIsEnabledIndexedEXT, NULL, 938),
+ NAME_FUNC_OFFSET(16934, glClearColorIiEXT, glClearColorIiEXT, NULL, 939),
+ NAME_FUNC_OFFSET(16952, glClearColorIuiEXT, glClearColorIuiEXT, NULL, 940),
+ NAME_FUNC_OFFSET(16971, glGetTexParameterIivEXT, glGetTexParameterIivEXT, NULL, 941),
+ NAME_FUNC_OFFSET(16995, glGetTexParameterIuivEXT, glGetTexParameterIuivEXT, NULL, 942),
+ NAME_FUNC_OFFSET(17020, glTexParameterIivEXT, glTexParameterIivEXT, NULL, 943),
+ NAME_FUNC_OFFSET(17041, glTexParameterIuivEXT, glTexParameterIuivEXT, NULL, 944),
+ NAME_FUNC_OFFSET(17063, glBeginConditionalRenderNV, glBeginConditionalRenderNV, NULL, 945),
+ NAME_FUNC_OFFSET(17090, glEndConditionalRenderNV, glEndConditionalRenderNV, NULL, 946),
+ NAME_FUNC_OFFSET(17115, glBeginTransformFeedbackEXT, glBeginTransformFeedbackEXT, NULL, 947),
+ NAME_FUNC_OFFSET(17143, glBindBufferBaseEXT, glBindBufferBaseEXT, NULL, 948),
+ NAME_FUNC_OFFSET(17163, glBindBufferOffsetEXT, glBindBufferOffsetEXT, NULL, 949),
+ NAME_FUNC_OFFSET(17185, glBindBufferRangeEXT, glBindBufferRangeEXT, NULL, 950),
+ NAME_FUNC_OFFSET(17206, glEndTransformFeedbackEXT, glEndTransformFeedbackEXT, NULL, 951),
+ NAME_FUNC_OFFSET(17232, glGetTransformFeedbackVaryingEXT, glGetTransformFeedbackVaryingEXT, NULL, 952),
+ NAME_FUNC_OFFSET(17265, glTransformFeedbackVaryingsEXT, glTransformFeedbackVaryingsEXT, NULL, 953),
+ NAME_FUNC_OFFSET(17296, glProvokingVertexEXT, glProvokingVertexEXT, NULL, 954),
+ NAME_FUNC_OFFSET(17317, glGetObjectParameterivAPPLE, glGetObjectParameterivAPPLE, NULL, 955),
+ NAME_FUNC_OFFSET(17345, glObjectPurgeableAPPLE, glObjectPurgeableAPPLE, NULL, 956),
+ NAME_FUNC_OFFSET(17368, glObjectUnpurgeableAPPLE, glObjectUnpurgeableAPPLE, NULL, 957),
+ NAME_FUNC_OFFSET(17393, glActiveProgramEXT, glActiveProgramEXT, NULL, 958),
+ NAME_FUNC_OFFSET(17412, glCreateShaderProgramEXT, glCreateShaderProgramEXT, NULL, 959),
+ NAME_FUNC_OFFSET(17437, glUseShaderProgramEXT, glUseShaderProgramEXT, NULL, 960),
+ NAME_FUNC_OFFSET(17459, glTextureBarrierNV, glTextureBarrierNV, NULL, 961),
+ NAME_FUNC_OFFSET(17478, gl_dispatch_stub_962, gl_dispatch_stub_962, NULL, 962),
+ NAME_FUNC_OFFSET(17503, gl_dispatch_stub_963, gl_dispatch_stub_963, NULL, 963),
+ NAME_FUNC_OFFSET(17532, gl_dispatch_stub_964, gl_dispatch_stub_964, NULL, 964),
+ NAME_FUNC_OFFSET(17563, gl_dispatch_stub_965, gl_dispatch_stub_965, NULL, 965),
+ NAME_FUNC_OFFSET(17587, gl_dispatch_stub_966, gl_dispatch_stub_966, NULL, 966),
+ NAME_FUNC_OFFSET(17612, glEGLImageTargetRenderbufferStorageOES, glEGLImageTargetRenderbufferStorageOES, NULL, 967),
+ NAME_FUNC_OFFSET(17651, glEGLImageTargetTexture2DOES, glEGLImageTargetTexture2DOES, NULL, 968),
+ NAME_FUNC_OFFSET(17680, glArrayElement, glArrayElement, NULL, 306),
+ NAME_FUNC_OFFSET(17698, glBindTexture, glBindTexture, NULL, 307),
+ NAME_FUNC_OFFSET(17715, glDrawArrays, glDrawArrays, NULL, 310),
+ NAME_FUNC_OFFSET(17731, glAreTexturesResident, glAreTexturesResidentEXT, glAreTexturesResidentEXT, 322),
+ NAME_FUNC_OFFSET(17756, glCopyTexImage1D, glCopyTexImage1D, NULL, 323),
+ NAME_FUNC_OFFSET(17776, glCopyTexImage2D, glCopyTexImage2D, NULL, 324),
+ NAME_FUNC_OFFSET(17796, glCopyTexSubImage1D, glCopyTexSubImage1D, NULL, 325),
+ NAME_FUNC_OFFSET(17819, glCopyTexSubImage2D, glCopyTexSubImage2D, NULL, 326),
+ NAME_FUNC_OFFSET(17842, glDeleteTextures, glDeleteTexturesEXT, glDeleteTexturesEXT, 327),
+ NAME_FUNC_OFFSET(17862, glGenTextures, glGenTexturesEXT, glGenTexturesEXT, 328),
+ NAME_FUNC_OFFSET(17879, glGetPointerv, glGetPointerv, NULL, 329),
+ NAME_FUNC_OFFSET(17896, glIsTexture, glIsTextureEXT, glIsTextureEXT, 330),
+ NAME_FUNC_OFFSET(17911, glPrioritizeTextures, glPrioritizeTextures, NULL, 331),
+ NAME_FUNC_OFFSET(17935, glTexSubImage1D, glTexSubImage1D, NULL, 332),
+ NAME_FUNC_OFFSET(17954, glTexSubImage2D, glTexSubImage2D, NULL, 333),
+ NAME_FUNC_OFFSET(17973, glBlendColor, glBlendColor, NULL, 336),
+ NAME_FUNC_OFFSET(17989, glBlendEquation, glBlendEquation, NULL, 337),
+ NAME_FUNC_OFFSET(18008, glDrawRangeElements, glDrawRangeElements, NULL, 338),
+ NAME_FUNC_OFFSET(18031, glColorTable, glColorTable, NULL, 339),
+ NAME_FUNC_OFFSET(18047, glColorTable, glColorTable, NULL, 339),
+ NAME_FUNC_OFFSET(18063, glColorTableParameterfv, glColorTableParameterfv, NULL, 340),
+ NAME_FUNC_OFFSET(18090, glColorTableParameteriv, glColorTableParameteriv, NULL, 341),
+ NAME_FUNC_OFFSET(18117, glCopyColorTable, glCopyColorTable, NULL, 342),
+ NAME_FUNC_OFFSET(18137, glGetColorTable, glGetColorTableEXT, glGetColorTableEXT, 343),
+ NAME_FUNC_OFFSET(18156, glGetColorTable, glGetColorTableEXT, glGetColorTableEXT, 343),
+ NAME_FUNC_OFFSET(18175, glGetColorTableParameterfv, glGetColorTableParameterfvEXT, glGetColorTableParameterfvEXT, 344),
+ NAME_FUNC_OFFSET(18205, glGetColorTableParameterfv, glGetColorTableParameterfvEXT, glGetColorTableParameterfvEXT, 344),
+ NAME_FUNC_OFFSET(18235, glGetColorTableParameteriv, glGetColorTableParameterivEXT, glGetColorTableParameterivEXT, 345),
+ NAME_FUNC_OFFSET(18265, glGetColorTableParameteriv, glGetColorTableParameterivEXT, glGetColorTableParameterivEXT, 345),
+ NAME_FUNC_OFFSET(18295, glColorSubTable, glColorSubTable, NULL, 346),
+ NAME_FUNC_OFFSET(18314, glCopyColorSubTable, glCopyColorSubTable, NULL, 347),
+ NAME_FUNC_OFFSET(18337, glConvolutionFilter1D, glConvolutionFilter1D, NULL, 348),
+ NAME_FUNC_OFFSET(18362, glConvolutionFilter2D, glConvolutionFilter2D, NULL, 349),
+ NAME_FUNC_OFFSET(18387, glConvolutionParameterf, glConvolutionParameterf, NULL, 350),
+ NAME_FUNC_OFFSET(18414, glConvolutionParameterfv, glConvolutionParameterfv, NULL, 351),
+ NAME_FUNC_OFFSET(18442, glConvolutionParameteri, glConvolutionParameteri, NULL, 352),
+ NAME_FUNC_OFFSET(18469, glConvolutionParameteriv, glConvolutionParameteriv, NULL, 353),
+ NAME_FUNC_OFFSET(18497, glCopyConvolutionFilter1D, glCopyConvolutionFilter1D, NULL, 354),
+ NAME_FUNC_OFFSET(18526, glCopyConvolutionFilter2D, glCopyConvolutionFilter2D, NULL, 355),
+ NAME_FUNC_OFFSET(18555, glGetConvolutionFilter, gl_dispatch_stub_356, gl_dispatch_stub_356, 356),
+ NAME_FUNC_OFFSET(18581, glGetConvolutionParameterfv, gl_dispatch_stub_357, gl_dispatch_stub_357, 357),
+ NAME_FUNC_OFFSET(18612, glGetConvolutionParameteriv, gl_dispatch_stub_358, gl_dispatch_stub_358, 358),
+ NAME_FUNC_OFFSET(18643, glGetSeparableFilter, gl_dispatch_stub_359, gl_dispatch_stub_359, 359),
+ NAME_FUNC_OFFSET(18667, glSeparableFilter2D, glSeparableFilter2D, NULL, 360),
+ NAME_FUNC_OFFSET(18690, glGetHistogram, gl_dispatch_stub_361, gl_dispatch_stub_361, 361),
+ NAME_FUNC_OFFSET(18708, glGetHistogramParameterfv, gl_dispatch_stub_362, gl_dispatch_stub_362, 362),
+ NAME_FUNC_OFFSET(18737, glGetHistogramParameteriv, gl_dispatch_stub_363, gl_dispatch_stub_363, 363),
+ NAME_FUNC_OFFSET(18766, glGetMinmax, gl_dispatch_stub_364, gl_dispatch_stub_364, 364),
+ NAME_FUNC_OFFSET(18781, glGetMinmaxParameterfv, gl_dispatch_stub_365, gl_dispatch_stub_365, 365),
+ NAME_FUNC_OFFSET(18807, glGetMinmaxParameteriv, gl_dispatch_stub_366, gl_dispatch_stub_366, 366),
+ NAME_FUNC_OFFSET(18833, glHistogram, glHistogram, NULL, 367),
+ NAME_FUNC_OFFSET(18848, glMinmax, glMinmax, NULL, 368),
+ NAME_FUNC_OFFSET(18860, glResetHistogram, glResetHistogram, NULL, 369),
+ NAME_FUNC_OFFSET(18880, glResetMinmax, glResetMinmax, NULL, 370),
+ NAME_FUNC_OFFSET(18897, glTexImage3D, glTexImage3D, NULL, 371),
+ NAME_FUNC_OFFSET(18913, glTexSubImage3D, glTexSubImage3D, NULL, 372),
+ NAME_FUNC_OFFSET(18932, glCopyTexSubImage3D, glCopyTexSubImage3D, NULL, 373),
+ NAME_FUNC_OFFSET(18955, glActiveTextureARB, glActiveTextureARB, NULL, 374),
+ NAME_FUNC_OFFSET(18971, glClientActiveTextureARB, glClientActiveTextureARB, NULL, 375),
+ NAME_FUNC_OFFSET(18993, glMultiTexCoord1dARB, glMultiTexCoord1dARB, NULL, 376),
+ NAME_FUNC_OFFSET(19011, glMultiTexCoord1dvARB, glMultiTexCoord1dvARB, NULL, 377),
+ NAME_FUNC_OFFSET(19030, glMultiTexCoord1fARB, glMultiTexCoord1fARB, NULL, 378),
+ NAME_FUNC_OFFSET(19048, glMultiTexCoord1fvARB, glMultiTexCoord1fvARB, NULL, 379),
+ NAME_FUNC_OFFSET(19067, glMultiTexCoord1iARB, glMultiTexCoord1iARB, NULL, 380),
+ NAME_FUNC_OFFSET(19085, glMultiTexCoord1ivARB, glMultiTexCoord1ivARB, NULL, 381),
+ NAME_FUNC_OFFSET(19104, glMultiTexCoord1sARB, glMultiTexCoord1sARB, NULL, 382),
+ NAME_FUNC_OFFSET(19122, glMultiTexCoord1svARB, glMultiTexCoord1svARB, NULL, 383),
+ NAME_FUNC_OFFSET(19141, glMultiTexCoord2dARB, glMultiTexCoord2dARB, NULL, 384),
+ NAME_FUNC_OFFSET(19159, glMultiTexCoord2dvARB, glMultiTexCoord2dvARB, NULL, 385),
+ NAME_FUNC_OFFSET(19178, glMultiTexCoord2fARB, glMultiTexCoord2fARB, NULL, 386),
+ NAME_FUNC_OFFSET(19196, glMultiTexCoord2fvARB, glMultiTexCoord2fvARB, NULL, 387),
+ NAME_FUNC_OFFSET(19215, glMultiTexCoord2iARB, glMultiTexCoord2iARB, NULL, 388),
+ NAME_FUNC_OFFSET(19233, glMultiTexCoord2ivARB, glMultiTexCoord2ivARB, NULL, 389),
+ NAME_FUNC_OFFSET(19252, glMultiTexCoord2sARB, glMultiTexCoord2sARB, NULL, 390),
+ NAME_FUNC_OFFSET(19270, glMultiTexCoord2svARB, glMultiTexCoord2svARB, NULL, 391),
+ NAME_FUNC_OFFSET(19289, glMultiTexCoord3dARB, glMultiTexCoord3dARB, NULL, 392),
+ NAME_FUNC_OFFSET(19307, glMultiTexCoord3dvARB, glMultiTexCoord3dvARB, NULL, 393),
+ NAME_FUNC_OFFSET(19326, glMultiTexCoord3fARB, glMultiTexCoord3fARB, NULL, 394),
+ NAME_FUNC_OFFSET(19344, glMultiTexCoord3fvARB, glMultiTexCoord3fvARB, NULL, 395),
+ NAME_FUNC_OFFSET(19363, glMultiTexCoord3iARB, glMultiTexCoord3iARB, NULL, 396),
+ NAME_FUNC_OFFSET(19381, glMultiTexCoord3ivARB, glMultiTexCoord3ivARB, NULL, 397),
+ NAME_FUNC_OFFSET(19400, glMultiTexCoord3sARB, glMultiTexCoord3sARB, NULL, 398),
+ NAME_FUNC_OFFSET(19418, glMultiTexCoord3svARB, glMultiTexCoord3svARB, NULL, 399),
+ NAME_FUNC_OFFSET(19437, glMultiTexCoord4dARB, glMultiTexCoord4dARB, NULL, 400),
+ NAME_FUNC_OFFSET(19455, glMultiTexCoord4dvARB, glMultiTexCoord4dvARB, NULL, 401),
+ NAME_FUNC_OFFSET(19474, glMultiTexCoord4fARB, glMultiTexCoord4fARB, NULL, 402),
+ NAME_FUNC_OFFSET(19492, glMultiTexCoord4fvARB, glMultiTexCoord4fvARB, NULL, 403),
+ NAME_FUNC_OFFSET(19511, glMultiTexCoord4iARB, glMultiTexCoord4iARB, NULL, 404),
+ NAME_FUNC_OFFSET(19529, glMultiTexCoord4ivARB, glMultiTexCoord4ivARB, NULL, 405),
+ NAME_FUNC_OFFSET(19548, glMultiTexCoord4sARB, glMultiTexCoord4sARB, NULL, 406),
+ NAME_FUNC_OFFSET(19566, glMultiTexCoord4svARB, glMultiTexCoord4svARB, NULL, 407),
+ NAME_FUNC_OFFSET(19585, glStencilOpSeparate, glStencilOpSeparate, NULL, 423),
+ NAME_FUNC_OFFSET(19608, glFramebufferTexture, glFramebufferTexture, NULL, 435),
+ NAME_FUNC_OFFSET(19632, glLoadTransposeMatrixdARB, glLoadTransposeMatrixdARB, NULL, 438),
+ NAME_FUNC_OFFSET(19655, glLoadTransposeMatrixfARB, glLoadTransposeMatrixfARB, NULL, 439),
+ NAME_FUNC_OFFSET(19678, glMultTransposeMatrixdARB, glMultTransposeMatrixdARB, NULL, 440),
+ NAME_FUNC_OFFSET(19701, glMultTransposeMatrixfARB, glMultTransposeMatrixfARB, NULL, 441),
+ NAME_FUNC_OFFSET(19724, glSampleCoverageARB, glSampleCoverageARB, NULL, 442),
+ NAME_FUNC_OFFSET(19741, glCompressedTexImage1DARB, glCompressedTexImage1DARB, NULL, 443),
+ NAME_FUNC_OFFSET(19764, glCompressedTexImage2DARB, glCompressedTexImage2DARB, NULL, 444),
+ NAME_FUNC_OFFSET(19787, glCompressedTexImage3DARB, glCompressedTexImage3DARB, NULL, 445),
+ NAME_FUNC_OFFSET(19810, glCompressedTexSubImage1DARB, glCompressedTexSubImage1DARB, NULL, 446),
+ NAME_FUNC_OFFSET(19836, glCompressedTexSubImage2DARB, glCompressedTexSubImage2DARB, NULL, 447),
+ NAME_FUNC_OFFSET(19862, glCompressedTexSubImage3DARB, glCompressedTexSubImage3DARB, NULL, 448),
+ NAME_FUNC_OFFSET(19888, glGetCompressedTexImageARB, glGetCompressedTexImageARB, NULL, 449),
+ NAME_FUNC_OFFSET(19912, glDisableVertexAttribArrayARB, glDisableVertexAttribArrayARB, NULL, 450),
+ NAME_FUNC_OFFSET(19939, glEnableVertexAttribArrayARB, glEnableVertexAttribArrayARB, NULL, 451),
+ NAME_FUNC_OFFSET(19965, glGetVertexAttribdvARB, glGetVertexAttribdvARB, NULL, 458),
+ NAME_FUNC_OFFSET(19985, glGetVertexAttribfvARB, glGetVertexAttribfvARB, NULL, 459),
+ NAME_FUNC_OFFSET(20005, glGetVertexAttribivARB, glGetVertexAttribivARB, NULL, 460),
+ NAME_FUNC_OFFSET(20025, glProgramEnvParameter4dARB, glProgramEnvParameter4dARB, NULL, 461),
+ NAME_FUNC_OFFSET(20048, glProgramEnvParameter4dvARB, glProgramEnvParameter4dvARB, NULL, 462),
+ NAME_FUNC_OFFSET(20072, glProgramEnvParameter4fARB, glProgramEnvParameter4fARB, NULL, 463),
+ NAME_FUNC_OFFSET(20095, glProgramEnvParameter4fvARB, glProgramEnvParameter4fvARB, NULL, 464),
+ NAME_FUNC_OFFSET(20119, glVertexAttrib1dARB, glVertexAttrib1dARB, NULL, 470),
+ NAME_FUNC_OFFSET(20136, glVertexAttrib1dvARB, glVertexAttrib1dvARB, NULL, 471),
+ NAME_FUNC_OFFSET(20154, glVertexAttrib1fARB, glVertexAttrib1fARB, NULL, 472),
+ NAME_FUNC_OFFSET(20171, glVertexAttrib1fvARB, glVertexAttrib1fvARB, NULL, 473),
+ NAME_FUNC_OFFSET(20189, glVertexAttrib1sARB, glVertexAttrib1sARB, NULL, 474),
+ NAME_FUNC_OFFSET(20206, glVertexAttrib1svARB, glVertexAttrib1svARB, NULL, 475),
+ NAME_FUNC_OFFSET(20224, glVertexAttrib2dARB, glVertexAttrib2dARB, NULL, 476),
+ NAME_FUNC_OFFSET(20241, glVertexAttrib2dvARB, glVertexAttrib2dvARB, NULL, 477),
+ NAME_FUNC_OFFSET(20259, glVertexAttrib2fARB, glVertexAttrib2fARB, NULL, 478),
+ NAME_FUNC_OFFSET(20276, glVertexAttrib2fvARB, glVertexAttrib2fvARB, NULL, 479),
+ NAME_FUNC_OFFSET(20294, glVertexAttrib2sARB, glVertexAttrib2sARB, NULL, 480),
+ NAME_FUNC_OFFSET(20311, glVertexAttrib2svARB, glVertexAttrib2svARB, NULL, 481),
+ NAME_FUNC_OFFSET(20329, glVertexAttrib3dARB, glVertexAttrib3dARB, NULL, 482),
+ NAME_FUNC_OFFSET(20346, glVertexAttrib3dvARB, glVertexAttrib3dvARB, NULL, 483),
+ NAME_FUNC_OFFSET(20364, glVertexAttrib3fARB, glVertexAttrib3fARB, NULL, 484),
+ NAME_FUNC_OFFSET(20381, glVertexAttrib3fvARB, glVertexAttrib3fvARB, NULL, 485),
+ NAME_FUNC_OFFSET(20399, glVertexAttrib3sARB, glVertexAttrib3sARB, NULL, 486),
+ NAME_FUNC_OFFSET(20416, glVertexAttrib3svARB, glVertexAttrib3svARB, NULL, 487),
+ NAME_FUNC_OFFSET(20434, glVertexAttrib4NbvARB, glVertexAttrib4NbvARB, NULL, 488),
+ NAME_FUNC_OFFSET(20453, glVertexAttrib4NivARB, glVertexAttrib4NivARB, NULL, 489),
+ NAME_FUNC_OFFSET(20472, glVertexAttrib4NsvARB, glVertexAttrib4NsvARB, NULL, 490),
+ NAME_FUNC_OFFSET(20491, glVertexAttrib4NubARB, glVertexAttrib4NubARB, NULL, 491),
+ NAME_FUNC_OFFSET(20510, glVertexAttrib4NubvARB, glVertexAttrib4NubvARB, NULL, 492),
+ NAME_FUNC_OFFSET(20530, glVertexAttrib4NuivARB, glVertexAttrib4NuivARB, NULL, 493),
+ NAME_FUNC_OFFSET(20550, glVertexAttrib4NusvARB, glVertexAttrib4NusvARB, NULL, 494),
+ NAME_FUNC_OFFSET(20570, glVertexAttrib4bvARB, glVertexAttrib4bvARB, NULL, 495),
+ NAME_FUNC_OFFSET(20588, glVertexAttrib4dARB, glVertexAttrib4dARB, NULL, 496),
+ NAME_FUNC_OFFSET(20605, glVertexAttrib4dvARB, glVertexAttrib4dvARB, NULL, 497),
+ NAME_FUNC_OFFSET(20623, glVertexAttrib4fARB, glVertexAttrib4fARB, NULL, 498),
+ NAME_FUNC_OFFSET(20640, glVertexAttrib4fvARB, glVertexAttrib4fvARB, NULL, 499),
+ NAME_FUNC_OFFSET(20658, glVertexAttrib4ivARB, glVertexAttrib4ivARB, NULL, 500),
+ NAME_FUNC_OFFSET(20676, glVertexAttrib4sARB, glVertexAttrib4sARB, NULL, 501),
+ NAME_FUNC_OFFSET(20693, glVertexAttrib4svARB, glVertexAttrib4svARB, NULL, 502),
+ NAME_FUNC_OFFSET(20711, glVertexAttrib4ubvARB, glVertexAttrib4ubvARB, NULL, 503),
+ NAME_FUNC_OFFSET(20730, glVertexAttrib4uivARB, glVertexAttrib4uivARB, NULL, 504),
+ NAME_FUNC_OFFSET(20749, glVertexAttrib4usvARB, glVertexAttrib4usvARB, NULL, 505),
+ NAME_FUNC_OFFSET(20768, glVertexAttribPointerARB, glVertexAttribPointerARB, NULL, 506),
+ NAME_FUNC_OFFSET(20790, glBindBufferARB, glBindBufferARB, NULL, 507),
+ NAME_FUNC_OFFSET(20803, glBufferDataARB, glBufferDataARB, NULL, 508),
+ NAME_FUNC_OFFSET(20816, glBufferSubDataARB, glBufferSubDataARB, NULL, 509),
+ NAME_FUNC_OFFSET(20832, glDeleteBuffersARB, glDeleteBuffersARB, NULL, 510),
+ NAME_FUNC_OFFSET(20848, glGenBuffersARB, glGenBuffersARB, NULL, 511),
+ NAME_FUNC_OFFSET(20861, glGetBufferParameterivARB, glGetBufferParameterivARB, NULL, 512),
+ NAME_FUNC_OFFSET(20884, glGetBufferPointervARB, glGetBufferPointervARB, NULL, 513),
+ NAME_FUNC_OFFSET(20904, glGetBufferSubDataARB, glGetBufferSubDataARB, NULL, 514),
+ NAME_FUNC_OFFSET(20923, glIsBufferARB, glIsBufferARB, NULL, 515),
+ NAME_FUNC_OFFSET(20934, glMapBufferARB, glMapBufferARB, NULL, 516),
+ NAME_FUNC_OFFSET(20946, glUnmapBufferARB, glUnmapBufferARB, NULL, 517),
+ NAME_FUNC_OFFSET(20960, glBeginQueryARB, glBeginQueryARB, NULL, 518),
+ NAME_FUNC_OFFSET(20973, glDeleteQueriesARB, glDeleteQueriesARB, NULL, 519),
+ NAME_FUNC_OFFSET(20989, glEndQueryARB, glEndQueryARB, NULL, 520),
+ NAME_FUNC_OFFSET(21000, glGenQueriesARB, glGenQueriesARB, NULL, 521),
+ NAME_FUNC_OFFSET(21013, glGetQueryObjectivARB, glGetQueryObjectivARB, NULL, 522),
+ NAME_FUNC_OFFSET(21032, glGetQueryObjectuivARB, glGetQueryObjectuivARB, NULL, 523),
+ NAME_FUNC_OFFSET(21052, glGetQueryivARB, glGetQueryivARB, NULL, 524),
+ NAME_FUNC_OFFSET(21065, glIsQueryARB, glIsQueryARB, NULL, 525),
+ NAME_FUNC_OFFSET(21075, glCompileShaderARB, glCompileShaderARB, NULL, 527),
+ NAME_FUNC_OFFSET(21091, glGetActiveUniformARB, glGetActiveUniformARB, NULL, 532),
+ NAME_FUNC_OFFSET(21110, glGetShaderSourceARB, glGetShaderSourceARB, NULL, 538),
+ NAME_FUNC_OFFSET(21128, glGetUniformLocationARB, glGetUniformLocationARB, NULL, 539),
+ NAME_FUNC_OFFSET(21149, glGetUniformfvARB, glGetUniformfvARB, NULL, 540),
+ NAME_FUNC_OFFSET(21164, glGetUniformivARB, glGetUniformivARB, NULL, 541),
+ NAME_FUNC_OFFSET(21179, glLinkProgramARB, glLinkProgramARB, NULL, 542),
+ NAME_FUNC_OFFSET(21193, glShaderSourceARB, glShaderSourceARB, NULL, 543),
+ NAME_FUNC_OFFSET(21208, glUniform1fARB, glUniform1fARB, NULL, 544),
+ NAME_FUNC_OFFSET(21220, glUniform1fvARB, glUniform1fvARB, NULL, 545),
+ NAME_FUNC_OFFSET(21233, glUniform1iARB, glUniform1iARB, NULL, 546),
+ NAME_FUNC_OFFSET(21245, glUniform1ivARB, glUniform1ivARB, NULL, 547),
+ NAME_FUNC_OFFSET(21258, glUniform2fARB, glUniform2fARB, NULL, 548),
+ NAME_FUNC_OFFSET(21270, glUniform2fvARB, glUniform2fvARB, NULL, 549),
+ NAME_FUNC_OFFSET(21283, glUniform2iARB, glUniform2iARB, NULL, 550),
+ NAME_FUNC_OFFSET(21295, glUniform2ivARB, glUniform2ivARB, NULL, 551),
+ NAME_FUNC_OFFSET(21308, glUniform3fARB, glUniform3fARB, NULL, 552),
+ NAME_FUNC_OFFSET(21320, glUniform3fvARB, glUniform3fvARB, NULL, 553),
+ NAME_FUNC_OFFSET(21333, glUniform3iARB, glUniform3iARB, NULL, 554),
+ NAME_FUNC_OFFSET(21345, glUniform3ivARB, glUniform3ivARB, NULL, 555),
+ NAME_FUNC_OFFSET(21358, glUniform4fARB, glUniform4fARB, NULL, 556),
+ NAME_FUNC_OFFSET(21370, glUniform4fvARB, glUniform4fvARB, NULL, 557),
+ NAME_FUNC_OFFSET(21383, glUniform4iARB, glUniform4iARB, NULL, 558),
+ NAME_FUNC_OFFSET(21395, glUniform4ivARB, glUniform4ivARB, NULL, 559),
+ NAME_FUNC_OFFSET(21408, glUniformMatrix2fvARB, glUniformMatrix2fvARB, NULL, 560),
+ NAME_FUNC_OFFSET(21427, glUniformMatrix3fvARB, glUniformMatrix3fvARB, NULL, 561),
+ NAME_FUNC_OFFSET(21446, glUniformMatrix4fvARB, glUniformMatrix4fvARB, NULL, 562),
+ NAME_FUNC_OFFSET(21465, glUseProgramObjectARB, glUseProgramObjectARB, NULL, 563),
+ NAME_FUNC_OFFSET(21478, glValidateProgramARB, glValidateProgramARB, NULL, 564),
+ NAME_FUNC_OFFSET(21496, glBindAttribLocationARB, glBindAttribLocationARB, NULL, 565),
+ NAME_FUNC_OFFSET(21517, glGetActiveAttribARB, glGetActiveAttribARB, NULL, 566),
+ NAME_FUNC_OFFSET(21535, glGetAttribLocationARB, glGetAttribLocationARB, NULL, 567),
+ NAME_FUNC_OFFSET(21555, glDrawBuffersARB, glDrawBuffersARB, NULL, 568),
+ NAME_FUNC_OFFSET(21569, glDrawBuffersARB, glDrawBuffersARB, NULL, 568),
+ NAME_FUNC_OFFSET(21586, glClampColorARB, glClampColorARB, NULL, 569),
+ NAME_FUNC_OFFSET(21599, glDrawArraysInstancedARB, glDrawArraysInstancedARB, NULL, 570),
+ NAME_FUNC_OFFSET(21624, glDrawArraysInstancedARB, glDrawArraysInstancedARB, NULL, 570),
+ NAME_FUNC_OFFSET(21646, glDrawElementsInstancedARB, glDrawElementsInstancedARB, NULL, 571),
+ NAME_FUNC_OFFSET(21673, glDrawElementsInstancedARB, glDrawElementsInstancedARB, NULL, 571),
+ NAME_FUNC_OFFSET(21697, glRenderbufferStorageMultisample, glRenderbufferStorageMultisample, NULL, 572),
+ NAME_FUNC_OFFSET(21733, glVertexAttribDivisorARB, glVertexAttribDivisorARB, NULL, 574),
+ NAME_FUNC_OFFSET(21755, glTexBufferARB, glTexBufferARB, NULL, 577),
+ NAME_FUNC_OFFSET(21767, glBlendEquationSeparateiARB, glBlendEquationSeparateiARB, NULL, 599),
+ NAME_FUNC_OFFSET(21801, glBlendEquationiARB, glBlendEquationiARB, NULL, 600),
+ NAME_FUNC_OFFSET(21827, glBlendFuncSeparateiARB, glBlendFuncSeparateiARB, NULL, 601),
+ NAME_FUNC_OFFSET(21857, glBlendFunciARB, glBlendFunciARB, NULL, 602),
+ NAME_FUNC_OFFSET(21879, gl_dispatch_stub_676, gl_dispatch_stub_676, NULL, 676),
+ NAME_FUNC_OFFSET(21902, gl_dispatch_stub_719, gl_dispatch_stub_719, NULL, 719),
+ NAME_FUNC_OFFSET(21918, gl_dispatch_stub_720, gl_dispatch_stub_720, NULL, 720),
+ NAME_FUNC_OFFSET(21937, glPointParameterfEXT, glPointParameterfEXT, NULL, 727),
+ NAME_FUNC_OFFSET(21955, glPointParameterfEXT, glPointParameterfEXT, NULL, 727),
+ NAME_FUNC_OFFSET(21976, glPointParameterfEXT, glPointParameterfEXT, NULL, 727),
+ NAME_FUNC_OFFSET(21998, glPointParameterfvEXT, glPointParameterfvEXT, NULL, 728),
+ NAME_FUNC_OFFSET(22017, glPointParameterfvEXT, glPointParameterfvEXT, NULL, 728),
+ NAME_FUNC_OFFSET(22039, glPointParameterfvEXT, glPointParameterfvEXT, NULL, 728),
+ NAME_FUNC_OFFSET(22062, glSecondaryColor3bEXT, glSecondaryColor3bEXT, NULL, 731),
+ NAME_FUNC_OFFSET(22081, glSecondaryColor3bvEXT, glSecondaryColor3bvEXT, NULL, 732),
+ NAME_FUNC_OFFSET(22101, glSecondaryColor3dEXT, glSecondaryColor3dEXT, NULL, 733),
+ NAME_FUNC_OFFSET(22120, glSecondaryColor3dvEXT, glSecondaryColor3dvEXT, NULL, 734),
+ NAME_FUNC_OFFSET(22140, glSecondaryColor3fEXT, glSecondaryColor3fEXT, NULL, 735),
+ NAME_FUNC_OFFSET(22159, glSecondaryColor3fvEXT, glSecondaryColor3fvEXT, NULL, 736),
+ NAME_FUNC_OFFSET(22179, glSecondaryColor3iEXT, glSecondaryColor3iEXT, NULL, 737),
+ NAME_FUNC_OFFSET(22198, glSecondaryColor3ivEXT, glSecondaryColor3ivEXT, NULL, 738),
+ NAME_FUNC_OFFSET(22218, glSecondaryColor3sEXT, glSecondaryColor3sEXT, NULL, 739),
+ NAME_FUNC_OFFSET(22237, glSecondaryColor3svEXT, glSecondaryColor3svEXT, NULL, 740),
+ NAME_FUNC_OFFSET(22257, glSecondaryColor3ubEXT, glSecondaryColor3ubEXT, NULL, 741),
+ NAME_FUNC_OFFSET(22277, glSecondaryColor3ubvEXT, glSecondaryColor3ubvEXT, NULL, 742),
+ NAME_FUNC_OFFSET(22298, glSecondaryColor3uiEXT, glSecondaryColor3uiEXT, NULL, 743),
+ NAME_FUNC_OFFSET(22318, glSecondaryColor3uivEXT, glSecondaryColor3uivEXT, NULL, 744),
+ NAME_FUNC_OFFSET(22339, glSecondaryColor3usEXT, glSecondaryColor3usEXT, NULL, 745),
+ NAME_FUNC_OFFSET(22359, glSecondaryColor3usvEXT, glSecondaryColor3usvEXT, NULL, 746),
+ NAME_FUNC_OFFSET(22380, glSecondaryColorPointerEXT, glSecondaryColorPointerEXT, NULL, 747),
+ NAME_FUNC_OFFSET(22404, glMultiDrawArraysEXT, glMultiDrawArraysEXT, NULL, 748),
+ NAME_FUNC_OFFSET(22422, glMultiDrawElementsEXT, glMultiDrawElementsEXT, NULL, 749),
+ NAME_FUNC_OFFSET(22442, glFogCoordPointerEXT, glFogCoordPointerEXT, NULL, 750),
+ NAME_FUNC_OFFSET(22460, glFogCoorddEXT, glFogCoorddEXT, NULL, 751),
+ NAME_FUNC_OFFSET(22472, glFogCoorddvEXT, glFogCoorddvEXT, NULL, 752),
+ NAME_FUNC_OFFSET(22485, glFogCoordfEXT, glFogCoordfEXT, NULL, 753),
+ NAME_FUNC_OFFSET(22497, glFogCoordfvEXT, glFogCoordfvEXT, NULL, 754),
+ NAME_FUNC_OFFSET(22510, glBlendFuncSeparateEXT, glBlendFuncSeparateEXT, NULL, 755),
+ NAME_FUNC_OFFSET(22530, glBlendFuncSeparateEXT, glBlendFuncSeparateEXT, NULL, 755),
+ NAME_FUNC_OFFSET(22554, glWindowPos2dMESA, glWindowPos2dMESA, NULL, 757),
+ NAME_FUNC_OFFSET(22568, glWindowPos2dMESA, glWindowPos2dMESA, NULL, 757),
+ NAME_FUNC_OFFSET(22585, glWindowPos2dvMESA, glWindowPos2dvMESA, NULL, 758),
+ NAME_FUNC_OFFSET(22600, glWindowPos2dvMESA, glWindowPos2dvMESA, NULL, 758),
+ NAME_FUNC_OFFSET(22618, glWindowPos2fMESA, glWindowPos2fMESA, NULL, 759),
+ NAME_FUNC_OFFSET(22632, glWindowPos2fMESA, glWindowPos2fMESA, NULL, 759),
+ NAME_FUNC_OFFSET(22649, glWindowPos2fvMESA, glWindowPos2fvMESA, NULL, 760),
+ NAME_FUNC_OFFSET(22664, glWindowPos2fvMESA, glWindowPos2fvMESA, NULL, 760),
+ NAME_FUNC_OFFSET(22682, glWindowPos2iMESA, glWindowPos2iMESA, NULL, 761),
+ NAME_FUNC_OFFSET(22696, glWindowPos2iMESA, glWindowPos2iMESA, NULL, 761),
+ NAME_FUNC_OFFSET(22713, glWindowPos2ivMESA, glWindowPos2ivMESA, NULL, 762),
+ NAME_FUNC_OFFSET(22728, glWindowPos2ivMESA, glWindowPos2ivMESA, NULL, 762),
+ NAME_FUNC_OFFSET(22746, glWindowPos2sMESA, glWindowPos2sMESA, NULL, 763),
+ NAME_FUNC_OFFSET(22760, glWindowPos2sMESA, glWindowPos2sMESA, NULL, 763),
+ NAME_FUNC_OFFSET(22777, glWindowPos2svMESA, glWindowPos2svMESA, NULL, 764),
+ NAME_FUNC_OFFSET(22792, glWindowPos2svMESA, glWindowPos2svMESA, NULL, 764),
+ NAME_FUNC_OFFSET(22810, glWindowPos3dMESA, glWindowPos3dMESA, NULL, 765),
+ NAME_FUNC_OFFSET(22824, glWindowPos3dMESA, glWindowPos3dMESA, NULL, 765),
+ NAME_FUNC_OFFSET(22841, glWindowPos3dvMESA, glWindowPos3dvMESA, NULL, 766),
+ NAME_FUNC_OFFSET(22856, glWindowPos3dvMESA, glWindowPos3dvMESA, NULL, 766),
+ NAME_FUNC_OFFSET(22874, glWindowPos3fMESA, glWindowPos3fMESA, NULL, 767),
+ NAME_FUNC_OFFSET(22888, glWindowPos3fMESA, glWindowPos3fMESA, NULL, 767),
+ NAME_FUNC_OFFSET(22905, glWindowPos3fvMESA, glWindowPos3fvMESA, NULL, 768),
+ NAME_FUNC_OFFSET(22920, glWindowPos3fvMESA, glWindowPos3fvMESA, NULL, 768),
+ NAME_FUNC_OFFSET(22938, glWindowPos3iMESA, glWindowPos3iMESA, NULL, 769),
+ NAME_FUNC_OFFSET(22952, glWindowPos3iMESA, glWindowPos3iMESA, NULL, 769),
+ NAME_FUNC_OFFSET(22969, glWindowPos3ivMESA, glWindowPos3ivMESA, NULL, 770),
+ NAME_FUNC_OFFSET(22984, glWindowPos3ivMESA, glWindowPos3ivMESA, NULL, 770),
+ NAME_FUNC_OFFSET(23002, glWindowPos3sMESA, glWindowPos3sMESA, NULL, 771),
+ NAME_FUNC_OFFSET(23016, glWindowPos3sMESA, glWindowPos3sMESA, NULL, 771),
+ NAME_FUNC_OFFSET(23033, glWindowPos3svMESA, glWindowPos3svMESA, NULL, 772),
+ NAME_FUNC_OFFSET(23048, glWindowPos3svMESA, glWindowPos3svMESA, NULL, 772),
+ NAME_FUNC_OFFSET(23066, glBindProgramNV, glBindProgramNV, NULL, 784),
+ NAME_FUNC_OFFSET(23083, glDeleteProgramsNV, glDeleteProgramsNV, NULL, 785),
+ NAME_FUNC_OFFSET(23103, glGenProgramsNV, glGenProgramsNV, NULL, 787),
+ NAME_FUNC_OFFSET(23120, glGetVertexAttribPointervNV, glGetVertexAttribPointervNV, NULL, 793),
+ NAME_FUNC_OFFSET(23146, glGetVertexAttribPointervNV, glGetVertexAttribPointervNV, NULL, 793),
+ NAME_FUNC_OFFSET(23175, glIsProgramNV, glIsProgramNV, NULL, 797),
+ NAME_FUNC_OFFSET(23190, glPointParameteriNV, glPointParameteriNV, NULL, 861),
+ NAME_FUNC_OFFSET(23208, glPointParameterivNV, glPointParameterivNV, NULL, 862),
+ NAME_FUNC_OFFSET(23227, gl_dispatch_stub_865, gl_dispatch_stub_865, NULL, 865),
+ NAME_FUNC_OFFSET(23248, gl_dispatch_stub_867, gl_dispatch_stub_867, NULL, 867),
+ NAME_FUNC_OFFSET(23264, glPrimitiveRestartIndexNV, glPrimitiveRestartIndexNV, NULL, 874),
+ NAME_FUNC_OFFSET(23288, gl_dispatch_stub_877, gl_dispatch_stub_877, NULL, 877),
+ NAME_FUNC_OFFSET(23312, gl_dispatch_stub_877, gl_dispatch_stub_877, NULL, 877),
+ NAME_FUNC_OFFSET(23339, glBindFramebufferEXT, glBindFramebufferEXT, NULL, 878),
+ NAME_FUNC_OFFSET(23357, glBindRenderbufferEXT, glBindRenderbufferEXT, NULL, 879),
+ NAME_FUNC_OFFSET(23376, glCheckFramebufferStatusEXT, glCheckFramebufferStatusEXT, NULL, 880),
+ NAME_FUNC_OFFSET(23401, glDeleteFramebuffersEXT, glDeleteFramebuffersEXT, NULL, 881),
+ NAME_FUNC_OFFSET(23422, glDeleteRenderbuffersEXT, glDeleteRenderbuffersEXT, NULL, 882),
+ NAME_FUNC_OFFSET(23444, glFramebufferRenderbufferEXT, glFramebufferRenderbufferEXT, NULL, 883),
+ NAME_FUNC_OFFSET(23470, glFramebufferTexture1DEXT, glFramebufferTexture1DEXT, NULL, 884),
+ NAME_FUNC_OFFSET(23493, glFramebufferTexture2DEXT, glFramebufferTexture2DEXT, NULL, 885),
+ NAME_FUNC_OFFSET(23516, glFramebufferTexture3DEXT, glFramebufferTexture3DEXT, NULL, 886),
+ NAME_FUNC_OFFSET(23539, glGenFramebuffersEXT, glGenFramebuffersEXT, NULL, 887),
+ NAME_FUNC_OFFSET(23557, glGenRenderbuffersEXT, glGenRenderbuffersEXT, NULL, 888),
+ NAME_FUNC_OFFSET(23576, glGenerateMipmapEXT, glGenerateMipmapEXT, NULL, 889),
+ NAME_FUNC_OFFSET(23593, glGetFramebufferAttachmentParameterivEXT, glGetFramebufferAttachmentParameterivEXT, NULL, 890),
+ NAME_FUNC_OFFSET(23631, glGetRenderbufferParameterivEXT, glGetRenderbufferParameterivEXT, NULL, 891),
+ NAME_FUNC_OFFSET(23660, glIsFramebufferEXT, glIsFramebufferEXT, NULL, 892),
+ NAME_FUNC_OFFSET(23676, glIsRenderbufferEXT, glIsRenderbufferEXT, NULL, 893),
+ NAME_FUNC_OFFSET(23693, glRenderbufferStorageEXT, glRenderbufferStorageEXT, NULL, 894),
+ NAME_FUNC_OFFSET(23715, gl_dispatch_stub_895, gl_dispatch_stub_895, NULL, 895),
+ NAME_FUNC_OFFSET(23733, glBindFragDataLocationEXT, glBindFragDataLocationEXT, NULL, 898),
+ NAME_FUNC_OFFSET(23756, glGetFragDataLocationEXT, glGetFragDataLocationEXT, NULL, 899),
+ NAME_FUNC_OFFSET(23778, glGetUniformuivEXT, glGetUniformuivEXT, NULL, 900),
+ NAME_FUNC_OFFSET(23794, glGetVertexAttribIivEXT, glGetVertexAttribIivEXT, NULL, 901),
+ NAME_FUNC_OFFSET(23815, glGetVertexAttribIuivEXT, glGetVertexAttribIuivEXT, NULL, 902),
+ NAME_FUNC_OFFSET(23837, glUniform1uiEXT, glUniform1uiEXT, NULL, 903),
+ NAME_FUNC_OFFSET(23850, glUniform1uivEXT, glUniform1uivEXT, NULL, 904),
+ NAME_FUNC_OFFSET(23864, glUniform2uiEXT, glUniform2uiEXT, NULL, 905),
+ NAME_FUNC_OFFSET(23877, glUniform2uivEXT, glUniform2uivEXT, NULL, 906),
+ NAME_FUNC_OFFSET(23891, glUniform3uiEXT, glUniform3uiEXT, NULL, 907),
+ NAME_FUNC_OFFSET(23904, glUniform3uivEXT, glUniform3uivEXT, NULL, 908),
+ NAME_FUNC_OFFSET(23918, glUniform4uiEXT, glUniform4uiEXT, NULL, 909),
+ NAME_FUNC_OFFSET(23931, glUniform4uivEXT, glUniform4uivEXT, NULL, 910),
+ NAME_FUNC_OFFSET(23945, glVertexAttribI1iEXT, glVertexAttribI1iEXT, NULL, 911),
+ NAME_FUNC_OFFSET(23963, glVertexAttribI1ivEXT, glVertexAttribI1ivEXT, NULL, 912),
+ NAME_FUNC_OFFSET(23982, glVertexAttribI1uiEXT, glVertexAttribI1uiEXT, NULL, 913),
+ NAME_FUNC_OFFSET(24001, glVertexAttribI1uivEXT, glVertexAttribI1uivEXT, NULL, 914),
+ NAME_FUNC_OFFSET(24021, glVertexAttribI2iEXT, glVertexAttribI2iEXT, NULL, 915),
+ NAME_FUNC_OFFSET(24039, glVertexAttribI2ivEXT, glVertexAttribI2ivEXT, NULL, 916),
+ NAME_FUNC_OFFSET(24058, glVertexAttribI2uiEXT, glVertexAttribI2uiEXT, NULL, 917),
+ NAME_FUNC_OFFSET(24077, glVertexAttribI2uivEXT, glVertexAttribI2uivEXT, NULL, 918),
+ NAME_FUNC_OFFSET(24097, glVertexAttribI3iEXT, glVertexAttribI3iEXT, NULL, 919),
+ NAME_FUNC_OFFSET(24115, glVertexAttribI3ivEXT, glVertexAttribI3ivEXT, NULL, 920),
+ NAME_FUNC_OFFSET(24134, glVertexAttribI3uiEXT, glVertexAttribI3uiEXT, NULL, 921),
+ NAME_FUNC_OFFSET(24153, glVertexAttribI3uivEXT, glVertexAttribI3uivEXT, NULL, 922),
+ NAME_FUNC_OFFSET(24173, glVertexAttribI4bvEXT, glVertexAttribI4bvEXT, NULL, 923),
+ NAME_FUNC_OFFSET(24192, glVertexAttribI4iEXT, glVertexAttribI4iEXT, NULL, 924),
+ NAME_FUNC_OFFSET(24210, glVertexAttribI4ivEXT, glVertexAttribI4ivEXT, NULL, 925),
+ NAME_FUNC_OFFSET(24229, glVertexAttribI4svEXT, glVertexAttribI4svEXT, NULL, 926),
+ NAME_FUNC_OFFSET(24248, glVertexAttribI4ubvEXT, glVertexAttribI4ubvEXT, NULL, 927),
+ NAME_FUNC_OFFSET(24268, glVertexAttribI4uiEXT, glVertexAttribI4uiEXT, NULL, 928),
+ NAME_FUNC_OFFSET(24287, glVertexAttribI4uivEXT, glVertexAttribI4uivEXT, NULL, 929),
+ NAME_FUNC_OFFSET(24307, glVertexAttribI4usvEXT, glVertexAttribI4usvEXT, NULL, 930),
+ NAME_FUNC_OFFSET(24327, glVertexAttribIPointerEXT, glVertexAttribIPointerEXT, NULL, 931),
+ NAME_FUNC_OFFSET(24350, glFramebufferTextureLayerEXT, glFramebufferTextureLayerEXT, NULL, 932),
+ NAME_FUNC_OFFSET(24376, glFramebufferTextureLayerEXT, glFramebufferTextureLayerEXT, NULL, 932),
+ NAME_FUNC_OFFSET(24405, glColorMaskIndexedEXT, glColorMaskIndexedEXT, NULL, 933),
+ NAME_FUNC_OFFSET(24418, glDisableIndexedEXT, glDisableIndexedEXT, NULL, 934),
+ NAME_FUNC_OFFSET(24429, glEnableIndexedEXT, glEnableIndexedEXT, NULL, 935),
+ NAME_FUNC_OFFSET(24439, glGetBooleanIndexedvEXT, glGetBooleanIndexedvEXT, NULL, 936),
+ NAME_FUNC_OFFSET(24455, glGetIntegerIndexedvEXT, glGetIntegerIndexedvEXT, NULL, 937),
+ NAME_FUNC_OFFSET(24471, glIsEnabledIndexedEXT, glIsEnabledIndexedEXT, NULL, 938),
+ NAME_FUNC_OFFSET(24484, glGetTexParameterIivEXT, glGetTexParameterIivEXT, NULL, 941),
+ NAME_FUNC_OFFSET(24505, glGetTexParameterIuivEXT, glGetTexParameterIuivEXT, NULL, 942),
+ NAME_FUNC_OFFSET(24527, glTexParameterIivEXT, glTexParameterIivEXT, NULL, 943),
+ NAME_FUNC_OFFSET(24545, glTexParameterIuivEXT, glTexParameterIuivEXT, NULL, 944),
+ NAME_FUNC_OFFSET(24564, glBeginConditionalRenderNV, glBeginConditionalRenderNV, NULL, 945),
+ NAME_FUNC_OFFSET(24589, glEndConditionalRenderNV, glEndConditionalRenderNV, NULL, 946),
+ NAME_FUNC_OFFSET(24612, glBeginTransformFeedbackEXT, glBeginTransformFeedbackEXT, NULL, 947),
+ NAME_FUNC_OFFSET(24637, glBindBufferBaseEXT, glBindBufferBaseEXT, NULL, 948),
+ NAME_FUNC_OFFSET(24654, glBindBufferRangeEXT, glBindBufferRangeEXT, NULL, 950),
+ NAME_FUNC_OFFSET(24672, glEndTransformFeedbackEXT, glEndTransformFeedbackEXT, NULL, 951),
+ NAME_FUNC_OFFSET(24695, glGetTransformFeedbackVaryingEXT, glGetTransformFeedbackVaryingEXT, NULL, 952),
+ NAME_FUNC_OFFSET(24725, glTransformFeedbackVaryingsEXT, glTransformFeedbackVaryingsEXT, NULL, 953),
+ NAME_FUNC_OFFSET(24753, glProvokingVertexEXT, glProvokingVertexEXT, NULL, 954),
+ NAME_FUNC_OFFSET(24771, gl_dispatch_stub_965, gl_dispatch_stub_965, NULL, 965),
+ NAME_FUNC_OFFSET(24792, gl_dispatch_stub_966, gl_dispatch_stub_966, NULL, 966),
NAME_FUNC_OFFSET(-1, NULL, NULL, NULL, 0)
};
diff --git a/xorg-server/hw/xfree86/common/xf86Events.c b/xorg-server/hw/xfree86/common/xf86Events.c
index 3ad34b543..9dabf103f 100644
--- a/xorg-server/hw/xfree86/common/xf86Events.c
+++ b/xorg-server/hw/xfree86/common/xf86Events.c
@@ -376,7 +376,7 @@ static void
xf86ReleaseKeys(DeviceIntPtr pDev)
{
KeyClassPtr keyc;
- int i, sigstate;
+ int i;
if (!pDev || !pDev->key)
return;
diff --git a/xorg-server/hw/xwin/glx/gl.spec b/xorg-server/hw/xwin/glx/gl.spec
index 890a38338..55e2d3b4c 100644
--- a/xorg-server/hw/xwin/glx/gl.spec
+++ b/xorg-server/hw/xwin/glx/gl.spec
@@ -7,7 +7,7 @@
# This document is licensed under the SGI Free Software B License Version
# 2.0. For details, see http://oss.sgi.com/projects/FreeB/ .
#
-# $Revision: 18818 $ on $Date: 2012-08-06 02:01:57 -0700 (Mon, 06 Aug 2012) $
+# $Revision: 19329 $ on $Date: 2012-09-28 12:26:05 -0700 (Fri, 28 Sep 2012) $
required-props:
# Description of a parameter
@@ -22,12 +22,12 @@ vectorequiv: *
# early GL 1.0 functions, later functions just have a core version
# (e.g. VERSION_major_minor) or extension name for the category.
category: display-list drawing drawing-control feedback framebuf misc modeling pixel-op pixel-rw state-req xform
-category: VERSION_1_0 VERSION_1_0_DEPRECATED VERSION_1_1 VERSION_1_1_DEPRECATED VERSION_1_2 VERSION_1_2_DEPRECATED VERSION_1_3 VERSION_1_3_DEPRECATED VERSION_1_4 VERSION_1_4_DEPRECATED VERSION_1_5 VERSION_2_0 VERSION_2_1 VERSION_3_0 VERSION_3_0_DEPRECATED VERSION_3_1 VERSION_3_2 VERSION_3_3 VERSION_4_0 VERSION_4_1 VERSION_4_1_DEPRECATED VERSION_4_2 VERSION_4_3
+category: VERSION_1_0 VERSION_1_1 VERSION_1_2 VERSION_1_3 VERSION_1_4 VERSION_1_5 VERSION_2_0 VERSION_2_1 VERSION_3_0 VERSION_3_1 VERSION_3_2 VERSION_3_3 VERSION_4_0 VERSION_4_1 VERSION_4_2 VERSION_4_3
category: 3DFX_tbuffer
-category: AMD_conservative_depth AMD_debug_output AMD_draw_buffers_blend AMD_multi_draw_indirect AMD_name_gen_delete AMD_performance_monitor AMD_sample_positions AMD_stencil_operation_extended AMD_vertex_shader_tesselator
+category: AMD_conservative_depth AMD_debug_output AMD_draw_buffers_blend AMD_multi_draw_indirect AMD_name_gen_delete AMD_performance_monitor AMD_sample_positions AMD_sparse_texture AMD_stencil_operation_extended AMD_vertex_shader_tesselator
category: APPLE_aux_depth_stencil APPLE_element_array APPLE_fence APPLE_float_pixels APPLE_flush_buffer_range APPLE_object_purgeable APPLE_row_bytes APPLE_texture_range APPLE_vertex_array_object APPLE_vertex_array_range APPLE_vertex_program_evaluators
category: ARB_ES2_compatibility ARB_base_instance ARB_blend_func_extended ARB_cl_event ARB_color_buffer_float ARB_copy_buffer ARB_debug_output ARB_depth_buffer_float ARB_draw_buffers ARB_draw_buffers_blend ARB_draw_elements_base_vertex ARB_draw_indirect ARB_draw_instanced ARB_fragment_program ARB_fragment_shader ARB_framebuffer_object ARB_framebuffer_sRGB ARB_geometry_shader4 ARB_get_program_binary ARB_gpu_shader_fp64 ARB_half_float_vertex ARB_instanced_arrays ARB_internalformat_query ARB_map_buffer_range ARB_matrix_palette ARB_multisample ARB_multitexture ARB_occlusion_query ARB_point_parameters ARB_provoking_vertex ARB_robustness ARB_sample_shading ARB_sampler_objects ARB_separate_shader_objects ARB_shader_atomic_counters ARB_shader_image_load_store ARB_shader_objects ARB_shader_subroutine ARB_shading_language_include ARB_sync ARB_tessellation_shader ARB_texture_buffer_object ARB_texture_compression ARB_texture_compression_rgtc ARB_texture_multisample ARB_texture_rectangle ARB_texture_rg ARB_texture_storage ARB_timer_query ARB_transform_feedback2 ARB_transform_feedback3 ARB_transform_feedback_instanced ARB_transpose_matrix ARB_uniform_buffer_object ARB_vertex_array_object ARB_vertex_attrib_64bit ARB_vertex_blend ARB_vertex_buffer_object ARB_vertex_program ARB_vertex_shader ARB_vertex_type_2_10_10_10_rev ARB_viewport_array ARB_window_pos
-category: ARB_clear_buffer_object ARB_compute_shader ARB_copy_image ARB_debug_group ARB_debug_label ARB_debug_output ARB_framebuffer_no_attachments ARB_internalformat_query2 ARB_invalidate_subdata ARB_multi_draw_indirect ARB_program_interface_query ARB_shader_storage_buffer_object ARB_texture_buffer_range ARB_texture_storage_multisample ARB_texture_view ARB_vertex_attrib_binding
+category: ARB_clear_buffer_object ARB_compute_shader ARB_copy_image ARB_framebuffer_no_attachments ARB_internalformat_query2 ARB_invalidate_subdata ARB_multi_draw_indirect ARB_program_interface_query ARB_shader_storage_buffer_object ARB_texture_buffer_range ARB_texture_storage_multisample ARB_texture_view ARB_vertex_attrib_binding
category: ATI_draw_buffers ATI_draw_buffers ATI_element_array ATI_envmap_bumpmap ATI_fragment_shader ATI_map_object_buffer ATI_meminfo ATI_pn_triangles ATI_separate_stencil ATI_texture_env_combine3 ATI_texture_float ATI_vertex_array_object ATI_vertex_attrib_array_object ATI_vertex_streams
category: EXT_bindable_uniform EXT_blend_color EXT_blend_equation_separate EXT_blend_func_separate EXT_blend_minmax EXT_color_subtable EXT_compiled_vertex_array EXT_convolution EXT_coordinate_frame EXT_copy_texture EXT_cull_vertex EXT_depth_bounds_test EXT_direct_state_access EXT_draw_buffers2 EXT_draw_instanced EXT_draw_range_elements EXT_fog_coord EXT_framebuffer_blit EXT_framebuffer_multisample EXT_framebuffer_object EXT_geometry_shader4 EXT_gpu_program_parameters EXT_gpu_shader4 EXT_histogram EXT_index_func EXT_index_material EXT_light_texture EXT_multi_draw_arrays EXT_multisample EXT_paletted_texture EXT_pixel_transform EXT_point_parameters EXT_polygon_offset EXT_provoking_vertex EXT_secondary_color EXT_separate_shader_objects EXT_shader_image_load_store EXT_stencil_clear_tag EXT_stencil_two_side EXT_subtexture EXT_texture3D EXT_texture_buffer_object EXT_texture_integer EXT_texture_object EXT_texture_perturb_normal EXT_texture_snorm EXT_texture_swizzle EXT_timer_query EXT_transform_feedback EXT_vertex_array EXT_vertex_array_bgra EXT_vertex_attrib_64bit EXT_vertex_shader EXT_vertex_weighting EXT_x11_sync_object
category: GREMEDY_frame_terminator GREMEDY_string_marker
@@ -67,6 +67,9 @@ category: SUNX_constant_data SUN_global_alpha SUN_mesh_array SUN_triangle_list S
version: 1.0 1.1 1.2 1.3 1.4 1.5 2.0 2.1 3.0 3.1 3.2 3.3 4.0 4.1 4.2 4.3
# Core version in which a function was removed
deprecated: 3.1
+# API profile - should only be compatibility since there are no core-only
+# functions for now.
+profile: compatibility
# GLX Single, Rendering, or Vendor Private opcode
glxsingle: *
glxropcode: *
@@ -794,7 +797,8 @@ NewList(list, mode)
param list List in value
param mode ListMode in value
dlflags notlistable
- category VERSION_1_0_DEPRECATED # old: display-list
+ category VERSION_1_0 # old: display-list
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 101
@@ -804,7 +808,8 @@ NewList(list, mode)
EndList()
return void
dlflags notlistable
- category VERSION_1_0_DEPRECATED # old: display-list
+ category VERSION_1_0 # old: display-list
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 102
@@ -814,7 +819,8 @@ EndList()
CallList(list)
return void
param list List in value
- category VERSION_1_0_DEPRECATED # old: display-list
+ category VERSION_1_0 # old: display-list
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 1
@@ -825,8 +831,9 @@ CallLists(n, type, lists)
param n SizeI in value
param type ListNameType in value
param lists Void in array [COMPSIZE(n/type)]
- category VERSION_1_0_DEPRECATED # old: display-list
+ category VERSION_1_0 # old: display-list
glxflags client-handcode server-handcode
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 2
@@ -837,7 +844,8 @@ DeleteLists(list, range)
param list List in value
param range SizeI in value
dlflags notlistable
- category VERSION_1_0_DEPRECATED # old: display-list
+ category VERSION_1_0 # old: display-list
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 103
@@ -848,7 +856,8 @@ GenLists(range)
return List
param range SizeI in value
dlflags notlistable
- category VERSION_1_0_DEPRECATED # old: display-list
+ category VERSION_1_0 # old: display-list
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 104
@@ -857,7 +866,8 @@ GenLists(range)
ListBase(base)
return void
param base List in value
- category VERSION_1_0_DEPRECATED # old: display-list
+ category VERSION_1_0 # old: display-list
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 3
@@ -868,7 +878,8 @@ ListBase(base)
Begin(mode)
return void
param mode BeginMode in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 4
@@ -883,9 +894,10 @@ Bitmap(width, height, xorig, yorig, xmove, ymove, bitmap)
param xmove CoordF in value
param ymove CoordF in value
param bitmap UInt8 in array [COMPSIZE(width/height)]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
dlflags handcode
glxflags client-handcode server-handcode
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 5
@@ -897,8 +909,9 @@ Color3b(red, green, blue)
param red ColorB in value
param green ColorB in value
param blue ColorB in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Color3bv
+ profile compatibility
version 1.0
deprecated 3.1
offset 9
@@ -906,7 +919,8 @@ Color3b(red, green, blue)
Color3bv(v)
return void
param v ColorB in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 6
@@ -917,8 +931,9 @@ Color3d(red, green, blue)
param red ColorD in value
param green ColorD in value
param blue ColorD in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Color3dv
+ profile compatibility
version 1.0
deprecated 3.1
offset 11
@@ -926,7 +941,8 @@ Color3d(red, green, blue)
Color3dv(v)
return void
param v ColorD in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 7
@@ -937,8 +953,9 @@ Color3f(red, green, blue)
param red ColorF in value
param green ColorF in value
param blue ColorF in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Color3fv
+ profile compatibility
version 1.0
deprecated 3.1
offset 13
@@ -946,7 +963,8 @@ Color3f(red, green, blue)
Color3fv(v)
return void
param v ColorF in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 8
@@ -957,8 +975,9 @@ Color3i(red, green, blue)
param red ColorI in value
param green ColorI in value
param blue ColorI in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Color3iv
+ profile compatibility
version 1.0
deprecated 3.1
offset 15
@@ -966,7 +985,8 @@ Color3i(red, green, blue)
Color3iv(v)
return void
param v ColorI in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 9
@@ -977,8 +997,9 @@ Color3s(red, green, blue)
param red ColorS in value
param green ColorS in value
param blue ColorS in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Color3sv
+ profile compatibility
version 1.0
deprecated 3.1
offset 17
@@ -986,7 +1007,8 @@ Color3s(red, green, blue)
Color3sv(v)
return void
param v ColorS in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 10
@@ -997,8 +1019,9 @@ Color3ub(red, green, blue)
param red ColorUB in value
param green ColorUB in value
param blue ColorUB in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Color3ubv
+ profile compatibility
version 1.0
deprecated 3.1
offset 19
@@ -1006,7 +1029,8 @@ Color3ub(red, green, blue)
Color3ubv(v)
return void
param v ColorUB in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 11
@@ -1017,8 +1041,9 @@ Color3ui(red, green, blue)
param red ColorUI in value
param green ColorUI in value
param blue ColorUI in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Color3uiv
+ profile compatibility
version 1.0
deprecated 3.1
offset 21
@@ -1026,7 +1051,8 @@ Color3ui(red, green, blue)
Color3uiv(v)
return void
param v ColorUI in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 12
@@ -1037,8 +1063,9 @@ Color3us(red, green, blue)
param red ColorUS in value
param green ColorUS in value
param blue ColorUS in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Color3usv
+ profile compatibility
version 1.0
deprecated 3.1
offset 23
@@ -1046,7 +1073,8 @@ Color3us(red, green, blue)
Color3usv(v)
return void
param v ColorUS in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 13
@@ -1058,8 +1086,9 @@ Color4b(red, green, blue, alpha)
param green ColorB in value
param blue ColorB in value
param alpha ColorB in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Color4bv
+ profile compatibility
version 1.0
deprecated 3.1
offset 25
@@ -1067,7 +1096,8 @@ Color4b(red, green, blue, alpha)
Color4bv(v)
return void
param v ColorB in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 14
@@ -1079,8 +1109,9 @@ Color4d(red, green, blue, alpha)
param green ColorD in value
param blue ColorD in value
param alpha ColorD in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Color4dv
+ profile compatibility
version 1.0
deprecated 3.1
offset 27
@@ -1088,7 +1119,8 @@ Color4d(red, green, blue, alpha)
Color4dv(v)
return void
param v ColorD in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 15
@@ -1100,8 +1132,9 @@ Color4f(red, green, blue, alpha)
param green ColorF in value
param blue ColorF in value
param alpha ColorF in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Color4fv
+ profile compatibility
version 1.0
deprecated 3.1
offset 29
@@ -1109,7 +1142,8 @@ Color4f(red, green, blue, alpha)
Color4fv(v)
return void
param v ColorF in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 16
@@ -1121,8 +1155,9 @@ Color4i(red, green, blue, alpha)
param green ColorI in value
param blue ColorI in value
param alpha ColorI in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Color4iv
+ profile compatibility
version 1.0
deprecated 3.1
offset 31
@@ -1130,7 +1165,8 @@ Color4i(red, green, blue, alpha)
Color4iv(v)
return void
param v ColorI in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 17
@@ -1142,8 +1178,9 @@ Color4s(red, green, blue, alpha)
param green ColorS in value
param blue ColorS in value
param alpha ColorS in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Color4sv
+ profile compatibility
version 1.0
deprecated 3.1
offset 33
@@ -1151,7 +1188,8 @@ Color4s(red, green, blue, alpha)
Color4sv(v)
return void
param v ColorS in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 18
@@ -1163,8 +1201,9 @@ Color4ub(red, green, blue, alpha)
param green ColorUB in value
param blue ColorUB in value
param alpha ColorUB in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Color4ubv
+ profile compatibility
version 1.0
deprecated 3.1
offset 35
@@ -1172,7 +1211,8 @@ Color4ub(red, green, blue, alpha)
Color4ubv(v)
return void
param v ColorUB in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 19
@@ -1184,8 +1224,9 @@ Color4ui(red, green, blue, alpha)
param green ColorUI in value
param blue ColorUI in value
param alpha ColorUI in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Color4uiv
+ profile compatibility
version 1.0
deprecated 3.1
offset 37
@@ -1193,7 +1234,8 @@ Color4ui(red, green, blue, alpha)
Color4uiv(v)
return void
param v ColorUI in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 20
@@ -1205,8 +1247,9 @@ Color4us(red, green, blue, alpha)
param green ColorUS in value
param blue ColorUS in value
param alpha ColorUS in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Color4usv
+ profile compatibility
version 1.0
deprecated 3.1
offset 39
@@ -1214,7 +1257,8 @@ Color4us(red, green, blue, alpha)
Color4usv(v)
return void
param v ColorUS in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 21
@@ -1223,8 +1267,9 @@ Color4usv(v)
EdgeFlag(flag)
return void
param flag Boolean in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv EdgeFlagv
+ profile compatibility
version 1.0
deprecated 3.1
offset 41
@@ -1232,7 +1277,8 @@ EdgeFlag(flag)
EdgeFlagv(flag)
return void
param flag Boolean in reference
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 22
@@ -1240,7 +1286,8 @@ EdgeFlagv(flag)
End()
return void
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 23
@@ -1249,8 +1296,9 @@ End()
Indexd(c)
return void
param c ColorIndexValueD in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Indexdv
+ profile compatibility
version 1.0
deprecated 3.1
offset 44
@@ -1258,7 +1306,8 @@ Indexd(c)
Indexdv(c)
return void
param c ColorIndexValueD in array [1]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 24
@@ -1267,8 +1316,9 @@ Indexdv(c)
Indexf(c)
return void
param c ColorIndexValueF in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Indexfv
+ profile compatibility
version 1.0
deprecated 3.1
offset 46
@@ -1276,7 +1326,8 @@ Indexf(c)
Indexfv(c)
return void
param c ColorIndexValueF in array [1]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 25
@@ -1285,8 +1336,9 @@ Indexfv(c)
Indexi(c)
return void
param c ColorIndexValueI in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Indexiv
+ profile compatibility
version 1.0
deprecated 3.1
offset 48
@@ -1294,7 +1346,8 @@ Indexi(c)
Indexiv(c)
return void
param c ColorIndexValueI in array [1]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 26
@@ -1303,8 +1356,9 @@ Indexiv(c)
Indexs(c)
return void
param c ColorIndexValueS in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Indexsv
+ profile compatibility
version 1.0
deprecated 3.1
offset 50
@@ -1312,7 +1366,8 @@ Indexs(c)
Indexsv(c)
return void
param c ColorIndexValueS in array [1]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 27
@@ -1323,8 +1378,9 @@ Normal3b(nx, ny, nz)
param nx Int8 in value
param ny Int8 in value
param nz Int8 in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Normal3bv
+ profile compatibility
version 1.0
deprecated 3.1
offset 52
@@ -1332,7 +1388,8 @@ Normal3b(nx, ny, nz)
Normal3bv(v)
return void
param v Int8 in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 28
@@ -1343,8 +1400,9 @@ Normal3d(nx, ny, nz)
param nx CoordD in value
param ny CoordD in value
param nz CoordD in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Normal3dv
+ profile compatibility
version 1.0
deprecated 3.1
offset 54
@@ -1352,7 +1410,8 @@ Normal3d(nx, ny, nz)
Normal3dv(v)
return void
param v CoordD in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 29
@@ -1363,8 +1422,9 @@ Normal3f(nx, ny, nz)
param nx CoordF in value
param ny CoordF in value
param nz CoordF in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Normal3fv
+ profile compatibility
version 1.0
deprecated 3.1
offset 56
@@ -1372,7 +1432,8 @@ Normal3f(nx, ny, nz)
Normal3fv(v)
return void
param v CoordF in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 30
@@ -1383,8 +1444,9 @@ Normal3i(nx, ny, nz)
param nx Int32 in value
param ny Int32 in value
param nz Int32 in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Normal3iv
+ profile compatibility
version 1.0
deprecated 3.1
offset 58
@@ -1392,7 +1454,8 @@ Normal3i(nx, ny, nz)
Normal3iv(v)
return void
param v Int32 in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 31
@@ -1403,8 +1466,9 @@ Normal3s(nx, ny, nz)
param nx Int16 in value
param ny Int16 in value
param nz Int16 in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Normal3sv
+ profile compatibility
version 1.0
deprecated 3.1
offset 60
@@ -1412,7 +1476,8 @@ Normal3s(nx, ny, nz)
Normal3sv(v)
return void
param v Int16 in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 32
@@ -1422,8 +1487,9 @@ RasterPos2d(x, y)
return void
param x CoordD in value
param y CoordD in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv RasterPos2dv
+ profile compatibility
version 1.0
deprecated 3.1
offset 62
@@ -1431,7 +1497,8 @@ RasterPos2d(x, y)
RasterPos2dv(v)
return void
param v CoordD in array [2]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 33
@@ -1441,8 +1508,9 @@ RasterPos2f(x, y)
return void
param x CoordF in value
param y CoordF in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv RasterPos2fv
+ profile compatibility
version 1.0
deprecated 3.1
offset 64
@@ -1450,7 +1518,8 @@ RasterPos2f(x, y)
RasterPos2fv(v)
return void
param v CoordF in array [2]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 34
@@ -1460,8 +1529,9 @@ RasterPos2i(x, y)
return void
param x CoordI in value
param y CoordI in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv RasterPos2iv
+ profile compatibility
version 1.0
deprecated 3.1
offset 66
@@ -1469,7 +1539,8 @@ RasterPos2i(x, y)
RasterPos2iv(v)
return void
param v CoordI in array [2]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 35
@@ -1479,8 +1550,9 @@ RasterPos2s(x, y)
return void
param x CoordS in value
param y CoordS in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv RasterPos2sv
+ profile compatibility
version 1.0
deprecated 3.1
offset 68
@@ -1488,7 +1560,8 @@ RasterPos2s(x, y)
RasterPos2sv(v)
return void
param v CoordS in array [2]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 36
@@ -1500,7 +1573,8 @@ RasterPos3d(x, y, z)
param y CoordD in value
param z CoordD in value
vectorequiv RasterPos3dv
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
offset 70
@@ -1508,7 +1582,8 @@ RasterPos3d(x, y, z)
RasterPos3dv(v)
return void
param v CoordD in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 37
@@ -1519,8 +1594,9 @@ RasterPos3f(x, y, z)
param x CoordF in value
param y CoordF in value
param z CoordF in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv RasterPos3fv
+ profile compatibility
version 1.0
deprecated 3.1
offset 72
@@ -1528,7 +1604,8 @@ RasterPos3f(x, y, z)
RasterPos3fv(v)
return void
param v CoordF in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 38
@@ -1539,8 +1616,9 @@ RasterPos3i(x, y, z)
param x CoordI in value
param y CoordI in value
param z CoordI in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv RasterPos3iv
+ profile compatibility
version 1.0
deprecated 3.1
offset 74
@@ -1548,7 +1626,8 @@ RasterPos3i(x, y, z)
RasterPos3iv(v)
return void
param v CoordI in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 39
@@ -1559,8 +1638,9 @@ RasterPos3s(x, y, z)
param x CoordS in value
param y CoordS in value
param z CoordS in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv RasterPos3sv
+ profile compatibility
version 1.0
deprecated 3.1
offset 76
@@ -1568,7 +1648,8 @@ RasterPos3s(x, y, z)
RasterPos3sv(v)
return void
param v CoordS in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 40
@@ -1581,7 +1662,8 @@ RasterPos4d(x, y, z, w)
param z CoordD in value
param w CoordD in value
vectorequiv RasterPos4dv
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
offset 78
@@ -1589,7 +1671,8 @@ RasterPos4d(x, y, z, w)
RasterPos4dv(v)
return void
param v CoordD in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 41
@@ -1601,8 +1684,9 @@ RasterPos4f(x, y, z, w)
param y CoordF in value
param z CoordF in value
param w CoordF in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv RasterPos4fv
+ profile compatibility
version 1.0
deprecated 3.1
offset 80
@@ -1610,7 +1694,8 @@ RasterPos4f(x, y, z, w)
RasterPos4fv(v)
return void
param v CoordF in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 42
@@ -1622,8 +1707,9 @@ RasterPos4i(x, y, z, w)
param y CoordI in value
param z CoordI in value
param w CoordI in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv RasterPos4iv
+ profile compatibility
version 1.0
deprecated 3.1
offset 82
@@ -1631,7 +1717,8 @@ RasterPos4i(x, y, z, w)
RasterPos4iv(v)
return void
param v CoordI in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 43
@@ -1643,8 +1730,9 @@ RasterPos4s(x, y, z, w)
param y CoordS in value
param z CoordS in value
param w CoordS in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv RasterPos4sv
+ profile compatibility
version 1.0
deprecated 3.1
offset 84
@@ -1652,7 +1740,8 @@ RasterPos4s(x, y, z, w)
RasterPos4sv(v)
return void
param v CoordS in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 44
@@ -1664,8 +1753,9 @@ Rectd(x1, y1, x2, y2)
param y1 CoordD in value
param x2 CoordD in value
param y2 CoordD in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Rectdv
+ profile compatibility
version 1.0
deprecated 3.1
offset 86
@@ -1674,7 +1764,8 @@ Rectdv(v1, v2)
return void
param v1 CoordD in array [2]
param v2 CoordD in array [2]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 45
@@ -1686,8 +1777,9 @@ Rectf(x1, y1, x2, y2)
param y1 CoordF in value
param x2 CoordF in value
param y2 CoordF in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Rectfv
+ profile compatibility
version 1.0
deprecated 3.1
offset 88
@@ -1696,7 +1788,8 @@ Rectfv(v1, v2)
return void
param v1 CoordF in array [2]
param v2 CoordF in array [2]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 46
@@ -1708,8 +1801,9 @@ Recti(x1, y1, x2, y2)
param y1 CoordI in value
param x2 CoordI in value
param y2 CoordI in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Rectiv
+ profile compatibility
version 1.0
deprecated 3.1
offset 90
@@ -1718,7 +1812,8 @@ Rectiv(v1, v2)
return void
param v1 CoordI in array [2]
param v2 CoordI in array [2]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 47
@@ -1730,8 +1825,9 @@ Rects(x1, y1, x2, y2)
param y1 CoordS in value
param x2 CoordS in value
param y2 CoordS in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Rectsv
+ profile compatibility
version 1.0
deprecated 3.1
offset 92
@@ -1740,7 +1836,8 @@ Rectsv(v1, v2)
return void
param v1 CoordS in array [2]
param v2 CoordS in array [2]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 48
@@ -1749,8 +1846,9 @@ Rectsv(v1, v2)
TexCoord1d(s)
return void
param s CoordD in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv TexCoord1dv
+ profile compatibility
version 1.0
deprecated 3.1
offset 94
@@ -1758,7 +1856,8 @@ TexCoord1d(s)
TexCoord1dv(v)
return void
param v CoordD in array [1]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 49
@@ -1767,8 +1866,9 @@ TexCoord1dv(v)
TexCoord1f(s)
return void
param s CoordF in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv TexCoord1fv
+ profile compatibility
version 1.0
deprecated 3.1
offset 96
@@ -1776,7 +1876,8 @@ TexCoord1f(s)
TexCoord1fv(v)
return void
param v CoordF in array [1]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 50
@@ -1785,8 +1886,9 @@ TexCoord1fv(v)
TexCoord1i(s)
return void
param s CoordI in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv TexCoord1iv
+ profile compatibility
version 1.0
deprecated 3.1
offset 98
@@ -1794,7 +1896,8 @@ TexCoord1i(s)
TexCoord1iv(v)
return void
param v CoordI in array [1]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 51
@@ -1803,8 +1906,9 @@ TexCoord1iv(v)
TexCoord1s(s)
return void
param s CoordS in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv TexCoord1sv
+ profile compatibility
version 1.0
deprecated 3.1
offset 100
@@ -1812,7 +1916,8 @@ TexCoord1s(s)
TexCoord1sv(v)
return void
param v CoordS in array [1]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 52
@@ -1822,8 +1927,9 @@ TexCoord2d(s, t)
return void
param s CoordD in value
param t CoordD in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv TexCoord2dv
+ profile compatibility
version 1.0
deprecated 3.1
offset 102
@@ -1831,7 +1937,8 @@ TexCoord2d(s, t)
TexCoord2dv(v)
return void
param v CoordD in array [2]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 53
@@ -1841,8 +1948,9 @@ TexCoord2f(s, t)
return void
param s CoordF in value
param t CoordF in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv TexCoord2fv
+ profile compatibility
version 1.0
deprecated 3.1
offset 104
@@ -1850,7 +1958,8 @@ TexCoord2f(s, t)
TexCoord2fv(v)
return void
param v CoordF in array [2]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 54
@@ -1860,8 +1969,9 @@ TexCoord2i(s, t)
return void
param s CoordI in value
param t CoordI in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv TexCoord2iv
+ profile compatibility
version 1.0
deprecated 3.1
offset 106
@@ -1869,7 +1979,8 @@ TexCoord2i(s, t)
TexCoord2iv(v)
return void
param v CoordI in array [2]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 55
@@ -1879,8 +1990,9 @@ TexCoord2s(s, t)
return void
param s CoordS in value
param t CoordS in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv TexCoord2sv
+ profile compatibility
version 1.0
deprecated 3.1
offset 108
@@ -1888,7 +2000,8 @@ TexCoord2s(s, t)
TexCoord2sv(v)
return void
param v CoordS in array [2]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 56
@@ -1899,8 +2012,9 @@ TexCoord3d(s, t, r)
param s CoordD in value
param t CoordD in value
param r CoordD in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv TexCoord3dv
+ profile compatibility
version 1.0
deprecated 3.1
offset 110
@@ -1908,7 +2022,8 @@ TexCoord3d(s, t, r)
TexCoord3dv(v)
return void
param v CoordD in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 57
@@ -1919,8 +2034,9 @@ TexCoord3f(s, t, r)
param s CoordF in value
param t CoordF in value
param r CoordF in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv TexCoord3fv
+ profile compatibility
version 1.0
deprecated 3.1
offset 112
@@ -1928,7 +2044,8 @@ TexCoord3f(s, t, r)
TexCoord3fv(v)
return void
param v CoordF in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 58
@@ -1939,8 +2056,9 @@ TexCoord3i(s, t, r)
param s CoordI in value
param t CoordI in value
param r CoordI in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv TexCoord3iv
+ profile compatibility
version 1.0
deprecated 3.1
offset 114
@@ -1948,7 +2066,8 @@ TexCoord3i(s, t, r)
TexCoord3iv(v)
return void
param v CoordI in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 59
@@ -1959,8 +2078,9 @@ TexCoord3s(s, t, r)
param s CoordS in value
param t CoordS in value
param r CoordS in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv TexCoord3sv
+ profile compatibility
version 1.0
deprecated 3.1
offset 116
@@ -1968,7 +2088,8 @@ TexCoord3s(s, t, r)
TexCoord3sv(v)
return void
param v CoordS in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 60
@@ -1980,8 +2101,9 @@ TexCoord4d(s, t, r, q)
param t CoordD in value
param r CoordD in value
param q CoordD in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv TexCoord4dv
+ profile compatibility
version 1.0
deprecated 3.1
offset 118
@@ -1989,7 +2111,8 @@ TexCoord4d(s, t, r, q)
TexCoord4dv(v)
return void
param v CoordD in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 61
@@ -2001,8 +2124,9 @@ TexCoord4f(s, t, r, q)
param t CoordF in value
param r CoordF in value
param q CoordF in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv TexCoord4fv
+ profile compatibility
version 1.0
deprecated 3.1
offset 120
@@ -2010,7 +2134,8 @@ TexCoord4f(s, t, r, q)
TexCoord4fv(v)
return void
param v CoordF in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 62
@@ -2022,8 +2147,9 @@ TexCoord4i(s, t, r, q)
param t CoordI in value
param r CoordI in value
param q CoordI in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv TexCoord4iv
+ profile compatibility
version 1.0
deprecated 3.1
offset 122
@@ -2031,7 +2157,8 @@ TexCoord4i(s, t, r, q)
TexCoord4iv(v)
return void
param v CoordI in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 63
@@ -2043,8 +2170,9 @@ TexCoord4s(s, t, r, q)
param t CoordS in value
param r CoordS in value
param q CoordS in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv TexCoord4sv
+ profile compatibility
version 1.0
deprecated 3.1
offset 124
@@ -2052,7 +2180,8 @@ TexCoord4s(s, t, r, q)
TexCoord4sv(v)
return void
param v CoordS in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 64
@@ -2062,8 +2191,9 @@ Vertex2d(x, y)
return void
param x CoordD in value
param y CoordD in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Vertex2dv
+ profile compatibility
version 1.0
deprecated 3.1
offset 126
@@ -2071,7 +2201,8 @@ Vertex2d(x, y)
Vertex2dv(v)
return void
param v CoordD in array [2]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 65
@@ -2081,8 +2212,9 @@ Vertex2f(x, y)
return void
param x CoordF in value
param y CoordF in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Vertex2fv
+ profile compatibility
version 1.0
deprecated 3.1
offset 128
@@ -2090,7 +2222,8 @@ Vertex2f(x, y)
Vertex2fv(v)
return void
param v CoordF in array [2]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 66
@@ -2100,8 +2233,9 @@ Vertex2i(x, y)
return void
param x CoordI in value
param y CoordI in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Vertex2iv
+ profile compatibility
version 1.0
deprecated 3.1
offset 130
@@ -2109,7 +2243,8 @@ Vertex2i(x, y)
Vertex2iv(v)
return void
param v CoordI in array [2]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 67
@@ -2119,8 +2254,9 @@ Vertex2s(x, y)
return void
param x CoordS in value
param y CoordS in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Vertex2sv
+ profile compatibility
version 1.0
deprecated 3.1
offset 132
@@ -2128,7 +2264,8 @@ Vertex2s(x, y)
Vertex2sv(v)
return void
param v CoordS in array [2]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 68
@@ -2139,8 +2276,9 @@ Vertex3d(x, y, z)
param x CoordD in value
param y CoordD in value
param z CoordD in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Vertex3dv
+ profile compatibility
version 1.0
deprecated 3.1
offset 134
@@ -2148,7 +2286,8 @@ Vertex3d(x, y, z)
Vertex3dv(v)
return void
param v CoordD in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 69
@@ -2159,8 +2298,9 @@ Vertex3f(x, y, z)
param x CoordF in value
param y CoordF in value
param z CoordF in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Vertex3fv
+ profile compatibility
version 1.0
deprecated 3.1
offset 136
@@ -2168,7 +2308,8 @@ Vertex3f(x, y, z)
Vertex3fv(v)
return void
param v CoordF in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 70
@@ -2179,8 +2320,9 @@ Vertex3i(x, y, z)
param x CoordI in value
param y CoordI in value
param z CoordI in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Vertex3iv
+ profile compatibility
version 1.0
deprecated 3.1
offset 138
@@ -2188,7 +2330,8 @@ Vertex3i(x, y, z)
Vertex3iv(v)
return void
param v CoordI in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 71
@@ -2199,8 +2342,9 @@ Vertex3s(x, y, z)
param x CoordS in value
param y CoordS in value
param z CoordS in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Vertex3sv
+ profile compatibility
version 1.0
deprecated 3.1
offset 140
@@ -2208,7 +2352,8 @@ Vertex3s(x, y, z)
Vertex3sv(v)
return void
param v CoordS in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 72
@@ -2220,8 +2365,9 @@ Vertex4d(x, y, z, w)
param y CoordD in value
param z CoordD in value
param w CoordD in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Vertex4dv
+ profile compatibility
version 1.0
deprecated 3.1
offset 142
@@ -2229,7 +2375,8 @@ Vertex4d(x, y, z, w)
Vertex4dv(v)
return void
param v CoordD in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 73
@@ -2241,8 +2388,9 @@ Vertex4f(x, y, z, w)
param y CoordF in value
param z CoordF in value
param w CoordF in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Vertex4fv
+ profile compatibility
version 1.0
deprecated 3.1
offset 144
@@ -2250,7 +2398,8 @@ Vertex4f(x, y, z, w)
Vertex4fv(v)
return void
param v CoordF in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 74
@@ -2262,8 +2411,9 @@ Vertex4i(x, y, z, w)
param y CoordI in value
param z CoordI in value
param w CoordI in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Vertex4iv
+ profile compatibility
version 1.0
deprecated 3.1
offset 146
@@ -2271,7 +2421,8 @@ Vertex4i(x, y, z, w)
Vertex4iv(v)
return void
param v CoordI in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 75
@@ -2283,8 +2434,9 @@ Vertex4s(x, y, z, w)
param y CoordS in value
param z CoordS in value
param w CoordS in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Vertex4sv
+ profile compatibility
version 1.0
deprecated 3.1
offset 148
@@ -2292,7 +2444,8 @@ Vertex4s(x, y, z, w)
Vertex4sv(v)
return void
param v CoordS in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 76
@@ -2302,7 +2455,8 @@ ClipPlane(plane, equation)
return void
param plane ClipPlaneName in value
param equation Float64 in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 77
@@ -2312,7 +2466,8 @@ ColorMaterial(face, mode)
return void
param face MaterialFace in value
param mode ColorMaterialParameter in value
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 78
@@ -2322,7 +2477,8 @@ Fogf(pname, param)
return void
param pname FogParameter in value
param param CheckedFloat32 in value
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 80
@@ -2333,7 +2489,8 @@ Fogfv(pname, params)
return void
param pname FogParameter in value
param params CheckedFloat32 in array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 81
@@ -2344,7 +2501,8 @@ Fogi(pname, param)
return void
param pname FogParameter in value
param param CheckedInt32 in value
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 82
@@ -2355,7 +2513,8 @@ Fogiv(pname, params)
return void
param pname FogParameter in value
param params CheckedInt32 in array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 83
@@ -2367,7 +2526,8 @@ Lightf(light, pname, param)
param light LightName in value
param pname LightParameter in value
param param CheckedFloat32 in value
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 86
@@ -2379,7 +2539,8 @@ Lightfv(light, pname, params)
param light LightName in value
param pname LightParameter in value
param params CheckedFloat32 in array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 87
@@ -2391,7 +2552,8 @@ Lighti(light, pname, param)
param light LightName in value
param pname LightParameter in value
param param CheckedInt32 in value
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 88
@@ -2403,7 +2565,8 @@ Lightiv(light, pname, params)
param light LightName in value
param pname LightParameter in value
param params CheckedInt32 in array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 89
@@ -2414,7 +2577,8 @@ LightModelf(pname, param)
return void
param pname LightModelParameter in value
param param Float32 in value
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 90
@@ -2425,7 +2589,8 @@ LightModelfv(pname, params)
return void
param pname LightModelParameter in value
param params Float32 in array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 91
@@ -2436,7 +2601,8 @@ LightModeli(pname, param)
return void
param pname LightModelParameter in value
param param Int32 in value
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 92
@@ -2447,7 +2613,8 @@ LightModeliv(pname, params)
return void
param pname LightModelParameter in value
param params Int32 in array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 93
@@ -2458,7 +2625,8 @@ LineStipple(factor, pattern)
return void
param factor CheckedInt32 in value
param pattern LineStipple in value
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 94
@@ -2469,7 +2637,8 @@ Materialf(face, pname, param)
param face MaterialFace in value
param pname MaterialParameter in value
param param CheckedFloat32 in value
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 96
@@ -2481,7 +2650,8 @@ Materialfv(face, pname, params)
param face MaterialFace in value
param pname MaterialParameter in value
param params CheckedFloat32 in array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 97
@@ -2493,7 +2663,8 @@ Materiali(face, pname, param)
param face MaterialFace in value
param pname MaterialParameter in value
param param CheckedInt32 in value
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 98
@@ -2505,7 +2676,8 @@ Materialiv(face, pname, params)
param face MaterialFace in value
param pname MaterialParameter in value
param params CheckedInt32 in array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 99
@@ -2515,9 +2687,10 @@ Materialiv(face, pname, params)
PolygonStipple(mask)
return void
param mask UInt8 in array [COMPSIZE()]
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
dlflags handcode
glxflags client-handcode server-handcode
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 102
@@ -2527,7 +2700,8 @@ PolygonStipple(mask)
ShadeModel(mode)
return void
param mode ShadingModel in value
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 104
@@ -2538,7 +2712,8 @@ TexEnvf(target, pname, param)
param target TextureEnvTarget in value
param pname TextureEnvParameter in value
param param CheckedFloat32 in value
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 111
@@ -2550,7 +2725,8 @@ TexEnvfv(target, pname, params)
param target TextureEnvTarget in value
param pname TextureEnvParameter in value
param params CheckedFloat32 in array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 112
@@ -2562,7 +2738,8 @@ TexEnvi(target, pname, param)
param target TextureEnvTarget in value
param pname TextureEnvParameter in value
param param CheckedInt32 in value
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 113
@@ -2574,7 +2751,8 @@ TexEnviv(target, pname, params)
param target TextureEnvTarget in value
param pname TextureEnvParameter in value
param params CheckedInt32 in array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 114
@@ -2586,7 +2764,8 @@ TexGend(coord, pname, param)
param coord TextureCoordName in value
param pname TextureGenParameter in value
param param Float64 in value
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 115
@@ -2598,7 +2777,8 @@ TexGendv(coord, pname, params)
param coord TextureCoordName in value
param pname TextureGenParameter in value
param params Float64 in array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 116
@@ -2610,7 +2790,8 @@ TexGenf(coord, pname, param)
param coord TextureCoordName in value
param pname TextureGenParameter in value
param param CheckedFloat32 in value
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 117
@@ -2622,7 +2803,8 @@ TexGenfv(coord, pname, params)
param coord TextureCoordName in value
param pname TextureGenParameter in value
param params CheckedFloat32 in array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 118
@@ -2634,7 +2816,8 @@ TexGeni(coord, pname, param)
param coord TextureCoordName in value
param pname TextureGenParameter in value
param param CheckedInt32 in value
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 119
@@ -2646,7 +2829,8 @@ TexGeniv(coord, pname, params)
param coord TextureCoordName in value
param pname TextureGenParameter in value
param params CheckedInt32 in array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 120
@@ -2662,7 +2846,8 @@ FeedbackBuffer(size, type, buffer)
param buffer FeedbackElement out array [size] retained
dlflags notlistable
glxflags client-handcode server-handcode
- category VERSION_1_0_DEPRECATED # old: feedback
+ category VERSION_1_0 # old: feedback
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 105
@@ -2675,7 +2860,8 @@ SelectBuffer(size, buffer)
param buffer SelectName out array [size] retained
dlflags notlistable
glxflags client-handcode server-handcode
- category VERSION_1_0_DEPRECATED # old: feedback
+ category VERSION_1_0 # old: feedback
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 106
@@ -2685,9 +2871,10 @@ SelectBuffer(size, buffer)
RenderMode(mode)
return Int32
param mode RenderingMode in value
- category VERSION_1_0_DEPRECATED # old: feedback
+ category VERSION_1_0 # old: feedback
dlflags notlistable
glxflags client-handcode server-handcode
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 107
@@ -2696,7 +2883,8 @@ RenderMode(mode)
InitNames()
return void
- category VERSION_1_0_DEPRECATED # old: feedback
+ category VERSION_1_0 # old: feedback
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 121
@@ -2705,7 +2893,8 @@ InitNames()
LoadName(name)
return void
param name SelectName in value
- category VERSION_1_0_DEPRECATED # old: feedback
+ category VERSION_1_0 # old: feedback
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 122
@@ -2714,7 +2903,8 @@ LoadName(name)
PassThrough(token)
return void
param token FeedbackElement in value
- category VERSION_1_0_DEPRECATED # old: feedback
+ category VERSION_1_0 # old: feedback
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 123
@@ -2722,7 +2912,8 @@ PassThrough(token)
PopName()
return void
- category VERSION_1_0_DEPRECATED # old: feedback
+ category VERSION_1_0 # old: feedback
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 124
@@ -2731,7 +2922,8 @@ PopName()
PushName(name)
return void
param name SelectName in value
- category VERSION_1_0_DEPRECATED # old: feedback
+ category VERSION_1_0 # old: feedback
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 125
@@ -2743,7 +2935,8 @@ ClearAccum(red, green, blue, alpha)
param green Float32 in value
param blue Float32 in value
param alpha Float32 in value
- category VERSION_1_0_DEPRECATED # old: framebuf
+ category VERSION_1_0 # old: framebuf
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 128
@@ -2752,7 +2945,8 @@ ClearAccum(red, green, blue, alpha)
ClearIndex(c)
return void
param c MaskedColorIndexValueF in value
- category VERSION_1_0_DEPRECATED # old: framebuf
+ category VERSION_1_0 # old: framebuf
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 129
@@ -2761,7 +2955,8 @@ ClearIndex(c)
IndexMask(mask)
return void
param mask MaskedColorIndexValueI in value
- category VERSION_1_0_DEPRECATED # old: framebuf
+ category VERSION_1_0 # old: framebuf
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 136
@@ -2771,7 +2966,8 @@ Accum(op, value)
return void
param op AccumOp in value
param value CoordF in value
- category VERSION_1_0_DEPRECATED # old: misc
+ category VERSION_1_0 # old: misc
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 137
@@ -2779,7 +2975,8 @@ Accum(op, value)
PopAttrib()
return void
- category VERSION_1_0_DEPRECATED # old: misc
+ category VERSION_1_0 # old: misc
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 141
@@ -2788,7 +2985,8 @@ PopAttrib()
PushAttrib(mask)
return void
param mask AttribMask in value
- category VERSION_1_0_DEPRECATED # old: misc
+ category VERSION_1_0 # old: misc
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 142
@@ -2804,9 +3002,10 @@ Map1d(target, u1, u2, stride, order, points)
param stride Int32 in value
param order CheckedInt32 in value
param points CoordD in array [COMPSIZE(target/stride/order)]
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
dlflags handcode
glxflags client-handcode server-handcode
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 143
@@ -2821,9 +3020,10 @@ Map1f(target, u1, u2, stride, order, points)
param stride Int32 in value
param order CheckedInt32 in value
param points CoordF in array [COMPSIZE(target/stride/order)]
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
dlflags handcode
glxflags client-handcode server-handcode
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 144
@@ -2842,9 +3042,10 @@ Map2d(target, u1, u2, ustride, uorder, v1, v2, vstride, vorder, points)
param vstride Int32 in value
param vorder CheckedInt32 in value
param points CoordD in array [COMPSIZE(target/ustride/uorder/vstride/vorder)]
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
dlflags handcode
glxflags client-handcode server-handcode
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 145
@@ -2863,9 +3064,10 @@ Map2f(target, u1, u2, ustride, uorder, v1, v2, vstride, vorder, points)
param vstride Int32 in value
param vorder CheckedInt32 in value
param points CoordF in array [COMPSIZE(target/ustride/uorder/vstride/vorder)]
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
dlflags handcode
glxflags client-handcode server-handcode
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 146
@@ -2877,7 +3079,8 @@ MapGrid1d(un, u1, u2)
param un Int32 in value
param u1 CoordD in value
param u2 CoordD in value
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 147
@@ -2888,7 +3091,8 @@ MapGrid1f(un, u1, u2)
param un Int32 in value
param u1 CoordF in value
param u2 CoordF in value
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 148
@@ -2902,7 +3106,8 @@ MapGrid2d(un, u1, u2, vn, v1, v2)
param vn Int32 in value
param v1 CoordD in value
param v2 CoordD in value
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 149
@@ -2916,7 +3121,8 @@ MapGrid2f(un, u1, u2, vn, v1, v2)
param vn Int32 in value
param v1 CoordF in value
param v2 CoordF in value
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 150
@@ -2925,8 +3131,9 @@ MapGrid2f(un, u1, u2, vn, v1, v2)
EvalCoord1d(u)
return void
param u CoordD in value
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
vectorequiv EvalCoord1dv
+ profile compatibility
version 1.0
deprecated 3.1
offset 228
@@ -2934,7 +3141,8 @@ EvalCoord1d(u)
EvalCoord1dv(u)
return void
param u CoordD in array [1]
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 151
@@ -2943,8 +3151,9 @@ EvalCoord1dv(u)
EvalCoord1f(u)
return void
param u CoordF in value
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
vectorequiv EvalCoord1fv
+ profile compatibility
version 1.0
deprecated 3.1
offset 230
@@ -2952,7 +3161,8 @@ EvalCoord1f(u)
EvalCoord1fv(u)
return void
param u CoordF in array [1]
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 152
@@ -2962,8 +3172,9 @@ EvalCoord2d(u, v)
return void
param u CoordD in value
param v CoordD in value
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
vectorequiv EvalCoord2dv
+ profile compatibility
version 1.0
deprecated 3.1
offset 232
@@ -2971,7 +3182,8 @@ EvalCoord2d(u, v)
EvalCoord2dv(u)
return void
param u CoordD in array [2]
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 153
@@ -2981,8 +3193,9 @@ EvalCoord2f(u, v)
return void
param u CoordF in value
param v CoordF in value
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
vectorequiv EvalCoord2fv
+ profile compatibility
version 1.0
deprecated 3.1
offset 234
@@ -2990,7 +3203,8 @@ EvalCoord2f(u, v)
EvalCoord2fv(u)
return void
param u CoordF in array [2]
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 154
@@ -3001,7 +3215,8 @@ EvalMesh1(mode, i1, i2)
param mode MeshMode1 in value
param i1 CheckedInt32 in value
param i2 CheckedInt32 in value
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 155
@@ -3010,7 +3225,8 @@ EvalMesh1(mode, i1, i2)
EvalPoint1(i)
return void
param i Int32 in value
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 156
@@ -3023,7 +3239,8 @@ EvalMesh2(mode, i1, i2, j1, j2)
param i2 CheckedInt32 in value
param j1 CheckedInt32 in value
param j2 CheckedInt32 in value
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 157
@@ -3033,7 +3250,8 @@ EvalPoint2(i, j)
return void
param i CheckedInt32 in value
param j CheckedInt32 in value
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 158
@@ -3043,7 +3261,8 @@ AlphaFunc(func, ref)
return void
param func AlphaFunction in value
param ref Float32 in value
- category VERSION_1_0_DEPRECATED # old: pixel-op
+ category VERSION_1_0 # old: pixel-op
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 159
@@ -3053,7 +3272,8 @@ PixelZoom(xfactor, yfactor)
return void
param xfactor Float32 in value
param yfactor Float32 in value
- category VERSION_1_0_DEPRECATED # old: pixel-rw
+ category VERSION_1_0 # old: pixel-rw
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 165
@@ -3063,7 +3283,8 @@ PixelTransferf(pname, param)
return void
param pname PixelTransferParameter in value
param param CheckedFloat32 in value
- category VERSION_1_0_DEPRECATED # old: pixel-rw
+ category VERSION_1_0 # old: pixel-rw
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 166
@@ -3073,7 +3294,8 @@ PixelTransferi(pname, param)
return void
param pname PixelTransferParameter in value
param param CheckedInt32 in value
- category VERSION_1_0_DEPRECATED # old: pixel-rw
+ category VERSION_1_0 # old: pixel-rw
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 167
@@ -3084,8 +3306,9 @@ PixelMapfv(map, mapsize, values)
param map PixelMap in value
param mapsize CheckedInt32 in value
param values Float32 in array [mapsize]
- category VERSION_1_0_DEPRECATED # old: pixel-rw
+ category VERSION_1_0 # old: pixel-rw
glxflags client-handcode
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 168
@@ -3096,8 +3319,9 @@ PixelMapuiv(map, mapsize, values)
param map PixelMap in value
param mapsize CheckedInt32 in value
param values UInt32 in array [mapsize]
- category VERSION_1_0_DEPRECATED # old: pixel-rw
+ category VERSION_1_0 # old: pixel-rw
glxflags client-handcode
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 169
@@ -3108,8 +3332,9 @@ PixelMapusv(map, mapsize, values)
param map PixelMap in value
param mapsize CheckedInt32 in value
param values UInt16 in array [mapsize]
- category VERSION_1_0_DEPRECATED # old: pixel-rw
+ category VERSION_1_0 # old: pixel-rw
glxflags client-handcode
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 170
@@ -3122,7 +3347,8 @@ CopyPixels(x, y, width, height, type)
param width SizeI in value
param height SizeI in value
param type PixelCopyType in value
- category VERSION_1_0_DEPRECATED # old: pixel-rw
+ category VERSION_1_0 # old: pixel-rw
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 172
@@ -3135,9 +3361,10 @@ DrawPixels(width, height, format, type, pixels)
param format PixelFormat in value
param type PixelType in value
param pixels Void in array [COMPSIZE(format/type/width/height)]
- category VERSION_1_0_DEPRECATED # old: pixel-rw
+ category VERSION_1_0 # old: pixel-rw
dlflags handcode
glxflags client-handcode server-handcode
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 173
@@ -3148,8 +3375,9 @@ GetClipPlane(plane, equation)
return void
param plane ClipPlaneName in value
param equation Float64 out array [4]
- category VERSION_1_0_DEPRECATED # old: state-req
+ category VERSION_1_0 # old: state-req
dlflags notlistable
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 113
@@ -3161,8 +3389,9 @@ GetLightfv(light, pname, params)
param light LightName in value
param pname LightParameter in value
param params Float32 out array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: state-req
+ category VERSION_1_0 # old: state-req
dlflags notlistable
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 118
@@ -3174,8 +3403,9 @@ GetLightiv(light, pname, params)
param light LightName in value
param pname LightParameter in value
param params Int32 out array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: state-req
+ category VERSION_1_0 # old: state-req
dlflags notlistable
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 119
@@ -3187,8 +3417,9 @@ GetMapdv(target, query, v)
param target MapTarget in value
param query GetMapQuery in value
param v Float64 out array [COMPSIZE(target/query)]
- category VERSION_1_0_DEPRECATED # old: state-req
+ category VERSION_1_0 # old: state-req
dlflags notlistable
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 120
@@ -3199,8 +3430,9 @@ GetMapfv(target, query, v)
param target MapTarget in value
param query GetMapQuery in value
param v Float32 out array [COMPSIZE(target/query)]
- category VERSION_1_0_DEPRECATED # old: state-req
+ category VERSION_1_0 # old: state-req
dlflags notlistable
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 121
@@ -3211,8 +3443,9 @@ GetMapiv(target, query, v)
param target MapTarget in value
param query GetMapQuery in value
param v Int32 out array [COMPSIZE(target/query)]
- category VERSION_1_0_DEPRECATED # old: state-req
+ category VERSION_1_0 # old: state-req
dlflags notlistable
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 122
@@ -3223,8 +3456,9 @@ GetMaterialfv(face, pname, params)
param face MaterialFace in value
param pname MaterialParameter in value
param params Float32 out array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: state-req
+ category VERSION_1_0 # old: state-req
dlflags notlistable
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 123
@@ -3236,8 +3470,9 @@ GetMaterialiv(face, pname, params)
param face MaterialFace in value
param pname MaterialParameter in value
param params Int32 out array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: state-req
+ category VERSION_1_0 # old: state-req
dlflags notlistable
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 124
@@ -3248,8 +3483,9 @@ GetPixelMapfv(map, values)
return void
param map PixelMap in value
param values Float32 out array [COMPSIZE(map)]
- category VERSION_1_0_DEPRECATED # old: state-req
+ category VERSION_1_0 # old: state-req
dlflags notlistable
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 125
@@ -3259,8 +3495,9 @@ GetPixelMapuiv(map, values)
return void
param map PixelMap in value
param values UInt32 out array [COMPSIZE(map)]
- category VERSION_1_0_DEPRECATED # old: state-req
+ category VERSION_1_0 # old: state-req
dlflags notlistable
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 126
@@ -3270,8 +3507,9 @@ GetPixelMapusv(map, values)
return void
param map PixelMap in value
param values UInt16 out array [COMPSIZE(map)]
- category VERSION_1_0_DEPRECATED # old: state-req
+ category VERSION_1_0 # old: state-req
dlflags notlistable
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 127
@@ -3280,9 +3518,10 @@ GetPixelMapusv(map, values)
GetPolygonStipple(mask)
return void
param mask UInt8 out array [COMPSIZE()]
- category VERSION_1_0_DEPRECATED # old: state-req
+ category VERSION_1_0 # old: state-req
dlflags notlistable
glxflags client-handcode server-handcode
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 128
@@ -3294,8 +3533,9 @@ GetTexEnvfv(target, pname, params)
param target TextureEnvTarget in value
param pname TextureEnvParameter in value
param params Float32 out array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: state-req
+ category VERSION_1_0 # old: state-req
dlflags notlistable
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 130
@@ -3307,8 +3547,9 @@ GetTexEnviv(target, pname, params)
param target TextureEnvTarget in value
param pname TextureEnvParameter in value
param params Int32 out array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: state-req
+ category VERSION_1_0 # old: state-req
dlflags notlistable
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 131
@@ -3320,8 +3561,9 @@ GetTexGendv(coord, pname, params)
param coord TextureCoordName in value
param pname TextureGenParameter in value
param params Float64 out array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: state-req
+ category VERSION_1_0 # old: state-req
dlflags notlistable
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 132
@@ -3333,8 +3575,9 @@ GetTexGenfv(coord, pname, params)
param coord TextureCoordName in value
param pname TextureGenParameter in value
param params Float32 out array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: state-req
+ category VERSION_1_0 # old: state-req
dlflags notlistable
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 133
@@ -3346,8 +3589,9 @@ GetTexGeniv(coord, pname, params)
param coord TextureCoordName in value
param pname TextureGenParameter in value
param params Int32 out array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: state-req
+ category VERSION_1_0 # old: state-req
dlflags notlistable
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 134
@@ -3357,8 +3601,9 @@ GetTexGeniv(coord, pname, params)
IsList(list)
return Boolean
param list List in value
- category VERSION_1_0_DEPRECATED # old: state-req
+ category VERSION_1_0 # old: state-req
dlflags notlistable
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 141
@@ -3372,7 +3617,8 @@ Frustum(left, right, bottom, top, zNear, zFar)
param top Float64 in value
param zNear Float64 in value
param zFar Float64 in value
- category VERSION_1_0_DEPRECATED # old: xform
+ category VERSION_1_0 # old: xform
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 175
@@ -3380,7 +3626,8 @@ Frustum(left, right, bottom, top, zNear, zFar)
LoadIdentity()
return void
- category VERSION_1_0_DEPRECATED # old: xform
+ category VERSION_1_0 # old: xform
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 176
@@ -3389,7 +3636,8 @@ LoadIdentity()
LoadMatrixf(m)
return void
param m Float32 in array [16]
- category VERSION_1_0_DEPRECATED # old: xform
+ category VERSION_1_0 # old: xform
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 177
@@ -3398,7 +3646,8 @@ LoadMatrixf(m)
LoadMatrixd(m)
return void
param m Float64 in array [16]
- category VERSION_1_0_DEPRECATED # old: xform
+ category VERSION_1_0 # old: xform
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 178
@@ -3407,7 +3656,8 @@ LoadMatrixd(m)
MatrixMode(mode)
return void
param mode MatrixMode in value
- category VERSION_1_0_DEPRECATED # old: xform
+ category VERSION_1_0 # old: xform
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 179
@@ -3416,7 +3666,8 @@ MatrixMode(mode)
MultMatrixf(m)
return void
param m Float32 in array [16]
- category VERSION_1_0_DEPRECATED # old: xform
+ category VERSION_1_0 # old: xform
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 180
@@ -3425,7 +3676,8 @@ MultMatrixf(m)
MultMatrixd(m)
return void
param m Float64 in array [16]
- category VERSION_1_0_DEPRECATED # old: xform
+ category VERSION_1_0 # old: xform
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 181
@@ -3439,7 +3691,8 @@ Ortho(left, right, bottom, top, zNear, zFar)
param top Float64 in value
param zNear Float64 in value
param zFar Float64 in value
- category VERSION_1_0_DEPRECATED # old: xform
+ category VERSION_1_0 # old: xform
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 182
@@ -3447,7 +3700,8 @@ Ortho(left, right, bottom, top, zNear, zFar)
PopMatrix()
return void
- category VERSION_1_0_DEPRECATED # old: xform
+ category VERSION_1_0 # old: xform
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 183
@@ -3455,7 +3709,8 @@ PopMatrix()
PushMatrix()
return void
- category VERSION_1_0_DEPRECATED # old: xform
+ category VERSION_1_0 # old: xform
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 184
@@ -3467,7 +3722,8 @@ Rotated(angle, x, y, z)
param x Float64 in value
param y Float64 in value
param z Float64 in value
- category VERSION_1_0_DEPRECATED # old: xform
+ category VERSION_1_0 # old: xform
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 185
@@ -3479,7 +3735,8 @@ Rotatef(angle, x, y, z)
param x Float32 in value
param y Float32 in value
param z Float32 in value
- category VERSION_1_0_DEPRECATED # old: xform
+ category VERSION_1_0 # old: xform
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 186
@@ -3490,7 +3747,8 @@ Scaled(x, y, z)
param x Float64 in value
param y Float64 in value
param z Float64 in value
- category VERSION_1_0_DEPRECATED # old: xform
+ category VERSION_1_0 # old: xform
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 187
@@ -3501,7 +3759,8 @@ Scalef(x, y, z)
param x Float32 in value
param y Float32 in value
param z Float32 in value
- category VERSION_1_0_DEPRECATED # old: xform
+ category VERSION_1_0 # old: xform
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 188
@@ -3512,7 +3771,8 @@ Translated(x, y, z)
param x Float64 in value
param y Float64 in value
param z Float64 in value
- category VERSION_1_0_DEPRECATED # old: xform
+ category VERSION_1_0 # old: xform
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 189
@@ -3523,7 +3783,8 @@ Translatef(x, y, z)
param x Float32 in value
param y Float32 in value
param z Float32 in value
- category VERSION_1_0_DEPRECATED # old: xform
+ category VERSION_1_0 # old: xform
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 190
@@ -3727,7 +3988,8 @@ IsTexture(texture)
ArrayElement(i)
return void
param i Int32 in value
- category VERSION_1_1_DEPRECATED
+ category VERSION_1_1
+ profile compatibility
dlflags handcode
glxflags client-handcode client-intercept server-handcode
version 1.1
@@ -3740,7 +4002,8 @@ ColorPointer(size, type, stride, pointer)
param type ColorPointerType in value
param stride SizeI in value
param pointer Void in array [COMPSIZE(size/type/stride)] retained
- category VERSION_1_1_DEPRECATED
+ category VERSION_1_1
+ profile compatibility
dlflags notlistable
glxflags client-handcode client-intercept server-handcode
version 1.1
@@ -3750,7 +4013,8 @@ ColorPointer(size, type, stride, pointer)
DisableClientState(array)
return void
param array EnableCap in value
- category VERSION_1_1_DEPRECATED
+ category VERSION_1_1
+ profile compatibility
version 1.1
deprecated 3.1
dlflags notlistable
@@ -3761,7 +4025,8 @@ EdgeFlagPointer(stride, pointer)
return void
param stride SizeI in value
param pointer Void in array [COMPSIZE(stride)] retained
- category VERSION_1_1_DEPRECATED
+ category VERSION_1_1
+ profile compatibility
dlflags notlistable
glxflags client-handcode client-intercept server-handcode
version 1.1
@@ -3771,7 +4036,8 @@ EdgeFlagPointer(stride, pointer)
EnableClientState(array)
return void
param array EnableCap in value
- category VERSION_1_1_DEPRECATED
+ category VERSION_1_1
+ profile compatibility
dlflags notlistable
glxflags client-handcode client-intercept server-handcode
version 1.1
@@ -3783,7 +4049,8 @@ IndexPointer(type, stride, pointer)
param type IndexPointerType in value
param stride SizeI in value
param pointer Void in array [COMPSIZE(type/stride)] retained
- category VERSION_1_1_DEPRECATED
+ category VERSION_1_1
+ profile compatibility
dlflags notlistable
glxflags client-handcode client-intercept server-handcode
version 1.1
@@ -3795,7 +4062,8 @@ InterleavedArrays(format, stride, pointer)
param format InterleavedArrayFormat in value
param stride SizeI in value
param pointer Void in array [COMPSIZE(format/stride)] retained
- category VERSION_1_1_DEPRECATED
+ category VERSION_1_1
+ profile compatibility
dlflags notlistable
glxflags client-handcode client-intercept server-handcode
version 1.1
@@ -3807,7 +4075,8 @@ NormalPointer(type, stride, pointer)
param type NormalPointerType in value
param stride SizeI in value
param pointer Void in array [COMPSIZE(type/stride)] retained
- category VERSION_1_1_DEPRECATED
+ category VERSION_1_1
+ profile compatibility
dlflags notlistable
glxflags client-handcode client-intercept server-handcode
version 1.1
@@ -3820,7 +4089,8 @@ TexCoordPointer(size, type, stride, pointer)
param type TexCoordPointerType in value
param stride SizeI in value
param pointer Void in array [COMPSIZE(size/type/stride)] retained
- category VERSION_1_1_DEPRECATED
+ category VERSION_1_1
+ profile compatibility
dlflags notlistable
glxflags client-handcode client-intercept server-handcode
version 1.1
@@ -3833,7 +4103,8 @@ VertexPointer(size, type, stride, pointer)
param type VertexPointerType in value
param stride SizeI in value
param pointer Void in array [COMPSIZE(size/type/stride)] retained
- category VERSION_1_1_DEPRECATED
+ category VERSION_1_1
+ profile compatibility
dlflags notlistable
glxflags client-handcode client-intercept server-handcode
version 1.1
@@ -3845,7 +4116,8 @@ AreTexturesResident(n, textures, residences)
param n SizeI in value
param textures Texture in array [n]
param residences Boolean out array [n]
- category VERSION_1_1_DEPRECATED
+ category VERSION_1_1
+ profile compatibility
glxsingle 143
dlflags notlistable
version 1.1
@@ -3857,7 +4129,8 @@ PrioritizeTextures(n, textures, priorities)
param n SizeI in value
param textures Texture in array [n]
param priorities Float32 in array [n]
- category VERSION_1_1_DEPRECATED
+ category VERSION_1_1
+ profile compatibility
version 1.1
deprecated 3.1
glxropcode 4118
@@ -3867,7 +4140,8 @@ PrioritizeTextures(n, textures, priorities)
Indexub(c)
return void
param c ColorIndexValueUB in value
- category VERSION_1_1_DEPRECATED
+ category VERSION_1_1
+ profile compatibility
vectorequiv Indexubv
version 1.1
offset 315
@@ -3875,14 +4149,16 @@ Indexub(c)
Indexubv(c)
return void
param c ColorIndexValueUB in array [1]
- category VERSION_1_1_DEPRECATED
+ category VERSION_1_1
+ profile compatibility
version 1.1
glxropcode 194
offset 316
PopClientAttrib()
return void
- category VERSION_1_1_DEPRECATED
+ category VERSION_1_1
+ profile compatibility
version 1.1
deprecated 3.1
dlflags notlistable
@@ -3892,7 +4168,8 @@ PopClientAttrib()
PushClientAttrib(mask)
return void
param mask ClientAttribMask in value
- category VERSION_1_1_DEPRECATED
+ category VERSION_1_1
+ profile compatibility
version 1.1
deprecated 3.1
dlflags notlistable
@@ -4022,7 +4299,8 @@ ColorTable(target, internalformat, width, format, type, table)
param format PixelFormat in value
param type PixelType in value
param table Void in array [COMPSIZE(format/type/width)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
dlflags handcode
glxflags client-handcode server-handcode EXT
version 1.2
@@ -4035,7 +4313,8 @@ ColorTableParameterfv(target, pname, params)
param target ColorTableTarget in value
param pname ColorTableParameterPName in value
param params CheckedFloat32 in array [COMPSIZE(pname)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
glxflags EXT
version 1.2
deprecated 3.1
@@ -4047,7 +4326,8 @@ ColorTableParameteriv(target, pname, params)
param target ColorTableTarget in value
param pname ColorTableParameterPName in value
param params CheckedInt32 in array [COMPSIZE(pname)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
glxflags EXT
version 1.2
deprecated 3.1
@@ -4061,7 +4341,8 @@ CopyColorTable(target, internalformat, x, y, width)
param x WinCoord in value
param y WinCoord in value
param width SizeI in value
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
glxflags EXT
version 1.2
deprecated 3.1
@@ -4074,7 +4355,8 @@ GetColorTable(target, format, type, table)
param format PixelFormat in value
param type PixelType in value
param table Void out array [COMPSIZE(target/format/type)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
dlflags notlistable
glxflags client-handcode server-handcode
version 1.2
@@ -4087,7 +4369,8 @@ GetColorTableParameterfv(target, pname, params)
param target ColorTableTarget in value
param pname GetColorTableParameterPName in value
param params Float32 out array [COMPSIZE(pname)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
dlflags notlistable
version 1.2
deprecated 3.1
@@ -4099,7 +4382,8 @@ GetColorTableParameteriv(target, pname, params)
param target ColorTableTarget in value
param pname GetColorTableParameterPName in value
param params Int32 out array [COMPSIZE(pname)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
dlflags notlistable
version 1.2
deprecated 3.1
@@ -4116,7 +4400,8 @@ ColorSubTable(target, start, count, format, type, data)
param format PixelFormat in value
param type PixelType in value
param data Void in array [COMPSIZE(format/type/count)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
dlflags handcode
glxflags client-handcode server-handcode
version 1.2
@@ -4131,7 +4416,8 @@ CopyColorSubTable(target, start, x, y, width)
param x WinCoord in value
param y WinCoord in value
param width SizeI in value
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
version 1.2
deprecated 3.1
glxropcode 196
@@ -4147,7 +4433,8 @@ ConvolutionFilter1D(target, internalformat, width, format, type, image)
param format PixelFormat in value
param type PixelType in value
param image Void in array [COMPSIZE(format/type/width)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
dlflags handcode
glxflags client-handcode server-handcode EXT
version 1.2
@@ -4164,7 +4451,8 @@ ConvolutionFilter2D(target, internalformat, width, height, format, type, image)
param format PixelFormat in value
param type PixelType in value
param image Void in array [COMPSIZE(format/type/width/height)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
dlflags handcode
glxflags client-handcode server-handcode EXT
version 1.2
@@ -4177,7 +4465,8 @@ ConvolutionParameterf(target, pname, params)
param target ConvolutionTarget in value
param pname ConvolutionParameter in value
param params CheckedFloat32 in value
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
glxflags EXT
version 1.2
deprecated 3.1
@@ -4189,7 +4478,8 @@ ConvolutionParameterfv(target, pname, params)
param target ConvolutionTarget in value
param pname ConvolutionParameter in value
param params CheckedFloat32 in array [COMPSIZE(pname)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
glxflags EXT
version 1.2
deprecated 3.1
@@ -4201,7 +4491,8 @@ ConvolutionParameteri(target, pname, params)
param target ConvolutionTarget in value
param pname ConvolutionParameter in value
param params CheckedInt32 in value
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
glxflags EXT
version 1.2
deprecated 3.1
@@ -4213,7 +4504,8 @@ ConvolutionParameteriv(target, pname, params)
param target ConvolutionTarget in value
param pname ConvolutionParameter in value
param params CheckedInt32 in array [COMPSIZE(pname)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
glxflags EXT
version 1.2
deprecated 3.1
@@ -4227,7 +4519,8 @@ CopyConvolutionFilter1D(target, internalformat, x, y, width)
param x WinCoord in value
param y WinCoord in value
param width SizeI in value
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
glxflags EXT
version 1.2
deprecated 3.1
@@ -4242,7 +4535,8 @@ CopyConvolutionFilter2D(target, internalformat, x, y, width, height)
param y WinCoord in value
param width SizeI in value
param height SizeI in value
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
glxflags EXT
version 1.2
deprecated 3.1
@@ -4255,7 +4549,8 @@ GetConvolutionFilter(target, format, type, image)
param format PixelFormat in value
param type PixelType in value
param image Void out array [COMPSIZE(target/format/type)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
dlflags notlistable
glxflags client-handcode server-handcode
version 1.2
@@ -4268,7 +4563,8 @@ GetConvolutionParameterfv(target, pname, params)
param target ConvolutionTarget in value
param pname GetConvolutionParameterPName in value
param params Float32 out array [COMPSIZE(pname)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
dlflags notlistable
version 1.2
deprecated 3.1
@@ -4280,7 +4576,8 @@ GetConvolutionParameteriv(target, pname, params)
param target ConvolutionTarget in value
param pname GetConvolutionParameterPName in value
param params Int32 out array [COMPSIZE(pname)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
dlflags notlistable
version 1.2
deprecated 3.1
@@ -4295,7 +4592,8 @@ GetSeparableFilter(target, format, type, row, column, span)
param row Void out array [COMPSIZE(target/format/type)]
param column Void out array [COMPSIZE(target/format/type)]
param span Void out array [COMPSIZE(target/format/type)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
dlflags notlistable
glxflags client-handcode server-handcode
version 1.2
@@ -4313,7 +4611,8 @@ SeparableFilter2D(target, internalformat, width, height, format, type, row, colu
param type PixelType in value
param row Void in array [COMPSIZE(target/format/type/width)]
param column Void in array [COMPSIZE(target/format/type/height)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
dlflags handcode
glxflags client-handcode server-handcode EXT
version 1.2
@@ -4330,7 +4629,8 @@ GetHistogram(target, reset, format, type, values)
param format PixelFormat in value
param type PixelType in value
param values Void out array [COMPSIZE(target/format/type)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
dlflags notlistable
glxflags client-handcode server-handcode
version 1.2
@@ -4343,7 +4643,8 @@ GetHistogramParameterfv(target, pname, params)
param target HistogramTarget in value
param pname GetHistogramParameterPName in value
param params Float32 out array [COMPSIZE(pname)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
dlflags notlistable
version 1.2
deprecated 3.1
@@ -4355,7 +4656,8 @@ GetHistogramParameteriv(target, pname, params)
param target HistogramTarget in value
param pname GetHistogramParameterPName in value
param params Int32 out array [COMPSIZE(pname)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
dlflags notlistable
version 1.2
deprecated 3.1
@@ -4369,7 +4671,8 @@ GetMinmax(target, reset, format, type, values)
param format PixelFormat in value
param type PixelType in value
param values Void out array [COMPSIZE(target/format/type)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
dlflags notlistable
glxflags client-handcode server-handcode
version 1.2
@@ -4382,7 +4685,8 @@ GetMinmaxParameterfv(target, pname, params)
param target MinmaxTarget in value
param pname GetMinmaxParameterPName in value
param params Float32 out array [COMPSIZE(pname)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
dlflags notlistable
version 1.2
deprecated 3.1
@@ -4394,7 +4698,8 @@ GetMinmaxParameteriv(target, pname, params)
param target MinmaxTarget in value
param pname GetMinmaxParameterPName in value
param params Int32 out array [COMPSIZE(pname)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
dlflags notlistable
version 1.2
deprecated 3.1
@@ -4407,7 +4712,8 @@ Histogram(target, width, internalformat, sink)
param width SizeI in value
param internalformat PixelInternalFormat in value
param sink Boolean in value
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
dlflags handcode
glxflags EXT
version 1.2
@@ -4420,7 +4726,8 @@ Minmax(target, internalformat, sink)
param target MinmaxTarget in value
param internalformat PixelInternalFormat in value
param sink Boolean in value
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
glxflags EXT
version 1.2
deprecated 3.1
@@ -4430,7 +4737,8 @@ Minmax(target, internalformat, sink)
ResetHistogram(target)
return void
param target HistogramTarget in value
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
glxflags EXT
version 1.2
deprecated 3.1
@@ -4440,7 +4748,8 @@ ResetHistogram(target)
ResetMinmax(target)
return void
param target MinmaxTarget in value
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
glxflags EXT
version 1.2
deprecated 3.1
@@ -4618,7 +4927,8 @@ GetCompressedTexImage(target, level, img)
ClientActiveTexture(texture)
return void
param texture TextureUnit in value
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
dlflags notlistable
glxflags ARB client-handcode client-intercept server-handcode
version 1.3
@@ -4629,7 +4939,8 @@ MultiTexCoord1d(target, s)
return void
param target TextureUnit in value
param s CoordD in value
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4640,7 +4951,8 @@ MultiTexCoord1dv(target, v)
return void
param target TextureUnit in value
param v CoordD in array [1]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4651,7 +4963,8 @@ MultiTexCoord1f(target, s)
return void
param target TextureUnit in value
param s CoordF in value
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4662,7 +4975,8 @@ MultiTexCoord1fv(target, v)
return void
param target TextureUnit in value
param v CoordF in array [1]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4673,7 +4987,8 @@ MultiTexCoord1i(target, s)
return void
param target TextureUnit in value
param s CoordI in value
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4684,7 +4999,8 @@ MultiTexCoord1iv(target, v)
return void
param target TextureUnit in value
param v CoordI in array [1]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4695,7 +5011,8 @@ MultiTexCoord1s(target, s)
return void
param target TextureUnit in value
param s CoordS in value
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4706,7 +5023,8 @@ MultiTexCoord1sv(target, v)
return void
param target TextureUnit in value
param v CoordS in array [1]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4718,7 +5036,8 @@ MultiTexCoord2d(target, s, t)
param target TextureUnit in value
param s CoordD in value
param t CoordD in value
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4729,7 +5048,8 @@ MultiTexCoord2dv(target, v)
return void
param target TextureUnit in value
param v CoordD in array [2]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4741,7 +5061,8 @@ MultiTexCoord2f(target, s, t)
param target TextureUnit in value
param s CoordF in value
param t CoordF in value
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4752,7 +5073,8 @@ MultiTexCoord2fv(target, v)
return void
param target TextureUnit in value
param v CoordF in array [2]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4764,7 +5086,8 @@ MultiTexCoord2i(target, s, t)
param target TextureUnit in value
param s CoordI in value
param t CoordI in value
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4775,7 +5098,8 @@ MultiTexCoord2iv(target, v)
return void
param target TextureUnit in value
param v CoordI in array [2]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4787,7 +5111,8 @@ MultiTexCoord2s(target, s, t)
param target TextureUnit in value
param s CoordS in value
param t CoordS in value
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4798,7 +5123,8 @@ MultiTexCoord2sv(target, v)
return void
param target TextureUnit in value
param v CoordS in array [2]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4811,7 +5137,8 @@ MultiTexCoord3d(target, s, t, r)
param s CoordD in value
param t CoordD in value
param r CoordD in value
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4822,7 +5149,8 @@ MultiTexCoord3dv(target, v)
return void
param target TextureUnit in value
param v CoordD in array [3]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4835,7 +5163,8 @@ MultiTexCoord3f(target, s, t, r)
param s CoordF in value
param t CoordF in value
param r CoordF in value
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4846,7 +5175,8 @@ MultiTexCoord3fv(target, v)
return void
param target TextureUnit in value
param v CoordF in array [3]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4859,7 +5189,8 @@ MultiTexCoord3i(target, s, t, r)
param s CoordI in value
param t CoordI in value
param r CoordI in value
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4870,7 +5201,8 @@ MultiTexCoord3iv(target, v)
return void
param target TextureUnit in value
param v CoordI in array [3]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4883,7 +5215,8 @@ MultiTexCoord3s(target, s, t, r)
param s CoordS in value
param t CoordS in value
param r CoordS in value
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4894,7 +5227,8 @@ MultiTexCoord3sv(target, v)
return void
param target TextureUnit in value
param v CoordS in array [3]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
version 1.3
deprecated 3.1
glxflags ARB
@@ -4908,7 +5242,8 @@ MultiTexCoord4d(target, s, t, r, q)
param t CoordD in value
param r CoordD in value
param q CoordD in value
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4919,7 +5254,8 @@ MultiTexCoord4dv(target, v)
return void
param target TextureUnit in value
param v CoordD in array [4]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4933,7 +5269,8 @@ MultiTexCoord4f(target, s, t, r, q)
param t CoordF in value
param r CoordF in value
param q CoordF in value
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4944,7 +5281,8 @@ MultiTexCoord4fv(target, v)
return void
param target TextureUnit in value
param v CoordF in array [4]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4958,7 +5296,8 @@ MultiTexCoord4i(target, s, t, r, q)
param t CoordI in value
param r CoordI in value
param q CoordI in value
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4969,7 +5308,8 @@ MultiTexCoord4iv(target, v)
return void
param target TextureUnit in value
param v CoordI in array [4]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4983,7 +5323,8 @@ MultiTexCoord4s(target, s, t, r, q)
param t CoordS in value
param r CoordS in value
param q CoordS in value
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4994,7 +5335,8 @@ MultiTexCoord4sv(target, v)
return void
param target TextureUnit in value
param v CoordS in array [4]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -5006,7 +5348,8 @@ MultiTexCoord4sv(target, v)
LoadTransposeMatrixf(m)
return void
param m Float32 in array [16]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB client-handcode client-intercept server-handcode
version 1.3
deprecated 3.1
@@ -5015,7 +5358,8 @@ LoadTransposeMatrixf(m)
LoadTransposeMatrixd(m)
return void
param m Float64 in array [16]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB client-handcode client-intercept server-handcode
version 1.3
deprecated 3.1
@@ -5024,7 +5368,8 @@ LoadTransposeMatrixd(m)
MultTransposeMatrixf(m)
return void
param m Float32 in array [16]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB client-handcode client-intercept server-handcode
version 1.3
deprecated 3.1
@@ -5033,7 +5378,8 @@ MultTransposeMatrixf(m)
MultTransposeMatrixd(m)
return void
param m Float64 in array [16]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB client-handcode client-intercept server-handcode
version 1.3
deprecated 3.1
@@ -5142,7 +5488,8 @@ PointParameteriv(pname, params)
FogCoordf(coord)
return void
param coord CoordF in value
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
vectorequiv FogCoordfv
version 1.4
deprecated 3.1
@@ -5151,7 +5498,8 @@ FogCoordf(coord)
FogCoordfv(coord)
return void
param coord CoordF in array [1]
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
version 1.4
deprecated 3.1
glxropcode 4124
@@ -5160,7 +5508,8 @@ FogCoordfv(coord)
FogCoordd(coord)
return void
param coord CoordD in value
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
vectorequiv FogCoorddv
version 1.4
deprecated 3.1
@@ -5169,7 +5518,8 @@ FogCoordd(coord)
FogCoorddv(coord)
return void
param coord CoordD in array [1]
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
version 1.4
deprecated 3.1
glxropcode 4125
@@ -5180,7 +5530,8 @@ FogCoordPointer(type, stride, pointer)
param type FogPointerTypeEXT in value
param stride SizeI in value
param pointer Void in array [COMPSIZE(type/stride)] retained
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
dlflags notlistable
version 1.4
deprecated 3.1
@@ -5194,7 +5545,8 @@ SecondaryColor3b(red, green, blue)
param red ColorB in value
param green ColorB in value
param blue ColorB in value
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
vectorequiv SecondaryColor3bv
version 1.4
deprecated 3.1
@@ -5203,7 +5555,8 @@ SecondaryColor3b(red, green, blue)
SecondaryColor3bv(v)
return void
param v ColorB in array [3]
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
version 1.4
deprecated 3.1
glxropcode 4126
@@ -5214,7 +5567,8 @@ SecondaryColor3d(red, green, blue)
param red ColorD in value
param green ColorD in value
param blue ColorD in value
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
vectorequiv SecondaryColor3dv
version 1.4
deprecated 3.1
@@ -5223,7 +5577,8 @@ SecondaryColor3d(red, green, blue)
SecondaryColor3dv(v)
return void
param v ColorD in array [3]
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
version 1.4
deprecated 3.1
glxropcode 4130
@@ -5234,7 +5589,8 @@ SecondaryColor3f(red, green, blue)
param red ColorF in value
param green ColorF in value
param blue ColorF in value
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
vectorequiv SecondaryColor3fv
version 1.4
deprecated 3.1
@@ -5243,7 +5599,8 @@ SecondaryColor3f(red, green, blue)
SecondaryColor3fv(v)
return void
param v ColorF in array [3]
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
version 1.4
deprecated 3.1
glxropcode 4129
@@ -5254,7 +5611,8 @@ SecondaryColor3i(red, green, blue)
param red ColorI in value
param green ColorI in value
param blue ColorI in value
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
vectorequiv SecondaryColor3iv
version 1.4
deprecated 3.1
@@ -5263,7 +5621,8 @@ SecondaryColor3i(red, green, blue)
SecondaryColor3iv(v)
return void
param v ColorI in array [3]
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
version 1.4
deprecated 3.1
glxropcode 4128
@@ -5274,7 +5633,8 @@ SecondaryColor3s(red, green, blue)
param red ColorS in value
param green ColorS in value
param blue ColorS in value
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
vectorequiv SecondaryColor3sv
version 1.4
deprecated 3.1
@@ -5283,7 +5643,8 @@ SecondaryColor3s(red, green, blue)
SecondaryColor3sv(v)
return void
param v ColorS in array [3]
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
version 1.4
deprecated 3.1
glxropcode 4127
@@ -5294,7 +5655,8 @@ SecondaryColor3ub(red, green, blue)
param red ColorUB in value
param green ColorUB in value
param blue ColorUB in value
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
vectorequiv SecondaryColor3ubv
version 1.4
deprecated 3.1
@@ -5303,7 +5665,8 @@ SecondaryColor3ub(red, green, blue)
SecondaryColor3ubv(v)
return void
param v ColorUB in array [3]
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
version 1.4
deprecated 3.1
glxropcode 4131
@@ -5314,7 +5677,8 @@ SecondaryColor3ui(red, green, blue)
param red ColorUI in value
param green ColorUI in value
param blue ColorUI in value
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
vectorequiv SecondaryColor3uiv
version 1.4
deprecated 3.1
@@ -5323,7 +5687,8 @@ SecondaryColor3ui(red, green, blue)
SecondaryColor3uiv(v)
return void
param v ColorUI in array [3]
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
version 1.4
deprecated 3.1
glxropcode 4133
@@ -5334,7 +5699,8 @@ SecondaryColor3us(red, green, blue)
param red ColorUS in value
param green ColorUS in value
param blue ColorUS in value
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
vectorequiv SecondaryColor3usv
version 1.4
deprecated 3.1
@@ -5343,7 +5709,8 @@ SecondaryColor3us(red, green, blue)
SecondaryColor3usv(v)
return void
param v ColorUS in array [3]
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
version 1.4
deprecated 3.1
glxropcode 4132
@@ -5355,7 +5722,8 @@ SecondaryColorPointer(size, type, stride, pointer)
param type ColorPointerType in value
param stride SizeI in value
param pointer Void in array [COMPSIZE(size/type/stride)] retained
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
dlflags notlistable
glxflags client-handcode server-handcode
version 1.4
@@ -5370,7 +5738,8 @@ WindowPos2d(x, y)
return void
param x CoordD in value
param y CoordD in value
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
vectorequiv WindowPos2dv
version 1.4
deprecated 3.1
@@ -5379,7 +5748,8 @@ WindowPos2d(x, y)
WindowPos2dv(v)
return void
param v CoordD in array [2]
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
version 1.4
deprecated 3.1
glxropcode 230
@@ -5390,7 +5760,8 @@ WindowPos2f(x, y)
return void
param x CoordF in value
param y CoordF in value
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
vectorequiv WindowPos2fv
version 1.4
deprecated 3.1
@@ -5399,7 +5770,8 @@ WindowPos2f(x, y)
WindowPos2fv(v)
return void
param v CoordF in array [2]
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
version 1.4
deprecated 3.1
glxropcode 230
@@ -5410,7 +5782,8 @@ WindowPos2i(x, y)
return void
param x CoordI in value
param y CoordI in value
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
vectorequiv WindowPos2iv
version 1.4
deprecated 3.1
@@ -5419,7 +5792,8 @@ WindowPos2i(x, y)
WindowPos2iv(v)
return void
param v CoordI in array [2]
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
version 1.4
deprecated 3.1
glxropcode 230
@@ -5430,7 +5804,8 @@ WindowPos2s(x, y)
return void
param x CoordS in value
param y CoordS in value
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
vectorequiv WindowPos2sv
version 1.4
deprecated 3.1
@@ -5439,7 +5814,8 @@ WindowPos2s(x, y)
WindowPos2sv(v)
return void
param v CoordS in array [2]
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
version 1.4
deprecated 3.1
glxropcode 230
@@ -5452,7 +5828,8 @@ WindowPos3d(x, y, z)
param y CoordD in value
param z CoordD in value
vectorequiv WindowPos3dv
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
version 1.4
deprecated 3.1
offset 521
@@ -5460,7 +5837,8 @@ WindowPos3d(x, y, z)
WindowPos3dv(v)
return void
param v CoordD in array [3]
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
version 1.4
deprecated 3.1
glxropcode 230
@@ -5472,7 +5850,8 @@ WindowPos3f(x, y, z)
param x CoordF in value
param y CoordF in value
param z CoordF in value
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
vectorequiv WindowPos3fv
version 1.4
deprecated 3.1
@@ -5481,7 +5860,8 @@ WindowPos3f(x, y, z)
WindowPos3fv(v)
return void
param v CoordF in array [3]
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
version 1.4
deprecated 3.1
glxropcode 230
@@ -5493,7 +5873,8 @@ WindowPos3i(x, y, z)
param x CoordI in value
param y CoordI in value
param z CoordI in value
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
vectorequiv WindowPos3iv
version 1.4
deprecated 3.1
@@ -5502,7 +5883,8 @@ WindowPos3i(x, y, z)
WindowPos3iv(v)
return void
param v CoordI in array [3]
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
version 1.4
deprecated 3.1
glxropcode 230
@@ -5514,7 +5896,8 @@ WindowPos3s(x, y, z)
param x CoordS in value
param y CoordS in value
param z CoordS in value
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
vectorequiv WindowPos3sv
version 1.4
deprecated 3.1
@@ -5523,7 +5906,8 @@ WindowPos3s(x, y, z)
WindowPos3sv(v)
return void
param v CoordS in array [3]
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
version 1.4
deprecated 3.1
glxropcode 230
@@ -8055,10 +8439,7 @@ passthru: /* ARB_ES3_compatibility (no entry points) */
passthru: /* ARB_clear_buffer_object */
passthru: /* ARB_compute_shader */
passthru: /* ARB_copy_image */
-passthru: /* ARB_debug_group */
-passthru: /* ARB_debug_label */
-passthru: /* KHR_debug (ARB_debug_output promoted to KHR without suffixes) */
-passthru: /* ARB_debug_output2 (no entry points) */
+passthru: /* KHR_debug (includes ARB_debug_output commands promoted to KHR without suffixes) */
passthru: /* ARB_explicit_uniform_location (no entry points) */
passthru: /* ARB_framebuffer_no_attachments */
passthru: /* ARB_internalformat_query2 */
@@ -14448,6 +14829,7 @@ GetnMapdvARB(target, query, bufSize, v)
param bufSize SizeI in value
param v Float64 out array [bufSize]
category ARB_robustness
+ profile compatibility
dlflags notlistable
version 4.1
extension
@@ -14462,6 +14844,7 @@ GetnMapfvARB(target, query, bufSize, v)
param bufSize SizeI in value
param v Float32 out array [bufSize]
category ARB_robustness
+ profile compatibility
dlflags notlistable
version 4.1
extension
@@ -14476,6 +14859,7 @@ GetnMapivARB(target, query, bufSize, v)
param bufSize SizeI in value
param v Int32 out array [bufSize]
category ARB_robustness
+ profile compatibility
dlflags notlistable
version 4.1
extension
@@ -14489,6 +14873,7 @@ GetnPixelMapfvARB(map, bufSize, values)
param bufSize SizeI in value
param values Float32 out array [bufSize]
category ARB_robustness
+ profile compatibility
dlflags notlistable
version 4.1
extension
@@ -14502,6 +14887,7 @@ GetnPixelMapuivARB(map, bufSize, values)
param bufSize SizeI in value
param values UInt32 out array [bufSize]
category ARB_robustness
+ profile compatibility
dlflags notlistable
version 4.1
extension
@@ -14515,6 +14901,7 @@ GetnPixelMapusvARB(map, bufSize, values)
param bufSize SizeI in value
param values UInt16 out array [bufSize]
category ARB_robustness
+ profile compatibility
dlflags notlistable
version 4.1
extension
@@ -14527,6 +14914,7 @@ GetnPolygonStippleARB(bufSize, pattern)
param bufSize SizeI in value
param pattern UInt8 out array [bufSize]
category ARB_robustness
+ profile compatibility
dlflags notlistable
version 4.1
extension
@@ -14542,6 +14930,7 @@ GetnColorTableARB(target, format, type, bufSize, table)
param bufSize SizeI in value
param table Void out array [bufSize]
category ARB_robustness
+ profile compatibility
dlflags notlistable
version 4.1
extension
@@ -14557,6 +14946,7 @@ GetnConvolutionFilterARB(target, format, type, bufSize, image)
param bufSize SizeI in value
param image Void out array [bufSize]
category ARB_robustness
+ profile compatibility
dlflags notlistable
version 4.1
extension
@@ -14575,6 +14965,7 @@ GetnSeparableFilterARB(target, format, type, rowBufSize, row, columnBufSize, col
param column Void out array [columnBufSize]
param span Void out array [0]
category ARB_robustness
+ profile compatibility
dlflags notlistable
version 4.1
extension
@@ -14591,6 +14982,7 @@ GetnHistogramARB(target, reset, format, type, bufSize, values)
param bufSize SizeI in value
param values Void out array [bufSize]
category ARB_robustness
+ profile compatibility
dlflags notlistable
version 4.1
extension
@@ -14607,6 +14999,7 @@ GetnMinmaxARB(target, reset, format, type, bufSize, values)
param bufSize SizeI in value
param values Void out array [bufSize]
category ARB_robustness
+ profile compatibility
dlflags notlistable
version 4.1
extension
@@ -15109,7 +15502,6 @@ GetDebugMessageLog(count, bufsize, sources, types, ids, severities, lengths, mes
glxflags ignore
offset ?
-# Shared with ARB_debug_group
PushDebugGroup(source, id, length, message)
return void
param source GLenum in value
@@ -15132,7 +15524,6 @@ PopDebugGroup()
glxflags ignore
offset ?
-# Shared with ARB_debug_label
ObjectLabel(identifier, name, length, label)
return void
param identifier GLenum in value
@@ -15187,7 +15578,7 @@ GetObjectPtrLabel(ptr, bufSize, length, label)
glxflags ignore
offset ?
-passthru: /* KHR_debug also reuses entry points from ARB_debug_group and ARB_debug_label */
+# Also includes GetPointerv (only for OpenGL ES 2, however)
###############################################################################
#
@@ -15330,35 +15721,200 @@ CopyImageSubData(srcName, srcTarget, srcLevel, srcX, srcY, srcZ, dstName, dstTar
###############################################################################
#
-# Extension #ARB124
-# ARB_debug_group commands
+# Extension #ARB124 (renumbered from 142)
+# ARB_texture_view commands
#
###############################################################################
-# (none)
-newcategory: ARB_debug_group
-passthru: /* ARB_debug_group reuses entry points from KHR_debug */
+TextureView(texture, target, origtexture, internalformat, minlevel, numlevels, minlayer, numlayers)
+ return void
+ param texture UInt32 in value
+ param target GLenum in value
+ param origtexture UInt32 in value
+ param internalformat GLenum in value
+ param minlevel UInt32 in value
+ param numlevels UInt32 in value
+ param minlayer UInt32 in value
+ param numlayers UInt32 in value
+ category ARB_texture_view
+ version 4.3
+ extension
+ glxropcode ?
+ glxflags ignore
+ offset ?
###############################################################################
#
-# Extension #ARB125
-# ARB_debug_label commands
+# Extension #ARB125 (renumbered from 143)
+# ARB_vertex_attrib_binding commands
#
###############################################################################
-# (none)
-newcategory: ARB_debug_label
-passthru: /* ARB_debug_label reuses entry points from KHR_debug */
+BindVertexBuffer(bindingindex, buffer, offset, stride)
+ return void
+ param bindingindex UInt32 in value
+ param buffer UInt32 in value
+ param offset BufferOffset in value
+ param stride SizeI in value
+ category ARB_vertex_attrib_binding
+ version 4.3
+ extension
+ glxropcode ?
+ glxflags ignore
+ offset ?
+
+VertexAttribFormat(attribindex, size, type, normalized, relativeoffset)
+ return void
+ param attribindex UInt32 in value
+ param size Int32 in value
+ param type GLenum in value
+ param normalized Boolean in value
+ param relativeoffset UInt32 in value
+ category ARB_vertex_attrib_binding
+ version 4.3
+ extension
+ glxropcode ?
+ glxflags ignore
+ offset ?
+
+VertexAttribIFormat(attribindex, size, type, relativeoffset)
+ return void
+ param attribindex UInt32 in value
+ param size Int32 in value
+ param type GLenum in value
+ param relativeoffset UInt32 in value
+ category ARB_vertex_attrib_binding
+ version 4.3
+ extension
+ glxropcode ?
+ glxflags ignore
+ offset ?
+
+VertexAttribLFormat(attribindex, size, type, relativeoffset)
+ return void
+ param attribindex UInt32 in value
+ param size Int32 in value
+ param type GLenum in value
+ param relativeoffset UInt32 in value
+ category ARB_vertex_attrib_binding
+ version 4.3
+ extension
+ glxropcode ?
+ glxflags ignore
+ offset ?
+
+VertexAttribBinding(attribindex, bindingindex)
+ return void
+ param attribindex UInt32 in value
+ param bindingindex UInt32 in value
+ category ARB_vertex_attrib_binding
+ version 4.3
+ extension
+ glxropcode ?
+ glxflags ignore
+ offset ?
+
+VertexBindingDivisor(bindingindex, divisor)
+ return void
+ param bindingindex UInt32 in value
+ param divisor UInt32 in value
+ category ARB_vertex_attrib_binding
+ version 4.3
+ extension
+ glxropcode ?
+ glxflags ignore
+ offset ?
+
+VertexArrayBindVertexBufferEXT(vaobj, bindingindex, buffer, offset, stride)
+ return void
+ param vaobj UInt32 in value
+ param bindingindex UInt32 in value
+ param buffer UInt32 in value
+ param offset BufferOffset in value
+ param stride SizeI in value
+ category ARB_vertex_attrib_binding
+ version 4.3
+ extension
+ glxropcode ?
+ glxflags ignore
+ offset ?
+
+VertexArrayVertexAttribFormatEXT(vaobj, attribindex, size, type, normalized, relativeoffset)
+ return void
+ param vaobj UInt32 in value
+ param attribindex UInt32 in value
+ param size Int32 in value
+ param type GLenum in value
+ param normalized Boolean in value
+ param relativeoffset UInt32 in value
+ category ARB_vertex_attrib_binding
+ version 4.3
+ extension
+ glxropcode ?
+ glxflags ignore
+ offset ?
+
+VertexArrayVertexAttribIFormatEXT(vaobj, attribindex, size, type, relativeoffset)
+ return void
+ param vaobj UInt32 in value
+ param attribindex UInt32 in value
+ param size Int32 in value
+ param type GLenum in value
+ param relativeoffset UInt32 in value
+ category ARB_vertex_attrib_binding
+ version 4.3
+ extension
+ glxropcode ?
+ glxflags ignore
+ offset ?
+
+VertexArrayVertexAttribLFormatEXT(vaobj, attribindex, size, type, relativeoffset)
+ return void
+ param vaobj UInt32 in value
+ param attribindex UInt32 in value
+ param size Int32 in value
+ param type GLenum in value
+ param relativeoffset UInt32 in value
+ category ARB_vertex_attrib_binding
+ version 4.3
+ extension
+ glxropcode ?
+ glxflags ignore
+ offset ?
+
+VertexArrayVertexAttribBindingEXT(vaobj, attribindex, bindingindex)
+ return void
+ param vaobj UInt32 in value
+ param attribindex UInt32 in value
+ param bindingindex UInt32 in value
+ category ARB_vertex_attrib_binding
+ version 4.3
+ extension
+ glxropcode ?
+ glxflags ignore
+ offset ?
+
+VertexArrayVertexBindingDivisorEXT(vaobj, bindingindex, divisor)
+ return void
+ param vaobj UInt32 in value
+ param bindingindex UInt32 in value
+ param divisor UInt32 in value
+ category ARB_vertex_attrib_binding
+ version 4.3
+ extension
+ glxropcode ?
+ glxflags ignore
+ offset ?
###############################################################################
#
-# Extension #ARB126
-# ARB_debug_output2 commands
+# Extension #ARB126 (renumbered from 144)
+# ARB_robustness_isolation commands
#
###############################################################################
# (none)
-newcategory: ARB_debug_output2
+newcategory: ARB_robustness_isolation
###############################################################################
#
@@ -15848,203 +16404,6 @@ TextureStorage3DMultisampleEXT(texture, target, samples, internalformat, width,
glxflags ignore
offset ?
-###############################################################################
-#
-# Extension #ARB142
-# ARB_texture_view commands
-#
-###############################################################################
-
-TextureView(texture, target, origtexture, internalformat, minlevel, numlevels, minlayer, numlayers)
- return void
- param texture UInt32 in value
- param target GLenum in value
- param origtexture UInt32 in value
- param internalformat GLenum in value
- param minlevel UInt32 in value
- param numlevels UInt32 in value
- param minlayer UInt32 in value
- param numlayers UInt32 in value
- category ARB_texture_view
- version 4.3
- extension
- glxropcode ?
- glxflags ignore
- offset ?
-
-###############################################################################
-#
-# Extension #ARB143
-# ARB_vertex_attrib_binding commands
-#
-###############################################################################
-
-BindVertexBuffer(bindingindex, buffer, offset, stride)
- return void
- param bindingindex UInt32 in value
- param buffer UInt32 in value
- param offset BufferOffset in value
- param stride SizeI in value
- category ARB_vertex_attrib_binding
- version 4.3
- extension
- glxropcode ?
- glxflags ignore
- offset ?
-
-VertexAttribFormat(attribindex, size, type, normalized, relativeoffset)
- return void
- param attribindex UInt32 in value
- param size Int32 in value
- param type GLenum in value
- param normalized Boolean in value
- param relativeoffset UInt32 in value
- category ARB_vertex_attrib_binding
- version 4.3
- extension
- glxropcode ?
- glxflags ignore
- offset ?
-
-VertexAttribIFormat(attribindex, size, type, relativeoffset)
- return void
- param attribindex UInt32 in value
- param size Int32 in value
- param type GLenum in value
- param relativeoffset UInt32 in value
- category ARB_vertex_attrib_binding
- version 4.3
- extension
- glxropcode ?
- glxflags ignore
- offset ?
-
-VertexAttribLFormat(attribindex, size, type, relativeoffset)
- return void
- param attribindex UInt32 in value
- param size Int32 in value
- param type GLenum in value
- param relativeoffset UInt32 in value
- category ARB_vertex_attrib_binding
- version 4.3
- extension
- glxropcode ?
- glxflags ignore
- offset ?
-
-VertexAttribBinding(attribindex, bindingindex)
- return void
- param attribindex UInt32 in value
- param bindingindex UInt32 in value
- category ARB_vertex_attrib_binding
- version 4.3
- extension
- glxropcode ?
- glxflags ignore
- offset ?
-
-VertexBindingDivisor(bindingindex, divisor)
- return void
- param bindingindex UInt32 in value
- param divisor UInt32 in value
- category ARB_vertex_attrib_binding
- version 4.3
- extension
- glxropcode ?
- glxflags ignore
- offset ?
-
-VertexArrayBindVertexBufferEXT(vaobj, bindingindex, buffer, offset, stride)
- return void
- param vaobj UInt32 in value
- param bindingindex UInt32 in value
- param buffer UInt32 in value
- param offset BufferOffset in value
- param stride SizeI in value
- category ARB_vertex_attrib_binding
- version 4.3
- extension
- glxropcode ?
- glxflags ignore
- offset ?
-
-VertexArrayVertexAttribFormatEXT(vaobj, attribindex, size, type, normalized, relativeoffset)
- return void
- param vaobj UInt32 in value
- param attribindex UInt32 in value
- param size Int32 in value
- param type GLenum in value
- param normalized Boolean in value
- param relativeoffset UInt32 in value
- category ARB_vertex_attrib_binding
- version 4.3
- extension
- glxropcode ?
- glxflags ignore
- offset ?
-
-VertexArrayVertexAttribIFormatEXT(vaobj, attribindex, size, type, relativeoffset)
- return void
- param vaobj UInt32 in value
- param attribindex UInt32 in value
- param size Int32 in value
- param type GLenum in value
- param relativeoffset UInt32 in value
- category ARB_vertex_attrib_binding
- version 4.3
- extension
- glxropcode ?
- glxflags ignore
- offset ?
-
-VertexArrayVertexAttribLFormatEXT(vaobj, attribindex, size, type, relativeoffset)
- return void
- param vaobj UInt32 in value
- param attribindex UInt32 in value
- param size Int32 in value
- param type GLenum in value
- param relativeoffset UInt32 in value
- category ARB_vertex_attrib_binding
- version 4.3
- extension
- glxropcode ?
- glxflags ignore
- offset ?
-
-VertexArrayVertexAttribBindingEXT(vaobj, attribindex, bindingindex)
- return void
- param vaobj UInt32 in value
- param attribindex UInt32 in value
- param bindingindex UInt32 in value
- category ARB_vertex_attrib_binding
- version 4.3
- extension
- glxropcode ?
- glxflags ignore
- offset ?
-
-VertexArrayVertexBindingDivisorEXT(vaobj, bindingindex, divisor)
- return void
- param vaobj UInt32 in value
- param bindingindex UInt32 in value
- param divisor UInt32 in value
- category ARB_vertex_attrib_binding
- version 4.3
- extension
- glxropcode ?
- glxflags ignore
- offset ?
-
-###############################################################################
-#
-# Extension #ARB144
-# ARB_robustness_isolation commands
-#
-###############################################################################
-
-# (none)
-newcategory: ARB_robustness_isolation
-
###############################################################################
###############################################################################
@@ -18845,7 +19204,7 @@ PixelTransformParameteriEXT(target, pname, param)
param param Int32 in value
category EXT_pixel_transform
version 1.1
- glxropcode ?
+ glxropcode 16386
offset ?
PixelTransformParameterfEXT(target, pname, param)
@@ -18855,7 +19214,7 @@ PixelTransformParameterfEXT(target, pname, param)
param param Float32 in value
category EXT_pixel_transform
version 1.1
- glxropcode ?
+ glxropcode 16385
offset ?
PixelTransformParameterivEXT(target, pname, params)
@@ -18878,6 +19237,32 @@ PixelTransformParameterfvEXT(target, pname, params)
glxropcode ?
offset ?
+GetPixelTransformParameterivEXT(target, pname, params)
+ return void
+ param target GLenum in value
+ param pname GLenum in value
+ param params Int32 out array [COMPSIZE(pname)]
+ category EXT_pixel_transform
+ dlflags notlistable
+ version 1.1
+ extension
+ glxvendorpriv 2052
+ glxflags ignore
+ offset ?
+
+GetPixelTransformParameterfvEXT(target, pname, params)
+ return void
+ param target GLenum in value
+ param pname GLenum in value
+ param params Float32 out array [COMPSIZE(pname)]
+ category EXT_pixel_transform
+ dlflags notlistable
+ version 1.1
+ extension
+ glxvendorpriv 2051
+ glxflags ignore
+ offset ?
+
###############################################################################
#
# Extension #139
@@ -20326,7 +20711,7 @@ VertexWeightfvEXT(weight)
VertexWeightPointerEXT(size, type, stride, pointer)
return void
- param size SizeI in value
+ param size Int32 in value
param type VertexWeightPointerTypeEXT in value
param stride SizeI in value
param pointer Void in array [COMPSIZE(type/stride)] retained
@@ -32720,7 +33105,7 @@ VDPAUFiniNV()
VDPAURegisterVideoSurfaceNV(vdpSurface, target, numTextureNames, textureNames)
return vdpauSurfaceNV
- param vdpSurface Void out reference
+ param vdpSurface Void in reference
param target GLenum in value
param numTextureNames SizeI in value
param textureNames UInt32 in array [numTextureNames]
@@ -33810,7 +34195,7 @@ IsImageHandleResidentNV(handle)
# (none)
newcategory: NV_shader_atomic_float
-###############################################################################
+[###############################################################################
#
# Extension #420
# AMD_query_buffer_object commands
@@ -33819,3 +34204,44 @@ newcategory: NV_shader_atomic_float
# (none)
newcategory: AMD_query_buffer_object
+
+###############################################################################
+#
+# Extension #421
+# AMD_sparse_texture commands
+#
+###############################################################################
+
+TexStorageSparseAMD(target, internalFormat, width, height, depth, layers, flags)
+ return void
+ param target GLenum in value
+ param internalFormat GLenum in value
+ param width SizeI in value
+ param height SizeI in value
+ param depth SizeI in value
+ param layers SizeI in value
+ param flags GLbitfield in value
+ category AMD_sparse_texture
+ version 4.3
+ extension
+ glxropcode ?
+ glxflags ignore
+ offset ?
+
+TextureStorageSparseAMD(texture, target, internalFormat, width, height, depth, layers, flags)
+ return void
+ param texture UInt32 in value
+ param target GLenum in value
+ param internalFormat GLenum in value
+ param width SizeI in value
+ param height SizeI in value
+ param depth SizeI in value
+ param layers SizeI in value
+ param flags GLbitfield in value
+ category AMD_sparse_texture
+ version 4.3
+ extension
+ glxropcode ?
+ glxflags ignore
+ offset ?
+
diff --git a/xorg-server/hw/xwin/swrastwgl_dri/gl.spec b/xorg-server/hw/xwin/swrastwgl_dri/gl.spec
index 890a38338..55e2d3b4c 100644
--- a/xorg-server/hw/xwin/swrastwgl_dri/gl.spec
+++ b/xorg-server/hw/xwin/swrastwgl_dri/gl.spec
@@ -7,7 +7,7 @@
# This document is licensed under the SGI Free Software B License Version
# 2.0. For details, see http://oss.sgi.com/projects/FreeB/ .
#
-# $Revision: 18818 $ on $Date: 2012-08-06 02:01:57 -0700 (Mon, 06 Aug 2012) $
+# $Revision: 19329 $ on $Date: 2012-09-28 12:26:05 -0700 (Fri, 28 Sep 2012) $
required-props:
# Description of a parameter
@@ -22,12 +22,12 @@ vectorequiv: *
# early GL 1.0 functions, later functions just have a core version
# (e.g. VERSION_major_minor) or extension name for the category.
category: display-list drawing drawing-control feedback framebuf misc modeling pixel-op pixel-rw state-req xform
-category: VERSION_1_0 VERSION_1_0_DEPRECATED VERSION_1_1 VERSION_1_1_DEPRECATED VERSION_1_2 VERSION_1_2_DEPRECATED VERSION_1_3 VERSION_1_3_DEPRECATED VERSION_1_4 VERSION_1_4_DEPRECATED VERSION_1_5 VERSION_2_0 VERSION_2_1 VERSION_3_0 VERSION_3_0_DEPRECATED VERSION_3_1 VERSION_3_2 VERSION_3_3 VERSION_4_0 VERSION_4_1 VERSION_4_1_DEPRECATED VERSION_4_2 VERSION_4_3
+category: VERSION_1_0 VERSION_1_1 VERSION_1_2 VERSION_1_3 VERSION_1_4 VERSION_1_5 VERSION_2_0 VERSION_2_1 VERSION_3_0 VERSION_3_1 VERSION_3_2 VERSION_3_3 VERSION_4_0 VERSION_4_1 VERSION_4_2 VERSION_4_3
category: 3DFX_tbuffer
-category: AMD_conservative_depth AMD_debug_output AMD_draw_buffers_blend AMD_multi_draw_indirect AMD_name_gen_delete AMD_performance_monitor AMD_sample_positions AMD_stencil_operation_extended AMD_vertex_shader_tesselator
+category: AMD_conservative_depth AMD_debug_output AMD_draw_buffers_blend AMD_multi_draw_indirect AMD_name_gen_delete AMD_performance_monitor AMD_sample_positions AMD_sparse_texture AMD_stencil_operation_extended AMD_vertex_shader_tesselator
category: APPLE_aux_depth_stencil APPLE_element_array APPLE_fence APPLE_float_pixels APPLE_flush_buffer_range APPLE_object_purgeable APPLE_row_bytes APPLE_texture_range APPLE_vertex_array_object APPLE_vertex_array_range APPLE_vertex_program_evaluators
category: ARB_ES2_compatibility ARB_base_instance ARB_blend_func_extended ARB_cl_event ARB_color_buffer_float ARB_copy_buffer ARB_debug_output ARB_depth_buffer_float ARB_draw_buffers ARB_draw_buffers_blend ARB_draw_elements_base_vertex ARB_draw_indirect ARB_draw_instanced ARB_fragment_program ARB_fragment_shader ARB_framebuffer_object ARB_framebuffer_sRGB ARB_geometry_shader4 ARB_get_program_binary ARB_gpu_shader_fp64 ARB_half_float_vertex ARB_instanced_arrays ARB_internalformat_query ARB_map_buffer_range ARB_matrix_palette ARB_multisample ARB_multitexture ARB_occlusion_query ARB_point_parameters ARB_provoking_vertex ARB_robustness ARB_sample_shading ARB_sampler_objects ARB_separate_shader_objects ARB_shader_atomic_counters ARB_shader_image_load_store ARB_shader_objects ARB_shader_subroutine ARB_shading_language_include ARB_sync ARB_tessellation_shader ARB_texture_buffer_object ARB_texture_compression ARB_texture_compression_rgtc ARB_texture_multisample ARB_texture_rectangle ARB_texture_rg ARB_texture_storage ARB_timer_query ARB_transform_feedback2 ARB_transform_feedback3 ARB_transform_feedback_instanced ARB_transpose_matrix ARB_uniform_buffer_object ARB_vertex_array_object ARB_vertex_attrib_64bit ARB_vertex_blend ARB_vertex_buffer_object ARB_vertex_program ARB_vertex_shader ARB_vertex_type_2_10_10_10_rev ARB_viewport_array ARB_window_pos
-category: ARB_clear_buffer_object ARB_compute_shader ARB_copy_image ARB_debug_group ARB_debug_label ARB_debug_output ARB_framebuffer_no_attachments ARB_internalformat_query2 ARB_invalidate_subdata ARB_multi_draw_indirect ARB_program_interface_query ARB_shader_storage_buffer_object ARB_texture_buffer_range ARB_texture_storage_multisample ARB_texture_view ARB_vertex_attrib_binding
+category: ARB_clear_buffer_object ARB_compute_shader ARB_copy_image ARB_framebuffer_no_attachments ARB_internalformat_query2 ARB_invalidate_subdata ARB_multi_draw_indirect ARB_program_interface_query ARB_shader_storage_buffer_object ARB_texture_buffer_range ARB_texture_storage_multisample ARB_texture_view ARB_vertex_attrib_binding
category: ATI_draw_buffers ATI_draw_buffers ATI_element_array ATI_envmap_bumpmap ATI_fragment_shader ATI_map_object_buffer ATI_meminfo ATI_pn_triangles ATI_separate_stencil ATI_texture_env_combine3 ATI_texture_float ATI_vertex_array_object ATI_vertex_attrib_array_object ATI_vertex_streams
category: EXT_bindable_uniform EXT_blend_color EXT_blend_equation_separate EXT_blend_func_separate EXT_blend_minmax EXT_color_subtable EXT_compiled_vertex_array EXT_convolution EXT_coordinate_frame EXT_copy_texture EXT_cull_vertex EXT_depth_bounds_test EXT_direct_state_access EXT_draw_buffers2 EXT_draw_instanced EXT_draw_range_elements EXT_fog_coord EXT_framebuffer_blit EXT_framebuffer_multisample EXT_framebuffer_object EXT_geometry_shader4 EXT_gpu_program_parameters EXT_gpu_shader4 EXT_histogram EXT_index_func EXT_index_material EXT_light_texture EXT_multi_draw_arrays EXT_multisample EXT_paletted_texture EXT_pixel_transform EXT_point_parameters EXT_polygon_offset EXT_provoking_vertex EXT_secondary_color EXT_separate_shader_objects EXT_shader_image_load_store EXT_stencil_clear_tag EXT_stencil_two_side EXT_subtexture EXT_texture3D EXT_texture_buffer_object EXT_texture_integer EXT_texture_object EXT_texture_perturb_normal EXT_texture_snorm EXT_texture_swizzle EXT_timer_query EXT_transform_feedback EXT_vertex_array EXT_vertex_array_bgra EXT_vertex_attrib_64bit EXT_vertex_shader EXT_vertex_weighting EXT_x11_sync_object
category: GREMEDY_frame_terminator GREMEDY_string_marker
@@ -67,6 +67,9 @@ category: SUNX_constant_data SUN_global_alpha SUN_mesh_array SUN_triangle_list S
version: 1.0 1.1 1.2 1.3 1.4 1.5 2.0 2.1 3.0 3.1 3.2 3.3 4.0 4.1 4.2 4.3
# Core version in which a function was removed
deprecated: 3.1
+# API profile - should only be compatibility since there are no core-only
+# functions for now.
+profile: compatibility
# GLX Single, Rendering, or Vendor Private opcode
glxsingle: *
glxropcode: *
@@ -794,7 +797,8 @@ NewList(list, mode)
param list List in value
param mode ListMode in value
dlflags notlistable
- category VERSION_1_0_DEPRECATED # old: display-list
+ category VERSION_1_0 # old: display-list
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 101
@@ -804,7 +808,8 @@ NewList(list, mode)
EndList()
return void
dlflags notlistable
- category VERSION_1_0_DEPRECATED # old: display-list
+ category VERSION_1_0 # old: display-list
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 102
@@ -814,7 +819,8 @@ EndList()
CallList(list)
return void
param list List in value
- category VERSION_1_0_DEPRECATED # old: display-list
+ category VERSION_1_0 # old: display-list
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 1
@@ -825,8 +831,9 @@ CallLists(n, type, lists)
param n SizeI in value
param type ListNameType in value
param lists Void in array [COMPSIZE(n/type)]
- category VERSION_1_0_DEPRECATED # old: display-list
+ category VERSION_1_0 # old: display-list
glxflags client-handcode server-handcode
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 2
@@ -837,7 +844,8 @@ DeleteLists(list, range)
param list List in value
param range SizeI in value
dlflags notlistable
- category VERSION_1_0_DEPRECATED # old: display-list
+ category VERSION_1_0 # old: display-list
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 103
@@ -848,7 +856,8 @@ GenLists(range)
return List
param range SizeI in value
dlflags notlistable
- category VERSION_1_0_DEPRECATED # old: display-list
+ category VERSION_1_0 # old: display-list
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 104
@@ -857,7 +866,8 @@ GenLists(range)
ListBase(base)
return void
param base List in value
- category VERSION_1_0_DEPRECATED # old: display-list
+ category VERSION_1_0 # old: display-list
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 3
@@ -868,7 +878,8 @@ ListBase(base)
Begin(mode)
return void
param mode BeginMode in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 4
@@ -883,9 +894,10 @@ Bitmap(width, height, xorig, yorig, xmove, ymove, bitmap)
param xmove CoordF in value
param ymove CoordF in value
param bitmap UInt8 in array [COMPSIZE(width/height)]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
dlflags handcode
glxflags client-handcode server-handcode
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 5
@@ -897,8 +909,9 @@ Color3b(red, green, blue)
param red ColorB in value
param green ColorB in value
param blue ColorB in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Color3bv
+ profile compatibility
version 1.0
deprecated 3.1
offset 9
@@ -906,7 +919,8 @@ Color3b(red, green, blue)
Color3bv(v)
return void
param v ColorB in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 6
@@ -917,8 +931,9 @@ Color3d(red, green, blue)
param red ColorD in value
param green ColorD in value
param blue ColorD in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Color3dv
+ profile compatibility
version 1.0
deprecated 3.1
offset 11
@@ -926,7 +941,8 @@ Color3d(red, green, blue)
Color3dv(v)
return void
param v ColorD in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 7
@@ -937,8 +953,9 @@ Color3f(red, green, blue)
param red ColorF in value
param green ColorF in value
param blue ColorF in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Color3fv
+ profile compatibility
version 1.0
deprecated 3.1
offset 13
@@ -946,7 +963,8 @@ Color3f(red, green, blue)
Color3fv(v)
return void
param v ColorF in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 8
@@ -957,8 +975,9 @@ Color3i(red, green, blue)
param red ColorI in value
param green ColorI in value
param blue ColorI in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Color3iv
+ profile compatibility
version 1.0
deprecated 3.1
offset 15
@@ -966,7 +985,8 @@ Color3i(red, green, blue)
Color3iv(v)
return void
param v ColorI in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 9
@@ -977,8 +997,9 @@ Color3s(red, green, blue)
param red ColorS in value
param green ColorS in value
param blue ColorS in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Color3sv
+ profile compatibility
version 1.0
deprecated 3.1
offset 17
@@ -986,7 +1007,8 @@ Color3s(red, green, blue)
Color3sv(v)
return void
param v ColorS in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 10
@@ -997,8 +1019,9 @@ Color3ub(red, green, blue)
param red ColorUB in value
param green ColorUB in value
param blue ColorUB in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Color3ubv
+ profile compatibility
version 1.0
deprecated 3.1
offset 19
@@ -1006,7 +1029,8 @@ Color3ub(red, green, blue)
Color3ubv(v)
return void
param v ColorUB in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 11
@@ -1017,8 +1041,9 @@ Color3ui(red, green, blue)
param red ColorUI in value
param green ColorUI in value
param blue ColorUI in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Color3uiv
+ profile compatibility
version 1.0
deprecated 3.1
offset 21
@@ -1026,7 +1051,8 @@ Color3ui(red, green, blue)
Color3uiv(v)
return void
param v ColorUI in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 12
@@ -1037,8 +1063,9 @@ Color3us(red, green, blue)
param red ColorUS in value
param green ColorUS in value
param blue ColorUS in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Color3usv
+ profile compatibility
version 1.0
deprecated 3.1
offset 23
@@ -1046,7 +1073,8 @@ Color3us(red, green, blue)
Color3usv(v)
return void
param v ColorUS in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 13
@@ -1058,8 +1086,9 @@ Color4b(red, green, blue, alpha)
param green ColorB in value
param blue ColorB in value
param alpha ColorB in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Color4bv
+ profile compatibility
version 1.0
deprecated 3.1
offset 25
@@ -1067,7 +1096,8 @@ Color4b(red, green, blue, alpha)
Color4bv(v)
return void
param v ColorB in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 14
@@ -1079,8 +1109,9 @@ Color4d(red, green, blue, alpha)
param green ColorD in value
param blue ColorD in value
param alpha ColorD in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Color4dv
+ profile compatibility
version 1.0
deprecated 3.1
offset 27
@@ -1088,7 +1119,8 @@ Color4d(red, green, blue, alpha)
Color4dv(v)
return void
param v ColorD in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 15
@@ -1100,8 +1132,9 @@ Color4f(red, green, blue, alpha)
param green ColorF in value
param blue ColorF in value
param alpha ColorF in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Color4fv
+ profile compatibility
version 1.0
deprecated 3.1
offset 29
@@ -1109,7 +1142,8 @@ Color4f(red, green, blue, alpha)
Color4fv(v)
return void
param v ColorF in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 16
@@ -1121,8 +1155,9 @@ Color4i(red, green, blue, alpha)
param green ColorI in value
param blue ColorI in value
param alpha ColorI in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Color4iv
+ profile compatibility
version 1.0
deprecated 3.1
offset 31
@@ -1130,7 +1165,8 @@ Color4i(red, green, blue, alpha)
Color4iv(v)
return void
param v ColorI in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 17
@@ -1142,8 +1178,9 @@ Color4s(red, green, blue, alpha)
param green ColorS in value
param blue ColorS in value
param alpha ColorS in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Color4sv
+ profile compatibility
version 1.0
deprecated 3.1
offset 33
@@ -1151,7 +1188,8 @@ Color4s(red, green, blue, alpha)
Color4sv(v)
return void
param v ColorS in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 18
@@ -1163,8 +1201,9 @@ Color4ub(red, green, blue, alpha)
param green ColorUB in value
param blue ColorUB in value
param alpha ColorUB in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Color4ubv
+ profile compatibility
version 1.0
deprecated 3.1
offset 35
@@ -1172,7 +1211,8 @@ Color4ub(red, green, blue, alpha)
Color4ubv(v)
return void
param v ColorUB in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 19
@@ -1184,8 +1224,9 @@ Color4ui(red, green, blue, alpha)
param green ColorUI in value
param blue ColorUI in value
param alpha ColorUI in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Color4uiv
+ profile compatibility
version 1.0
deprecated 3.1
offset 37
@@ -1193,7 +1234,8 @@ Color4ui(red, green, blue, alpha)
Color4uiv(v)
return void
param v ColorUI in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 20
@@ -1205,8 +1247,9 @@ Color4us(red, green, blue, alpha)
param green ColorUS in value
param blue ColorUS in value
param alpha ColorUS in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Color4usv
+ profile compatibility
version 1.0
deprecated 3.1
offset 39
@@ -1214,7 +1257,8 @@ Color4us(red, green, blue, alpha)
Color4usv(v)
return void
param v ColorUS in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 21
@@ -1223,8 +1267,9 @@ Color4usv(v)
EdgeFlag(flag)
return void
param flag Boolean in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv EdgeFlagv
+ profile compatibility
version 1.0
deprecated 3.1
offset 41
@@ -1232,7 +1277,8 @@ EdgeFlag(flag)
EdgeFlagv(flag)
return void
param flag Boolean in reference
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 22
@@ -1240,7 +1286,8 @@ EdgeFlagv(flag)
End()
return void
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 23
@@ -1249,8 +1296,9 @@ End()
Indexd(c)
return void
param c ColorIndexValueD in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Indexdv
+ profile compatibility
version 1.0
deprecated 3.1
offset 44
@@ -1258,7 +1306,8 @@ Indexd(c)
Indexdv(c)
return void
param c ColorIndexValueD in array [1]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 24
@@ -1267,8 +1316,9 @@ Indexdv(c)
Indexf(c)
return void
param c ColorIndexValueF in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Indexfv
+ profile compatibility
version 1.0
deprecated 3.1
offset 46
@@ -1276,7 +1326,8 @@ Indexf(c)
Indexfv(c)
return void
param c ColorIndexValueF in array [1]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 25
@@ -1285,8 +1336,9 @@ Indexfv(c)
Indexi(c)
return void
param c ColorIndexValueI in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Indexiv
+ profile compatibility
version 1.0
deprecated 3.1
offset 48
@@ -1294,7 +1346,8 @@ Indexi(c)
Indexiv(c)
return void
param c ColorIndexValueI in array [1]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 26
@@ -1303,8 +1356,9 @@ Indexiv(c)
Indexs(c)
return void
param c ColorIndexValueS in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Indexsv
+ profile compatibility
version 1.0
deprecated 3.1
offset 50
@@ -1312,7 +1366,8 @@ Indexs(c)
Indexsv(c)
return void
param c ColorIndexValueS in array [1]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 27
@@ -1323,8 +1378,9 @@ Normal3b(nx, ny, nz)
param nx Int8 in value
param ny Int8 in value
param nz Int8 in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Normal3bv
+ profile compatibility
version 1.0
deprecated 3.1
offset 52
@@ -1332,7 +1388,8 @@ Normal3b(nx, ny, nz)
Normal3bv(v)
return void
param v Int8 in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 28
@@ -1343,8 +1400,9 @@ Normal3d(nx, ny, nz)
param nx CoordD in value
param ny CoordD in value
param nz CoordD in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Normal3dv
+ profile compatibility
version 1.0
deprecated 3.1
offset 54
@@ -1352,7 +1410,8 @@ Normal3d(nx, ny, nz)
Normal3dv(v)
return void
param v CoordD in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 29
@@ -1363,8 +1422,9 @@ Normal3f(nx, ny, nz)
param nx CoordF in value
param ny CoordF in value
param nz CoordF in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Normal3fv
+ profile compatibility
version 1.0
deprecated 3.1
offset 56
@@ -1372,7 +1432,8 @@ Normal3f(nx, ny, nz)
Normal3fv(v)
return void
param v CoordF in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 30
@@ -1383,8 +1444,9 @@ Normal3i(nx, ny, nz)
param nx Int32 in value
param ny Int32 in value
param nz Int32 in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Normal3iv
+ profile compatibility
version 1.0
deprecated 3.1
offset 58
@@ -1392,7 +1454,8 @@ Normal3i(nx, ny, nz)
Normal3iv(v)
return void
param v Int32 in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 31
@@ -1403,8 +1466,9 @@ Normal3s(nx, ny, nz)
param nx Int16 in value
param ny Int16 in value
param nz Int16 in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Normal3sv
+ profile compatibility
version 1.0
deprecated 3.1
offset 60
@@ -1412,7 +1476,8 @@ Normal3s(nx, ny, nz)
Normal3sv(v)
return void
param v Int16 in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 32
@@ -1422,8 +1487,9 @@ RasterPos2d(x, y)
return void
param x CoordD in value
param y CoordD in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv RasterPos2dv
+ profile compatibility
version 1.0
deprecated 3.1
offset 62
@@ -1431,7 +1497,8 @@ RasterPos2d(x, y)
RasterPos2dv(v)
return void
param v CoordD in array [2]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 33
@@ -1441,8 +1508,9 @@ RasterPos2f(x, y)
return void
param x CoordF in value
param y CoordF in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv RasterPos2fv
+ profile compatibility
version 1.0
deprecated 3.1
offset 64
@@ -1450,7 +1518,8 @@ RasterPos2f(x, y)
RasterPos2fv(v)
return void
param v CoordF in array [2]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 34
@@ -1460,8 +1529,9 @@ RasterPos2i(x, y)
return void
param x CoordI in value
param y CoordI in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv RasterPos2iv
+ profile compatibility
version 1.0
deprecated 3.1
offset 66
@@ -1469,7 +1539,8 @@ RasterPos2i(x, y)
RasterPos2iv(v)
return void
param v CoordI in array [2]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 35
@@ -1479,8 +1550,9 @@ RasterPos2s(x, y)
return void
param x CoordS in value
param y CoordS in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv RasterPos2sv
+ profile compatibility
version 1.0
deprecated 3.1
offset 68
@@ -1488,7 +1560,8 @@ RasterPos2s(x, y)
RasterPos2sv(v)
return void
param v CoordS in array [2]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 36
@@ -1500,7 +1573,8 @@ RasterPos3d(x, y, z)
param y CoordD in value
param z CoordD in value
vectorequiv RasterPos3dv
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
offset 70
@@ -1508,7 +1582,8 @@ RasterPos3d(x, y, z)
RasterPos3dv(v)
return void
param v CoordD in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 37
@@ -1519,8 +1594,9 @@ RasterPos3f(x, y, z)
param x CoordF in value
param y CoordF in value
param z CoordF in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv RasterPos3fv
+ profile compatibility
version 1.0
deprecated 3.1
offset 72
@@ -1528,7 +1604,8 @@ RasterPos3f(x, y, z)
RasterPos3fv(v)
return void
param v CoordF in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 38
@@ -1539,8 +1616,9 @@ RasterPos3i(x, y, z)
param x CoordI in value
param y CoordI in value
param z CoordI in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv RasterPos3iv
+ profile compatibility
version 1.0
deprecated 3.1
offset 74
@@ -1548,7 +1626,8 @@ RasterPos3i(x, y, z)
RasterPos3iv(v)
return void
param v CoordI in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 39
@@ -1559,8 +1638,9 @@ RasterPos3s(x, y, z)
param x CoordS in value
param y CoordS in value
param z CoordS in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv RasterPos3sv
+ profile compatibility
version 1.0
deprecated 3.1
offset 76
@@ -1568,7 +1648,8 @@ RasterPos3s(x, y, z)
RasterPos3sv(v)
return void
param v CoordS in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 40
@@ -1581,7 +1662,8 @@ RasterPos4d(x, y, z, w)
param z CoordD in value
param w CoordD in value
vectorequiv RasterPos4dv
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
offset 78
@@ -1589,7 +1671,8 @@ RasterPos4d(x, y, z, w)
RasterPos4dv(v)
return void
param v CoordD in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 41
@@ -1601,8 +1684,9 @@ RasterPos4f(x, y, z, w)
param y CoordF in value
param z CoordF in value
param w CoordF in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv RasterPos4fv
+ profile compatibility
version 1.0
deprecated 3.1
offset 80
@@ -1610,7 +1694,8 @@ RasterPos4f(x, y, z, w)
RasterPos4fv(v)
return void
param v CoordF in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 42
@@ -1622,8 +1707,9 @@ RasterPos4i(x, y, z, w)
param y CoordI in value
param z CoordI in value
param w CoordI in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv RasterPos4iv
+ profile compatibility
version 1.0
deprecated 3.1
offset 82
@@ -1631,7 +1717,8 @@ RasterPos4i(x, y, z, w)
RasterPos4iv(v)
return void
param v CoordI in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 43
@@ -1643,8 +1730,9 @@ RasterPos4s(x, y, z, w)
param y CoordS in value
param z CoordS in value
param w CoordS in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv RasterPos4sv
+ profile compatibility
version 1.0
deprecated 3.1
offset 84
@@ -1652,7 +1740,8 @@ RasterPos4s(x, y, z, w)
RasterPos4sv(v)
return void
param v CoordS in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 44
@@ -1664,8 +1753,9 @@ Rectd(x1, y1, x2, y2)
param y1 CoordD in value
param x2 CoordD in value
param y2 CoordD in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Rectdv
+ profile compatibility
version 1.0
deprecated 3.1
offset 86
@@ -1674,7 +1764,8 @@ Rectdv(v1, v2)
return void
param v1 CoordD in array [2]
param v2 CoordD in array [2]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 45
@@ -1686,8 +1777,9 @@ Rectf(x1, y1, x2, y2)
param y1 CoordF in value
param x2 CoordF in value
param y2 CoordF in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Rectfv
+ profile compatibility
version 1.0
deprecated 3.1
offset 88
@@ -1696,7 +1788,8 @@ Rectfv(v1, v2)
return void
param v1 CoordF in array [2]
param v2 CoordF in array [2]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 46
@@ -1708,8 +1801,9 @@ Recti(x1, y1, x2, y2)
param y1 CoordI in value
param x2 CoordI in value
param y2 CoordI in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Rectiv
+ profile compatibility
version 1.0
deprecated 3.1
offset 90
@@ -1718,7 +1812,8 @@ Rectiv(v1, v2)
return void
param v1 CoordI in array [2]
param v2 CoordI in array [2]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 47
@@ -1730,8 +1825,9 @@ Rects(x1, y1, x2, y2)
param y1 CoordS in value
param x2 CoordS in value
param y2 CoordS in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Rectsv
+ profile compatibility
version 1.0
deprecated 3.1
offset 92
@@ -1740,7 +1836,8 @@ Rectsv(v1, v2)
return void
param v1 CoordS in array [2]
param v2 CoordS in array [2]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 48
@@ -1749,8 +1846,9 @@ Rectsv(v1, v2)
TexCoord1d(s)
return void
param s CoordD in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv TexCoord1dv
+ profile compatibility
version 1.0
deprecated 3.1
offset 94
@@ -1758,7 +1856,8 @@ TexCoord1d(s)
TexCoord1dv(v)
return void
param v CoordD in array [1]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 49
@@ -1767,8 +1866,9 @@ TexCoord1dv(v)
TexCoord1f(s)
return void
param s CoordF in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv TexCoord1fv
+ profile compatibility
version 1.0
deprecated 3.1
offset 96
@@ -1776,7 +1876,8 @@ TexCoord1f(s)
TexCoord1fv(v)
return void
param v CoordF in array [1]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 50
@@ -1785,8 +1886,9 @@ TexCoord1fv(v)
TexCoord1i(s)
return void
param s CoordI in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv TexCoord1iv
+ profile compatibility
version 1.0
deprecated 3.1
offset 98
@@ -1794,7 +1896,8 @@ TexCoord1i(s)
TexCoord1iv(v)
return void
param v CoordI in array [1]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 51
@@ -1803,8 +1906,9 @@ TexCoord1iv(v)
TexCoord1s(s)
return void
param s CoordS in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv TexCoord1sv
+ profile compatibility
version 1.0
deprecated 3.1
offset 100
@@ -1812,7 +1916,8 @@ TexCoord1s(s)
TexCoord1sv(v)
return void
param v CoordS in array [1]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 52
@@ -1822,8 +1927,9 @@ TexCoord2d(s, t)
return void
param s CoordD in value
param t CoordD in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv TexCoord2dv
+ profile compatibility
version 1.0
deprecated 3.1
offset 102
@@ -1831,7 +1937,8 @@ TexCoord2d(s, t)
TexCoord2dv(v)
return void
param v CoordD in array [2]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 53
@@ -1841,8 +1948,9 @@ TexCoord2f(s, t)
return void
param s CoordF in value
param t CoordF in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv TexCoord2fv
+ profile compatibility
version 1.0
deprecated 3.1
offset 104
@@ -1850,7 +1958,8 @@ TexCoord2f(s, t)
TexCoord2fv(v)
return void
param v CoordF in array [2]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 54
@@ -1860,8 +1969,9 @@ TexCoord2i(s, t)
return void
param s CoordI in value
param t CoordI in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv TexCoord2iv
+ profile compatibility
version 1.0
deprecated 3.1
offset 106
@@ -1869,7 +1979,8 @@ TexCoord2i(s, t)
TexCoord2iv(v)
return void
param v CoordI in array [2]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 55
@@ -1879,8 +1990,9 @@ TexCoord2s(s, t)
return void
param s CoordS in value
param t CoordS in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv TexCoord2sv
+ profile compatibility
version 1.0
deprecated 3.1
offset 108
@@ -1888,7 +2000,8 @@ TexCoord2s(s, t)
TexCoord2sv(v)
return void
param v CoordS in array [2]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 56
@@ -1899,8 +2012,9 @@ TexCoord3d(s, t, r)
param s CoordD in value
param t CoordD in value
param r CoordD in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv TexCoord3dv
+ profile compatibility
version 1.0
deprecated 3.1
offset 110
@@ -1908,7 +2022,8 @@ TexCoord3d(s, t, r)
TexCoord3dv(v)
return void
param v CoordD in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 57
@@ -1919,8 +2034,9 @@ TexCoord3f(s, t, r)
param s CoordF in value
param t CoordF in value
param r CoordF in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv TexCoord3fv
+ profile compatibility
version 1.0
deprecated 3.1
offset 112
@@ -1928,7 +2044,8 @@ TexCoord3f(s, t, r)
TexCoord3fv(v)
return void
param v CoordF in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 58
@@ -1939,8 +2056,9 @@ TexCoord3i(s, t, r)
param s CoordI in value
param t CoordI in value
param r CoordI in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv TexCoord3iv
+ profile compatibility
version 1.0
deprecated 3.1
offset 114
@@ -1948,7 +2066,8 @@ TexCoord3i(s, t, r)
TexCoord3iv(v)
return void
param v CoordI in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 59
@@ -1959,8 +2078,9 @@ TexCoord3s(s, t, r)
param s CoordS in value
param t CoordS in value
param r CoordS in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv TexCoord3sv
+ profile compatibility
version 1.0
deprecated 3.1
offset 116
@@ -1968,7 +2088,8 @@ TexCoord3s(s, t, r)
TexCoord3sv(v)
return void
param v CoordS in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 60
@@ -1980,8 +2101,9 @@ TexCoord4d(s, t, r, q)
param t CoordD in value
param r CoordD in value
param q CoordD in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv TexCoord4dv
+ profile compatibility
version 1.0
deprecated 3.1
offset 118
@@ -1989,7 +2111,8 @@ TexCoord4d(s, t, r, q)
TexCoord4dv(v)
return void
param v CoordD in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 61
@@ -2001,8 +2124,9 @@ TexCoord4f(s, t, r, q)
param t CoordF in value
param r CoordF in value
param q CoordF in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv TexCoord4fv
+ profile compatibility
version 1.0
deprecated 3.1
offset 120
@@ -2010,7 +2134,8 @@ TexCoord4f(s, t, r, q)
TexCoord4fv(v)
return void
param v CoordF in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 62
@@ -2022,8 +2147,9 @@ TexCoord4i(s, t, r, q)
param t CoordI in value
param r CoordI in value
param q CoordI in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv TexCoord4iv
+ profile compatibility
version 1.0
deprecated 3.1
offset 122
@@ -2031,7 +2157,8 @@ TexCoord4i(s, t, r, q)
TexCoord4iv(v)
return void
param v CoordI in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 63
@@ -2043,8 +2170,9 @@ TexCoord4s(s, t, r, q)
param t CoordS in value
param r CoordS in value
param q CoordS in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv TexCoord4sv
+ profile compatibility
version 1.0
deprecated 3.1
offset 124
@@ -2052,7 +2180,8 @@ TexCoord4s(s, t, r, q)
TexCoord4sv(v)
return void
param v CoordS in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 64
@@ -2062,8 +2191,9 @@ Vertex2d(x, y)
return void
param x CoordD in value
param y CoordD in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Vertex2dv
+ profile compatibility
version 1.0
deprecated 3.1
offset 126
@@ -2071,7 +2201,8 @@ Vertex2d(x, y)
Vertex2dv(v)
return void
param v CoordD in array [2]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 65
@@ -2081,8 +2212,9 @@ Vertex2f(x, y)
return void
param x CoordF in value
param y CoordF in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Vertex2fv
+ profile compatibility
version 1.0
deprecated 3.1
offset 128
@@ -2090,7 +2222,8 @@ Vertex2f(x, y)
Vertex2fv(v)
return void
param v CoordF in array [2]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 66
@@ -2100,8 +2233,9 @@ Vertex2i(x, y)
return void
param x CoordI in value
param y CoordI in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Vertex2iv
+ profile compatibility
version 1.0
deprecated 3.1
offset 130
@@ -2109,7 +2243,8 @@ Vertex2i(x, y)
Vertex2iv(v)
return void
param v CoordI in array [2]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 67
@@ -2119,8 +2254,9 @@ Vertex2s(x, y)
return void
param x CoordS in value
param y CoordS in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Vertex2sv
+ profile compatibility
version 1.0
deprecated 3.1
offset 132
@@ -2128,7 +2264,8 @@ Vertex2s(x, y)
Vertex2sv(v)
return void
param v CoordS in array [2]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 68
@@ -2139,8 +2276,9 @@ Vertex3d(x, y, z)
param x CoordD in value
param y CoordD in value
param z CoordD in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Vertex3dv
+ profile compatibility
version 1.0
deprecated 3.1
offset 134
@@ -2148,7 +2286,8 @@ Vertex3d(x, y, z)
Vertex3dv(v)
return void
param v CoordD in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 69
@@ -2159,8 +2298,9 @@ Vertex3f(x, y, z)
param x CoordF in value
param y CoordF in value
param z CoordF in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Vertex3fv
+ profile compatibility
version 1.0
deprecated 3.1
offset 136
@@ -2168,7 +2308,8 @@ Vertex3f(x, y, z)
Vertex3fv(v)
return void
param v CoordF in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 70
@@ -2179,8 +2320,9 @@ Vertex3i(x, y, z)
param x CoordI in value
param y CoordI in value
param z CoordI in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Vertex3iv
+ profile compatibility
version 1.0
deprecated 3.1
offset 138
@@ -2188,7 +2330,8 @@ Vertex3i(x, y, z)
Vertex3iv(v)
return void
param v CoordI in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 71
@@ -2199,8 +2342,9 @@ Vertex3s(x, y, z)
param x CoordS in value
param y CoordS in value
param z CoordS in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Vertex3sv
+ profile compatibility
version 1.0
deprecated 3.1
offset 140
@@ -2208,7 +2352,8 @@ Vertex3s(x, y, z)
Vertex3sv(v)
return void
param v CoordS in array [3]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 72
@@ -2220,8 +2365,9 @@ Vertex4d(x, y, z, w)
param y CoordD in value
param z CoordD in value
param w CoordD in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Vertex4dv
+ profile compatibility
version 1.0
deprecated 3.1
offset 142
@@ -2229,7 +2375,8 @@ Vertex4d(x, y, z, w)
Vertex4dv(v)
return void
param v CoordD in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 73
@@ -2241,8 +2388,9 @@ Vertex4f(x, y, z, w)
param y CoordF in value
param z CoordF in value
param w CoordF in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Vertex4fv
+ profile compatibility
version 1.0
deprecated 3.1
offset 144
@@ -2250,7 +2398,8 @@ Vertex4f(x, y, z, w)
Vertex4fv(v)
return void
param v CoordF in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 74
@@ -2262,8 +2411,9 @@ Vertex4i(x, y, z, w)
param y CoordI in value
param z CoordI in value
param w CoordI in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Vertex4iv
+ profile compatibility
version 1.0
deprecated 3.1
offset 146
@@ -2271,7 +2421,8 @@ Vertex4i(x, y, z, w)
Vertex4iv(v)
return void
param v CoordI in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 75
@@ -2283,8 +2434,9 @@ Vertex4s(x, y, z, w)
param y CoordS in value
param z CoordS in value
param w CoordS in value
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
vectorequiv Vertex4sv
+ profile compatibility
version 1.0
deprecated 3.1
offset 148
@@ -2292,7 +2444,8 @@ Vertex4s(x, y, z, w)
Vertex4sv(v)
return void
param v CoordS in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing
+ category VERSION_1_0 # old: drawing
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 76
@@ -2302,7 +2455,8 @@ ClipPlane(plane, equation)
return void
param plane ClipPlaneName in value
param equation Float64 in array [4]
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 77
@@ -2312,7 +2466,8 @@ ColorMaterial(face, mode)
return void
param face MaterialFace in value
param mode ColorMaterialParameter in value
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 78
@@ -2322,7 +2477,8 @@ Fogf(pname, param)
return void
param pname FogParameter in value
param param CheckedFloat32 in value
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 80
@@ -2333,7 +2489,8 @@ Fogfv(pname, params)
return void
param pname FogParameter in value
param params CheckedFloat32 in array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 81
@@ -2344,7 +2501,8 @@ Fogi(pname, param)
return void
param pname FogParameter in value
param param CheckedInt32 in value
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 82
@@ -2355,7 +2513,8 @@ Fogiv(pname, params)
return void
param pname FogParameter in value
param params CheckedInt32 in array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 83
@@ -2367,7 +2526,8 @@ Lightf(light, pname, param)
param light LightName in value
param pname LightParameter in value
param param CheckedFloat32 in value
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 86
@@ -2379,7 +2539,8 @@ Lightfv(light, pname, params)
param light LightName in value
param pname LightParameter in value
param params CheckedFloat32 in array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 87
@@ -2391,7 +2552,8 @@ Lighti(light, pname, param)
param light LightName in value
param pname LightParameter in value
param param CheckedInt32 in value
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 88
@@ -2403,7 +2565,8 @@ Lightiv(light, pname, params)
param light LightName in value
param pname LightParameter in value
param params CheckedInt32 in array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 89
@@ -2414,7 +2577,8 @@ LightModelf(pname, param)
return void
param pname LightModelParameter in value
param param Float32 in value
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 90
@@ -2425,7 +2589,8 @@ LightModelfv(pname, params)
return void
param pname LightModelParameter in value
param params Float32 in array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 91
@@ -2436,7 +2601,8 @@ LightModeli(pname, param)
return void
param pname LightModelParameter in value
param param Int32 in value
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 92
@@ -2447,7 +2613,8 @@ LightModeliv(pname, params)
return void
param pname LightModelParameter in value
param params Int32 in array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 93
@@ -2458,7 +2625,8 @@ LineStipple(factor, pattern)
return void
param factor CheckedInt32 in value
param pattern LineStipple in value
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 94
@@ -2469,7 +2637,8 @@ Materialf(face, pname, param)
param face MaterialFace in value
param pname MaterialParameter in value
param param CheckedFloat32 in value
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 96
@@ -2481,7 +2650,8 @@ Materialfv(face, pname, params)
param face MaterialFace in value
param pname MaterialParameter in value
param params CheckedFloat32 in array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 97
@@ -2493,7 +2663,8 @@ Materiali(face, pname, param)
param face MaterialFace in value
param pname MaterialParameter in value
param param CheckedInt32 in value
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 98
@@ -2505,7 +2676,8 @@ Materialiv(face, pname, params)
param face MaterialFace in value
param pname MaterialParameter in value
param params CheckedInt32 in array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 99
@@ -2515,9 +2687,10 @@ Materialiv(face, pname, params)
PolygonStipple(mask)
return void
param mask UInt8 in array [COMPSIZE()]
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
dlflags handcode
glxflags client-handcode server-handcode
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 102
@@ -2527,7 +2700,8 @@ PolygonStipple(mask)
ShadeModel(mode)
return void
param mode ShadingModel in value
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 104
@@ -2538,7 +2712,8 @@ TexEnvf(target, pname, param)
param target TextureEnvTarget in value
param pname TextureEnvParameter in value
param param CheckedFloat32 in value
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 111
@@ -2550,7 +2725,8 @@ TexEnvfv(target, pname, params)
param target TextureEnvTarget in value
param pname TextureEnvParameter in value
param params CheckedFloat32 in array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 112
@@ -2562,7 +2738,8 @@ TexEnvi(target, pname, param)
param target TextureEnvTarget in value
param pname TextureEnvParameter in value
param param CheckedInt32 in value
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 113
@@ -2574,7 +2751,8 @@ TexEnviv(target, pname, params)
param target TextureEnvTarget in value
param pname TextureEnvParameter in value
param params CheckedInt32 in array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 114
@@ -2586,7 +2764,8 @@ TexGend(coord, pname, param)
param coord TextureCoordName in value
param pname TextureGenParameter in value
param param Float64 in value
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 115
@@ -2598,7 +2777,8 @@ TexGendv(coord, pname, params)
param coord TextureCoordName in value
param pname TextureGenParameter in value
param params Float64 in array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 116
@@ -2610,7 +2790,8 @@ TexGenf(coord, pname, param)
param coord TextureCoordName in value
param pname TextureGenParameter in value
param param CheckedFloat32 in value
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 117
@@ -2622,7 +2803,8 @@ TexGenfv(coord, pname, params)
param coord TextureCoordName in value
param pname TextureGenParameter in value
param params CheckedFloat32 in array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 118
@@ -2634,7 +2816,8 @@ TexGeni(coord, pname, param)
param coord TextureCoordName in value
param pname TextureGenParameter in value
param param CheckedInt32 in value
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 119
@@ -2646,7 +2829,8 @@ TexGeniv(coord, pname, params)
param coord TextureCoordName in value
param pname TextureGenParameter in value
param params CheckedInt32 in array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: drawing-control
+ category VERSION_1_0 # old: drawing-control
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 120
@@ -2662,7 +2846,8 @@ FeedbackBuffer(size, type, buffer)
param buffer FeedbackElement out array [size] retained
dlflags notlistable
glxflags client-handcode server-handcode
- category VERSION_1_0_DEPRECATED # old: feedback
+ category VERSION_1_0 # old: feedback
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 105
@@ -2675,7 +2860,8 @@ SelectBuffer(size, buffer)
param buffer SelectName out array [size] retained
dlflags notlistable
glxflags client-handcode server-handcode
- category VERSION_1_0_DEPRECATED # old: feedback
+ category VERSION_1_0 # old: feedback
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 106
@@ -2685,9 +2871,10 @@ SelectBuffer(size, buffer)
RenderMode(mode)
return Int32
param mode RenderingMode in value
- category VERSION_1_0_DEPRECATED # old: feedback
+ category VERSION_1_0 # old: feedback
dlflags notlistable
glxflags client-handcode server-handcode
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 107
@@ -2696,7 +2883,8 @@ RenderMode(mode)
InitNames()
return void
- category VERSION_1_0_DEPRECATED # old: feedback
+ category VERSION_1_0 # old: feedback
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 121
@@ -2705,7 +2893,8 @@ InitNames()
LoadName(name)
return void
param name SelectName in value
- category VERSION_1_0_DEPRECATED # old: feedback
+ category VERSION_1_0 # old: feedback
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 122
@@ -2714,7 +2903,8 @@ LoadName(name)
PassThrough(token)
return void
param token FeedbackElement in value
- category VERSION_1_0_DEPRECATED # old: feedback
+ category VERSION_1_0 # old: feedback
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 123
@@ -2722,7 +2912,8 @@ PassThrough(token)
PopName()
return void
- category VERSION_1_0_DEPRECATED # old: feedback
+ category VERSION_1_0 # old: feedback
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 124
@@ -2731,7 +2922,8 @@ PopName()
PushName(name)
return void
param name SelectName in value
- category VERSION_1_0_DEPRECATED # old: feedback
+ category VERSION_1_0 # old: feedback
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 125
@@ -2743,7 +2935,8 @@ ClearAccum(red, green, blue, alpha)
param green Float32 in value
param blue Float32 in value
param alpha Float32 in value
- category VERSION_1_0_DEPRECATED # old: framebuf
+ category VERSION_1_0 # old: framebuf
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 128
@@ -2752,7 +2945,8 @@ ClearAccum(red, green, blue, alpha)
ClearIndex(c)
return void
param c MaskedColorIndexValueF in value
- category VERSION_1_0_DEPRECATED # old: framebuf
+ category VERSION_1_0 # old: framebuf
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 129
@@ -2761,7 +2955,8 @@ ClearIndex(c)
IndexMask(mask)
return void
param mask MaskedColorIndexValueI in value
- category VERSION_1_0_DEPRECATED # old: framebuf
+ category VERSION_1_0 # old: framebuf
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 136
@@ -2771,7 +2966,8 @@ Accum(op, value)
return void
param op AccumOp in value
param value CoordF in value
- category VERSION_1_0_DEPRECATED # old: misc
+ category VERSION_1_0 # old: misc
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 137
@@ -2779,7 +2975,8 @@ Accum(op, value)
PopAttrib()
return void
- category VERSION_1_0_DEPRECATED # old: misc
+ category VERSION_1_0 # old: misc
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 141
@@ -2788,7 +2985,8 @@ PopAttrib()
PushAttrib(mask)
return void
param mask AttribMask in value
- category VERSION_1_0_DEPRECATED # old: misc
+ category VERSION_1_0 # old: misc
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 142
@@ -2804,9 +3002,10 @@ Map1d(target, u1, u2, stride, order, points)
param stride Int32 in value
param order CheckedInt32 in value
param points CoordD in array [COMPSIZE(target/stride/order)]
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
dlflags handcode
glxflags client-handcode server-handcode
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 143
@@ -2821,9 +3020,10 @@ Map1f(target, u1, u2, stride, order, points)
param stride Int32 in value
param order CheckedInt32 in value
param points CoordF in array [COMPSIZE(target/stride/order)]
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
dlflags handcode
glxflags client-handcode server-handcode
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 144
@@ -2842,9 +3042,10 @@ Map2d(target, u1, u2, ustride, uorder, v1, v2, vstride, vorder, points)
param vstride Int32 in value
param vorder CheckedInt32 in value
param points CoordD in array [COMPSIZE(target/ustride/uorder/vstride/vorder)]
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
dlflags handcode
glxflags client-handcode server-handcode
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 145
@@ -2863,9 +3064,10 @@ Map2f(target, u1, u2, ustride, uorder, v1, v2, vstride, vorder, points)
param vstride Int32 in value
param vorder CheckedInt32 in value
param points CoordF in array [COMPSIZE(target/ustride/uorder/vstride/vorder)]
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
dlflags handcode
glxflags client-handcode server-handcode
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 146
@@ -2877,7 +3079,8 @@ MapGrid1d(un, u1, u2)
param un Int32 in value
param u1 CoordD in value
param u2 CoordD in value
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 147
@@ -2888,7 +3091,8 @@ MapGrid1f(un, u1, u2)
param un Int32 in value
param u1 CoordF in value
param u2 CoordF in value
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 148
@@ -2902,7 +3106,8 @@ MapGrid2d(un, u1, u2, vn, v1, v2)
param vn Int32 in value
param v1 CoordD in value
param v2 CoordD in value
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 149
@@ -2916,7 +3121,8 @@ MapGrid2f(un, u1, u2, vn, v1, v2)
param vn Int32 in value
param v1 CoordF in value
param v2 CoordF in value
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 150
@@ -2925,8 +3131,9 @@ MapGrid2f(un, u1, u2, vn, v1, v2)
EvalCoord1d(u)
return void
param u CoordD in value
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
vectorequiv EvalCoord1dv
+ profile compatibility
version 1.0
deprecated 3.1
offset 228
@@ -2934,7 +3141,8 @@ EvalCoord1d(u)
EvalCoord1dv(u)
return void
param u CoordD in array [1]
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 151
@@ -2943,8 +3151,9 @@ EvalCoord1dv(u)
EvalCoord1f(u)
return void
param u CoordF in value
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
vectorequiv EvalCoord1fv
+ profile compatibility
version 1.0
deprecated 3.1
offset 230
@@ -2952,7 +3161,8 @@ EvalCoord1f(u)
EvalCoord1fv(u)
return void
param u CoordF in array [1]
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 152
@@ -2962,8 +3172,9 @@ EvalCoord2d(u, v)
return void
param u CoordD in value
param v CoordD in value
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
vectorequiv EvalCoord2dv
+ profile compatibility
version 1.0
deprecated 3.1
offset 232
@@ -2971,7 +3182,8 @@ EvalCoord2d(u, v)
EvalCoord2dv(u)
return void
param u CoordD in array [2]
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 153
@@ -2981,8 +3193,9 @@ EvalCoord2f(u, v)
return void
param u CoordF in value
param v CoordF in value
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
vectorequiv EvalCoord2fv
+ profile compatibility
version 1.0
deprecated 3.1
offset 234
@@ -2990,7 +3203,8 @@ EvalCoord2f(u, v)
EvalCoord2fv(u)
return void
param u CoordF in array [2]
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 154
@@ -3001,7 +3215,8 @@ EvalMesh1(mode, i1, i2)
param mode MeshMode1 in value
param i1 CheckedInt32 in value
param i2 CheckedInt32 in value
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 155
@@ -3010,7 +3225,8 @@ EvalMesh1(mode, i1, i2)
EvalPoint1(i)
return void
param i Int32 in value
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 156
@@ -3023,7 +3239,8 @@ EvalMesh2(mode, i1, i2, j1, j2)
param i2 CheckedInt32 in value
param j1 CheckedInt32 in value
param j2 CheckedInt32 in value
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 157
@@ -3033,7 +3250,8 @@ EvalPoint2(i, j)
return void
param i CheckedInt32 in value
param j CheckedInt32 in value
- category VERSION_1_0_DEPRECATED # old: modeling
+ category VERSION_1_0 # old: modeling
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 158
@@ -3043,7 +3261,8 @@ AlphaFunc(func, ref)
return void
param func AlphaFunction in value
param ref Float32 in value
- category VERSION_1_0_DEPRECATED # old: pixel-op
+ category VERSION_1_0 # old: pixel-op
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 159
@@ -3053,7 +3272,8 @@ PixelZoom(xfactor, yfactor)
return void
param xfactor Float32 in value
param yfactor Float32 in value
- category VERSION_1_0_DEPRECATED # old: pixel-rw
+ category VERSION_1_0 # old: pixel-rw
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 165
@@ -3063,7 +3283,8 @@ PixelTransferf(pname, param)
return void
param pname PixelTransferParameter in value
param param CheckedFloat32 in value
- category VERSION_1_0_DEPRECATED # old: pixel-rw
+ category VERSION_1_0 # old: pixel-rw
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 166
@@ -3073,7 +3294,8 @@ PixelTransferi(pname, param)
return void
param pname PixelTransferParameter in value
param param CheckedInt32 in value
- category VERSION_1_0_DEPRECATED # old: pixel-rw
+ category VERSION_1_0 # old: pixel-rw
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 167
@@ -3084,8 +3306,9 @@ PixelMapfv(map, mapsize, values)
param map PixelMap in value
param mapsize CheckedInt32 in value
param values Float32 in array [mapsize]
- category VERSION_1_0_DEPRECATED # old: pixel-rw
+ category VERSION_1_0 # old: pixel-rw
glxflags client-handcode
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 168
@@ -3096,8 +3319,9 @@ PixelMapuiv(map, mapsize, values)
param map PixelMap in value
param mapsize CheckedInt32 in value
param values UInt32 in array [mapsize]
- category VERSION_1_0_DEPRECATED # old: pixel-rw
+ category VERSION_1_0 # old: pixel-rw
glxflags client-handcode
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 169
@@ -3108,8 +3332,9 @@ PixelMapusv(map, mapsize, values)
param map PixelMap in value
param mapsize CheckedInt32 in value
param values UInt16 in array [mapsize]
- category VERSION_1_0_DEPRECATED # old: pixel-rw
+ category VERSION_1_0 # old: pixel-rw
glxflags client-handcode
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 170
@@ -3122,7 +3347,8 @@ CopyPixels(x, y, width, height, type)
param width SizeI in value
param height SizeI in value
param type PixelCopyType in value
- category VERSION_1_0_DEPRECATED # old: pixel-rw
+ category VERSION_1_0 # old: pixel-rw
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 172
@@ -3135,9 +3361,10 @@ DrawPixels(width, height, format, type, pixels)
param format PixelFormat in value
param type PixelType in value
param pixels Void in array [COMPSIZE(format/type/width/height)]
- category VERSION_1_0_DEPRECATED # old: pixel-rw
+ category VERSION_1_0 # old: pixel-rw
dlflags handcode
glxflags client-handcode server-handcode
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 173
@@ -3148,8 +3375,9 @@ GetClipPlane(plane, equation)
return void
param plane ClipPlaneName in value
param equation Float64 out array [4]
- category VERSION_1_0_DEPRECATED # old: state-req
+ category VERSION_1_0 # old: state-req
dlflags notlistable
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 113
@@ -3161,8 +3389,9 @@ GetLightfv(light, pname, params)
param light LightName in value
param pname LightParameter in value
param params Float32 out array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: state-req
+ category VERSION_1_0 # old: state-req
dlflags notlistable
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 118
@@ -3174,8 +3403,9 @@ GetLightiv(light, pname, params)
param light LightName in value
param pname LightParameter in value
param params Int32 out array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: state-req
+ category VERSION_1_0 # old: state-req
dlflags notlistable
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 119
@@ -3187,8 +3417,9 @@ GetMapdv(target, query, v)
param target MapTarget in value
param query GetMapQuery in value
param v Float64 out array [COMPSIZE(target/query)]
- category VERSION_1_0_DEPRECATED # old: state-req
+ category VERSION_1_0 # old: state-req
dlflags notlistable
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 120
@@ -3199,8 +3430,9 @@ GetMapfv(target, query, v)
param target MapTarget in value
param query GetMapQuery in value
param v Float32 out array [COMPSIZE(target/query)]
- category VERSION_1_0_DEPRECATED # old: state-req
+ category VERSION_1_0 # old: state-req
dlflags notlistable
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 121
@@ -3211,8 +3443,9 @@ GetMapiv(target, query, v)
param target MapTarget in value
param query GetMapQuery in value
param v Int32 out array [COMPSIZE(target/query)]
- category VERSION_1_0_DEPRECATED # old: state-req
+ category VERSION_1_0 # old: state-req
dlflags notlistable
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 122
@@ -3223,8 +3456,9 @@ GetMaterialfv(face, pname, params)
param face MaterialFace in value
param pname MaterialParameter in value
param params Float32 out array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: state-req
+ category VERSION_1_0 # old: state-req
dlflags notlistable
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 123
@@ -3236,8 +3470,9 @@ GetMaterialiv(face, pname, params)
param face MaterialFace in value
param pname MaterialParameter in value
param params Int32 out array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: state-req
+ category VERSION_1_0 # old: state-req
dlflags notlistable
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 124
@@ -3248,8 +3483,9 @@ GetPixelMapfv(map, values)
return void
param map PixelMap in value
param values Float32 out array [COMPSIZE(map)]
- category VERSION_1_0_DEPRECATED # old: state-req
+ category VERSION_1_0 # old: state-req
dlflags notlistable
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 125
@@ -3259,8 +3495,9 @@ GetPixelMapuiv(map, values)
return void
param map PixelMap in value
param values UInt32 out array [COMPSIZE(map)]
- category VERSION_1_0_DEPRECATED # old: state-req
+ category VERSION_1_0 # old: state-req
dlflags notlistable
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 126
@@ -3270,8 +3507,9 @@ GetPixelMapusv(map, values)
return void
param map PixelMap in value
param values UInt16 out array [COMPSIZE(map)]
- category VERSION_1_0_DEPRECATED # old: state-req
+ category VERSION_1_0 # old: state-req
dlflags notlistable
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 127
@@ -3280,9 +3518,10 @@ GetPixelMapusv(map, values)
GetPolygonStipple(mask)
return void
param mask UInt8 out array [COMPSIZE()]
- category VERSION_1_0_DEPRECATED # old: state-req
+ category VERSION_1_0 # old: state-req
dlflags notlistable
glxflags client-handcode server-handcode
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 128
@@ -3294,8 +3533,9 @@ GetTexEnvfv(target, pname, params)
param target TextureEnvTarget in value
param pname TextureEnvParameter in value
param params Float32 out array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: state-req
+ category VERSION_1_0 # old: state-req
dlflags notlistable
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 130
@@ -3307,8 +3547,9 @@ GetTexEnviv(target, pname, params)
param target TextureEnvTarget in value
param pname TextureEnvParameter in value
param params Int32 out array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: state-req
+ category VERSION_1_0 # old: state-req
dlflags notlistable
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 131
@@ -3320,8 +3561,9 @@ GetTexGendv(coord, pname, params)
param coord TextureCoordName in value
param pname TextureGenParameter in value
param params Float64 out array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: state-req
+ category VERSION_1_0 # old: state-req
dlflags notlistable
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 132
@@ -3333,8 +3575,9 @@ GetTexGenfv(coord, pname, params)
param coord TextureCoordName in value
param pname TextureGenParameter in value
param params Float32 out array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: state-req
+ category VERSION_1_0 # old: state-req
dlflags notlistable
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 133
@@ -3346,8 +3589,9 @@ GetTexGeniv(coord, pname, params)
param coord TextureCoordName in value
param pname TextureGenParameter in value
param params Int32 out array [COMPSIZE(pname)]
- category VERSION_1_0_DEPRECATED # old: state-req
+ category VERSION_1_0 # old: state-req
dlflags notlistable
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 134
@@ -3357,8 +3601,9 @@ GetTexGeniv(coord, pname, params)
IsList(list)
return Boolean
param list List in value
- category VERSION_1_0_DEPRECATED # old: state-req
+ category VERSION_1_0 # old: state-req
dlflags notlistable
+ profile compatibility
version 1.0
deprecated 3.1
glxsingle 141
@@ -3372,7 +3617,8 @@ Frustum(left, right, bottom, top, zNear, zFar)
param top Float64 in value
param zNear Float64 in value
param zFar Float64 in value
- category VERSION_1_0_DEPRECATED # old: xform
+ category VERSION_1_0 # old: xform
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 175
@@ -3380,7 +3626,8 @@ Frustum(left, right, bottom, top, zNear, zFar)
LoadIdentity()
return void
- category VERSION_1_0_DEPRECATED # old: xform
+ category VERSION_1_0 # old: xform
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 176
@@ -3389,7 +3636,8 @@ LoadIdentity()
LoadMatrixf(m)
return void
param m Float32 in array [16]
- category VERSION_1_0_DEPRECATED # old: xform
+ category VERSION_1_0 # old: xform
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 177
@@ -3398,7 +3646,8 @@ LoadMatrixf(m)
LoadMatrixd(m)
return void
param m Float64 in array [16]
- category VERSION_1_0_DEPRECATED # old: xform
+ category VERSION_1_0 # old: xform
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 178
@@ -3407,7 +3656,8 @@ LoadMatrixd(m)
MatrixMode(mode)
return void
param mode MatrixMode in value
- category VERSION_1_0_DEPRECATED # old: xform
+ category VERSION_1_0 # old: xform
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 179
@@ -3416,7 +3666,8 @@ MatrixMode(mode)
MultMatrixf(m)
return void
param m Float32 in array [16]
- category VERSION_1_0_DEPRECATED # old: xform
+ category VERSION_1_0 # old: xform
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 180
@@ -3425,7 +3676,8 @@ MultMatrixf(m)
MultMatrixd(m)
return void
param m Float64 in array [16]
- category VERSION_1_0_DEPRECATED # old: xform
+ category VERSION_1_0 # old: xform
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 181
@@ -3439,7 +3691,8 @@ Ortho(left, right, bottom, top, zNear, zFar)
param top Float64 in value
param zNear Float64 in value
param zFar Float64 in value
- category VERSION_1_0_DEPRECATED # old: xform
+ category VERSION_1_0 # old: xform
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 182
@@ -3447,7 +3700,8 @@ Ortho(left, right, bottom, top, zNear, zFar)
PopMatrix()
return void
- category VERSION_1_0_DEPRECATED # old: xform
+ category VERSION_1_0 # old: xform
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 183
@@ -3455,7 +3709,8 @@ PopMatrix()
PushMatrix()
return void
- category VERSION_1_0_DEPRECATED # old: xform
+ category VERSION_1_0 # old: xform
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 184
@@ -3467,7 +3722,8 @@ Rotated(angle, x, y, z)
param x Float64 in value
param y Float64 in value
param z Float64 in value
- category VERSION_1_0_DEPRECATED # old: xform
+ category VERSION_1_0 # old: xform
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 185
@@ -3479,7 +3735,8 @@ Rotatef(angle, x, y, z)
param x Float32 in value
param y Float32 in value
param z Float32 in value
- category VERSION_1_0_DEPRECATED # old: xform
+ category VERSION_1_0 # old: xform
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 186
@@ -3490,7 +3747,8 @@ Scaled(x, y, z)
param x Float64 in value
param y Float64 in value
param z Float64 in value
- category VERSION_1_0_DEPRECATED # old: xform
+ category VERSION_1_0 # old: xform
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 187
@@ -3501,7 +3759,8 @@ Scalef(x, y, z)
param x Float32 in value
param y Float32 in value
param z Float32 in value
- category VERSION_1_0_DEPRECATED # old: xform
+ category VERSION_1_0 # old: xform
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 188
@@ -3512,7 +3771,8 @@ Translated(x, y, z)
param x Float64 in value
param y Float64 in value
param z Float64 in value
- category VERSION_1_0_DEPRECATED # old: xform
+ category VERSION_1_0 # old: xform
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 189
@@ -3523,7 +3783,8 @@ Translatef(x, y, z)
param x Float32 in value
param y Float32 in value
param z Float32 in value
- category VERSION_1_0_DEPRECATED # old: xform
+ category VERSION_1_0 # old: xform
+ profile compatibility
version 1.0
deprecated 3.1
glxropcode 190
@@ -3727,7 +3988,8 @@ IsTexture(texture)
ArrayElement(i)
return void
param i Int32 in value
- category VERSION_1_1_DEPRECATED
+ category VERSION_1_1
+ profile compatibility
dlflags handcode
glxflags client-handcode client-intercept server-handcode
version 1.1
@@ -3740,7 +4002,8 @@ ColorPointer(size, type, stride, pointer)
param type ColorPointerType in value
param stride SizeI in value
param pointer Void in array [COMPSIZE(size/type/stride)] retained
- category VERSION_1_1_DEPRECATED
+ category VERSION_1_1
+ profile compatibility
dlflags notlistable
glxflags client-handcode client-intercept server-handcode
version 1.1
@@ -3750,7 +4013,8 @@ ColorPointer(size, type, stride, pointer)
DisableClientState(array)
return void
param array EnableCap in value
- category VERSION_1_1_DEPRECATED
+ category VERSION_1_1
+ profile compatibility
version 1.1
deprecated 3.1
dlflags notlistable
@@ -3761,7 +4025,8 @@ EdgeFlagPointer(stride, pointer)
return void
param stride SizeI in value
param pointer Void in array [COMPSIZE(stride)] retained
- category VERSION_1_1_DEPRECATED
+ category VERSION_1_1
+ profile compatibility
dlflags notlistable
glxflags client-handcode client-intercept server-handcode
version 1.1
@@ -3771,7 +4036,8 @@ EdgeFlagPointer(stride, pointer)
EnableClientState(array)
return void
param array EnableCap in value
- category VERSION_1_1_DEPRECATED
+ category VERSION_1_1
+ profile compatibility
dlflags notlistable
glxflags client-handcode client-intercept server-handcode
version 1.1
@@ -3783,7 +4049,8 @@ IndexPointer(type, stride, pointer)
param type IndexPointerType in value
param stride SizeI in value
param pointer Void in array [COMPSIZE(type/stride)] retained
- category VERSION_1_1_DEPRECATED
+ category VERSION_1_1
+ profile compatibility
dlflags notlistable
glxflags client-handcode client-intercept server-handcode
version 1.1
@@ -3795,7 +4062,8 @@ InterleavedArrays(format, stride, pointer)
param format InterleavedArrayFormat in value
param stride SizeI in value
param pointer Void in array [COMPSIZE(format/stride)] retained
- category VERSION_1_1_DEPRECATED
+ category VERSION_1_1
+ profile compatibility
dlflags notlistable
glxflags client-handcode client-intercept server-handcode
version 1.1
@@ -3807,7 +4075,8 @@ NormalPointer(type, stride, pointer)
param type NormalPointerType in value
param stride SizeI in value
param pointer Void in array [COMPSIZE(type/stride)] retained
- category VERSION_1_1_DEPRECATED
+ category VERSION_1_1
+ profile compatibility
dlflags notlistable
glxflags client-handcode client-intercept server-handcode
version 1.1
@@ -3820,7 +4089,8 @@ TexCoordPointer(size, type, stride, pointer)
param type TexCoordPointerType in value
param stride SizeI in value
param pointer Void in array [COMPSIZE(size/type/stride)] retained
- category VERSION_1_1_DEPRECATED
+ category VERSION_1_1
+ profile compatibility
dlflags notlistable
glxflags client-handcode client-intercept server-handcode
version 1.1
@@ -3833,7 +4103,8 @@ VertexPointer(size, type, stride, pointer)
param type VertexPointerType in value
param stride SizeI in value
param pointer Void in array [COMPSIZE(size/type/stride)] retained
- category VERSION_1_1_DEPRECATED
+ category VERSION_1_1
+ profile compatibility
dlflags notlistable
glxflags client-handcode client-intercept server-handcode
version 1.1
@@ -3845,7 +4116,8 @@ AreTexturesResident(n, textures, residences)
param n SizeI in value
param textures Texture in array [n]
param residences Boolean out array [n]
- category VERSION_1_1_DEPRECATED
+ category VERSION_1_1
+ profile compatibility
glxsingle 143
dlflags notlistable
version 1.1
@@ -3857,7 +4129,8 @@ PrioritizeTextures(n, textures, priorities)
param n SizeI in value
param textures Texture in array [n]
param priorities Float32 in array [n]
- category VERSION_1_1_DEPRECATED
+ category VERSION_1_1
+ profile compatibility
version 1.1
deprecated 3.1
glxropcode 4118
@@ -3867,7 +4140,8 @@ PrioritizeTextures(n, textures, priorities)
Indexub(c)
return void
param c ColorIndexValueUB in value
- category VERSION_1_1_DEPRECATED
+ category VERSION_1_1
+ profile compatibility
vectorequiv Indexubv
version 1.1
offset 315
@@ -3875,14 +4149,16 @@ Indexub(c)
Indexubv(c)
return void
param c ColorIndexValueUB in array [1]
- category VERSION_1_1_DEPRECATED
+ category VERSION_1_1
+ profile compatibility
version 1.1
glxropcode 194
offset 316
PopClientAttrib()
return void
- category VERSION_1_1_DEPRECATED
+ category VERSION_1_1
+ profile compatibility
version 1.1
deprecated 3.1
dlflags notlistable
@@ -3892,7 +4168,8 @@ PopClientAttrib()
PushClientAttrib(mask)
return void
param mask ClientAttribMask in value
- category VERSION_1_1_DEPRECATED
+ category VERSION_1_1
+ profile compatibility
version 1.1
deprecated 3.1
dlflags notlistable
@@ -4022,7 +4299,8 @@ ColorTable(target, internalformat, width, format, type, table)
param format PixelFormat in value
param type PixelType in value
param table Void in array [COMPSIZE(format/type/width)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
dlflags handcode
glxflags client-handcode server-handcode EXT
version 1.2
@@ -4035,7 +4313,8 @@ ColorTableParameterfv(target, pname, params)
param target ColorTableTarget in value
param pname ColorTableParameterPName in value
param params CheckedFloat32 in array [COMPSIZE(pname)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
glxflags EXT
version 1.2
deprecated 3.1
@@ -4047,7 +4326,8 @@ ColorTableParameteriv(target, pname, params)
param target ColorTableTarget in value
param pname ColorTableParameterPName in value
param params CheckedInt32 in array [COMPSIZE(pname)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
glxflags EXT
version 1.2
deprecated 3.1
@@ -4061,7 +4341,8 @@ CopyColorTable(target, internalformat, x, y, width)
param x WinCoord in value
param y WinCoord in value
param width SizeI in value
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
glxflags EXT
version 1.2
deprecated 3.1
@@ -4074,7 +4355,8 @@ GetColorTable(target, format, type, table)
param format PixelFormat in value
param type PixelType in value
param table Void out array [COMPSIZE(target/format/type)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
dlflags notlistable
glxflags client-handcode server-handcode
version 1.2
@@ -4087,7 +4369,8 @@ GetColorTableParameterfv(target, pname, params)
param target ColorTableTarget in value
param pname GetColorTableParameterPName in value
param params Float32 out array [COMPSIZE(pname)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
dlflags notlistable
version 1.2
deprecated 3.1
@@ -4099,7 +4382,8 @@ GetColorTableParameteriv(target, pname, params)
param target ColorTableTarget in value
param pname GetColorTableParameterPName in value
param params Int32 out array [COMPSIZE(pname)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
dlflags notlistable
version 1.2
deprecated 3.1
@@ -4116,7 +4400,8 @@ ColorSubTable(target, start, count, format, type, data)
param format PixelFormat in value
param type PixelType in value
param data Void in array [COMPSIZE(format/type/count)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
dlflags handcode
glxflags client-handcode server-handcode
version 1.2
@@ -4131,7 +4416,8 @@ CopyColorSubTable(target, start, x, y, width)
param x WinCoord in value
param y WinCoord in value
param width SizeI in value
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
version 1.2
deprecated 3.1
glxropcode 196
@@ -4147,7 +4433,8 @@ ConvolutionFilter1D(target, internalformat, width, format, type, image)
param format PixelFormat in value
param type PixelType in value
param image Void in array [COMPSIZE(format/type/width)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
dlflags handcode
glxflags client-handcode server-handcode EXT
version 1.2
@@ -4164,7 +4451,8 @@ ConvolutionFilter2D(target, internalformat, width, height, format, type, image)
param format PixelFormat in value
param type PixelType in value
param image Void in array [COMPSIZE(format/type/width/height)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
dlflags handcode
glxflags client-handcode server-handcode EXT
version 1.2
@@ -4177,7 +4465,8 @@ ConvolutionParameterf(target, pname, params)
param target ConvolutionTarget in value
param pname ConvolutionParameter in value
param params CheckedFloat32 in value
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
glxflags EXT
version 1.2
deprecated 3.1
@@ -4189,7 +4478,8 @@ ConvolutionParameterfv(target, pname, params)
param target ConvolutionTarget in value
param pname ConvolutionParameter in value
param params CheckedFloat32 in array [COMPSIZE(pname)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
glxflags EXT
version 1.2
deprecated 3.1
@@ -4201,7 +4491,8 @@ ConvolutionParameteri(target, pname, params)
param target ConvolutionTarget in value
param pname ConvolutionParameter in value
param params CheckedInt32 in value
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
glxflags EXT
version 1.2
deprecated 3.1
@@ -4213,7 +4504,8 @@ ConvolutionParameteriv(target, pname, params)
param target ConvolutionTarget in value
param pname ConvolutionParameter in value
param params CheckedInt32 in array [COMPSIZE(pname)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
glxflags EXT
version 1.2
deprecated 3.1
@@ -4227,7 +4519,8 @@ CopyConvolutionFilter1D(target, internalformat, x, y, width)
param x WinCoord in value
param y WinCoord in value
param width SizeI in value
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
glxflags EXT
version 1.2
deprecated 3.1
@@ -4242,7 +4535,8 @@ CopyConvolutionFilter2D(target, internalformat, x, y, width, height)
param y WinCoord in value
param width SizeI in value
param height SizeI in value
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
glxflags EXT
version 1.2
deprecated 3.1
@@ -4255,7 +4549,8 @@ GetConvolutionFilter(target, format, type, image)
param format PixelFormat in value
param type PixelType in value
param image Void out array [COMPSIZE(target/format/type)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
dlflags notlistable
glxflags client-handcode server-handcode
version 1.2
@@ -4268,7 +4563,8 @@ GetConvolutionParameterfv(target, pname, params)
param target ConvolutionTarget in value
param pname GetConvolutionParameterPName in value
param params Float32 out array [COMPSIZE(pname)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
dlflags notlistable
version 1.2
deprecated 3.1
@@ -4280,7 +4576,8 @@ GetConvolutionParameteriv(target, pname, params)
param target ConvolutionTarget in value
param pname GetConvolutionParameterPName in value
param params Int32 out array [COMPSIZE(pname)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
dlflags notlistable
version 1.2
deprecated 3.1
@@ -4295,7 +4592,8 @@ GetSeparableFilter(target, format, type, row, column, span)
param row Void out array [COMPSIZE(target/format/type)]
param column Void out array [COMPSIZE(target/format/type)]
param span Void out array [COMPSIZE(target/format/type)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
dlflags notlistable
glxflags client-handcode server-handcode
version 1.2
@@ -4313,7 +4611,8 @@ SeparableFilter2D(target, internalformat, width, height, format, type, row, colu
param type PixelType in value
param row Void in array [COMPSIZE(target/format/type/width)]
param column Void in array [COMPSIZE(target/format/type/height)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
dlflags handcode
glxflags client-handcode server-handcode EXT
version 1.2
@@ -4330,7 +4629,8 @@ GetHistogram(target, reset, format, type, values)
param format PixelFormat in value
param type PixelType in value
param values Void out array [COMPSIZE(target/format/type)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
dlflags notlistable
glxflags client-handcode server-handcode
version 1.2
@@ -4343,7 +4643,8 @@ GetHistogramParameterfv(target, pname, params)
param target HistogramTarget in value
param pname GetHistogramParameterPName in value
param params Float32 out array [COMPSIZE(pname)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
dlflags notlistable
version 1.2
deprecated 3.1
@@ -4355,7 +4656,8 @@ GetHistogramParameteriv(target, pname, params)
param target HistogramTarget in value
param pname GetHistogramParameterPName in value
param params Int32 out array [COMPSIZE(pname)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
dlflags notlistable
version 1.2
deprecated 3.1
@@ -4369,7 +4671,8 @@ GetMinmax(target, reset, format, type, values)
param format PixelFormat in value
param type PixelType in value
param values Void out array [COMPSIZE(target/format/type)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
dlflags notlistable
glxflags client-handcode server-handcode
version 1.2
@@ -4382,7 +4685,8 @@ GetMinmaxParameterfv(target, pname, params)
param target MinmaxTarget in value
param pname GetMinmaxParameterPName in value
param params Float32 out array [COMPSIZE(pname)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
dlflags notlistable
version 1.2
deprecated 3.1
@@ -4394,7 +4698,8 @@ GetMinmaxParameteriv(target, pname, params)
param target MinmaxTarget in value
param pname GetMinmaxParameterPName in value
param params Int32 out array [COMPSIZE(pname)]
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
dlflags notlistable
version 1.2
deprecated 3.1
@@ -4407,7 +4712,8 @@ Histogram(target, width, internalformat, sink)
param width SizeI in value
param internalformat PixelInternalFormat in value
param sink Boolean in value
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
dlflags handcode
glxflags EXT
version 1.2
@@ -4420,7 +4726,8 @@ Minmax(target, internalformat, sink)
param target MinmaxTarget in value
param internalformat PixelInternalFormat in value
param sink Boolean in value
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
glxflags EXT
version 1.2
deprecated 3.1
@@ -4430,7 +4737,8 @@ Minmax(target, internalformat, sink)
ResetHistogram(target)
return void
param target HistogramTarget in value
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
glxflags EXT
version 1.2
deprecated 3.1
@@ -4440,7 +4748,8 @@ ResetHistogram(target)
ResetMinmax(target)
return void
param target MinmaxTarget in value
- category VERSION_1_2_DEPRECATED
+ category VERSION_1_2
+ profile compatibility
glxflags EXT
version 1.2
deprecated 3.1
@@ -4618,7 +4927,8 @@ GetCompressedTexImage(target, level, img)
ClientActiveTexture(texture)
return void
param texture TextureUnit in value
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
dlflags notlistable
glxflags ARB client-handcode client-intercept server-handcode
version 1.3
@@ -4629,7 +4939,8 @@ MultiTexCoord1d(target, s)
return void
param target TextureUnit in value
param s CoordD in value
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4640,7 +4951,8 @@ MultiTexCoord1dv(target, v)
return void
param target TextureUnit in value
param v CoordD in array [1]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4651,7 +4963,8 @@ MultiTexCoord1f(target, s)
return void
param target TextureUnit in value
param s CoordF in value
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4662,7 +4975,8 @@ MultiTexCoord1fv(target, v)
return void
param target TextureUnit in value
param v CoordF in array [1]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4673,7 +4987,8 @@ MultiTexCoord1i(target, s)
return void
param target TextureUnit in value
param s CoordI in value
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4684,7 +4999,8 @@ MultiTexCoord1iv(target, v)
return void
param target TextureUnit in value
param v CoordI in array [1]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4695,7 +5011,8 @@ MultiTexCoord1s(target, s)
return void
param target TextureUnit in value
param s CoordS in value
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4706,7 +5023,8 @@ MultiTexCoord1sv(target, v)
return void
param target TextureUnit in value
param v CoordS in array [1]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4718,7 +5036,8 @@ MultiTexCoord2d(target, s, t)
param target TextureUnit in value
param s CoordD in value
param t CoordD in value
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4729,7 +5048,8 @@ MultiTexCoord2dv(target, v)
return void
param target TextureUnit in value
param v CoordD in array [2]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4741,7 +5061,8 @@ MultiTexCoord2f(target, s, t)
param target TextureUnit in value
param s CoordF in value
param t CoordF in value
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4752,7 +5073,8 @@ MultiTexCoord2fv(target, v)
return void
param target TextureUnit in value
param v CoordF in array [2]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4764,7 +5086,8 @@ MultiTexCoord2i(target, s, t)
param target TextureUnit in value
param s CoordI in value
param t CoordI in value
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4775,7 +5098,8 @@ MultiTexCoord2iv(target, v)
return void
param target TextureUnit in value
param v CoordI in array [2]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4787,7 +5111,8 @@ MultiTexCoord2s(target, s, t)
param target TextureUnit in value
param s CoordS in value
param t CoordS in value
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4798,7 +5123,8 @@ MultiTexCoord2sv(target, v)
return void
param target TextureUnit in value
param v CoordS in array [2]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4811,7 +5137,8 @@ MultiTexCoord3d(target, s, t, r)
param s CoordD in value
param t CoordD in value
param r CoordD in value
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4822,7 +5149,8 @@ MultiTexCoord3dv(target, v)
return void
param target TextureUnit in value
param v CoordD in array [3]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4835,7 +5163,8 @@ MultiTexCoord3f(target, s, t, r)
param s CoordF in value
param t CoordF in value
param r CoordF in value
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4846,7 +5175,8 @@ MultiTexCoord3fv(target, v)
return void
param target TextureUnit in value
param v CoordF in array [3]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4859,7 +5189,8 @@ MultiTexCoord3i(target, s, t, r)
param s CoordI in value
param t CoordI in value
param r CoordI in value
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4870,7 +5201,8 @@ MultiTexCoord3iv(target, v)
return void
param target TextureUnit in value
param v CoordI in array [3]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4883,7 +5215,8 @@ MultiTexCoord3s(target, s, t, r)
param s CoordS in value
param t CoordS in value
param r CoordS in value
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4894,7 +5227,8 @@ MultiTexCoord3sv(target, v)
return void
param target TextureUnit in value
param v CoordS in array [3]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
version 1.3
deprecated 3.1
glxflags ARB
@@ -4908,7 +5242,8 @@ MultiTexCoord4d(target, s, t, r, q)
param t CoordD in value
param r CoordD in value
param q CoordD in value
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4919,7 +5254,8 @@ MultiTexCoord4dv(target, v)
return void
param target TextureUnit in value
param v CoordD in array [4]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4933,7 +5269,8 @@ MultiTexCoord4f(target, s, t, r, q)
param t CoordF in value
param r CoordF in value
param q CoordF in value
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4944,7 +5281,8 @@ MultiTexCoord4fv(target, v)
return void
param target TextureUnit in value
param v CoordF in array [4]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4958,7 +5296,8 @@ MultiTexCoord4i(target, s, t, r, q)
param t CoordI in value
param r CoordI in value
param q CoordI in value
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4969,7 +5308,8 @@ MultiTexCoord4iv(target, v)
return void
param target TextureUnit in value
param v CoordI in array [4]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4983,7 +5323,8 @@ MultiTexCoord4s(target, s, t, r, q)
param t CoordS in value
param r CoordS in value
param q CoordS in value
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -4994,7 +5335,8 @@ MultiTexCoord4sv(target, v)
return void
param target TextureUnit in value
param v CoordS in array [4]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB
version 1.3
deprecated 3.1
@@ -5006,7 +5348,8 @@ MultiTexCoord4sv(target, v)
LoadTransposeMatrixf(m)
return void
param m Float32 in array [16]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB client-handcode client-intercept server-handcode
version 1.3
deprecated 3.1
@@ -5015,7 +5358,8 @@ LoadTransposeMatrixf(m)
LoadTransposeMatrixd(m)
return void
param m Float64 in array [16]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB client-handcode client-intercept server-handcode
version 1.3
deprecated 3.1
@@ -5024,7 +5368,8 @@ LoadTransposeMatrixd(m)
MultTransposeMatrixf(m)
return void
param m Float32 in array [16]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB client-handcode client-intercept server-handcode
version 1.3
deprecated 3.1
@@ -5033,7 +5378,8 @@ MultTransposeMatrixf(m)
MultTransposeMatrixd(m)
return void
param m Float64 in array [16]
- category VERSION_1_3_DEPRECATED
+ category VERSION_1_3
+ profile compatibility
glxflags ARB client-handcode client-intercept server-handcode
version 1.3
deprecated 3.1
@@ -5142,7 +5488,8 @@ PointParameteriv(pname, params)
FogCoordf(coord)
return void
param coord CoordF in value
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
vectorequiv FogCoordfv
version 1.4
deprecated 3.1
@@ -5151,7 +5498,8 @@ FogCoordf(coord)
FogCoordfv(coord)
return void
param coord CoordF in array [1]
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
version 1.4
deprecated 3.1
glxropcode 4124
@@ -5160,7 +5508,8 @@ FogCoordfv(coord)
FogCoordd(coord)
return void
param coord CoordD in value
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
vectorequiv FogCoorddv
version 1.4
deprecated 3.1
@@ -5169,7 +5518,8 @@ FogCoordd(coord)
FogCoorddv(coord)
return void
param coord CoordD in array [1]
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
version 1.4
deprecated 3.1
glxropcode 4125
@@ -5180,7 +5530,8 @@ FogCoordPointer(type, stride, pointer)
param type FogPointerTypeEXT in value
param stride SizeI in value
param pointer Void in array [COMPSIZE(type/stride)] retained
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
dlflags notlistable
version 1.4
deprecated 3.1
@@ -5194,7 +5545,8 @@ SecondaryColor3b(red, green, blue)
param red ColorB in value
param green ColorB in value
param blue ColorB in value
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
vectorequiv SecondaryColor3bv
version 1.4
deprecated 3.1
@@ -5203,7 +5555,8 @@ SecondaryColor3b(red, green, blue)
SecondaryColor3bv(v)
return void
param v ColorB in array [3]
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
version 1.4
deprecated 3.1
glxropcode 4126
@@ -5214,7 +5567,8 @@ SecondaryColor3d(red, green, blue)
param red ColorD in value
param green ColorD in value
param blue ColorD in value
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
vectorequiv SecondaryColor3dv
version 1.4
deprecated 3.1
@@ -5223,7 +5577,8 @@ SecondaryColor3d(red, green, blue)
SecondaryColor3dv(v)
return void
param v ColorD in array [3]
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
version 1.4
deprecated 3.1
glxropcode 4130
@@ -5234,7 +5589,8 @@ SecondaryColor3f(red, green, blue)
param red ColorF in value
param green ColorF in value
param blue ColorF in value
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
vectorequiv SecondaryColor3fv
version 1.4
deprecated 3.1
@@ -5243,7 +5599,8 @@ SecondaryColor3f(red, green, blue)
SecondaryColor3fv(v)
return void
param v ColorF in array [3]
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
version 1.4
deprecated 3.1
glxropcode 4129
@@ -5254,7 +5611,8 @@ SecondaryColor3i(red, green, blue)
param red ColorI in value
param green ColorI in value
param blue ColorI in value
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
vectorequiv SecondaryColor3iv
version 1.4
deprecated 3.1
@@ -5263,7 +5621,8 @@ SecondaryColor3i(red, green, blue)
SecondaryColor3iv(v)
return void
param v ColorI in array [3]
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
version 1.4
deprecated 3.1
glxropcode 4128
@@ -5274,7 +5633,8 @@ SecondaryColor3s(red, green, blue)
param red ColorS in value
param green ColorS in value
param blue ColorS in value
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
vectorequiv SecondaryColor3sv
version 1.4
deprecated 3.1
@@ -5283,7 +5643,8 @@ SecondaryColor3s(red, green, blue)
SecondaryColor3sv(v)
return void
param v ColorS in array [3]
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
version 1.4
deprecated 3.1
glxropcode 4127
@@ -5294,7 +5655,8 @@ SecondaryColor3ub(red, green, blue)
param red ColorUB in value
param green ColorUB in value
param blue ColorUB in value
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
vectorequiv SecondaryColor3ubv
version 1.4
deprecated 3.1
@@ -5303,7 +5665,8 @@ SecondaryColor3ub(red, green, blue)
SecondaryColor3ubv(v)
return void
param v ColorUB in array [3]
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
version 1.4
deprecated 3.1
glxropcode 4131
@@ -5314,7 +5677,8 @@ SecondaryColor3ui(red, green, blue)
param red ColorUI in value
param green ColorUI in value
param blue ColorUI in value
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
vectorequiv SecondaryColor3uiv
version 1.4
deprecated 3.1
@@ -5323,7 +5687,8 @@ SecondaryColor3ui(red, green, blue)
SecondaryColor3uiv(v)
return void
param v ColorUI in array [3]
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
version 1.4
deprecated 3.1
glxropcode 4133
@@ -5334,7 +5699,8 @@ SecondaryColor3us(red, green, blue)
param red ColorUS in value
param green ColorUS in value
param blue ColorUS in value
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
vectorequiv SecondaryColor3usv
version 1.4
deprecated 3.1
@@ -5343,7 +5709,8 @@ SecondaryColor3us(red, green, blue)
SecondaryColor3usv(v)
return void
param v ColorUS in array [3]
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
version 1.4
deprecated 3.1
glxropcode 4132
@@ -5355,7 +5722,8 @@ SecondaryColorPointer(size, type, stride, pointer)
param type ColorPointerType in value
param stride SizeI in value
param pointer Void in array [COMPSIZE(size/type/stride)] retained
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
dlflags notlistable
glxflags client-handcode server-handcode
version 1.4
@@ -5370,7 +5738,8 @@ WindowPos2d(x, y)
return void
param x CoordD in value
param y CoordD in value
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
vectorequiv WindowPos2dv
version 1.4
deprecated 3.1
@@ -5379,7 +5748,8 @@ WindowPos2d(x, y)
WindowPos2dv(v)
return void
param v CoordD in array [2]
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
version 1.4
deprecated 3.1
glxropcode 230
@@ -5390,7 +5760,8 @@ WindowPos2f(x, y)
return void
param x CoordF in value
param y CoordF in value
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
vectorequiv WindowPos2fv
version 1.4
deprecated 3.1
@@ -5399,7 +5770,8 @@ WindowPos2f(x, y)
WindowPos2fv(v)
return void
param v CoordF in array [2]
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
version 1.4
deprecated 3.1
glxropcode 230
@@ -5410,7 +5782,8 @@ WindowPos2i(x, y)
return void
param x CoordI in value
param y CoordI in value
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
vectorequiv WindowPos2iv
version 1.4
deprecated 3.1
@@ -5419,7 +5792,8 @@ WindowPos2i(x, y)
WindowPos2iv(v)
return void
param v CoordI in array [2]
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
version 1.4
deprecated 3.1
glxropcode 230
@@ -5430,7 +5804,8 @@ WindowPos2s(x, y)
return void
param x CoordS in value
param y CoordS in value
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
vectorequiv WindowPos2sv
version 1.4
deprecated 3.1
@@ -5439,7 +5814,8 @@ WindowPos2s(x, y)
WindowPos2sv(v)
return void
param v CoordS in array [2]
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
version 1.4
deprecated 3.1
glxropcode 230
@@ -5452,7 +5828,8 @@ WindowPos3d(x, y, z)
param y CoordD in value
param z CoordD in value
vectorequiv WindowPos3dv
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
version 1.4
deprecated 3.1
offset 521
@@ -5460,7 +5837,8 @@ WindowPos3d(x, y, z)
WindowPos3dv(v)
return void
param v CoordD in array [3]
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
version 1.4
deprecated 3.1
glxropcode 230
@@ -5472,7 +5850,8 @@ WindowPos3f(x, y, z)
param x CoordF in value
param y CoordF in value
param z CoordF in value
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
vectorequiv WindowPos3fv
version 1.4
deprecated 3.1
@@ -5481,7 +5860,8 @@ WindowPos3f(x, y, z)
WindowPos3fv(v)
return void
param v CoordF in array [3]
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
version 1.4
deprecated 3.1
glxropcode 230
@@ -5493,7 +5873,8 @@ WindowPos3i(x, y, z)
param x CoordI in value
param y CoordI in value
param z CoordI in value
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
vectorequiv WindowPos3iv
version 1.4
deprecated 3.1
@@ -5502,7 +5883,8 @@ WindowPos3i(x, y, z)
WindowPos3iv(v)
return void
param v CoordI in array [3]
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
version 1.4
deprecated 3.1
glxropcode 230
@@ -5514,7 +5896,8 @@ WindowPos3s(x, y, z)
param x CoordS in value
param y CoordS in value
param z CoordS in value
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
vectorequiv WindowPos3sv
version 1.4
deprecated 3.1
@@ -5523,7 +5906,8 @@ WindowPos3s(x, y, z)
WindowPos3sv(v)
return void
param v CoordS in array [3]
- category VERSION_1_4_DEPRECATED
+ category VERSION_1_4
+ profile compatibility
version 1.4
deprecated 3.1
glxropcode 230
@@ -8055,10 +8439,7 @@ passthru: /* ARB_ES3_compatibility (no entry points) */
passthru: /* ARB_clear_buffer_object */
passthru: /* ARB_compute_shader */
passthru: /* ARB_copy_image */
-passthru: /* ARB_debug_group */
-passthru: /* ARB_debug_label */
-passthru: /* KHR_debug (ARB_debug_output promoted to KHR without suffixes) */
-passthru: /* ARB_debug_output2 (no entry points) */
+passthru: /* KHR_debug (includes ARB_debug_output commands promoted to KHR without suffixes) */
passthru: /* ARB_explicit_uniform_location (no entry points) */
passthru: /* ARB_framebuffer_no_attachments */
passthru: /* ARB_internalformat_query2 */
@@ -14448,6 +14829,7 @@ GetnMapdvARB(target, query, bufSize, v)
param bufSize SizeI in value
param v Float64 out array [bufSize]
category ARB_robustness
+ profile compatibility
dlflags notlistable
version 4.1
extension
@@ -14462,6 +14844,7 @@ GetnMapfvARB(target, query, bufSize, v)
param bufSize SizeI in value
param v Float32 out array [bufSize]
category ARB_robustness
+ profile compatibility
dlflags notlistable
version 4.1
extension
@@ -14476,6 +14859,7 @@ GetnMapivARB(target, query, bufSize, v)
param bufSize SizeI in value
param v Int32 out array [bufSize]
category ARB_robustness
+ profile compatibility
dlflags notlistable
version 4.1
extension
@@ -14489,6 +14873,7 @@ GetnPixelMapfvARB(map, bufSize, values)
param bufSize SizeI in value
param values Float32 out array [bufSize]
category ARB_robustness
+ profile compatibility
dlflags notlistable
version 4.1
extension
@@ -14502,6 +14887,7 @@ GetnPixelMapuivARB(map, bufSize, values)
param bufSize SizeI in value
param values UInt32 out array [bufSize]
category ARB_robustness
+ profile compatibility
dlflags notlistable
version 4.1
extension
@@ -14515,6 +14901,7 @@ GetnPixelMapusvARB(map, bufSize, values)
param bufSize SizeI in value
param values UInt16 out array [bufSize]
category ARB_robustness
+ profile compatibility
dlflags notlistable
version 4.1
extension
@@ -14527,6 +14914,7 @@ GetnPolygonStippleARB(bufSize, pattern)
param bufSize SizeI in value
param pattern UInt8 out array [bufSize]
category ARB_robustness
+ profile compatibility
dlflags notlistable
version 4.1
extension
@@ -14542,6 +14930,7 @@ GetnColorTableARB(target, format, type, bufSize, table)
param bufSize SizeI in value
param table Void out array [bufSize]
category ARB_robustness
+ profile compatibility
dlflags notlistable
version 4.1
extension
@@ -14557,6 +14946,7 @@ GetnConvolutionFilterARB(target, format, type, bufSize, image)
param bufSize SizeI in value
param image Void out array [bufSize]
category ARB_robustness
+ profile compatibility
dlflags notlistable
version 4.1
extension
@@ -14575,6 +14965,7 @@ GetnSeparableFilterARB(target, format, type, rowBufSize, row, columnBufSize, col
param column Void out array [columnBufSize]
param span Void out array [0]
category ARB_robustness
+ profile compatibility
dlflags notlistable
version 4.1
extension
@@ -14591,6 +14982,7 @@ GetnHistogramARB(target, reset, format, type, bufSize, values)
param bufSize SizeI in value
param values Void out array [bufSize]
category ARB_robustness
+ profile compatibility
dlflags notlistable
version 4.1
extension
@@ -14607,6 +14999,7 @@ GetnMinmaxARB(target, reset, format, type, bufSize, values)
param bufSize SizeI in value
param values Void out array [bufSize]
category ARB_robustness
+ profile compatibility
dlflags notlistable
version 4.1
extension
@@ -15109,7 +15502,6 @@ GetDebugMessageLog(count, bufsize, sources, types, ids, severities, lengths, mes
glxflags ignore
offset ?
-# Shared with ARB_debug_group
PushDebugGroup(source, id, length, message)
return void
param source GLenum in value
@@ -15132,7 +15524,6 @@ PopDebugGroup()
glxflags ignore
offset ?
-# Shared with ARB_debug_label
ObjectLabel(identifier, name, length, label)
return void
param identifier GLenum in value
@@ -15187,7 +15578,7 @@ GetObjectPtrLabel(ptr, bufSize, length, label)
glxflags ignore
offset ?
-passthru: /* KHR_debug also reuses entry points from ARB_debug_group and ARB_debug_label */
+# Also includes GetPointerv (only for OpenGL ES 2, however)
###############################################################################
#
@@ -15330,35 +15721,200 @@ CopyImageSubData(srcName, srcTarget, srcLevel, srcX, srcY, srcZ, dstName, dstTar
###############################################################################
#
-# Extension #ARB124
-# ARB_debug_group commands
+# Extension #ARB124 (renumbered from 142)
+# ARB_texture_view commands
#
###############################################################################
-# (none)
-newcategory: ARB_debug_group
-passthru: /* ARB_debug_group reuses entry points from KHR_debug */
+TextureView(texture, target, origtexture, internalformat, minlevel, numlevels, minlayer, numlayers)
+ return void
+ param texture UInt32 in value
+ param target GLenum in value
+ param origtexture UInt32 in value
+ param internalformat GLenum in value
+ param minlevel UInt32 in value
+ param numlevels UInt32 in value
+ param minlayer UInt32 in value
+ param numlayers UInt32 in value
+ category ARB_texture_view
+ version 4.3
+ extension
+ glxropcode ?
+ glxflags ignore
+ offset ?
###############################################################################
#
-# Extension #ARB125
-# ARB_debug_label commands
+# Extension #ARB125 (renumbered from 143)
+# ARB_vertex_attrib_binding commands
#
###############################################################################
-# (none)
-newcategory: ARB_debug_label
-passthru: /* ARB_debug_label reuses entry points from KHR_debug */
+BindVertexBuffer(bindingindex, buffer, offset, stride)
+ return void
+ param bindingindex UInt32 in value
+ param buffer UInt32 in value
+ param offset BufferOffset in value
+ param stride SizeI in value
+ category ARB_vertex_attrib_binding
+ version 4.3
+ extension
+ glxropcode ?
+ glxflags ignore
+ offset ?
+
+VertexAttribFormat(attribindex, size, type, normalized, relativeoffset)
+ return void
+ param attribindex UInt32 in value
+ param size Int32 in value
+ param type GLenum in value
+ param normalized Boolean in value
+ param relativeoffset UInt32 in value
+ category ARB_vertex_attrib_binding
+ version 4.3
+ extension
+ glxropcode ?
+ glxflags ignore
+ offset ?
+
+VertexAttribIFormat(attribindex, size, type, relativeoffset)
+ return void
+ param attribindex UInt32 in value
+ param size Int32 in value
+ param type GLenum in value
+ param relativeoffset UInt32 in value
+ category ARB_vertex_attrib_binding
+ version 4.3
+ extension
+ glxropcode ?
+ glxflags ignore
+ offset ?
+
+VertexAttribLFormat(attribindex, size, type, relativeoffset)
+ return void
+ param attribindex UInt32 in value
+ param size Int32 in value
+ param type GLenum in value
+ param relativeoffset UInt32 in value
+ category ARB_vertex_attrib_binding
+ version 4.3
+ extension
+ glxropcode ?
+ glxflags ignore
+ offset ?
+
+VertexAttribBinding(attribindex, bindingindex)
+ return void
+ param attribindex UInt32 in value
+ param bindingindex UInt32 in value
+ category ARB_vertex_attrib_binding
+ version 4.3
+ extension
+ glxropcode ?
+ glxflags ignore
+ offset ?
+
+VertexBindingDivisor(bindingindex, divisor)
+ return void
+ param bindingindex UInt32 in value
+ param divisor UInt32 in value
+ category ARB_vertex_attrib_binding
+ version 4.3
+ extension
+ glxropcode ?
+ glxflags ignore
+ offset ?
+
+VertexArrayBindVertexBufferEXT(vaobj, bindingindex, buffer, offset, stride)
+ return void
+ param vaobj UInt32 in value
+ param bindingindex UInt32 in value
+ param buffer UInt32 in value
+ param offset BufferOffset in value
+ param stride SizeI in value
+ category ARB_vertex_attrib_binding
+ version 4.3
+ extension
+ glxropcode ?
+ glxflags ignore
+ offset ?
+
+VertexArrayVertexAttribFormatEXT(vaobj, attribindex, size, type, normalized, relativeoffset)
+ return void
+ param vaobj UInt32 in value
+ param attribindex UInt32 in value
+ param size Int32 in value
+ param type GLenum in value
+ param normalized Boolean in value
+ param relativeoffset UInt32 in value
+ category ARB_vertex_attrib_binding
+ version 4.3
+ extension
+ glxropcode ?
+ glxflags ignore
+ offset ?
+
+VertexArrayVertexAttribIFormatEXT(vaobj, attribindex, size, type, relativeoffset)
+ return void
+ param vaobj UInt32 in value
+ param attribindex UInt32 in value
+ param size Int32 in value
+ param type GLenum in value
+ param relativeoffset UInt32 in value
+ category ARB_vertex_attrib_binding
+ version 4.3
+ extension
+ glxropcode ?
+ glxflags ignore
+ offset ?
+
+VertexArrayVertexAttribLFormatEXT(vaobj, attribindex, size, type, relativeoffset)
+ return void
+ param vaobj UInt32 in value
+ param attribindex UInt32 in value
+ param size Int32 in value
+ param type GLenum in value
+ param relativeoffset UInt32 in value
+ category ARB_vertex_attrib_binding
+ version 4.3
+ extension
+ glxropcode ?
+ glxflags ignore
+ offset ?
+
+VertexArrayVertexAttribBindingEXT(vaobj, attribindex, bindingindex)
+ return void
+ param vaobj UInt32 in value
+ param attribindex UInt32 in value
+ param bindingindex UInt32 in value
+ category ARB_vertex_attrib_binding
+ version 4.3
+ extension
+ glxropcode ?
+ glxflags ignore
+ offset ?
+
+VertexArrayVertexBindingDivisorEXT(vaobj, bindingindex, divisor)
+ return void
+ param vaobj UInt32 in value
+ param bindingindex UInt32 in value
+ param divisor UInt32 in value
+ category ARB_vertex_attrib_binding
+ version 4.3
+ extension
+ glxropcode ?
+ glxflags ignore
+ offset ?
###############################################################################
#
-# Extension #ARB126
-# ARB_debug_output2 commands
+# Extension #ARB126 (renumbered from 144)
+# ARB_robustness_isolation commands
#
###############################################################################
# (none)
-newcategory: ARB_debug_output2
+newcategory: ARB_robustness_isolation
###############################################################################
#
@@ -15848,203 +16404,6 @@ TextureStorage3DMultisampleEXT(texture, target, samples, internalformat, width,
glxflags ignore
offset ?
-###############################################################################
-#
-# Extension #ARB142
-# ARB_texture_view commands
-#
-###############################################################################
-
-TextureView(texture, target, origtexture, internalformat, minlevel, numlevels, minlayer, numlayers)
- return void
- param texture UInt32 in value
- param target GLenum in value
- param origtexture UInt32 in value
- param internalformat GLenum in value
- param minlevel UInt32 in value
- param numlevels UInt32 in value
- param minlayer UInt32 in value
- param numlayers UInt32 in value
- category ARB_texture_view
- version 4.3
- extension
- glxropcode ?
- glxflags ignore
- offset ?
-
-###############################################################################
-#
-# Extension #ARB143
-# ARB_vertex_attrib_binding commands
-#
-###############################################################################
-
-BindVertexBuffer(bindingindex, buffer, offset, stride)
- return void
- param bindingindex UInt32 in value
- param buffer UInt32 in value
- param offset BufferOffset in value
- param stride SizeI in value
- category ARB_vertex_attrib_binding
- version 4.3
- extension
- glxropcode ?
- glxflags ignore
- offset ?
-
-VertexAttribFormat(attribindex, size, type, normalized, relativeoffset)
- return void
- param attribindex UInt32 in value
- param size Int32 in value
- param type GLenum in value
- param normalized Boolean in value
- param relativeoffset UInt32 in value
- category ARB_vertex_attrib_binding
- version 4.3
- extension
- glxropcode ?
- glxflags ignore
- offset ?
-
-VertexAttribIFormat(attribindex, size, type, relativeoffset)
- return void
- param attribindex UInt32 in value
- param size Int32 in value
- param type GLenum in value
- param relativeoffset UInt32 in value
- category ARB_vertex_attrib_binding
- version 4.3
- extension
- glxropcode ?
- glxflags ignore
- offset ?
-
-VertexAttribLFormat(attribindex, size, type, relativeoffset)
- return void
- param attribindex UInt32 in value
- param size Int32 in value
- param type GLenum in value
- param relativeoffset UInt32 in value
- category ARB_vertex_attrib_binding
- version 4.3
- extension
- glxropcode ?
- glxflags ignore
- offset ?
-
-VertexAttribBinding(attribindex, bindingindex)
- return void
- param attribindex UInt32 in value
- param bindingindex UInt32 in value
- category ARB_vertex_attrib_binding
- version 4.3
- extension
- glxropcode ?
- glxflags ignore
- offset ?
-
-VertexBindingDivisor(bindingindex, divisor)
- return void
- param bindingindex UInt32 in value
- param divisor UInt32 in value
- category ARB_vertex_attrib_binding
- version 4.3
- extension
- glxropcode ?
- glxflags ignore
- offset ?
-
-VertexArrayBindVertexBufferEXT(vaobj, bindingindex, buffer, offset, stride)
- return void
- param vaobj UInt32 in value
- param bindingindex UInt32 in value
- param buffer UInt32 in value
- param offset BufferOffset in value
- param stride SizeI in value
- category ARB_vertex_attrib_binding
- version 4.3
- extension
- glxropcode ?
- glxflags ignore
- offset ?
-
-VertexArrayVertexAttribFormatEXT(vaobj, attribindex, size, type, normalized, relativeoffset)
- return void
- param vaobj UInt32 in value
- param attribindex UInt32 in value
- param size Int32 in value
- param type GLenum in value
- param normalized Boolean in value
- param relativeoffset UInt32 in value
- category ARB_vertex_attrib_binding
- version 4.3
- extension
- glxropcode ?
- glxflags ignore
- offset ?
-
-VertexArrayVertexAttribIFormatEXT(vaobj, attribindex, size, type, relativeoffset)
- return void
- param vaobj UInt32 in value
- param attribindex UInt32 in value
- param size Int32 in value
- param type GLenum in value
- param relativeoffset UInt32 in value
- category ARB_vertex_attrib_binding
- version 4.3
- extension
- glxropcode ?
- glxflags ignore
- offset ?
-
-VertexArrayVertexAttribLFormatEXT(vaobj, attribindex, size, type, relativeoffset)
- return void
- param vaobj UInt32 in value
- param attribindex UInt32 in value
- param size Int32 in value
- param type GLenum in value
- param relativeoffset UInt32 in value
- category ARB_vertex_attrib_binding
- version 4.3
- extension
- glxropcode ?
- glxflags ignore
- offset ?
-
-VertexArrayVertexAttribBindingEXT(vaobj, attribindex, bindingindex)
- return void
- param vaobj UInt32 in value
- param attribindex UInt32 in value
- param bindingindex UInt32 in value
- category ARB_vertex_attrib_binding
- version 4.3
- extension
- glxropcode ?
- glxflags ignore
- offset ?
-
-VertexArrayVertexBindingDivisorEXT(vaobj, bindingindex, divisor)
- return void
- param vaobj UInt32 in value
- param bindingindex UInt32 in value
- param divisor UInt32 in value
- category ARB_vertex_attrib_binding
- version 4.3
- extension
- glxropcode ?
- glxflags ignore
- offset ?
-
-###############################################################################
-#
-# Extension #ARB144
-# ARB_robustness_isolation commands
-#
-###############################################################################
-
-# (none)
-newcategory: ARB_robustness_isolation
-
###############################################################################
###############################################################################
@@ -18845,7 +19204,7 @@ PixelTransformParameteriEXT(target, pname, param)
param param Int32 in value
category EXT_pixel_transform
version 1.1
- glxropcode ?
+ glxropcode 16386
offset ?
PixelTransformParameterfEXT(target, pname, param)
@@ -18855,7 +19214,7 @@ PixelTransformParameterfEXT(target, pname, param)
param param Float32 in value
category EXT_pixel_transform
version 1.1
- glxropcode ?
+ glxropcode 16385
offset ?
PixelTransformParameterivEXT(target, pname, params)
@@ -18878,6 +19237,32 @@ PixelTransformParameterfvEXT(target, pname, params)
glxropcode ?
offset ?
+GetPixelTransformParameterivEXT(target, pname, params)
+ return void
+ param target GLenum in value
+ param pname GLenum in value
+ param params Int32 out array [COMPSIZE(pname)]
+ category EXT_pixel_transform
+ dlflags notlistable
+ version 1.1
+ extension
+ glxvendorpriv 2052
+ glxflags ignore
+ offset ?
+
+GetPixelTransformParameterfvEXT(target, pname, params)
+ return void
+ param target GLenum in value
+ param pname GLenum in value
+ param params Float32 out array [COMPSIZE(pname)]
+ category EXT_pixel_transform
+ dlflags notlistable
+ version 1.1
+ extension
+ glxvendorpriv 2051
+ glxflags ignore
+ offset ?
+
###############################################################################
#
# Extension #139
@@ -20326,7 +20711,7 @@ VertexWeightfvEXT(weight)
VertexWeightPointerEXT(size, type, stride, pointer)
return void
- param size SizeI in value
+ param size Int32 in value
param type VertexWeightPointerTypeEXT in value
param stride SizeI in value
param pointer Void in array [COMPSIZE(type/stride)] retained
@@ -32720,7 +33105,7 @@ VDPAUFiniNV()
VDPAURegisterVideoSurfaceNV(vdpSurface, target, numTextureNames, textureNames)
return vdpauSurfaceNV
- param vdpSurface Void out reference
+ param vdpSurface Void in reference
param target GLenum in value
param numTextureNames SizeI in value
param textureNames UInt32 in array [numTextureNames]
@@ -33810,7 +34195,7 @@ IsImageHandleResidentNV(handle)
# (none)
newcategory: NV_shader_atomic_float
-###############################################################################
+[###############################################################################
#
# Extension #420
# AMD_query_buffer_object commands
@@ -33819,3 +34204,44 @@ newcategory: NV_shader_atomic_float
# (none)
newcategory: AMD_query_buffer_object
+
+###############################################################################
+#
+# Extension #421
+# AMD_sparse_texture commands
+#
+###############################################################################
+
+TexStorageSparseAMD(target, internalFormat, width, height, depth, layers, flags)
+ return void
+ param target GLenum in value
+ param internalFormat GLenum in value
+ param width SizeI in value
+ param height SizeI in value
+ param depth SizeI in value
+ param layers SizeI in value
+ param flags GLbitfield in value
+ category AMD_sparse_texture
+ version 4.3
+ extension
+ glxropcode ?
+ glxflags ignore
+ offset ?
+
+TextureStorageSparseAMD(texture, target, internalFormat, width, height, depth, layers, flags)
+ return void
+ param texture UInt32 in value
+ param target GLenum in value
+ param internalFormat GLenum in value
+ param width SizeI in value
+ param height SizeI in value
+ param depth SizeI in value
+ param layers SizeI in value
+ param flags GLbitfield in value
+ category AMD_sparse_texture
+ version 4.3
+ extension
+ glxropcode ?
+ glxflags ignore
+ offset ?
+
diff --git a/xorg-server/hw/xwin/winprefs.c b/xorg-server/hw/xwin/winprefs.c
index 5becf23a0..a4d241060 100644
--- a/xorg-server/hw/xwin/winprefs.c
+++ b/xorg-server/hw/xwin/winprefs.c
@@ -647,7 +647,7 @@ winPrefsLoadPreferences(char *path)
if (path)
prefFile = fopen(path, "r");
-#ifndef _MSC_VER
+#ifdef __CYGWIN__
else {
char defaultPrefs[] =
"MENU rmenu {\n"
diff --git a/xorg-server/include/xserver-properties.h b/xorg-server/include/xserver-properties.h
index 85f2ce5c4..bf48fabe5 100644
--- a/xorg-server/include/xserver-properties.h
+++ b/xorg-server/include/xserver-properties.h
@@ -118,6 +118,9 @@
#define AXIS_LABEL_PROP_ABS_MT_BLOB_ID "Abs MT Blob ID"
#define AXIS_LABEL_PROP_ABS_MT_TRACKING_ID "Abs MT Tracking ID"
#define AXIS_LABEL_PROP_ABS_MT_PRESSURE "Abs MT Pressure"
+#define AXIS_LABEL_PROP_ABS_MT_DISTANCE "Abs MT Distance"
+#define AXIS_LABEL_PROP_ABS_MT_TOOL_X "Abs MT Tool X"
+#define AXIS_LABEL_PROP_ABS_MT_TOOL_Y "Abs MT Tool Y"
#define AXIS_LABEL_PROP_ABS_MISC "Abs Misc"
/* Button names */
diff --git a/xorg-server/os/utils.c b/xorg-server/os/utils.c
index 29ee9ab24..2945e3e1b 100644
--- a/xorg-server/os/utils.c
+++ b/xorg-server/os/utils.c
@@ -248,6 +248,19 @@ OsSignal(int sig, OsSigHandlerPtr handler)
#define LockFile szLockFile
#endif
+#if !defined(WIN32) || defined(__CYGWIN__)
+#define LOCK_SERVER
+#endif
+
+#ifndef LOCK_SERVER
+void
+LockServer(void)
+{}
+
+void
+UnlockServer(void)
+{}
+#else /* LOCK_SERVER */
static Bool StillLocking = FALSE;
static char LockFile[PATH_MAX];
static Bool nolock = FALSE;
@@ -263,7 +276,7 @@ LockServer(void)
{
#if defined(WIN32) && !defined(__CYGWIN__)
char MutexName[100];
- sprintf(MutexName, "Global\\VcXsrv_Mutex_%d\n", getpid());
+ sprintf(MutexName, "Global\\VcXsrv_Mutex_%d\n", atoi(display));
if (!CreateMutex(NULL,TRUE,MutexName) || GetLastError()== ERROR_ALREADY_EXISTS)
{
FatalError("Server is already active for display %d\n", atoi(display));
@@ -404,6 +417,7 @@ UnlockServer(void)
(void) unlink(LockFile);
}
}
+#endif /* LOCK_SERVER */
/* Force connections to close on SIGHUP from init */
@@ -530,7 +544,9 @@ UseMsg(void)
#ifdef RLIMIT_STACK
ErrorF("-ls int limit stack space to N Kb\n");
#endif
+#ifdef LOCK_SERVER
ErrorF("-nolock disable the locking mechanism\n");
+#endif
ErrorF("-nolisten string don't listen on protocol\n");
ErrorF("-noreset don't reset after last client exists\n");
ErrorF("-background [none] create root window with no background\n");
@@ -692,7 +708,9 @@ ProcessCommandLine(int argc, char *argv[])
if (++i < argc) {
displayfd = atoi(argv[i]);
display = NULL;
+#ifdef LOCK_SERVER
nolock = TRUE;
+#endif
}
else
UseMsg();
@@ -772,6 +790,7 @@ ProcessCommandLine(int argc, char *argv[])
UseMsg();
}
#endif
+#ifdef LOCK_SERVER
else if (strcmp(argv[i], "-nolock") == 0) {
#if !defined(WIN32) && !defined(__CYGWIN__)
if (getuid() != 0)
@@ -781,6 +800,7 @@ ProcessCommandLine(int argc, char *argv[])
#endif
nolock = TRUE;
}
+#endif
else if (strcmp(argv[i], "-nolisten") == 0) {
if (++i < argc) {
if (_XSERVTransNoListen(argv[i]))
diff --git a/xorg-server/xkb/xkbAccessX.c b/xorg-server/xkb/xkbAccessX.c
index 082c0db57..c1af32eb9 100644
--- a/xorg-server/xkb/xkbAccessX.c
+++ b/xorg-server/xkb/xkbAccessX.c
@@ -709,7 +709,7 @@ ProcessPointerEvent(InternalEvent *ev, DeviceIntPtr mouse)
xkbDeviceInfoPtr xkbPrivPtr = XKBDEVICEINFO(mouse);
DeviceEvent *event = &ev->device_event;
- dev = IsFloating(mouse) ? mouse : GetMaster(mouse, MASTER_KEYBOARD);
+ dev = (IsMaster(mouse) || IsFloating(mouse)) ? mouse : GetMaster(mouse, MASTER_KEYBOARD);
if (dev && dev->key) {
xkbi = dev->key->xkbInfo;