Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | RSS feed

  1. /* DO NOT EDIT - This file generated automatically by gl_x86_asm.py (from Mesa) script */
  2.  
  3. /*
  4.  * Copyright (C) 1999-2001  Brian Paul   All Rights Reserved.
  5.  * (C) Copyright IBM Corporation 2004, 2005
  6.  * All Rights Reserved.
  7.  *
  8.  * Permission is hereby granted, free of charge, to any person obtaining a
  9.  * copy of this software and associated documentation files (the "Software"),
  10.  * to deal in the Software without restriction, including without limitation
  11.  * the rights to use, copy, modify, merge, publish, distribute, sub license,
  12.  * and/or sell copies of the Software, and to permit persons to whom the
  13.  * Software is furnished to do so, subject to the following conditions:
  14.  *
  15.  * The above copyright notice and this permission notice (including the next
  16.  * paragraph) shall be included in all copies or substantial portions of the
  17.  * Software.
  18.  *
  19.  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  20.  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  21.  * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.  IN NO EVENT SHALL
  22.  * BRIAN PAUL, IBM,
  23.  * AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
  24.  * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
  25.  * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  26.  * SOFTWARE.
  27.  */
  28.  
  29. #include "x86/assyntax.h"
  30.  
  31. #if defined(STDCALL_API)
  32. # if defined(USE_MGL_NAMESPACE)
  33. #  define GL_PREFIX(n,n2) GLNAME(CONCAT(mgl,n2))
  34. # else
  35. #  define GL_PREFIX(n,n2) GLNAME(CONCAT(gl,n2))
  36. # endif
  37. #else
  38. # if defined(USE_MGL_NAMESPACE)
  39. #  define GL_PREFIX(n,n2) GLNAME(CONCAT(mgl,n))
  40. #  define _glapi_Dispatch _mglapi_Dispatch
  41. # else
  42. #  define GL_PREFIX(n,n2) GLNAME(CONCAT(gl,n))
  43. # endif
  44. #endif
  45.  
  46. #define GL_OFFSET(x) CODEPTR(REGOFF(4 * x, EAX))
  47.  
  48. #if defined(GNU_ASSEMBLER) && !defined(__MINGW32__) && !defined(__APPLE__)
  49. #define GLOBL_FN(x) GLOBL x ; .type x, @function
  50. #else
  51. #define GLOBL_FN(x) GLOBL x
  52. #endif
  53.  
  54.  
  55. #ifdef GLX_USE_TLS
  56.  
  57. #ifdef GLX_X86_READONLY_TEXT
  58. # define CTX_INSNS MOV_L(GS:(EAX), EAX)
  59. #else
  60. # define CTX_INSNS NOP /* Pad for init_glapi_relocs() */
  61. #endif
  62.  
  63. #  define GL_STUB(fn,off,fn_alt)                        \
  64. ALIGNTEXT16;                                            \
  65. GLOBL_FN(GL_PREFIX(fn, fn_alt));                        \
  66. GL_PREFIX(fn, fn_alt):                                  \
  67.         CALL(_x86_get_dispatch) ;                       \
  68.         CTX_INSNS ;                                     \
  69.         JMP(GL_OFFSET(off))
  70.  
  71. #elif defined(HAVE_PTHREAD)
  72. #  define GL_STUB(fn,off,fn_alt)                        \
  73. ALIGNTEXT16;                                            \
  74. GLOBL_FN(GL_PREFIX(fn, fn_alt));                        \
  75. GL_PREFIX(fn, fn_alt):                                  \
  76.         MOV_L(CONTENT(GLNAME(_glapi_Dispatch)), EAX) ;  \
  77.         TEST_L(EAX, EAX) ;                              \
  78.         JE(1f) ;                                        \
  79.         JMP(GL_OFFSET(off)) ;                           \
  80. 1:      CALL(_x86_get_dispatch) ;                       \
  81.         JMP(GL_OFFSET(off))
  82. #else
  83. #  define GL_STUB(fn,off,fn_alt)                        \
  84. ALIGNTEXT16;                                            \
  85. GLOBL_FN(GL_PREFIX(fn, fn_alt));                        \
  86. GL_PREFIX(fn, fn_alt):                                  \
  87.         MOV_L(CONTENT(GLNAME(_glapi_Dispatch)), EAX) ;  \
  88.         TEST_L(EAX, EAX) ;                              \
  89.         JE(1f) ;                                        \
  90.         JMP(GL_OFFSET(off)) ;                           \
  91. 1:      CALL(_glapi_get_dispatch) ;                     \
  92.         JMP(GL_OFFSET(off))
  93. #endif
  94.  
  95. #ifdef HAVE_ALIAS
  96. #  define GL_STUB_ALIAS(fn,off,fn_alt,alias,alias_alt)  \
  97.         .globl  GL_PREFIX(fn, fn_alt) ;                 \
  98.         .set    GL_PREFIX(fn, fn_alt), GL_PREFIX(alias, alias_alt)
  99. #else
  100. #  define GL_STUB_ALIAS(fn,off,fn_alt,alias,alias_alt)  \
  101.     GL_STUB(fn, off, fn_alt)
  102. #endif
  103.  
  104. SEG_TEXT
  105.  
  106. #ifdef GLX_USE_TLS
  107.  
  108.         GLOBL   GLNAME(_x86_get_dispatch)
  109.         HIDDEN(GLNAME(_x86_get_dispatch))
  110. ALIGNTEXT16
  111. GLNAME(_x86_get_dispatch):
  112.         call    1f
  113. 1:      popl    %eax
  114.         addl    $_GLOBAL_OFFSET_TABLE_+[.-1b], %eax
  115.         movl    _glapi_tls_Dispatch@GOTNTPOFF(%eax), %eax
  116.         ret
  117.  
  118. #elif defined(HAVE_PTHREAD)
  119. EXTERN GLNAME(_glapi_Dispatch)
  120. EXTERN GLNAME(_gl_DispatchTSD)
  121. EXTERN GLNAME(pthread_getspecific)
  122.  
  123. ALIGNTEXT16
  124. GLNAME(_x86_get_dispatch):
  125.         SUB_L(CONST(24), ESP)
  126.         PUSH_L(GLNAME(_gl_DispatchTSD))
  127.         CALL(GLNAME(pthread_getspecific))
  128.         ADD_L(CONST(28), ESP)
  129.         RET
  130. #else
  131. EXTERN GLNAME(_glapi_get_dispatch)
  132. #endif
  133.  
  134. #if defined( GLX_USE_TLS ) && !defined( GLX_X86_READONLY_TEXT )
  135.                 .section        wtext, "awx", @progbits
  136. #endif /* defined( GLX_USE_TLS ) */
  137.  
  138.                 ALIGNTEXT16
  139.                 GLOBL GLNAME(gl_dispatch_functions_start)
  140.                 HIDDEN(GLNAME(gl_dispatch_functions_start))
  141. GLNAME(gl_dispatch_functions_start):
  142.  
  143.         GL_STUB(NewList, 0, NewList@8)
  144.         GL_STUB(EndList, 1, EndList@0)
  145.         GL_STUB(CallList, 2, CallList@4)
  146.         GL_STUB(CallLists, 3, CallLists@12)
  147.         GL_STUB(DeleteLists, 4, DeleteLists@8)
  148.         GL_STUB(GenLists, 5, GenLists@4)
  149.         GL_STUB(ListBase, 6, ListBase@4)
  150.         GL_STUB(Begin, 7, Begin@4)
  151.         GL_STUB(Bitmap, 8, Bitmap@28)
  152.         GL_STUB(Color3b, 9, Color3b@12)
  153.         GL_STUB(Color3bv, 10, Color3bv@4)
  154.         GL_STUB(Color3d, 11, Color3d@24)
  155.         GL_STUB(Color3dv, 12, Color3dv@4)
  156.         GL_STUB(Color3f, 13, Color3f@12)
  157.         GL_STUB(Color3fv, 14, Color3fv@4)
  158.         GL_STUB(Color3i, 15, Color3i@12)
  159.         GL_STUB(Color3iv, 16, Color3iv@4)
  160.         GL_STUB(Color3s, 17, Color3s@12)
  161.         GL_STUB(Color3sv, 18, Color3sv@4)
  162.         GL_STUB(Color3ub, 19, Color3ub@12)
  163.         GL_STUB(Color3ubv, 20, Color3ubv@4)
  164.         GL_STUB(Color3ui, 21, Color3ui@12)
  165.         GL_STUB(Color3uiv, 22, Color3uiv@4)
  166.         GL_STUB(Color3us, 23, Color3us@12)
  167.         GL_STUB(Color3usv, 24, Color3usv@4)
  168.         GL_STUB(Color4b, 25, Color4b@16)
  169.         GL_STUB(Color4bv, 26, Color4bv@4)
  170.         GL_STUB(Color4d, 27, Color4d@32)
  171.         GL_STUB(Color4dv, 28, Color4dv@4)
  172.         GL_STUB(Color4f, 29, Color4f@16)
  173.         GL_STUB(Color4fv, 30, Color4fv@4)
  174.         GL_STUB(Color4i, 31, Color4i@16)
  175.         GL_STUB(Color4iv, 32, Color4iv@4)
  176.         GL_STUB(Color4s, 33, Color4s@16)
  177.         GL_STUB(Color4sv, 34, Color4sv@4)
  178.         GL_STUB(Color4ub, 35, Color4ub@16)
  179.         GL_STUB(Color4ubv, 36, Color4ubv@4)
  180.         GL_STUB(Color4ui, 37, Color4ui@16)
  181.         GL_STUB(Color4uiv, 38, Color4uiv@4)
  182.         GL_STUB(Color4us, 39, Color4us@16)
  183.         GL_STUB(Color4usv, 40, Color4usv@4)
  184.         GL_STUB(EdgeFlag, 41, EdgeFlag@4)
  185.         GL_STUB(EdgeFlagv, 42, EdgeFlagv@4)
  186.         GL_STUB(End, 43, End@0)
  187.         GL_STUB(Indexd, 44, Indexd@8)
  188.         GL_STUB(Indexdv, 45, Indexdv@4)
  189.         GL_STUB(Indexf, 46, Indexf@4)
  190.         GL_STUB(Indexfv, 47, Indexfv@4)
  191.         GL_STUB(Indexi, 48, Indexi@4)
  192.         GL_STUB(Indexiv, 49, Indexiv@4)
  193.         GL_STUB(Indexs, 50, Indexs@4)
  194.         GL_STUB(Indexsv, 51, Indexsv@4)
  195.         GL_STUB(Normal3b, 52, Normal3b@12)
  196.         GL_STUB(Normal3bv, 53, Normal3bv@4)
  197.         GL_STUB(Normal3d, 54, Normal3d@24)
  198.         GL_STUB(Normal3dv, 55, Normal3dv@4)
  199.         GL_STUB(Normal3f, 56, Normal3f@12)
  200.         GL_STUB(Normal3fv, 57, Normal3fv@4)
  201.         GL_STUB(Normal3i, 58, Normal3i@12)
  202.         GL_STUB(Normal3iv, 59, Normal3iv@4)
  203.         GL_STUB(Normal3s, 60, Normal3s@12)
  204.         GL_STUB(Normal3sv, 61, Normal3sv@4)
  205.         GL_STUB(RasterPos2d, 62, RasterPos2d@16)
  206.         GL_STUB(RasterPos2dv, 63, RasterPos2dv@4)
  207.         GL_STUB(RasterPos2f, 64, RasterPos2f@8)
  208.         GL_STUB(RasterPos2fv, 65, RasterPos2fv@4)
  209.         GL_STUB(RasterPos2i, 66, RasterPos2i@8)
  210.         GL_STUB(RasterPos2iv, 67, RasterPos2iv@4)
  211.         GL_STUB(RasterPos2s, 68, RasterPos2s@8)
  212.         GL_STUB(RasterPos2sv, 69, RasterPos2sv@4)
  213.         GL_STUB(RasterPos3d, 70, RasterPos3d@24)
  214.         GL_STUB(RasterPos3dv, 71, RasterPos3dv@4)
  215.         GL_STUB(RasterPos3f, 72, RasterPos3f@12)
  216.         GL_STUB(RasterPos3fv, 73, RasterPos3fv@4)
  217.         GL_STUB(RasterPos3i, 74, RasterPos3i@12)
  218.         GL_STUB(RasterPos3iv, 75, RasterPos3iv@4)
  219.         GL_STUB(RasterPos3s, 76, RasterPos3s@12)
  220.         GL_STUB(RasterPos3sv, 77, RasterPos3sv@4)
  221.         GL_STUB(RasterPos4d, 78, RasterPos4d@32)
  222.         GL_STUB(RasterPos4dv, 79, RasterPos4dv@4)
  223.         GL_STUB(RasterPos4f, 80, RasterPos4f@16)
  224.         GL_STUB(RasterPos4fv, 81, RasterPos4fv@4)
  225.         GL_STUB(RasterPos4i, 82, RasterPos4i@16)
  226.         GL_STUB(RasterPos4iv, 83, RasterPos4iv@4)
  227.         GL_STUB(RasterPos4s, 84, RasterPos4s@16)
  228.         GL_STUB(RasterPos4sv, 85, RasterPos4sv@4)
  229.         GL_STUB(Rectd, 86, Rectd@32)
  230.         GL_STUB(Rectdv, 87, Rectdv@8)
  231.         GL_STUB(Rectf, 88, Rectf@16)
  232.         GL_STUB(Rectfv, 89, Rectfv@8)
  233.         GL_STUB(Recti, 90, Recti@16)
  234.         GL_STUB(Rectiv, 91, Rectiv@8)
  235.         GL_STUB(Rects, 92, Rects@16)
  236.         GL_STUB(Rectsv, 93, Rectsv@8)
  237.         GL_STUB(TexCoord1d, 94, TexCoord1d@8)
  238.         GL_STUB(TexCoord1dv, 95, TexCoord1dv@4)
  239.         GL_STUB(TexCoord1f, 96, TexCoord1f@4)
  240.         GL_STUB(TexCoord1fv, 97, TexCoord1fv@4)
  241.         GL_STUB(TexCoord1i, 98, TexCoord1i@4)
  242.         GL_STUB(TexCoord1iv, 99, TexCoord1iv@4)
  243.         GL_STUB(TexCoord1s, 100, TexCoord1s@4)
  244.         GL_STUB(TexCoord1sv, 101, TexCoord1sv@4)
  245.         GL_STUB(TexCoord2d, 102, TexCoord2d@16)
  246.         GL_STUB(TexCoord2dv, 103, TexCoord2dv@4)
  247.         GL_STUB(TexCoord2f, 104, TexCoord2f@8)
  248.         GL_STUB(TexCoord2fv, 105, TexCoord2fv@4)
  249.         GL_STUB(TexCoord2i, 106, TexCoord2i@8)
  250.         GL_STUB(TexCoord2iv, 107, TexCoord2iv@4)
  251.         GL_STUB(TexCoord2s, 108, TexCoord2s@8)
  252.         GL_STUB(TexCoord2sv, 109, TexCoord2sv@4)
  253.         GL_STUB(TexCoord3d, 110, TexCoord3d@24)
  254.         GL_STUB(TexCoord3dv, 111, TexCoord3dv@4)
  255.         GL_STUB(TexCoord3f, 112, TexCoord3f@12)
  256.         GL_STUB(TexCoord3fv, 113, TexCoord3fv@4)
  257.         GL_STUB(TexCoord3i, 114, TexCoord3i@12)
  258.         GL_STUB(TexCoord3iv, 115, TexCoord3iv@4)
  259.         GL_STUB(TexCoord3s, 116, TexCoord3s@12)
  260.         GL_STUB(TexCoord3sv, 117, TexCoord3sv@4)
  261.         GL_STUB(TexCoord4d, 118, TexCoord4d@32)
  262.         GL_STUB(TexCoord4dv, 119, TexCoord4dv@4)
  263.         GL_STUB(TexCoord4f, 120, TexCoord4f@16)
  264.         GL_STUB(TexCoord4fv, 121, TexCoord4fv@4)
  265.         GL_STUB(TexCoord4i, 122, TexCoord4i@16)
  266.         GL_STUB(TexCoord4iv, 123, TexCoord4iv@4)
  267.         GL_STUB(TexCoord4s, 124, TexCoord4s@16)
  268.         GL_STUB(TexCoord4sv, 125, TexCoord4sv@4)
  269.         GL_STUB(Vertex2d, 126, Vertex2d@16)
  270.         GL_STUB(Vertex2dv, 127, Vertex2dv@4)
  271.         GL_STUB(Vertex2f, 128, Vertex2f@8)
  272.         GL_STUB(Vertex2fv, 129, Vertex2fv@4)
  273.         GL_STUB(Vertex2i, 130, Vertex2i@8)
  274.         GL_STUB(Vertex2iv, 131, Vertex2iv@4)
  275.         GL_STUB(Vertex2s, 132, Vertex2s@8)
  276.         GL_STUB(Vertex2sv, 133, Vertex2sv@4)
  277.         GL_STUB(Vertex3d, 134, Vertex3d@24)
  278.         GL_STUB(Vertex3dv, 135, Vertex3dv@4)
  279.         GL_STUB(Vertex3f, 136, Vertex3f@12)
  280.         GL_STUB(Vertex3fv, 137, Vertex3fv@4)
  281.         GL_STUB(Vertex3i, 138, Vertex3i@12)
  282.         GL_STUB(Vertex3iv, 139, Vertex3iv@4)
  283.         GL_STUB(Vertex3s, 140, Vertex3s@12)
  284.         GL_STUB(Vertex3sv, 141, Vertex3sv@4)
  285.         GL_STUB(Vertex4d, 142, Vertex4d@32)
  286.         GL_STUB(Vertex4dv, 143, Vertex4dv@4)
  287.         GL_STUB(Vertex4f, 144, Vertex4f@16)
  288.         GL_STUB(Vertex4fv, 145, Vertex4fv@4)
  289.         GL_STUB(Vertex4i, 146, Vertex4i@16)
  290.         GL_STUB(Vertex4iv, 147, Vertex4iv@4)
  291.         GL_STUB(Vertex4s, 148, Vertex4s@16)
  292.         GL_STUB(Vertex4sv, 149, Vertex4sv@4)
  293.         GL_STUB(ClipPlane, 150, ClipPlane@8)
  294.         GL_STUB(ColorMaterial, 151, ColorMaterial@8)
  295.         GL_STUB(CullFace, 152, CullFace@4)
  296.         GL_STUB(Fogf, 153, Fogf@8)
  297.         GL_STUB(Fogfv, 154, Fogfv@8)
  298.         GL_STUB(Fogi, 155, Fogi@8)
  299.         GL_STUB(Fogiv, 156, Fogiv@8)
  300.         GL_STUB(FrontFace, 157, FrontFace@4)
  301.         GL_STUB(Hint, 158, Hint@8)
  302.         GL_STUB(Lightf, 159, Lightf@12)
  303.         GL_STUB(Lightfv, 160, Lightfv@12)
  304.         GL_STUB(Lighti, 161, Lighti@12)
  305.         GL_STUB(Lightiv, 162, Lightiv@12)
  306.         GL_STUB(LightModelf, 163, LightModelf@8)
  307.         GL_STUB(LightModelfv, 164, LightModelfv@8)
  308.         GL_STUB(LightModeli, 165, LightModeli@8)
  309.         GL_STUB(LightModeliv, 166, LightModeliv@8)
  310.         GL_STUB(LineStipple, 167, LineStipple@8)
  311.         GL_STUB(LineWidth, 168, LineWidth@4)
  312.         GL_STUB(Materialf, 169, Materialf@12)
  313.         GL_STUB(Materialfv, 170, Materialfv@12)
  314.         GL_STUB(Materiali, 171, Materiali@12)
  315.         GL_STUB(Materialiv, 172, Materialiv@12)
  316.         GL_STUB(PointSize, 173, PointSize@4)
  317.         GL_STUB(PolygonMode, 174, PolygonMode@8)
  318.         GL_STUB(PolygonStipple, 175, PolygonStipple@4)
  319.         GL_STUB(Scissor, 176, Scissor@16)
  320.         GL_STUB(ShadeModel, 177, ShadeModel@4)
  321.         GL_STUB(TexParameterf, 178, TexParameterf@12)
  322.         GL_STUB(TexParameterfv, 179, TexParameterfv@12)
  323.         GL_STUB(TexParameteri, 180, TexParameteri@12)
  324.         GL_STUB(TexParameteriv, 181, TexParameteriv@12)
  325.         GL_STUB(TexImage1D, 182, TexImage1D@32)
  326.         GL_STUB(TexImage2D, 183, TexImage2D@36)
  327.         GL_STUB(TexEnvf, 184, TexEnvf@12)
  328.         GL_STUB(TexEnvfv, 185, TexEnvfv@12)
  329.         GL_STUB(TexEnvi, 186, TexEnvi@12)
  330.         GL_STUB(TexEnviv, 187, TexEnviv@12)
  331.         GL_STUB(TexGend, 188, TexGend@16)
  332.         GL_STUB(TexGendv, 189, TexGendv@12)
  333.         GL_STUB(TexGenf, 190, TexGenf@12)
  334.         GL_STUB(TexGenfv, 191, TexGenfv@12)
  335.         GL_STUB(TexGeni, 192, TexGeni@12)
  336.         GL_STUB(TexGeniv, 193, TexGeniv@12)
  337.         GL_STUB(FeedbackBuffer, 194, FeedbackBuffer@12)
  338.         GL_STUB(SelectBuffer, 195, SelectBuffer@8)
  339.         GL_STUB(RenderMode, 196, RenderMode@4)
  340.         GL_STUB(InitNames, 197, InitNames@0)
  341.         GL_STUB(LoadName, 198, LoadName@4)
  342.         GL_STUB(PassThrough, 199, PassThrough@4)
  343.         GL_STUB(PopName, 200, PopName@0)
  344.         GL_STUB(PushName, 201, PushName@4)
  345.         GL_STUB(DrawBuffer, 202, DrawBuffer@4)
  346.         GL_STUB(Clear, 203, Clear@4)
  347.         GL_STUB(ClearAccum, 204, ClearAccum@16)
  348.         GL_STUB(ClearIndex, 205, ClearIndex@4)
  349.         GL_STUB(ClearColor, 206, ClearColor@16)
  350.         GL_STUB(ClearStencil, 207, ClearStencil@4)
  351.         GL_STUB(ClearDepth, 208, ClearDepth@8)
  352.         GL_STUB(StencilMask, 209, StencilMask@4)
  353.         GL_STUB(ColorMask, 210, ColorMask@16)
  354.         GL_STUB(DepthMask, 211, DepthMask@4)
  355.         GL_STUB(IndexMask, 212, IndexMask@4)
  356.         GL_STUB(Accum, 213, Accum@8)
  357.         GL_STUB(Disable, 214, Disable@4)
  358.         GL_STUB(Enable, 215, Enable@4)
  359.         GL_STUB(Finish, 216, Finish@0)
  360.         GL_STUB(Flush, 217, Flush@0)
  361.         GL_STUB(PopAttrib, 218, PopAttrib@0)
  362.         GL_STUB(PushAttrib, 219, PushAttrib@4)
  363.         GL_STUB(Map1d, 220, Map1d@32)
  364.         GL_STUB(Map1f, 221, Map1f@24)
  365.         GL_STUB(Map2d, 222, Map2d@56)
  366.         GL_STUB(Map2f, 223, Map2f@40)
  367.         GL_STUB(MapGrid1d, 224, MapGrid1d@20)
  368.         GL_STUB(MapGrid1f, 225, MapGrid1f@12)
  369.         GL_STUB(MapGrid2d, 226, MapGrid2d@40)
  370.         GL_STUB(MapGrid2f, 227, MapGrid2f@24)
  371.         GL_STUB(EvalCoord1d, 228, EvalCoord1d@8)
  372.         GL_STUB(EvalCoord1dv, 229, EvalCoord1dv@4)
  373.         GL_STUB(EvalCoord1f, 230, EvalCoord1f@4)
  374.         GL_STUB(EvalCoord1fv, 231, EvalCoord1fv@4)
  375.         GL_STUB(EvalCoord2d, 232, EvalCoord2d@16)
  376.         GL_STUB(EvalCoord2dv, 233, EvalCoord2dv@4)
  377.         GL_STUB(EvalCoord2f, 234, EvalCoord2f@8)
  378.         GL_STUB(EvalCoord2fv, 235, EvalCoord2fv@4)
  379.         GL_STUB(EvalMesh1, 236, EvalMesh1@12)
  380.         GL_STUB(EvalPoint1, 237, EvalPoint1@4)
  381.         GL_STUB(EvalMesh2, 238, EvalMesh2@20)
  382.         GL_STUB(EvalPoint2, 239, EvalPoint2@8)
  383.         GL_STUB(AlphaFunc, 240, AlphaFunc@8)
  384.         GL_STUB(BlendFunc, 241, BlendFunc@8)
  385.         GL_STUB(LogicOp, 242, LogicOp@4)
  386.         GL_STUB(StencilFunc, 243, StencilFunc@12)
  387.         GL_STUB(StencilOp, 244, StencilOp@12)
  388.         GL_STUB(DepthFunc, 245, DepthFunc@4)
  389.         GL_STUB(PixelZoom, 246, PixelZoom@8)
  390.         GL_STUB(PixelTransferf, 247, PixelTransferf@8)
  391.         GL_STUB(PixelTransferi, 248, PixelTransferi@8)
  392.         GL_STUB(PixelStoref, 249, PixelStoref@8)
  393.         GL_STUB(PixelStorei, 250, PixelStorei@8)
  394.         GL_STUB(PixelMapfv, 251, PixelMapfv@12)
  395.         GL_STUB(PixelMapuiv, 252, PixelMapuiv@12)
  396.         GL_STUB(PixelMapusv, 253, PixelMapusv@12)
  397.         GL_STUB(ReadBuffer, 254, ReadBuffer@4)
  398.         GL_STUB(CopyPixels, 255, CopyPixels@20)
  399.         GL_STUB(ReadPixels, 256, ReadPixels@28)
  400.         GL_STUB(DrawPixels, 257, DrawPixels@20)
  401.         GL_STUB(GetBooleanv, 258, GetBooleanv@8)
  402.         GL_STUB(GetClipPlane, 259, GetClipPlane@8)
  403.         GL_STUB(GetDoublev, 260, GetDoublev@8)
  404.         GL_STUB(GetError, 261, GetError@0)
  405.         GL_STUB(GetFloatv, 262, GetFloatv@8)
  406.         GL_STUB(GetIntegerv, 263, GetIntegerv@8)
  407.         GL_STUB(GetLightfv, 264, GetLightfv@12)
  408.         GL_STUB(GetLightiv, 265, GetLightiv@12)
  409.         GL_STUB(GetMapdv, 266, GetMapdv@12)
  410.         GL_STUB(GetMapfv, 267, GetMapfv@12)
  411.         GL_STUB(GetMapiv, 268, GetMapiv@12)
  412.         GL_STUB(GetMaterialfv, 269, GetMaterialfv@12)
  413.         GL_STUB(GetMaterialiv, 270, GetMaterialiv@12)
  414.         GL_STUB(GetPixelMapfv, 271, GetPixelMapfv@8)
  415.         GL_STUB(GetPixelMapuiv, 272, GetPixelMapuiv@8)
  416.         GL_STUB(GetPixelMapusv, 273, GetPixelMapusv@8)
  417.         GL_STUB(GetPolygonStipple, 274, GetPolygonStipple@4)
  418.         GL_STUB(GetString, 275, GetString@4)
  419.         GL_STUB(GetTexEnvfv, 276, GetTexEnvfv@12)
  420.         GL_STUB(GetTexEnviv, 277, GetTexEnviv@12)
  421.         GL_STUB(GetTexGendv, 278, GetTexGendv@12)
  422.         GL_STUB(GetTexGenfv, 279, GetTexGenfv@12)
  423.         GL_STUB(GetTexGeniv, 280, GetTexGeniv@12)
  424.         GL_STUB(GetTexImage, 281, GetTexImage@20)
  425.         GL_STUB(GetTexParameterfv, 282, GetTexParameterfv@12)
  426.         GL_STUB(GetTexParameteriv, 283, GetTexParameteriv@12)
  427.         GL_STUB(GetTexLevelParameterfv, 284, GetTexLevelParameterfv@16)
  428.         GL_STUB(GetTexLevelParameteriv, 285, GetTexLevelParameteriv@16)
  429.         GL_STUB(IsEnabled, 286, IsEnabled@4)
  430.         GL_STUB(IsList, 287, IsList@4)
  431.         GL_STUB(DepthRange, 288, DepthRange@16)
  432.         GL_STUB(Frustum, 289, Frustum@48)
  433.         GL_STUB(LoadIdentity, 290, LoadIdentity@0)
  434.         GL_STUB(LoadMatrixf, 291, LoadMatrixf@4)
  435.         GL_STUB(LoadMatrixd, 292, LoadMatrixd@4)
  436.         GL_STUB(MatrixMode, 293, MatrixMode@4)
  437.         GL_STUB(MultMatrixf, 294, MultMatrixf@4)
  438.         GL_STUB(MultMatrixd, 295, MultMatrixd@4)
  439.         GL_STUB(Ortho, 296, Ortho@48)
  440.         GL_STUB(PopMatrix, 297, PopMatrix@0)
  441.         GL_STUB(PushMatrix, 298, PushMatrix@0)
  442.         GL_STUB(Rotated, 299, Rotated@32)
  443.         GL_STUB(Rotatef, 300, Rotatef@16)
  444.         GL_STUB(Scaled, 301, Scaled@24)
  445.         GL_STUB(Scalef, 302, Scalef@12)
  446.         GL_STUB(Translated, 303, Translated@24)
  447.         GL_STUB(Translatef, 304, Translatef@12)
  448.         GL_STUB(Viewport, 305, Viewport@16)
  449.         GL_STUB(ArrayElement, 306, ArrayElement@4)
  450.         GL_STUB(BindTexture, 307, BindTexture@8)
  451.         GL_STUB(ColorPointer, 308, ColorPointer@16)
  452.         GL_STUB(DisableClientState, 309, DisableClientState@4)
  453.         GL_STUB(DrawArrays, 310, DrawArrays@12)
  454.         GL_STUB(DrawElements, 311, DrawElements@16)
  455.         GL_STUB(EdgeFlagPointer, 312, EdgeFlagPointer@8)
  456.         GL_STUB(EnableClientState, 313, EnableClientState@4)
  457.         GL_STUB(IndexPointer, 314, IndexPointer@12)
  458.         GL_STUB(Indexub, 315, Indexub@4)
  459.         GL_STUB(Indexubv, 316, Indexubv@4)
  460.         GL_STUB(InterleavedArrays, 317, InterleavedArrays@12)
  461.         GL_STUB(NormalPointer, 318, NormalPointer@12)
  462.         GL_STUB(PolygonOffset, 319, PolygonOffset@8)
  463.         GL_STUB(TexCoordPointer, 320, TexCoordPointer@16)
  464.         GL_STUB(VertexPointer, 321, VertexPointer@16)
  465.         GL_STUB(AreTexturesResident, 322, AreTexturesResident@12)
  466.         GL_STUB(CopyTexImage1D, 323, CopyTexImage1D@28)
  467.         GL_STUB(CopyTexImage2D, 324, CopyTexImage2D@32)
  468.         GL_STUB(CopyTexSubImage1D, 325, CopyTexSubImage1D@24)
  469.         GL_STUB(CopyTexSubImage2D, 326, CopyTexSubImage2D@32)
  470.         GL_STUB(DeleteTextures, 327, DeleteTextures@8)
  471.         GL_STUB(GenTextures, 328, GenTextures@8)
  472.         GL_STUB(GetPointerv, 329, GetPointerv@8)
  473.         GL_STUB(IsTexture, 330, IsTexture@4)
  474.         GL_STUB(PrioritizeTextures, 331, PrioritizeTextures@12)
  475.         GL_STUB(TexSubImage1D, 332, TexSubImage1D@28)
  476.         GL_STUB(TexSubImage2D, 333, TexSubImage2D@36)
  477.         GL_STUB(PopClientAttrib, 334, PopClientAttrib@0)
  478.         GL_STUB(PushClientAttrib, 335, PushClientAttrib@4)
  479.         GL_STUB(BlendColor, 336, BlendColor@16)
  480.         GL_STUB(BlendEquation, 337, BlendEquation@4)
  481.         GL_STUB(DrawRangeElements, 338, DrawRangeElements@24)
  482.         GL_STUB(ColorTable, 339, ColorTable@24)
  483.         GL_STUB(ColorTableParameterfv, 340, ColorTableParameterfv@12)
  484.         GL_STUB(ColorTableParameteriv, 341, ColorTableParameteriv@12)
  485.         GL_STUB(CopyColorTable, 342, CopyColorTable@20)
  486.         GL_STUB(GetColorTable, 343, GetColorTable@16)
  487.         GL_STUB(GetColorTableParameterfv, 344, GetColorTableParameterfv@12)
  488.         GL_STUB(GetColorTableParameteriv, 345, GetColorTableParameteriv@12)
  489.         GL_STUB(ColorSubTable, 346, ColorSubTable@24)
  490.         GL_STUB(CopyColorSubTable, 347, CopyColorSubTable@20)
  491.         GL_STUB(ConvolutionFilter1D, 348, ConvolutionFilter1D@24)
  492.         GL_STUB(ConvolutionFilter2D, 349, ConvolutionFilter2D@28)
  493.         GL_STUB(ConvolutionParameterf, 350, ConvolutionParameterf@12)
  494.         GL_STUB(ConvolutionParameterfv, 351, ConvolutionParameterfv@12)
  495.         GL_STUB(ConvolutionParameteri, 352, ConvolutionParameteri@12)
  496.         GL_STUB(ConvolutionParameteriv, 353, ConvolutionParameteriv@12)
  497.         GL_STUB(CopyConvolutionFilter1D, 354, CopyConvolutionFilter1D@20)
  498.         GL_STUB(CopyConvolutionFilter2D, 355, CopyConvolutionFilter2D@24)
  499.         GL_STUB(GetConvolutionFilter, 356, GetConvolutionFilter@16)
  500.         GL_STUB(GetConvolutionParameterfv, 357, GetConvolutionParameterfv@12)
  501.         GL_STUB(GetConvolutionParameteriv, 358, GetConvolutionParameteriv@12)
  502.         GL_STUB(GetSeparableFilter, 359, GetSeparableFilter@24)
  503.         GL_STUB(SeparableFilter2D, 360, SeparableFilter2D@32)
  504.         GL_STUB(GetHistogram, 361, GetHistogram@20)
  505.         GL_STUB(GetHistogramParameterfv, 362, GetHistogramParameterfv@12)
  506.         GL_STUB(GetHistogramParameteriv, 363, GetHistogramParameteriv@12)
  507.         GL_STUB(GetMinmax, 364, GetMinmax@20)
  508.         GL_STUB(GetMinmaxParameterfv, 365, GetMinmaxParameterfv@12)
  509.         GL_STUB(GetMinmaxParameteriv, 366, GetMinmaxParameteriv@12)
  510.         GL_STUB(Histogram, 367, Histogram@16)
  511.         GL_STUB(Minmax, 368, Minmax@12)
  512.         GL_STUB(ResetHistogram, 369, ResetHistogram@4)
  513.         GL_STUB(ResetMinmax, 370, ResetMinmax@4)
  514.         GL_STUB(TexImage3D, 371, TexImage3D@40)
  515.         GL_STUB(TexSubImage3D, 372, TexSubImage3D@44)
  516.         GL_STUB(CopyTexSubImage3D, 373, CopyTexSubImage3D@36)
  517.         GL_STUB(ActiveTexture, 374, ActiveTexture@4)
  518.         GL_STUB(ClientActiveTexture, 375, ClientActiveTexture@4)
  519.         GL_STUB(MultiTexCoord1d, 376, MultiTexCoord1d@12)
  520.         GL_STUB(MultiTexCoord1dv, 377, MultiTexCoord1dv@8)
  521.         GL_STUB(MultiTexCoord1fARB, 378, MultiTexCoord1fARB@8)
  522.         GL_STUB(MultiTexCoord1fvARB, 379, MultiTexCoord1fvARB@8)
  523.         GL_STUB(MultiTexCoord1i, 380, MultiTexCoord1i@8)
  524.         GL_STUB(MultiTexCoord1iv, 381, MultiTexCoord1iv@8)
  525.         GL_STUB(MultiTexCoord1s, 382, MultiTexCoord1s@8)
  526.         GL_STUB(MultiTexCoord1sv, 383, MultiTexCoord1sv@8)
  527.         GL_STUB(MultiTexCoord2d, 384, MultiTexCoord2d@20)
  528.         GL_STUB(MultiTexCoord2dv, 385, MultiTexCoord2dv@8)
  529.         GL_STUB(MultiTexCoord2fARB, 386, MultiTexCoord2fARB@12)
  530.         GL_STUB(MultiTexCoord2fvARB, 387, MultiTexCoord2fvARB@8)
  531.         GL_STUB(MultiTexCoord2i, 388, MultiTexCoord2i@12)
  532.         GL_STUB(MultiTexCoord2iv, 389, MultiTexCoord2iv@8)
  533.         GL_STUB(MultiTexCoord2s, 390, MultiTexCoord2s@12)
  534.         GL_STUB(MultiTexCoord2sv, 391, MultiTexCoord2sv@8)
  535.         GL_STUB(MultiTexCoord3d, 392, MultiTexCoord3d@28)
  536.         GL_STUB(MultiTexCoord3dv, 393, MultiTexCoord3dv@8)
  537.         GL_STUB(MultiTexCoord3fARB, 394, MultiTexCoord3fARB@16)
  538.         GL_STUB(MultiTexCoord3fvARB, 395, MultiTexCoord3fvARB@8)
  539.         GL_STUB(MultiTexCoord3i, 396, MultiTexCoord3i@16)
  540.         GL_STUB(MultiTexCoord3iv, 397, MultiTexCoord3iv@8)
  541.         GL_STUB(MultiTexCoord3s, 398, MultiTexCoord3s@16)
  542.         GL_STUB(MultiTexCoord3sv, 399, MultiTexCoord3sv@8)
  543.         GL_STUB(MultiTexCoord4d, 400, MultiTexCoord4d@36)
  544.         GL_STUB(MultiTexCoord4dv, 401, MultiTexCoord4dv@8)
  545.         GL_STUB(MultiTexCoord4fARB, 402, MultiTexCoord4fARB@20)
  546.         GL_STUB(MultiTexCoord4fvARB, 403, MultiTexCoord4fvARB@8)
  547.         GL_STUB(MultiTexCoord4i, 404, MultiTexCoord4i@20)
  548.         GL_STUB(MultiTexCoord4iv, 405, MultiTexCoord4iv@8)
  549.         GL_STUB(MultiTexCoord4s, 406, MultiTexCoord4s@20)
  550.         GL_STUB(MultiTexCoord4sv, 407, MultiTexCoord4sv@8)
  551.         GL_STUB(CompressedTexImage1D, 408, CompressedTexImage1D@28)
  552.         GL_STUB(CompressedTexImage2D, 409, CompressedTexImage2D@32)
  553.         GL_STUB(CompressedTexImage3D, 410, CompressedTexImage3D@36)
  554.         GL_STUB(CompressedTexSubImage1D, 411, CompressedTexSubImage1D@28)
  555.         GL_STUB(CompressedTexSubImage2D, 412, CompressedTexSubImage2D@36)
  556.         GL_STUB(CompressedTexSubImage3D, 413, CompressedTexSubImage3D@44)
  557.         GL_STUB(GetCompressedTexImage, 414, GetCompressedTexImage@12)
  558.         GL_STUB(LoadTransposeMatrixd, 415, LoadTransposeMatrixd@4)
  559.         GL_STUB(LoadTransposeMatrixf, 416, LoadTransposeMatrixf@4)
  560.         GL_STUB(MultTransposeMatrixd, 417, MultTransposeMatrixd@4)
  561.         GL_STUB(MultTransposeMatrixf, 418, MultTransposeMatrixf@4)
  562.         GL_STUB(SampleCoverage, 419, SampleCoverage@8)
  563.         GL_STUB(BlendFuncSeparate, 420, BlendFuncSeparate@16)
  564.         GL_STUB(FogCoordPointer, 421, FogCoordPointer@12)
  565.         GL_STUB(FogCoordd, 422, FogCoordd@8)
  566.         GL_STUB(FogCoorddv, 423, FogCoorddv@4)
  567.         GL_STUB(MultiDrawArrays, 424, MultiDrawArrays@16)
  568.         GL_STUB(PointParameterf, 425, PointParameterf@8)
  569.         GL_STUB(PointParameterfv, 426, PointParameterfv@8)
  570.         GL_STUB(PointParameteri, 427, PointParameteri@8)
  571.         GL_STUB(PointParameteriv, 428, PointParameteriv@8)
  572.         GL_STUB(SecondaryColor3b, 429, SecondaryColor3b@12)
  573.         GL_STUB(SecondaryColor3bv, 430, SecondaryColor3bv@4)
  574.         GL_STUB(SecondaryColor3d, 431, SecondaryColor3d@24)
  575.         GL_STUB(SecondaryColor3dv, 432, SecondaryColor3dv@4)
  576.         GL_STUB(SecondaryColor3i, 433, SecondaryColor3i@12)
  577.         GL_STUB(SecondaryColor3iv, 434, SecondaryColor3iv@4)
  578.         GL_STUB(SecondaryColor3s, 435, SecondaryColor3s@12)
  579.         GL_STUB(SecondaryColor3sv, 436, SecondaryColor3sv@4)
  580.         GL_STUB(SecondaryColor3ub, 437, SecondaryColor3ub@12)
  581.         GL_STUB(SecondaryColor3ubv, 438, SecondaryColor3ubv@4)
  582.         GL_STUB(SecondaryColor3ui, 439, SecondaryColor3ui@12)
  583.         GL_STUB(SecondaryColor3uiv, 440, SecondaryColor3uiv@4)
  584.         GL_STUB(SecondaryColor3us, 441, SecondaryColor3us@12)
  585.         GL_STUB(SecondaryColor3usv, 442, SecondaryColor3usv@4)
  586.         GL_STUB(SecondaryColorPointer, 443, SecondaryColorPointer@16)
  587.         GL_STUB(WindowPos2d, 444, WindowPos2d@16)
  588.         GL_STUB(WindowPos2dv, 445, WindowPos2dv@4)
  589.         GL_STUB(WindowPos2f, 446, WindowPos2f@8)
  590.         GL_STUB(WindowPos2fv, 447, WindowPos2fv@4)
  591.         GL_STUB(WindowPos2i, 448, WindowPos2i@8)
  592.         GL_STUB(WindowPos2iv, 449, WindowPos2iv@4)
  593.         GL_STUB(WindowPos2s, 450, WindowPos2s@8)
  594.         GL_STUB(WindowPos2sv, 451, WindowPos2sv@4)
  595.         GL_STUB(WindowPos3d, 452, WindowPos3d@24)
  596.         GL_STUB(WindowPos3dv, 453, WindowPos3dv@4)
  597.         GL_STUB(WindowPos3f, 454, WindowPos3f@12)
  598.         GL_STUB(WindowPos3fv, 455, WindowPos3fv@4)
  599.         GL_STUB(WindowPos3i, 456, WindowPos3i@12)
  600.         GL_STUB(WindowPos3iv, 457, WindowPos3iv@4)
  601.         GL_STUB(WindowPos3s, 458, WindowPos3s@12)
  602.         GL_STUB(WindowPos3sv, 459, WindowPos3sv@4)
  603.         GL_STUB(BeginQuery, 460, BeginQuery@8)
  604.         GL_STUB(BindBuffer, 461, BindBuffer@8)
  605.         GL_STUB(BufferData, 462, BufferData@16)
  606.         GL_STUB(BufferSubData, 463, BufferSubData@16)
  607.         GL_STUB(DeleteBuffers, 464, DeleteBuffers@8)
  608.         GL_STUB(DeleteQueries, 465, DeleteQueries@8)
  609.         GL_STUB(EndQuery, 466, EndQuery@4)
  610.         GL_STUB(GenBuffers, 467, GenBuffers@8)
  611.         GL_STUB(GenQueries, 468, GenQueries@8)
  612.         GL_STUB(GetBufferParameteriv, 469, GetBufferParameteriv@12)
  613.         GL_STUB(GetBufferPointerv, 470, GetBufferPointerv@12)
  614.         GL_STUB(GetBufferSubData, 471, GetBufferSubData@16)
  615.         GL_STUB(GetQueryObjectiv, 472, GetQueryObjectiv@12)
  616.         GL_STUB(GetQueryObjectuiv, 473, GetQueryObjectuiv@12)
  617.         GL_STUB(GetQueryiv, 474, GetQueryiv@12)
  618.         GL_STUB(IsBuffer, 475, IsBuffer@4)
  619.         GL_STUB(IsQuery, 476, IsQuery@4)
  620.         GL_STUB(MapBuffer, 477, MapBuffer@8)
  621.         GL_STUB(UnmapBuffer, 478, UnmapBuffer@4)
  622.         GL_STUB(AttachShader, 479, AttachShader@8)
  623.         GL_STUB(BindAttribLocation, 480, BindAttribLocation@12)
  624.         GL_STUB(BlendEquationSeparate, 481, BlendEquationSeparate@8)
  625.         GL_STUB(CompileShader, 482, CompileShader@4)
  626.         GL_STUB(CreateProgram, 483, CreateProgram@0)
  627.         GL_STUB(CreateShader, 484, CreateShader@4)
  628.         GL_STUB(DeleteProgram, 485, DeleteProgram@4)
  629.         GL_STUB(DeleteShader, 486, DeleteShader@4)
  630.         GL_STUB(DetachShader, 487, DetachShader@8)
  631.         GL_STUB(DisableVertexAttribArray, 488, DisableVertexAttribArray@4)
  632.         GL_STUB(DrawBuffers, 489, DrawBuffers@8)
  633.         GL_STUB(EnableVertexAttribArray, 490, EnableVertexAttribArray@4)
  634.         GL_STUB(GetActiveAttrib, 491, GetActiveAttrib@28)
  635.         GL_STUB(GetActiveUniform, 492, GetActiveUniform@28)
  636.         GL_STUB(GetAttachedShaders, 493, GetAttachedShaders@16)
  637.         GL_STUB(GetAttribLocation, 494, GetAttribLocation@8)
  638.         GL_STUB(GetProgramInfoLog, 495, GetProgramInfoLog@16)
  639.         GL_STUB(GetProgramiv, 496, GetProgramiv@12)
  640.         GL_STUB(GetShaderInfoLog, 497, GetShaderInfoLog@16)
  641.         GL_STUB(GetShaderSource, 498, GetShaderSource@16)
  642.         GL_STUB(GetShaderiv, 499, GetShaderiv@12)
  643.         GL_STUB(GetUniformLocation, 500, GetUniformLocation@8)
  644.         GL_STUB(GetUniformfv, 501, GetUniformfv@12)
  645.         GL_STUB(GetUniformiv, 502, GetUniformiv@12)
  646.         GL_STUB(GetVertexAttribPointerv, 503, GetVertexAttribPointerv@12)
  647.         GL_STUB(GetVertexAttribdv, 504, GetVertexAttribdv@12)
  648.         GL_STUB(GetVertexAttribfv, 505, GetVertexAttribfv@12)
  649.         GL_STUB(GetVertexAttribiv, 506, GetVertexAttribiv@12)
  650.         GL_STUB(IsProgram, 507, IsProgram@4)
  651.         GL_STUB(IsShader, 508, IsShader@4)
  652.         GL_STUB(LinkProgram, 509, LinkProgram@4)
  653.         GL_STUB(ShaderSource, 510, ShaderSource@16)
  654.         GL_STUB(StencilFuncSeparate, 511, StencilFuncSeparate@16)
  655.         GL_STUB(StencilMaskSeparate, 512, StencilMaskSeparate@8)
  656.         GL_STUB(StencilOpSeparate, 513, StencilOpSeparate@16)
  657.         GL_STUB(Uniform1f, 514, Uniform1f@8)
  658.         GL_STUB(Uniform1fv, 515, Uniform1fv@12)
  659.         GL_STUB(Uniform1i, 516, Uniform1i@8)
  660.         GL_STUB(Uniform1iv, 517, Uniform1iv@12)
  661.         GL_STUB(Uniform2f, 518, Uniform2f@12)
  662.         GL_STUB(Uniform2fv, 519, Uniform2fv@12)
  663.         GL_STUB(Uniform2i, 520, Uniform2i@12)
  664.         GL_STUB(Uniform2iv, 521, Uniform2iv@12)
  665.         GL_STUB(Uniform3f, 522, Uniform3f@16)
  666.         GL_STUB(Uniform3fv, 523, Uniform3fv@12)
  667.         GL_STUB(Uniform3i, 524, Uniform3i@16)
  668.         GL_STUB(Uniform3iv, 525, Uniform3iv@12)
  669.         GL_STUB(Uniform4f, 526, Uniform4f@20)
  670.         GL_STUB(Uniform4fv, 527, Uniform4fv@12)
  671.         GL_STUB(Uniform4i, 528, Uniform4i@20)
  672.         GL_STUB(Uniform4iv, 529, Uniform4iv@12)
  673.         GL_STUB(UniformMatrix2fv, 530, UniformMatrix2fv@16)
  674.         GL_STUB(UniformMatrix3fv, 531, UniformMatrix3fv@16)
  675.         GL_STUB(UniformMatrix4fv, 532, UniformMatrix4fv@16)
  676.         GL_STUB(UseProgram, 533, UseProgram@4)
  677.         GL_STUB(ValidateProgram, 534, ValidateProgram@4)
  678.         GL_STUB(VertexAttrib1d, 535, VertexAttrib1d@12)
  679.         GL_STUB(VertexAttrib1dv, 536, VertexAttrib1dv@8)
  680.         GL_STUB(VertexAttrib1s, 537, VertexAttrib1s@8)
  681.         GL_STUB(VertexAttrib1sv, 538, VertexAttrib1sv@8)
  682.         GL_STUB(VertexAttrib2d, 539, VertexAttrib2d@20)
  683.         GL_STUB(VertexAttrib2dv, 540, VertexAttrib2dv@8)
  684.         GL_STUB(VertexAttrib2s, 541, VertexAttrib2s@12)
  685.         GL_STUB(VertexAttrib2sv, 542, VertexAttrib2sv@8)
  686.         GL_STUB(VertexAttrib3d, 543, VertexAttrib3d@28)
  687.         GL_STUB(VertexAttrib3dv, 544, VertexAttrib3dv@8)
  688.         GL_STUB(VertexAttrib3s, 545, VertexAttrib3s@16)
  689.         GL_STUB(VertexAttrib3sv, 546, VertexAttrib3sv@8)
  690.         GL_STUB(VertexAttrib4Nbv, 547, VertexAttrib4Nbv@8)
  691.         GL_STUB(VertexAttrib4Niv, 548, VertexAttrib4Niv@8)
  692.         GL_STUB(VertexAttrib4Nsv, 549, VertexAttrib4Nsv@8)
  693.         GL_STUB(VertexAttrib4Nub, 550, VertexAttrib4Nub@20)
  694.         GL_STUB(VertexAttrib4Nubv, 551, VertexAttrib4Nubv@8)
  695.         GL_STUB(VertexAttrib4Nuiv, 552, VertexAttrib4Nuiv@8)
  696.         GL_STUB(VertexAttrib4Nusv, 553, VertexAttrib4Nusv@8)
  697.         GL_STUB(VertexAttrib4bv, 554, VertexAttrib4bv@8)
  698.         GL_STUB(VertexAttrib4d, 555, VertexAttrib4d@36)
  699.         GL_STUB(VertexAttrib4dv, 556, VertexAttrib4dv@8)
  700.         GL_STUB(VertexAttrib4iv, 557, VertexAttrib4iv@8)
  701.         GL_STUB(VertexAttrib4s, 558, VertexAttrib4s@20)
  702.         GL_STUB(VertexAttrib4sv, 559, VertexAttrib4sv@8)
  703.         GL_STUB(VertexAttrib4ubv, 560, VertexAttrib4ubv@8)
  704.         GL_STUB(VertexAttrib4uiv, 561, VertexAttrib4uiv@8)
  705.         GL_STUB(VertexAttrib4usv, 562, VertexAttrib4usv@8)
  706.         GL_STUB(VertexAttribPointer, 563, VertexAttribPointer@24)
  707.         GL_STUB(UniformMatrix2x3fv, 564, UniformMatrix2x3fv@16)
  708.         GL_STUB(UniformMatrix2x4fv, 565, UniformMatrix2x4fv@16)
  709.         GL_STUB(UniformMatrix3x2fv, 566, UniformMatrix3x2fv@16)
  710.         GL_STUB(UniformMatrix3x4fv, 567, UniformMatrix3x4fv@16)
  711.         GL_STUB(UniformMatrix4x2fv, 568, UniformMatrix4x2fv@16)
  712.         GL_STUB(UniformMatrix4x3fv, 569, UniformMatrix4x3fv@16)
  713.         GL_STUB(BeginConditionalRender, 570, BeginConditionalRender@8)
  714.         GL_STUB(BeginTransformFeedback, 571, BeginTransformFeedback@4)
  715.         GL_STUB(BindBufferBase, 572, BindBufferBase@12)
  716.         GL_STUB(BindBufferRange, 573, BindBufferRange@20)
  717.         GL_STUB(BindFragDataLocation, 574, BindFragDataLocation@12)
  718.         GL_STUB(ClampColor, 575, ClampColor@8)
  719.         GL_STUB(ClearBufferfi, 576, ClearBufferfi@16)
  720.         GL_STUB(ClearBufferfv, 577, ClearBufferfv@12)
  721.         GL_STUB(ClearBufferiv, 578, ClearBufferiv@12)
  722.         GL_STUB(ClearBufferuiv, 579, ClearBufferuiv@12)
  723.         GL_STUB(ColorMaski, 580, ColorMaski@20)
  724.         GL_STUB(Disablei, 581, Disablei@8)
  725.         GL_STUB(Enablei, 582, Enablei@8)
  726.         GL_STUB(EndConditionalRender, 583, EndConditionalRender@0)
  727.         GL_STUB(EndTransformFeedback, 584, EndTransformFeedback@0)
  728.         GL_STUB(GetBooleani_v, 585, GetBooleani_v@12)
  729.         GL_STUB(GetFragDataLocation, 586, GetFragDataLocation@8)
  730.         GL_STUB(GetIntegeri_v, 587, GetIntegeri_v@12)
  731.         GL_STUB(GetStringi, 588, GetStringi@8)
  732.         GL_STUB(GetTexParameterIiv, 589, GetTexParameterIiv@12)
  733.         GL_STUB(GetTexParameterIuiv, 590, GetTexParameterIuiv@12)
  734.         GL_STUB(GetTransformFeedbackVarying, 591, GetTransformFeedbackVarying@28)
  735.         GL_STUB(GetUniformuiv, 592, GetUniformuiv@12)
  736.         GL_STUB(GetVertexAttribIiv, 593, GetVertexAttribIiv@12)
  737.         GL_STUB(GetVertexAttribIuiv, 594, GetVertexAttribIuiv@12)
  738.         GL_STUB(IsEnabledi, 595, IsEnabledi@8)
  739.         GL_STUB(TexParameterIiv, 596, TexParameterIiv@12)
  740.         GL_STUB(TexParameterIuiv, 597, TexParameterIuiv@12)
  741.         GL_STUB(TransformFeedbackVaryings, 598, TransformFeedbackVaryings@16)
  742.         GL_STUB(Uniform1ui, 599, Uniform1ui@8)
  743.         GL_STUB(Uniform1uiv, 600, Uniform1uiv@12)
  744.         GL_STUB(Uniform2ui, 601, Uniform2ui@12)
  745.         GL_STUB(Uniform2uiv, 602, Uniform2uiv@12)
  746.         GL_STUB(Uniform3ui, 603, Uniform3ui@16)
  747.         GL_STUB(Uniform3uiv, 604, Uniform3uiv@12)
  748.         GL_STUB(Uniform4ui, 605, Uniform4ui@20)
  749.         GL_STUB(Uniform4uiv, 606, Uniform4uiv@12)
  750.         GL_STUB(VertexAttribI1iv, 607, VertexAttribI1iv@8)
  751.         GL_STUB(VertexAttribI1uiv, 608, VertexAttribI1uiv@8)
  752.         GL_STUB(VertexAttribI4bv, 609, VertexAttribI4bv@8)
  753.         GL_STUB(VertexAttribI4sv, 610, VertexAttribI4sv@8)
  754.         GL_STUB(VertexAttribI4ubv, 611, VertexAttribI4ubv@8)
  755.         GL_STUB(VertexAttribI4usv, 612, VertexAttribI4usv@8)
  756.         GL_STUB(VertexAttribIPointer, 613, VertexAttribIPointer@20)
  757.         GL_STUB(PrimitiveRestartIndex, 614, PrimitiveRestartIndex@4)
  758.         GL_STUB(TexBuffer, 615, TexBuffer@12)
  759.         GL_STUB(FramebufferTexture, 616, FramebufferTexture@16)
  760.         GL_STUB(GetBufferParameteri64v, 617, GetBufferParameteri64v@12)
  761.         GL_STUB(GetInteger64i_v, 618, GetInteger64i_v@12)
  762.         GL_STUB(VertexAttribDivisor, 619, VertexAttribDivisor@8)
  763.         GL_STUB(MinSampleShading, 620, MinSampleShading@4)
  764.         GL_STUB(BindProgramARB, 621, BindProgramARB@8)
  765.         GL_STUB(DeleteProgramsARB, 622, DeleteProgramsARB@8)
  766.         GL_STUB(GenProgramsARB, 623, GenProgramsARB@8)
  767.         GL_STUB(GetProgramEnvParameterdvARB, 624, GetProgramEnvParameterdvARB@12)
  768.         GL_STUB(GetProgramEnvParameterfvARB, 625, GetProgramEnvParameterfvARB@12)
  769.         GL_STUB(GetProgramLocalParameterdvARB, 626, GetProgramLocalParameterdvARB@12)
  770.         GL_STUB(GetProgramLocalParameterfvARB, 627, GetProgramLocalParameterfvARB@12)
  771.         GL_STUB(GetProgramStringARB, 628, GetProgramStringARB@12)
  772.         GL_STUB(GetProgramivARB, 629, GetProgramivARB@12)
  773.         GL_STUB(IsProgramARB, 630, IsProgramARB@4)
  774.         GL_STUB(ProgramEnvParameter4dARB, 631, ProgramEnvParameter4dARB@40)
  775.         GL_STUB(ProgramEnvParameter4dvARB, 632, ProgramEnvParameter4dvARB@12)
  776.         GL_STUB(ProgramEnvParameter4fARB, 633, ProgramEnvParameter4fARB@24)
  777.         GL_STUB(ProgramEnvParameter4fvARB, 634, ProgramEnvParameter4fvARB@12)
  778.         GL_STUB(ProgramLocalParameter4dARB, 635, ProgramLocalParameter4dARB@40)
  779.         GL_STUB(ProgramLocalParameter4dvARB, 636, ProgramLocalParameter4dvARB@12)
  780.         GL_STUB(ProgramLocalParameter4fARB, 637, ProgramLocalParameter4fARB@24)
  781.         GL_STUB(ProgramLocalParameter4fvARB, 638, ProgramLocalParameter4fvARB@12)
  782.         GL_STUB(ProgramStringARB, 639, ProgramStringARB@16)
  783.         GL_STUB(VertexAttrib1fARB, 640, VertexAttrib1fARB@8)
  784.         GL_STUB(VertexAttrib1fvARB, 641, VertexAttrib1fvARB@8)
  785.         GL_STUB(VertexAttrib2fARB, 642, VertexAttrib2fARB@12)
  786.         GL_STUB(VertexAttrib2fvARB, 643, VertexAttrib2fvARB@8)
  787.         GL_STUB(VertexAttrib3fARB, 644, VertexAttrib3fARB@16)
  788.         GL_STUB(VertexAttrib3fvARB, 645, VertexAttrib3fvARB@8)
  789.         GL_STUB(VertexAttrib4fARB, 646, VertexAttrib4fARB@20)
  790.         GL_STUB(VertexAttrib4fvARB, 647, VertexAttrib4fvARB@8)
  791.         GL_STUB(AttachObjectARB, 648, AttachObjectARB@8)
  792.         GL_STUB(CreateProgramObjectARB, 649, CreateProgramObjectARB@0)
  793.         GL_STUB(CreateShaderObjectARB, 650, CreateShaderObjectARB@4)
  794.         GL_STUB(DeleteObjectARB, 651, DeleteObjectARB@4)
  795.         GL_STUB(DetachObjectARB, 652, DetachObjectARB@8)
  796.         GL_STUB(GetAttachedObjectsARB, 653, GetAttachedObjectsARB@16)
  797.         GL_STUB(GetHandleARB, 654, GetHandleARB@4)
  798.         GL_STUB(GetInfoLogARB, 655, GetInfoLogARB@16)
  799.         GL_STUB(GetObjectParameterfvARB, 656, GetObjectParameterfvARB@12)
  800.         GL_STUB(GetObjectParameterivARB, 657, GetObjectParameterivARB@12)
  801.         GL_STUB(DrawArraysInstancedARB, 658, DrawArraysInstancedARB@16)
  802.         GL_STUB(DrawElementsInstancedARB, 659, DrawElementsInstancedARB@20)
  803.         GL_STUB(BindFramebuffer, 660, BindFramebuffer@8)
  804.         GL_STUB(BindRenderbuffer, 661, BindRenderbuffer@8)
  805.         GL_STUB(BlitFramebuffer, 662, BlitFramebuffer@40)
  806.         GL_STUB(CheckFramebufferStatus, 663, CheckFramebufferStatus@4)
  807.         GL_STUB(DeleteFramebuffers, 664, DeleteFramebuffers@8)
  808.         GL_STUB(DeleteRenderbuffers, 665, DeleteRenderbuffers@8)
  809.         GL_STUB(FramebufferRenderbuffer, 666, FramebufferRenderbuffer@16)
  810.         GL_STUB(FramebufferTexture1D, 667, FramebufferTexture1D@20)
  811.         GL_STUB(FramebufferTexture2D, 668, FramebufferTexture2D@20)
  812.         GL_STUB(FramebufferTexture3D, 669, FramebufferTexture3D@24)
  813.         GL_STUB(FramebufferTextureLayer, 670, FramebufferTextureLayer@20)
  814.         GL_STUB(GenFramebuffers, 671, GenFramebuffers@8)
  815.         GL_STUB(GenRenderbuffers, 672, GenRenderbuffers@8)
  816.         GL_STUB(GenerateMipmap, 673, GenerateMipmap@4)
  817.         GL_STUB(GetFramebufferAttachmentParameteriv, 674, GetFramebufferAttachmentParameteriv@16)
  818.         GL_STUB(GetRenderbufferParameteriv, 675, GetRenderbufferParameteriv@12)
  819.         GL_STUB(IsFramebuffer, 676, IsFramebuffer@4)
  820.         GL_STUB(IsRenderbuffer, 677, IsRenderbuffer@4)
  821.         GL_STUB(RenderbufferStorage, 678, RenderbufferStorage@16)
  822.         GL_STUB(RenderbufferStorageMultisample, 679, RenderbufferStorageMultisample@20)
  823.         GL_STUB(FlushMappedBufferRange, 680, FlushMappedBufferRange@12)
  824.         GL_STUB(MapBufferRange, 681, MapBufferRange@16)
  825.         GL_STUB(BindVertexArray, 682, BindVertexArray@4)
  826.         GL_STUB(DeleteVertexArrays, 683, DeleteVertexArrays@8)
  827.         GL_STUB(GenVertexArrays, 684, GenVertexArrays@8)
  828.         GL_STUB(IsVertexArray, 685, IsVertexArray@4)
  829.         GL_STUB(GetActiveUniformBlockName, 686, GetActiveUniformBlockName@20)
  830.         GL_STUB(GetActiveUniformBlockiv, 687, GetActiveUniformBlockiv@16)
  831.         GL_STUB(GetActiveUniformName, 688, GetActiveUniformName@20)
  832.         GL_STUB(GetActiveUniformsiv, 689, GetActiveUniformsiv@20)
  833.         GL_STUB(GetUniformBlockIndex, 690, GetUniformBlockIndex@8)
  834.         GL_STUB(GetUniformIndices, 691, GetUniformIndices@16)
  835.         GL_STUB(UniformBlockBinding, 692, UniformBlockBinding@12)
  836.         GL_STUB(CopyBufferSubData, 693, CopyBufferSubData@20)
  837.         GL_STUB(ClientWaitSync, 694, ClientWaitSync@12)
  838.         GL_STUB(DeleteSync, 695, DeleteSync@4)
  839.         GL_STUB(FenceSync, 696, FenceSync@8)
  840.         GL_STUB(GetInteger64v, 697, GetInteger64v@8)
  841.         GL_STUB(GetSynciv, 698, GetSynciv@20)
  842.         GL_STUB(IsSync, 699, IsSync@4)
  843.         GL_STUB(WaitSync, 700, WaitSync@12)
  844.         GL_STUB(DrawElementsBaseVertex, 701, DrawElementsBaseVertex@20)
  845.         GL_STUB(DrawElementsInstancedBaseVertex, 702, DrawElementsInstancedBaseVertex@24)
  846.         GL_STUB(DrawRangeElementsBaseVertex, 703, DrawRangeElementsBaseVertex@28)
  847.         GL_STUB(MultiDrawElementsBaseVertex, 704, MultiDrawElementsBaseVertex@24)
  848.         GL_STUB(ProvokingVertex, 705, ProvokingVertex@4)
  849.         GL_STUB(GetMultisamplefv, 706, GetMultisamplefv@12)
  850.         GL_STUB(SampleMaski, 707, SampleMaski@8)
  851.         GL_STUB(TexImage2DMultisample, 708, TexImage2DMultisample@24)
  852.         GL_STUB(TexImage3DMultisample, 709, TexImage3DMultisample@28)
  853.         GL_STUB(BlendEquationSeparateiARB, 710, BlendEquationSeparateiARB@12)
  854.         GL_STUB(BlendEquationiARB, 711, BlendEquationiARB@8)
  855.         GL_STUB(BlendFuncSeparateiARB, 712, BlendFuncSeparateiARB@20)
  856.         GL_STUB(BlendFunciARB, 713, BlendFunciARB@12)
  857.         GL_STUB(BindFragDataLocationIndexed, 714, BindFragDataLocationIndexed@16)
  858.         GL_STUB(GetFragDataIndex, 715, GetFragDataIndex@8)
  859.         GL_STUB(BindSampler, 716, BindSampler@8)
  860.         GL_STUB(DeleteSamplers, 717, DeleteSamplers@8)
  861.         GL_STUB(GenSamplers, 718, GenSamplers@8)
  862.         GL_STUB(GetSamplerParameterIiv, 719, GetSamplerParameterIiv@12)
  863.         GL_STUB(GetSamplerParameterIuiv, 720, GetSamplerParameterIuiv@12)
  864.         GL_STUB(GetSamplerParameterfv, 721, GetSamplerParameterfv@12)
  865.         GL_STUB(GetSamplerParameteriv, 722, GetSamplerParameteriv@12)
  866.         GL_STUB(IsSampler, 723, IsSampler@4)
  867.         GL_STUB(SamplerParameterIiv, 724, SamplerParameterIiv@12)
  868.         GL_STUB(SamplerParameterIuiv, 725, SamplerParameterIuiv@12)
  869.         GL_STUB(SamplerParameterf, 726, SamplerParameterf@12)
  870.         GL_STUB(SamplerParameterfv, 727, SamplerParameterfv@12)
  871.         GL_STUB(SamplerParameteri, 728, SamplerParameteri@12)
  872.         GL_STUB(SamplerParameteriv, 729, SamplerParameteriv@12)
  873.         GL_STUB(_dispatch_stub_730, 730, _dispatch_stub_730@12)
  874.         HIDDEN(GL_PREFIX(_dispatch_stub_730, _dispatch_stub_730@12))
  875.         GL_STUB(_dispatch_stub_731, 731, _dispatch_stub_731@12)
  876.         HIDDEN(GL_PREFIX(_dispatch_stub_731, _dispatch_stub_731@12))
  877.         GL_STUB(_dispatch_stub_732, 732, _dispatch_stub_732@8)
  878.         HIDDEN(GL_PREFIX(_dispatch_stub_732, _dispatch_stub_732@8))
  879.         GL_STUB(ColorP3ui, 733, ColorP3ui@8)
  880.         GL_STUB(ColorP3uiv, 734, ColorP3uiv@8)
  881.         GL_STUB(ColorP4ui, 735, ColorP4ui@8)
  882.         GL_STUB(ColorP4uiv, 736, ColorP4uiv@8)
  883.         GL_STUB(MultiTexCoordP1ui, 737, MultiTexCoordP1ui@12)
  884.         GL_STUB(MultiTexCoordP1uiv, 738, MultiTexCoordP1uiv@12)
  885.         GL_STUB(MultiTexCoordP2ui, 739, MultiTexCoordP2ui@12)
  886.         GL_STUB(MultiTexCoordP2uiv, 740, MultiTexCoordP2uiv@12)
  887.         GL_STUB(MultiTexCoordP3ui, 741, MultiTexCoordP3ui@12)
  888.         GL_STUB(MultiTexCoordP3uiv, 742, MultiTexCoordP3uiv@12)
  889.         GL_STUB(MultiTexCoordP4ui, 743, MultiTexCoordP4ui@12)
  890.         GL_STUB(MultiTexCoordP4uiv, 744, MultiTexCoordP4uiv@12)
  891.         GL_STUB(NormalP3ui, 745, NormalP3ui@8)
  892.         GL_STUB(NormalP3uiv, 746, NormalP3uiv@8)
  893.         GL_STUB(SecondaryColorP3ui, 747, SecondaryColorP3ui@8)
  894.         GL_STUB(SecondaryColorP3uiv, 748, SecondaryColorP3uiv@8)
  895.         GL_STUB(TexCoordP1ui, 749, TexCoordP1ui@8)
  896.         GL_STUB(TexCoordP1uiv, 750, TexCoordP1uiv@8)
  897.         GL_STUB(TexCoordP2ui, 751, TexCoordP2ui@8)
  898.         GL_STUB(TexCoordP2uiv, 752, TexCoordP2uiv@8)
  899.         GL_STUB(TexCoordP3ui, 753, TexCoordP3ui@8)
  900.         GL_STUB(TexCoordP3uiv, 754, TexCoordP3uiv@8)
  901.         GL_STUB(TexCoordP4ui, 755, TexCoordP4ui@8)
  902.         GL_STUB(TexCoordP4uiv, 756, TexCoordP4uiv@8)
  903.         GL_STUB(VertexAttribP1ui, 757, VertexAttribP1ui@16)
  904.         GL_STUB(VertexAttribP1uiv, 758, VertexAttribP1uiv@16)
  905.         GL_STUB(VertexAttribP2ui, 759, VertexAttribP2ui@16)
  906.         GL_STUB(VertexAttribP2uiv, 760, VertexAttribP2uiv@16)
  907.         GL_STUB(VertexAttribP3ui, 761, VertexAttribP3ui@16)
  908.         GL_STUB(VertexAttribP3uiv, 762, VertexAttribP3uiv@16)
  909.         GL_STUB(VertexAttribP4ui, 763, VertexAttribP4ui@16)
  910.         GL_STUB(VertexAttribP4uiv, 764, VertexAttribP4uiv@16)
  911.         GL_STUB(VertexP2ui, 765, VertexP2ui@8)
  912.         GL_STUB(VertexP2uiv, 766, VertexP2uiv@8)
  913.         GL_STUB(VertexP3ui, 767, VertexP3ui@8)
  914.         GL_STUB(VertexP3uiv, 768, VertexP3uiv@8)
  915.         GL_STUB(VertexP4ui, 769, VertexP4ui@8)
  916.         GL_STUB(VertexP4uiv, 770, VertexP4uiv@8)
  917.         GL_STUB(DrawArraysIndirect, 771, DrawArraysIndirect@8)
  918.         GL_STUB(DrawElementsIndirect, 772, DrawElementsIndirect@12)
  919.         GL_STUB(_dispatch_stub_773, 773, _dispatch_stub_773@12)
  920.         HIDDEN(GL_PREFIX(_dispatch_stub_773, _dispatch_stub_773@12))
  921.         GL_STUB(_dispatch_stub_774, 774, _dispatch_stub_774@12)
  922.         HIDDEN(GL_PREFIX(_dispatch_stub_774, _dispatch_stub_774@12))
  923.         GL_STUB(_dispatch_stub_775, 775, _dispatch_stub_775@12)
  924.         HIDDEN(GL_PREFIX(_dispatch_stub_775, _dispatch_stub_775@12))
  925.         GL_STUB(_dispatch_stub_776, 776, _dispatch_stub_776@20)
  926.         HIDDEN(GL_PREFIX(_dispatch_stub_776, _dispatch_stub_776@20))
  927.         GL_STUB(_dispatch_stub_777, 777, _dispatch_stub_777@12)
  928.         HIDDEN(GL_PREFIX(_dispatch_stub_777, _dispatch_stub_777@12))
  929.         GL_STUB(_dispatch_stub_778, 778, _dispatch_stub_778@28)
  930.         HIDDEN(GL_PREFIX(_dispatch_stub_778, _dispatch_stub_778@28))
  931.         GL_STUB(_dispatch_stub_779, 779, _dispatch_stub_779@12)
  932.         HIDDEN(GL_PREFIX(_dispatch_stub_779, _dispatch_stub_779@12))
  933.         GL_STUB(_dispatch_stub_780, 780, _dispatch_stub_780@36)
  934.         HIDDEN(GL_PREFIX(_dispatch_stub_780, _dispatch_stub_780@36))
  935.         GL_STUB(_dispatch_stub_781, 781, _dispatch_stub_781@12)
  936.         HIDDEN(GL_PREFIX(_dispatch_stub_781, _dispatch_stub_781@12))
  937.         GL_STUB(_dispatch_stub_782, 782, _dispatch_stub_782@16)
  938.         HIDDEN(GL_PREFIX(_dispatch_stub_782, _dispatch_stub_782@16))
  939.         GL_STUB(_dispatch_stub_783, 783, _dispatch_stub_783@16)
  940.         HIDDEN(GL_PREFIX(_dispatch_stub_783, _dispatch_stub_783@16))
  941.         GL_STUB(_dispatch_stub_784, 784, _dispatch_stub_784@16)
  942.         HIDDEN(GL_PREFIX(_dispatch_stub_784, _dispatch_stub_784@16))
  943.         GL_STUB(_dispatch_stub_785, 785, _dispatch_stub_785@16)
  944.         HIDDEN(GL_PREFIX(_dispatch_stub_785, _dispatch_stub_785@16))
  945.         GL_STUB(_dispatch_stub_786, 786, _dispatch_stub_786@16)
  946.         HIDDEN(GL_PREFIX(_dispatch_stub_786, _dispatch_stub_786@16))
  947.         GL_STUB(_dispatch_stub_787, 787, _dispatch_stub_787@16)
  948.         HIDDEN(GL_PREFIX(_dispatch_stub_787, _dispatch_stub_787@16))
  949.         GL_STUB(_dispatch_stub_788, 788, _dispatch_stub_788@16)
  950.         HIDDEN(GL_PREFIX(_dispatch_stub_788, _dispatch_stub_788@16))
  951.         GL_STUB(_dispatch_stub_789, 789, _dispatch_stub_789@16)
  952.         HIDDEN(GL_PREFIX(_dispatch_stub_789, _dispatch_stub_789@16))
  953.         GL_STUB(_dispatch_stub_790, 790, _dispatch_stub_790@16)
  954.         HIDDEN(GL_PREFIX(_dispatch_stub_790, _dispatch_stub_790@16))
  955.         GL_STUB(BindTransformFeedback, 791, BindTransformFeedback@8)
  956.         GL_STUB(DeleteTransformFeedbacks, 792, DeleteTransformFeedbacks@8)
  957.         GL_STUB(DrawTransformFeedback, 793, DrawTransformFeedback@8)
  958.         GL_STUB(GenTransformFeedbacks, 794, GenTransformFeedbacks@8)
  959.         GL_STUB(IsTransformFeedback, 795, IsTransformFeedback@4)
  960.         GL_STUB(PauseTransformFeedback, 796, PauseTransformFeedback@0)
  961.         GL_STUB(ResumeTransformFeedback, 797, ResumeTransformFeedback@0)
  962.         GL_STUB(BeginQueryIndexed, 798, BeginQueryIndexed@12)
  963.         GL_STUB(DrawTransformFeedbackStream, 799, DrawTransformFeedbackStream@12)
  964.         GL_STUB(EndQueryIndexed, 800, EndQueryIndexed@8)
  965.         GL_STUB(GetQueryIndexediv, 801, GetQueryIndexediv@16)
  966.         GL_STUB(ClearDepthf, 802, ClearDepthf@4)
  967.         GL_STUB(DepthRangef, 803, DepthRangef@8)
  968.         GL_STUB(GetShaderPrecisionFormat, 804, GetShaderPrecisionFormat@16)
  969.         GL_STUB(ReleaseShaderCompiler, 805, ReleaseShaderCompiler@0)
  970.         GL_STUB(ShaderBinary, 806, ShaderBinary@20)
  971.         GL_STUB(GetProgramBinary, 807, GetProgramBinary@20)
  972.         GL_STUB(ProgramBinary, 808, ProgramBinary@16)
  973.         GL_STUB(ProgramParameteri, 809, ProgramParameteri@12)
  974.         GL_STUB(_dispatch_stub_810, 810, _dispatch_stub_810@12)
  975.         HIDDEN(GL_PREFIX(_dispatch_stub_810, _dispatch_stub_810@12))
  976.         GL_STUB(_dispatch_stub_811, 811, _dispatch_stub_811@12)
  977.         HIDDEN(GL_PREFIX(_dispatch_stub_811, _dispatch_stub_811@12))
  978.         GL_STUB(_dispatch_stub_812, 812, _dispatch_stub_812@8)
  979.         HIDDEN(GL_PREFIX(_dispatch_stub_812, _dispatch_stub_812@8))
  980.         GL_STUB(_dispatch_stub_813, 813, _dispatch_stub_813@20)
  981.         HIDDEN(GL_PREFIX(_dispatch_stub_813, _dispatch_stub_813@20))
  982.         GL_STUB(_dispatch_stub_814, 814, _dispatch_stub_814@8)
  983.         HIDDEN(GL_PREFIX(_dispatch_stub_814, _dispatch_stub_814@8))
  984.         GL_STUB(_dispatch_stub_815, 815, _dispatch_stub_815@28)
  985.         HIDDEN(GL_PREFIX(_dispatch_stub_815, _dispatch_stub_815@28))
  986.         GL_STUB(_dispatch_stub_816, 816, _dispatch_stub_816@8)
  987.         HIDDEN(GL_PREFIX(_dispatch_stub_816, _dispatch_stub_816@8))
  988.         GL_STUB(_dispatch_stub_817, 817, _dispatch_stub_817@36)
  989.         HIDDEN(GL_PREFIX(_dispatch_stub_817, _dispatch_stub_817@36))
  990.         GL_STUB(_dispatch_stub_818, 818, _dispatch_stub_818@8)
  991.         HIDDEN(GL_PREFIX(_dispatch_stub_818, _dispatch_stub_818@8))
  992.         GL_STUB(_dispatch_stub_819, 819, _dispatch_stub_819@20)
  993.         HIDDEN(GL_PREFIX(_dispatch_stub_819, _dispatch_stub_819@20))
  994.         GL_STUB(DepthRangeArrayv, 820, DepthRangeArrayv@12)
  995.         GL_STUB(DepthRangeIndexed, 821, DepthRangeIndexed@20)
  996.         GL_STUB(GetDoublei_v, 822, GetDoublei_v@12)
  997.         GL_STUB(GetFloati_v, 823, GetFloati_v@12)
  998.         GL_STUB(ScissorArrayv, 824, ScissorArrayv@12)
  999.         GL_STUB(ScissorIndexed, 825, ScissorIndexed@20)
  1000.         GL_STUB(ScissorIndexedv, 826, ScissorIndexedv@8)
  1001.         GL_STUB(ViewportArrayv, 827, ViewportArrayv@12)
  1002.         GL_STUB(ViewportIndexedf, 828, ViewportIndexedf@20)
  1003.         GL_STUB(ViewportIndexedfv, 829, ViewportIndexedfv@8)
  1004.         GL_STUB(GetGraphicsResetStatusARB, 830, GetGraphicsResetStatusARB@0)
  1005.         GL_STUB(GetnColorTableARB, 831, GetnColorTableARB@20)
  1006.         GL_STUB(GetnCompressedTexImageARB, 832, GetnCompressedTexImageARB@16)
  1007.         GL_STUB(GetnConvolutionFilterARB, 833, GetnConvolutionFilterARB@20)
  1008.         GL_STUB(GetnHistogramARB, 834, GetnHistogramARB@24)
  1009.         GL_STUB(GetnMapdvARB, 835, GetnMapdvARB@16)
  1010.         GL_STUB(GetnMapfvARB, 836, GetnMapfvARB@16)
  1011.         GL_STUB(GetnMapivARB, 837, GetnMapivARB@16)
  1012.         GL_STUB(GetnMinmaxARB, 838, GetnMinmaxARB@24)
  1013.         GL_STUB(GetnPixelMapfvARB, 839, GetnPixelMapfvARB@12)
  1014.         GL_STUB(GetnPixelMapuivARB, 840, GetnPixelMapuivARB@12)
  1015.         GL_STUB(GetnPixelMapusvARB, 841, GetnPixelMapusvARB@12)
  1016.         GL_STUB(GetnPolygonStippleARB, 842, GetnPolygonStippleARB@8)
  1017.         GL_STUB(GetnSeparableFilterARB, 843, GetnSeparableFilterARB@32)
  1018.         GL_STUB(GetnTexImageARB, 844, GetnTexImageARB@24)
  1019.         GL_STUB(GetnUniformdvARB, 845, GetnUniformdvARB@16)
  1020.         GL_STUB(GetnUniformfvARB, 846, GetnUniformfvARB@16)
  1021.         GL_STUB(GetnUniformivARB, 847, GetnUniformivARB@16)
  1022.         GL_STUB(GetnUniformuivARB, 848, GetnUniformuivARB@16)
  1023.         GL_STUB(ReadnPixelsARB, 849, ReadnPixelsARB@32)
  1024.         GL_STUB(DrawArraysInstancedBaseInstance, 850, DrawArraysInstancedBaseInstance@20)
  1025.         GL_STUB(DrawElementsInstancedBaseInstance, 851, DrawElementsInstancedBaseInstance@24)
  1026.         GL_STUB(DrawElementsInstancedBaseVertexBaseInstance, 852, DrawElementsInstancedBaseVertexBaseInstance@28)
  1027.         GL_STUB(DrawTransformFeedbackInstanced, 853, DrawTransformFeedbackInstanced@12)
  1028.         GL_STUB(DrawTransformFeedbackStreamInstanced, 854, DrawTransformFeedbackStreamInstanced@16)
  1029.         GL_STUB(_dispatch_stub_855, 855, _dispatch_stub_855@20)
  1030.         HIDDEN(GL_PREFIX(_dispatch_stub_855, _dispatch_stub_855@20))
  1031.         GL_STUB(GetActiveAtomicCounterBufferiv, 856, GetActiveAtomicCounterBufferiv@16)
  1032.         GL_STUB(BindImageTexture, 857, BindImageTexture@28)
  1033.         GL_STUB(MemoryBarrier, 858, MemoryBarrier@4)
  1034.         GL_STUB(TexStorage1D, 859, TexStorage1D@16)
  1035.         GL_STUB(TexStorage2D, 860, TexStorage2D@20)
  1036.         GL_STUB(TexStorage3D, 861, TexStorage3D@24)
  1037.         GL_STUB(TextureStorage1DEXT, 862, TextureStorage1DEXT@20)
  1038.         GL_STUB(TextureStorage2DEXT, 863, TextureStorage2DEXT@24)
  1039.         GL_STUB(TextureStorage3DEXT, 864, TextureStorage3DEXT@28)
  1040.         GL_STUB(ClearBufferData, 865, ClearBufferData@20)
  1041.         GL_STUB(ClearBufferSubData, 866, ClearBufferSubData@28)
  1042.         GL_STUB(DispatchCompute, 867, DispatchCompute@12)
  1043.         GL_STUB(DispatchComputeIndirect, 868, DispatchComputeIndirect@4)
  1044.         GL_STUB(CopyImageSubData, 869, CopyImageSubData@60)
  1045.         GL_STUB(TextureView, 870, TextureView@32)
  1046.         GL_STUB(BindVertexBuffer, 871, BindVertexBuffer@16)
  1047.         GL_STUB(VertexAttribBinding, 872, VertexAttribBinding@8)
  1048.         GL_STUB(VertexAttribFormat, 873, VertexAttribFormat@20)
  1049.         GL_STUB(VertexAttribIFormat, 874, VertexAttribIFormat@16)
  1050.         GL_STUB(VertexAttribLFormat, 875, VertexAttribLFormat@16)
  1051.         GL_STUB(VertexBindingDivisor, 876, VertexBindingDivisor@8)
  1052.         GL_STUB(MultiDrawArraysIndirect, 877, MultiDrawArraysIndirect@16)
  1053.         GL_STUB(MultiDrawElementsIndirect, 878, MultiDrawElementsIndirect@20)
  1054.         GL_STUB(_dispatch_stub_879, 879, _dispatch_stub_879@16)
  1055.         HIDDEN(GL_PREFIX(_dispatch_stub_879, _dispatch_stub_879@16))
  1056.         GL_STUB(_dispatch_stub_880, 880, _dispatch_stub_880@12)
  1057.         HIDDEN(GL_PREFIX(_dispatch_stub_880, _dispatch_stub_880@12))
  1058.         GL_STUB(_dispatch_stub_881, 881, _dispatch_stub_881@12)
  1059.         HIDDEN(GL_PREFIX(_dispatch_stub_881, _dispatch_stub_881@12))
  1060.         GL_STUB(_dispatch_stub_882, 882, _dispatch_stub_882@12)
  1061.         HIDDEN(GL_PREFIX(_dispatch_stub_882, _dispatch_stub_882@12))
  1062.         GL_STUB(_dispatch_stub_883, 883, _dispatch_stub_883@24)
  1063.         HIDDEN(GL_PREFIX(_dispatch_stub_883, _dispatch_stub_883@24))
  1064.         GL_STUB(_dispatch_stub_884, 884, _dispatch_stub_884@32)
  1065.         HIDDEN(GL_PREFIX(_dispatch_stub_884, _dispatch_stub_884@32))
  1066.         GL_STUB(TexBufferRange, 885, TexBufferRange@20)
  1067.         GL_STUB(TexStorage2DMultisample, 886, TexStorage2DMultisample@24)
  1068.         GL_STUB(TexStorage3DMultisample, 887, TexStorage3DMultisample@28)
  1069.         GL_STUB(BufferStorage, 888, BufferStorage@16)
  1070.         GL_STUB(ClearTexImage, 889, ClearTexImage@20)
  1071.         GL_STUB(ClearTexSubImage, 890, ClearTexSubImage@44)
  1072.         GL_STUB(BindBuffersBase, 891, BindBuffersBase@16)
  1073.         GL_STUB(BindBuffersRange, 892, BindBuffersRange@24)
  1074.         GL_STUB(BindImageTextures, 893, BindImageTextures@12)
  1075.         GL_STUB(BindSamplers, 894, BindSamplers@12)
  1076.         GL_STUB(BindTextures, 895, BindTextures@12)
  1077.         GL_STUB(BindVertexBuffers, 896, BindVertexBuffers@20)
  1078.         GL_STUB(_dispatch_stub_897, 897, _dispatch_stub_897@8)
  1079.         HIDDEN(GL_PREFIX(_dispatch_stub_897, _dispatch_stub_897@8))
  1080.         GL_STUB(_dispatch_stub_898, 898, _dispatch_stub_898@8)
  1081.         HIDDEN(GL_PREFIX(_dispatch_stub_898, _dispatch_stub_898@8))
  1082.         GL_STUB(_dispatch_stub_899, 899, _dispatch_stub_899@48)
  1083.         HIDDEN(GL_PREFIX(_dispatch_stub_899, _dispatch_stub_899@48))
  1084.         GL_STUB(_dispatch_stub_900, 900, _dispatch_stub_900@8)
  1085.         HIDDEN(GL_PREFIX(_dispatch_stub_900, _dispatch_stub_900@8))
  1086.         GL_STUB(_dispatch_stub_901, 901, _dispatch_stub_901@20)
  1087.         HIDDEN(GL_PREFIX(_dispatch_stub_901, _dispatch_stub_901@20))
  1088.         GL_STUB(_dispatch_stub_902, 902, _dispatch_stub_902@28)
  1089.         HIDDEN(GL_PREFIX(_dispatch_stub_902, _dispatch_stub_902@28))
  1090.         GL_STUB(_dispatch_stub_903, 903, _dispatch_stub_903@16)
  1091.         HIDDEN(GL_PREFIX(_dispatch_stub_903, _dispatch_stub_903@16))
  1092.         GL_STUB(_dispatch_stub_904, 904, _dispatch_stub_904@16)
  1093.         HIDDEN(GL_PREFIX(_dispatch_stub_904, _dispatch_stub_904@16))
  1094.         GL_STUB(_dispatch_stub_905, 905, _dispatch_stub_905@16)
  1095.         HIDDEN(GL_PREFIX(_dispatch_stub_905, _dispatch_stub_905@16))
  1096.         GL_STUB(_dispatch_stub_906, 906, _dispatch_stub_906@16)
  1097.         HIDDEN(GL_PREFIX(_dispatch_stub_906, _dispatch_stub_906@16))
  1098.         GL_STUB(_dispatch_stub_907, 907, _dispatch_stub_907@28)
  1099.         HIDDEN(GL_PREFIX(_dispatch_stub_907, _dispatch_stub_907@28))
  1100.         GL_STUB(_dispatch_stub_908, 908, _dispatch_stub_908@36)
  1101.         HIDDEN(GL_PREFIX(_dispatch_stub_908, _dispatch_stub_908@36))
  1102.         GL_STUB(_dispatch_stub_909, 909, _dispatch_stub_909@44)
  1103.         HIDDEN(GL_PREFIX(_dispatch_stub_909, _dispatch_stub_909@44))
  1104.         GL_STUB(_dispatch_stub_910, 910, _dispatch_stub_910@20)
  1105.         HIDDEN(GL_PREFIX(_dispatch_stub_910, _dispatch_stub_910@20))
  1106.         GL_STUB(_dispatch_stub_911, 911, _dispatch_stub_911@24)
  1107.         HIDDEN(GL_PREFIX(_dispatch_stub_911, _dispatch_stub_911@24))
  1108.         GL_STUB(_dispatch_stub_912, 912, _dispatch_stub_912@32)
  1109.         HIDDEN(GL_PREFIX(_dispatch_stub_912, _dispatch_stub_912@32))
  1110.         GL_STUB(_dispatch_stub_913, 913, _dispatch_stub_913@36)
  1111.         HIDDEN(GL_PREFIX(_dispatch_stub_913, _dispatch_stub_913@36))
  1112.         GL_STUB(_dispatch_stub_914, 914, _dispatch_stub_914@8)
  1113.         HIDDEN(GL_PREFIX(_dispatch_stub_914, _dispatch_stub_914@8))
  1114.         GL_STUB(_dispatch_stub_915, 915, _dispatch_stub_915@8)
  1115.         HIDDEN(GL_PREFIX(_dispatch_stub_915, _dispatch_stub_915@8))
  1116.         GL_STUB(_dispatch_stub_916, 916, _dispatch_stub_916@8)
  1117.         HIDDEN(GL_PREFIX(_dispatch_stub_916, _dispatch_stub_916@8))
  1118.         GL_STUB(_dispatch_stub_917, 917, _dispatch_stub_917@12)
  1119.         HIDDEN(GL_PREFIX(_dispatch_stub_917, _dispatch_stub_917@12))
  1120.         GL_STUB(_dispatch_stub_918, 918, _dispatch_stub_918@8)
  1121.         HIDDEN(GL_PREFIX(_dispatch_stub_918, _dispatch_stub_918@8))
  1122.         GL_STUB(_dispatch_stub_919, 919, _dispatch_stub_919@8)
  1123.         HIDDEN(GL_PREFIX(_dispatch_stub_919, _dispatch_stub_919@8))
  1124.         GL_STUB(_dispatch_stub_920, 920, _dispatch_stub_920@12)
  1125.         HIDDEN(GL_PREFIX(_dispatch_stub_920, _dispatch_stub_920@12))
  1126.         GL_STUB(_dispatch_stub_921, 921, _dispatch_stub_921@8)
  1127.         HIDDEN(GL_PREFIX(_dispatch_stub_921, _dispatch_stub_921@8))
  1128.         GL_STUB(_dispatch_stub_922, 922, _dispatch_stub_922@8)
  1129.         HIDDEN(GL_PREFIX(_dispatch_stub_922, _dispatch_stub_922@8))
  1130.         GL_STUB(_dispatch_stub_923, 923, _dispatch_stub_923@8)
  1131.         HIDDEN(GL_PREFIX(_dispatch_stub_923, _dispatch_stub_923@8))
  1132.         GL_STUB(_dispatch_stub_924, 924, _dispatch_stub_924@8)
  1133.         HIDDEN(GL_PREFIX(_dispatch_stub_924, _dispatch_stub_924@8))
  1134.         GL_STUB(_dispatch_stub_925, 925, _dispatch_stub_925@12)
  1135.         HIDDEN(GL_PREFIX(_dispatch_stub_925, _dispatch_stub_925@12))
  1136.         GL_STUB(_dispatch_stub_926, 926, _dispatch_stub_926@4)
  1137.         HIDDEN(GL_PREFIX(_dispatch_stub_926, _dispatch_stub_926@4))
  1138.         GL_STUB(_dispatch_stub_927, 927, _dispatch_stub_927@16)
  1139.         HIDDEN(GL_PREFIX(_dispatch_stub_927, _dispatch_stub_927@16))
  1140.         GL_STUB(_dispatch_stub_928, 928, _dispatch_stub_928@12)
  1141.         HIDDEN(GL_PREFIX(_dispatch_stub_928, _dispatch_stub_928@12))
  1142.         GL_STUB(_dispatch_stub_929, 929, _dispatch_stub_929@12)
  1143.         HIDDEN(GL_PREFIX(_dispatch_stub_929, _dispatch_stub_929@12))
  1144.         GL_STUB(_dispatch_stub_930, 930, _dispatch_stub_930@12)
  1145.         HIDDEN(GL_PREFIX(_dispatch_stub_930, _dispatch_stub_930@12))
  1146.         GL_STUB(_dispatch_stub_931, 931, _dispatch_stub_931@16)
  1147.         HIDDEN(GL_PREFIX(_dispatch_stub_931, _dispatch_stub_931@16))
  1148.         GL_STUB(_dispatch_stub_932, 932, _dispatch_stub_932@16)
  1149.         HIDDEN(GL_PREFIX(_dispatch_stub_932, _dispatch_stub_932@16))
  1150.         GL_STUB(_dispatch_stub_933, 933, _dispatch_stub_933@12)
  1151.         HIDDEN(GL_PREFIX(_dispatch_stub_933, _dispatch_stub_933@12))
  1152.         GL_STUB(_dispatch_stub_934, 934, _dispatch_stub_934@12)
  1153.         HIDDEN(GL_PREFIX(_dispatch_stub_934, _dispatch_stub_934@12))
  1154.         GL_STUB(_dispatch_stub_935, 935, _dispatch_stub_935@16)
  1155.         HIDDEN(GL_PREFIX(_dispatch_stub_935, _dispatch_stub_935@16))
  1156.         GL_STUB(_dispatch_stub_936, 936, _dispatch_stub_936@16)
  1157.         HIDDEN(GL_PREFIX(_dispatch_stub_936, _dispatch_stub_936@16))
  1158.         GL_STUB(_dispatch_stub_937, 937, _dispatch_stub_937@16)
  1159.         HIDDEN(GL_PREFIX(_dispatch_stub_937, _dispatch_stub_937@16))
  1160.         GL_STUB(_dispatch_stub_938, 938, _dispatch_stub_938@16)
  1161.         HIDDEN(GL_PREFIX(_dispatch_stub_938, _dispatch_stub_938@16))
  1162.         GL_STUB(_dispatch_stub_939, 939, _dispatch_stub_939@24)
  1163.         HIDDEN(GL_PREFIX(_dispatch_stub_939, _dispatch_stub_939@24))
  1164.         GL_STUB(_dispatch_stub_940, 940, _dispatch_stub_940@16)
  1165.         HIDDEN(GL_PREFIX(_dispatch_stub_940, _dispatch_stub_940@16))
  1166.         GL_STUB(_dispatch_stub_941, 941, _dispatch_stub_941@16)
  1167.         HIDDEN(GL_PREFIX(_dispatch_stub_941, _dispatch_stub_941@16))
  1168.         GL_STUB(_dispatch_stub_942, 942, _dispatch_stub_942@12)
  1169.         HIDDEN(GL_PREFIX(_dispatch_stub_942, _dispatch_stub_942@12))
  1170.         GL_STUB(_dispatch_stub_943, 943, _dispatch_stub_943@12)
  1171.         HIDDEN(GL_PREFIX(_dispatch_stub_943, _dispatch_stub_943@12))
  1172.         GL_STUB(_dispatch_stub_944, 944, _dispatch_stub_944@12)
  1173.         HIDDEN(GL_PREFIX(_dispatch_stub_944, _dispatch_stub_944@12))
  1174.         GL_STUB(_dispatch_stub_945, 945, _dispatch_stub_945@12)
  1175.         HIDDEN(GL_PREFIX(_dispatch_stub_945, _dispatch_stub_945@12))
  1176.         GL_STUB(_dispatch_stub_946, 946, _dispatch_stub_946@16)
  1177.         HIDDEN(GL_PREFIX(_dispatch_stub_946, _dispatch_stub_946@16))
  1178.         GL_STUB(_dispatch_stub_947, 947, _dispatch_stub_947@16)
  1179.         HIDDEN(GL_PREFIX(_dispatch_stub_947, _dispatch_stub_947@16))
  1180.         GL_STUB(_dispatch_stub_948, 948, _dispatch_stub_948@12)
  1181.         HIDDEN(GL_PREFIX(_dispatch_stub_948, _dispatch_stub_948@12))
  1182.         GL_STUB(_dispatch_stub_949, 949, _dispatch_stub_949@16)
  1183.         HIDDEN(GL_PREFIX(_dispatch_stub_949, _dispatch_stub_949@16))
  1184.         GL_STUB(_dispatch_stub_950, 950, _dispatch_stub_950@16)
  1185.         HIDDEN(GL_PREFIX(_dispatch_stub_950, _dispatch_stub_950@16))
  1186.         GL_STUB(_dispatch_stub_951, 951, _dispatch_stub_951@12)
  1187.         HIDDEN(GL_PREFIX(_dispatch_stub_951, _dispatch_stub_951@12))
  1188.         GL_STUB(_dispatch_stub_952, 952, _dispatch_stub_952@12)
  1189.         HIDDEN(GL_PREFIX(_dispatch_stub_952, _dispatch_stub_952@12))
  1190.         GL_STUB(_dispatch_stub_953, 953, _dispatch_stub_953@28)
  1191.         HIDDEN(GL_PREFIX(_dispatch_stub_953, _dispatch_stub_953@28))
  1192.         GL_STUB(_dispatch_stub_954, 954, _dispatch_stub_954@8)
  1193.         HIDDEN(GL_PREFIX(_dispatch_stub_954, _dispatch_stub_954@8))
  1194.         GL_STUB(_dispatch_stub_955, 955, _dispatch_stub_955@16)
  1195.         HIDDEN(GL_PREFIX(_dispatch_stub_955, _dispatch_stub_955@16))
  1196.         GL_STUB(_dispatch_stub_956, 956, _dispatch_stub_956@16)
  1197.         HIDDEN(GL_PREFIX(_dispatch_stub_956, _dispatch_stub_956@16))
  1198.         GL_STUB(_dispatch_stub_957, 957, _dispatch_stub_957@16)
  1199.         HIDDEN(GL_PREFIX(_dispatch_stub_957, _dispatch_stub_957@16))
  1200.         GL_STUB(_dispatch_stub_958, 958, _dispatch_stub_958@16)
  1201.         HIDDEN(GL_PREFIX(_dispatch_stub_958, _dispatch_stub_958@16))
  1202.         GL_STUB(_dispatch_stub_959, 959, _dispatch_stub_959@8)
  1203.         HIDDEN(GL_PREFIX(_dispatch_stub_959, _dispatch_stub_959@8))
  1204.         GL_STUB(_dispatch_stub_960, 960, _dispatch_stub_960@12)
  1205.         HIDDEN(GL_PREFIX(_dispatch_stub_960, _dispatch_stub_960@12))
  1206.         GL_STUB(_dispatch_stub_961, 961, _dispatch_stub_961@12)
  1207.         HIDDEN(GL_PREFIX(_dispatch_stub_961, _dispatch_stub_961@12))
  1208.         GL_STUB(_dispatch_stub_962, 962, _dispatch_stub_962@8)
  1209.         HIDDEN(GL_PREFIX(_dispatch_stub_962, _dispatch_stub_962@8))
  1210.         GL_STUB(_dispatch_stub_963, 963, _dispatch_stub_963@16)
  1211.         HIDDEN(GL_PREFIX(_dispatch_stub_963, _dispatch_stub_963@16))
  1212.         GL_STUB(_dispatch_stub_964, 964, _dispatch_stub_964@16)
  1213.         HIDDEN(GL_PREFIX(_dispatch_stub_964, _dispatch_stub_964@16))
  1214.         GL_STUB(_dispatch_stub_965, 965, _dispatch_stub_965@20)
  1215.         HIDDEN(GL_PREFIX(_dispatch_stub_965, _dispatch_stub_965@20))
  1216.         GL_STUB(_dispatch_stub_966, 966, _dispatch_stub_966@16)
  1217.         HIDDEN(GL_PREFIX(_dispatch_stub_966, _dispatch_stub_966@16))
  1218.         GL_STUB(_dispatch_stub_967, 967, _dispatch_stub_967@20)
  1219.         HIDDEN(GL_PREFIX(_dispatch_stub_967, _dispatch_stub_967@20))
  1220.         GL_STUB(_dispatch_stub_968, 968, _dispatch_stub_968@12)
  1221.         HIDDEN(GL_PREFIX(_dispatch_stub_968, _dispatch_stub_968@12))
  1222.         GL_STUB(_dispatch_stub_969, 969, _dispatch_stub_969@20)
  1223.         HIDDEN(GL_PREFIX(_dispatch_stub_969, _dispatch_stub_969@20))
  1224.         GL_STUB(_dispatch_stub_970, 970, _dispatch_stub_970@12)
  1225.         HIDDEN(GL_PREFIX(_dispatch_stub_970, _dispatch_stub_970@12))
  1226.         GL_STUB(_dispatch_stub_971, 971, _dispatch_stub_971@12)
  1227.         HIDDEN(GL_PREFIX(_dispatch_stub_971, _dispatch_stub_971@12))
  1228.         GL_STUB(_dispatch_stub_972, 972, _dispatch_stub_972@12)
  1229.         HIDDEN(GL_PREFIX(_dispatch_stub_972, _dispatch_stub_972@12))
  1230.         GL_STUB(_dispatch_stub_973, 973, _dispatch_stub_973@12)
  1231.         HIDDEN(GL_PREFIX(_dispatch_stub_973, _dispatch_stub_973@12))
  1232.         GL_STUB(_dispatch_stub_974, 974, _dispatch_stub_974@12)
  1233.         HIDDEN(GL_PREFIX(_dispatch_stub_974, _dispatch_stub_974@12))
  1234.         GL_STUB(_dispatch_stub_975, 975, _dispatch_stub_975@12)
  1235.         HIDDEN(GL_PREFIX(_dispatch_stub_975, _dispatch_stub_975@12))
  1236.         GL_STUB(_dispatch_stub_976, 976, _dispatch_stub_976@16)
  1237.         HIDDEN(GL_PREFIX(_dispatch_stub_976, _dispatch_stub_976@16))
  1238.         GL_STUB(_dispatch_stub_977, 977, _dispatch_stub_977@20)
  1239.         HIDDEN(GL_PREFIX(_dispatch_stub_977, _dispatch_stub_977@20))
  1240.         GL_STUB(_dispatch_stub_978, 978, _dispatch_stub_978@24)
  1241.         HIDDEN(GL_PREFIX(_dispatch_stub_978, _dispatch_stub_978@24))
  1242.         GL_STUB(_dispatch_stub_979, 979, _dispatch_stub_979@24)
  1243.         HIDDEN(GL_PREFIX(_dispatch_stub_979, _dispatch_stub_979@24))
  1244.         GL_STUB(_dispatch_stub_980, 980, _dispatch_stub_980@28)
  1245.         HIDDEN(GL_PREFIX(_dispatch_stub_980, _dispatch_stub_980@28))
  1246.         GL_STUB(_dispatch_stub_981, 981, _dispatch_stub_981@28)
  1247.         HIDDEN(GL_PREFIX(_dispatch_stub_981, _dispatch_stub_981@28))
  1248.         GL_STUB(_dispatch_stub_982, 982, _dispatch_stub_982@36)
  1249.         HIDDEN(GL_PREFIX(_dispatch_stub_982, _dispatch_stub_982@36))
  1250.         GL_STUB(_dispatch_stub_983, 983, _dispatch_stub_983@44)
  1251.         HIDDEN(GL_PREFIX(_dispatch_stub_983, _dispatch_stub_983@44))
  1252.         GL_STUB(_dispatch_stub_984, 984, _dispatch_stub_984@12)
  1253.         HIDDEN(GL_PREFIX(_dispatch_stub_984, _dispatch_stub_984@12))
  1254.         GL_STUB(_dispatch_stub_985, 985, _dispatch_stub_985@20)
  1255.         HIDDEN(GL_PREFIX(_dispatch_stub_985, _dispatch_stub_985@20))
  1256.         GL_STUB(_dispatch_stub_986, 986, _dispatch_stub_986@4)
  1257.         HIDDEN(GL_PREFIX(_dispatch_stub_986, _dispatch_stub_986@4))
  1258.         GL_STUB(_dispatch_stub_987, 987, _dispatch_stub_987@12)
  1259.         HIDDEN(GL_PREFIX(_dispatch_stub_987, _dispatch_stub_987@12))
  1260.         GL_STUB(_dispatch_stub_988, 988, _dispatch_stub_988@24)
  1261.         HIDDEN(GL_PREFIX(_dispatch_stub_988, _dispatch_stub_988@24))
  1262.         GL_STUB(_dispatch_stub_989, 989, _dispatch_stub_989@20)
  1263.         HIDDEN(GL_PREFIX(_dispatch_stub_989, _dispatch_stub_989@20))
  1264.         GL_STUB(_dispatch_stub_990, 990, _dispatch_stub_990@20)
  1265.         HIDDEN(GL_PREFIX(_dispatch_stub_990, _dispatch_stub_990@20))
  1266.         GL_STUB(_dispatch_stub_991, 991, _dispatch_stub_991@12)
  1267.         HIDDEN(GL_PREFIX(_dispatch_stub_991, _dispatch_stub_991@12))
  1268.         GL_STUB(_dispatch_stub_992, 992, _dispatch_stub_992@8)
  1269.         HIDDEN(GL_PREFIX(_dispatch_stub_992, _dispatch_stub_992@8))
  1270.         GL_STUB(_dispatch_stub_993, 993, _dispatch_stub_993@20)
  1271.         HIDDEN(GL_PREFIX(_dispatch_stub_993, _dispatch_stub_993@20))
  1272.         GL_STUB(_dispatch_stub_994, 994, _dispatch_stub_994@24)
  1273.         HIDDEN(GL_PREFIX(_dispatch_stub_994, _dispatch_stub_994@24))
  1274.         GL_STUB(InvalidateBufferData, 995, InvalidateBufferData@4)
  1275.         GL_STUB(InvalidateBufferSubData, 996, InvalidateBufferSubData@12)
  1276.         GL_STUB(InvalidateFramebuffer, 997, InvalidateFramebuffer@12)
  1277.         GL_STUB(InvalidateSubFramebuffer, 998, InvalidateSubFramebuffer@28)
  1278.         GL_STUB(InvalidateTexImage, 999, InvalidateTexImage@8)
  1279.         GL_STUB(InvalidateTexSubImage, 1000, InvalidateTexSubImage@32)
  1280.         GL_STUB(_dispatch_stub_1001, 1001, _dispatch_stub_1001@8)
  1281.         HIDDEN(GL_PREFIX(_dispatch_stub_1001, _dispatch_stub_1001@8))
  1282.         GL_STUB(_dispatch_stub_1002, 1002, _dispatch_stub_1002@20)
  1283.         HIDDEN(GL_PREFIX(_dispatch_stub_1002, _dispatch_stub_1002@20))
  1284.         GL_STUB(_dispatch_stub_1003, 1003, _dispatch_stub_1003@4)
  1285.         HIDDEN(GL_PREFIX(_dispatch_stub_1003, _dispatch_stub_1003@4))
  1286.         GL_STUB(_dispatch_stub_1004, 1004, _dispatch_stub_1004@20)
  1287.         HIDDEN(GL_PREFIX(_dispatch_stub_1004, _dispatch_stub_1004@20))
  1288.         GL_STUB(_dispatch_stub_1005, 1005, _dispatch_stub_1005@4)
  1289.         HIDDEN(GL_PREFIX(_dispatch_stub_1005, _dispatch_stub_1005@4))
  1290.         GL_STUB(_dispatch_stub_1006, 1006, _dispatch_stub_1006@20)
  1291.         HIDDEN(GL_PREFIX(_dispatch_stub_1006, _dispatch_stub_1006@20))
  1292.         GL_STUB(_dispatch_stub_1007, 1007, _dispatch_stub_1007@4)
  1293.         HIDDEN(GL_PREFIX(_dispatch_stub_1007, _dispatch_stub_1007@4))
  1294.         GL_STUB(_dispatch_stub_1008, 1008, _dispatch_stub_1008@20)
  1295.         HIDDEN(GL_PREFIX(_dispatch_stub_1008, _dispatch_stub_1008@20))
  1296.         GL_STUB(_dispatch_stub_1009, 1009, _dispatch_stub_1009@4)
  1297.         HIDDEN(GL_PREFIX(_dispatch_stub_1009, _dispatch_stub_1009@4))
  1298.         GL_STUB(PointSizePointerOES, 1010, PointSizePointerOES@12)
  1299.         GL_STUB(_dispatch_stub_1011, 1011, _dispatch_stub_1011@8)
  1300.         HIDDEN(GL_PREFIX(_dispatch_stub_1011, _dispatch_stub_1011@8))
  1301.         GL_STUB(_dispatch_stub_1012, 1012, _dispatch_stub_1012@8)
  1302.         HIDDEN(GL_PREFIX(_dispatch_stub_1012, _dispatch_stub_1012@8))
  1303.         GL_STUB(_dispatch_stub_1013, 1013, _dispatch_stub_1013@4)
  1304.         HIDDEN(GL_PREFIX(_dispatch_stub_1013, _dispatch_stub_1013@4))
  1305.         GL_STUB(ColorPointerEXT, 1014, ColorPointerEXT@20)
  1306.         GL_STUB(EdgeFlagPointerEXT, 1015, EdgeFlagPointerEXT@12)
  1307.         GL_STUB(IndexPointerEXT, 1016, IndexPointerEXT@16)
  1308.         GL_STUB(NormalPointerEXT, 1017, NormalPointerEXT@16)
  1309.         GL_STUB(TexCoordPointerEXT, 1018, TexCoordPointerEXT@20)
  1310.         GL_STUB(VertexPointerEXT, 1019, VertexPointerEXT@20)
  1311.         GL_STUB(_dispatch_stub_1020, 1020, _dispatch_stub_1020@12)
  1312.         HIDDEN(GL_PREFIX(_dispatch_stub_1020, _dispatch_stub_1020@12))
  1313.         GL_STUB(_dispatch_stub_1021, 1021, _dispatch_stub_1021@8)
  1314.         HIDDEN(GL_PREFIX(_dispatch_stub_1021, _dispatch_stub_1021@8))
  1315.         GL_STUB(_dispatch_stub_1022, 1022, _dispatch_stub_1022@4)
  1316.         HIDDEN(GL_PREFIX(_dispatch_stub_1022, _dispatch_stub_1022@4))
  1317.         GL_STUB(_dispatch_stub_1023, 1023, _dispatch_stub_1023@12)
  1318.         HIDDEN(GL_PREFIX(_dispatch_stub_1023, _dispatch_stub_1023@12))
  1319.         GL_STUB(_dispatch_stub_1024, 1024, _dispatch_stub_1024@8)
  1320.         HIDDEN(GL_PREFIX(_dispatch_stub_1024, _dispatch_stub_1024@8))
  1321.         GL_STUB(_dispatch_stub_1025, 1025, _dispatch_stub_1025@8)
  1322.         HIDDEN(GL_PREFIX(_dispatch_stub_1025, _dispatch_stub_1025@8))
  1323.         GL_STUB(_dispatch_stub_1026, 1026, _dispatch_stub_1026@16)
  1324.         HIDDEN(GL_PREFIX(_dispatch_stub_1026, _dispatch_stub_1026@16))
  1325.         GL_STUB(_dispatch_stub_1027, 1027, _dispatch_stub_1027@12)
  1326.         HIDDEN(GL_PREFIX(_dispatch_stub_1027, _dispatch_stub_1027@12))
  1327.         GL_STUB(_dispatch_stub_1028, 1028, _dispatch_stub_1028@4)
  1328.         HIDDEN(GL_PREFIX(_dispatch_stub_1028, _dispatch_stub_1028@4))
  1329.         GL_STUB(LockArraysEXT, 1029, LockArraysEXT@8)
  1330.         GL_STUB(_dispatch_stub_1030, 1030, _dispatch_stub_1030@16)
  1331.         HIDDEN(GL_PREFIX(_dispatch_stub_1030, _dispatch_stub_1030@16))
  1332.         GL_STUB(_dispatch_stub_1031, 1031, _dispatch_stub_1031@16)
  1333.         HIDDEN(GL_PREFIX(_dispatch_stub_1031, _dispatch_stub_1031@16))
  1334.         GL_STUB(_dispatch_stub_1032, 1032, _dispatch_stub_1032@12)
  1335.         HIDDEN(GL_PREFIX(_dispatch_stub_1032, _dispatch_stub_1032@12))
  1336.         GL_STUB(_dispatch_stub_1033, 1033, _dispatch_stub_1033@16)
  1337.         HIDDEN(GL_PREFIX(_dispatch_stub_1033, _dispatch_stub_1033@16))
  1338.         GL_STUB(_dispatch_stub_1034, 1034, _dispatch_stub_1034@12)
  1339.         HIDDEN(GL_PREFIX(_dispatch_stub_1034, _dispatch_stub_1034@12))
  1340.         GL_STUB(_dispatch_stub_1035, 1035, _dispatch_stub_1035@16)
  1341.         HIDDEN(GL_PREFIX(_dispatch_stub_1035, _dispatch_stub_1035@16))
  1342.         GL_STUB(_dispatch_stub_1036, 1036, _dispatch_stub_1036@12)
  1343.         HIDDEN(GL_PREFIX(_dispatch_stub_1036, _dispatch_stub_1036@12))
  1344.         GL_STUB(_dispatch_stub_1037, 1037, _dispatch_stub_1037@16)
  1345.         HIDDEN(GL_PREFIX(_dispatch_stub_1037, _dispatch_stub_1037@16))
  1346.         GL_STUB(_dispatch_stub_1038, 1038, _dispatch_stub_1038@24)
  1347.         HIDDEN(GL_PREFIX(_dispatch_stub_1038, _dispatch_stub_1038@24))
  1348.         GL_STUB(_dispatch_stub_1039, 1039, _dispatch_stub_1039@16)
  1349.         HIDDEN(GL_PREFIX(_dispatch_stub_1039, _dispatch_stub_1039@16))
  1350.         GL_STUB(_dispatch_stub_1040, 1040, _dispatch_stub_1040@16)
  1351.         HIDDEN(GL_PREFIX(_dispatch_stub_1040, _dispatch_stub_1040@16))
  1352.         GL_STUB(_dispatch_stub_1041, 1041, _dispatch_stub_1041@16)
  1353.         HIDDEN(GL_PREFIX(_dispatch_stub_1041, _dispatch_stub_1041@16))
  1354.         GL_STUB(_dispatch_stub_1042, 1042, _dispatch_stub_1042@16)
  1355.         HIDDEN(GL_PREFIX(_dispatch_stub_1042, _dispatch_stub_1042@16))
  1356.         GL_STUB(_dispatch_stub_1043, 1043, _dispatch_stub_1043@16)
  1357.         HIDDEN(GL_PREFIX(_dispatch_stub_1043, _dispatch_stub_1043@16))
  1358.         GL_STUB(_dispatch_stub_1044, 1044, _dispatch_stub_1044@16)
  1359.         HIDDEN(GL_PREFIX(_dispatch_stub_1044, _dispatch_stub_1044@16))
  1360.         GL_STUB(_dispatch_stub_1045, 1045, _dispatch_stub_1045@16)
  1361.         HIDDEN(GL_PREFIX(_dispatch_stub_1045, _dispatch_stub_1045@16))
  1362.         GL_STUB(_dispatch_stub_1046, 1046, _dispatch_stub_1046@32)
  1363.         HIDDEN(GL_PREFIX(_dispatch_stub_1046, _dispatch_stub_1046@32))
  1364.         GL_STUB(_dispatch_stub_1047, 1047, _dispatch_stub_1047@16)
  1365.         HIDDEN(GL_PREFIX(_dispatch_stub_1047, _dispatch_stub_1047@16))
  1366.         GL_STUB(_dispatch_stub_1048, 1048, _dispatch_stub_1048@20)
  1367.         HIDDEN(GL_PREFIX(_dispatch_stub_1048, _dispatch_stub_1048@20))
  1368.         GL_STUB(_dispatch_stub_1049, 1049, _dispatch_stub_1049@16)
  1369.         HIDDEN(GL_PREFIX(_dispatch_stub_1049, _dispatch_stub_1049@16))
  1370.         GL_STUB(_dispatch_stub_1050, 1050, _dispatch_stub_1050@20)
  1371.         HIDDEN(GL_PREFIX(_dispatch_stub_1050, _dispatch_stub_1050@20))
  1372.         GL_STUB(_dispatch_stub_1051, 1051, _dispatch_stub_1051@16)
  1373.         HIDDEN(GL_PREFIX(_dispatch_stub_1051, _dispatch_stub_1051@16))
  1374.         GL_STUB(_dispatch_stub_1052, 1052, _dispatch_stub_1052@20)
  1375.         HIDDEN(GL_PREFIX(_dispatch_stub_1052, _dispatch_stub_1052@20))
  1376.         GL_STUB(_dispatch_stub_1053, 1053, _dispatch_stub_1053@16)
  1377.         HIDDEN(GL_PREFIX(_dispatch_stub_1053, _dispatch_stub_1053@16))
  1378.         GL_STUB(_dispatch_stub_1054, 1054, _dispatch_stub_1054@40)
  1379.         HIDDEN(GL_PREFIX(_dispatch_stub_1054, _dispatch_stub_1054@40))
  1380.         GL_STUB(_dispatch_stub_1055, 1055, _dispatch_stub_1055@16)
  1381.         HIDDEN(GL_PREFIX(_dispatch_stub_1055, _dispatch_stub_1055@16))
  1382.         GL_STUB(_dispatch_stub_1056, 1056, _dispatch_stub_1056@24)
  1383.         HIDDEN(GL_PREFIX(_dispatch_stub_1056, _dispatch_stub_1056@24))
  1384.         GL_STUB(_dispatch_stub_1057, 1057, _dispatch_stub_1057@16)
  1385.         HIDDEN(GL_PREFIX(_dispatch_stub_1057, _dispatch_stub_1057@16))
  1386.         GL_STUB(_dispatch_stub_1058, 1058, _dispatch_stub_1058@24)
  1387.         HIDDEN(GL_PREFIX(_dispatch_stub_1058, _dispatch_stub_1058@24))
  1388.         GL_STUB(_dispatch_stub_1059, 1059, _dispatch_stub_1059@16)
  1389.         HIDDEN(GL_PREFIX(_dispatch_stub_1059, _dispatch_stub_1059@16))
  1390.         GL_STUB(_dispatch_stub_1060, 1060, _dispatch_stub_1060@24)
  1391.         HIDDEN(GL_PREFIX(_dispatch_stub_1060, _dispatch_stub_1060@24))
  1392.         GL_STUB(_dispatch_stub_1061, 1061, _dispatch_stub_1061@16)
  1393.         HIDDEN(GL_PREFIX(_dispatch_stub_1061, _dispatch_stub_1061@16))
  1394.         GL_STUB(_dispatch_stub_1062, 1062, _dispatch_stub_1062@20)
  1395.         HIDDEN(GL_PREFIX(_dispatch_stub_1062, _dispatch_stub_1062@20))
  1396.         GL_STUB(_dispatch_stub_1063, 1063, _dispatch_stub_1063@20)
  1397.         HIDDEN(GL_PREFIX(_dispatch_stub_1063, _dispatch_stub_1063@20))
  1398.         GL_STUB(_dispatch_stub_1064, 1064, _dispatch_stub_1064@20)
  1399.         HIDDEN(GL_PREFIX(_dispatch_stub_1064, _dispatch_stub_1064@20))
  1400.         GL_STUB(_dispatch_stub_1065, 1065, _dispatch_stub_1065@20)
  1401.         HIDDEN(GL_PREFIX(_dispatch_stub_1065, _dispatch_stub_1065@20))
  1402.         GL_STUB(_dispatch_stub_1066, 1066, _dispatch_stub_1066@20)
  1403.         HIDDEN(GL_PREFIX(_dispatch_stub_1066, _dispatch_stub_1066@20))
  1404.         GL_STUB(_dispatch_stub_1067, 1067, _dispatch_stub_1067@20)
  1405.         HIDDEN(GL_PREFIX(_dispatch_stub_1067, _dispatch_stub_1067@20))
  1406.         GL_STUB(_dispatch_stub_1068, 1068, _dispatch_stub_1068@20)
  1407.         HIDDEN(GL_PREFIX(_dispatch_stub_1068, _dispatch_stub_1068@20))
  1408.         GL_STUB(_dispatch_stub_1069, 1069, _dispatch_stub_1069@20)
  1409.         HIDDEN(GL_PREFIX(_dispatch_stub_1069, _dispatch_stub_1069@20))
  1410.         GL_STUB(_dispatch_stub_1070, 1070, _dispatch_stub_1070@20)
  1411.         HIDDEN(GL_PREFIX(_dispatch_stub_1070, _dispatch_stub_1070@20))
  1412.         GL_STUB(_dispatch_stub_1071, 1071, _dispatch_stub_1071@20)
  1413.         HIDDEN(GL_PREFIX(_dispatch_stub_1071, _dispatch_stub_1071@20))
  1414.         GL_STUB(_dispatch_stub_1072, 1072, _dispatch_stub_1072@20)
  1415.         HIDDEN(GL_PREFIX(_dispatch_stub_1072, _dispatch_stub_1072@20))
  1416.         GL_STUB(_dispatch_stub_1073, 1073, _dispatch_stub_1073@20)
  1417.         HIDDEN(GL_PREFIX(_dispatch_stub_1073, _dispatch_stub_1073@20))
  1418.         GL_STUB(_dispatch_stub_1074, 1074, _dispatch_stub_1074@20)
  1419.         HIDDEN(GL_PREFIX(_dispatch_stub_1074, _dispatch_stub_1074@20))
  1420.         GL_STUB(_dispatch_stub_1075, 1075, _dispatch_stub_1075@20)
  1421.         HIDDEN(GL_PREFIX(_dispatch_stub_1075, _dispatch_stub_1075@20))
  1422.         GL_STUB(_dispatch_stub_1076, 1076, _dispatch_stub_1076@20)
  1423.         HIDDEN(GL_PREFIX(_dispatch_stub_1076, _dispatch_stub_1076@20))
  1424.         GL_STUB(_dispatch_stub_1077, 1077, _dispatch_stub_1077@20)
  1425.         HIDDEN(GL_PREFIX(_dispatch_stub_1077, _dispatch_stub_1077@20))
  1426.         GL_STUB(_dispatch_stub_1078, 1078, _dispatch_stub_1078@20)
  1427.         HIDDEN(GL_PREFIX(_dispatch_stub_1078, _dispatch_stub_1078@20))
  1428.         GL_STUB(_dispatch_stub_1079, 1079, _dispatch_stub_1079@20)
  1429.         HIDDEN(GL_PREFIX(_dispatch_stub_1079, _dispatch_stub_1079@20))
  1430.         GL_STUB(UnlockArraysEXT, 1080, UnlockArraysEXT@0)
  1431.         GL_STUB(_dispatch_stub_1081, 1081, _dispatch_stub_1081@12)
  1432.         HIDDEN(GL_PREFIX(_dispatch_stub_1081, _dispatch_stub_1081@12))
  1433.         GL_STUB(_dispatch_stub_1082, 1082, _dispatch_stub_1082@4)
  1434.         HIDDEN(GL_PREFIX(_dispatch_stub_1082, _dispatch_stub_1082@4))
  1435.         GL_STUB(DebugMessageCallback, 1083, DebugMessageCallback@8)
  1436.         GL_STUB(DebugMessageControl, 1084, DebugMessageControl@24)
  1437.         GL_STUB(DebugMessageInsert, 1085, DebugMessageInsert@24)
  1438.         GL_STUB(GetDebugMessageLog, 1086, GetDebugMessageLog@32)
  1439.         GL_STUB(GetObjectLabel, 1087, GetObjectLabel@20)
  1440.         GL_STUB(GetObjectPtrLabel, 1088, GetObjectPtrLabel@16)
  1441.         GL_STUB(ObjectLabel, 1089, ObjectLabel@16)
  1442.         GL_STUB(ObjectPtrLabel, 1090, ObjectPtrLabel@12)
  1443.         GL_STUB(PopDebugGroup, 1091, PopDebugGroup@0)
  1444.         GL_STUB(PushDebugGroup, 1092, PushDebugGroup@16)
  1445.         GL_STUB(SecondaryColor3fEXT, 1093, SecondaryColor3fEXT@12)
  1446.         GL_STUB(SecondaryColor3fvEXT, 1094, SecondaryColor3fvEXT@4)
  1447.         GL_STUB(MultiDrawElementsEXT, 1095, MultiDrawElementsEXT@20)
  1448.         GL_STUB(FogCoordfEXT, 1096, FogCoordfEXT@4)
  1449.         GL_STUB(FogCoordfvEXT, 1097, FogCoordfvEXT@4)
  1450.         GL_STUB(_dispatch_stub_1098, 1098, _dispatch_stub_1098@0)
  1451.         HIDDEN(GL_PREFIX(_dispatch_stub_1098, _dispatch_stub_1098@0))
  1452.         GL_STUB(_dispatch_stub_1099, 1099, _dispatch_stub_1099@32)
  1453.         HIDDEN(GL_PREFIX(_dispatch_stub_1099, _dispatch_stub_1099@32))
  1454.         GL_STUB(_dispatch_stub_1100, 1100, _dispatch_stub_1100@4)
  1455.         HIDDEN(GL_PREFIX(_dispatch_stub_1100, _dispatch_stub_1100@4))
  1456.         GL_STUB(_dispatch_stub_1101, 1101, _dispatch_stub_1101@16)
  1457.         HIDDEN(GL_PREFIX(_dispatch_stub_1101, _dispatch_stub_1101@16))
  1458.         GL_STUB(_dispatch_stub_1102, 1102, _dispatch_stub_1102@4)
  1459.         HIDDEN(GL_PREFIX(_dispatch_stub_1102, _dispatch_stub_1102@4))
  1460.         GL_STUB(_dispatch_stub_1103, 1103, _dispatch_stub_1103@16)
  1461.         HIDDEN(GL_PREFIX(_dispatch_stub_1103, _dispatch_stub_1103@16))
  1462.         GL_STUB(_dispatch_stub_1104, 1104, _dispatch_stub_1104@4)
  1463.         HIDDEN(GL_PREFIX(_dispatch_stub_1104, _dispatch_stub_1104@4))
  1464.         GL_STUB(_dispatch_stub_1105, 1105, _dispatch_stub_1105@16)
  1465.         HIDDEN(GL_PREFIX(_dispatch_stub_1105, _dispatch_stub_1105@16))
  1466.         GL_STUB(_dispatch_stub_1106, 1106, _dispatch_stub_1106@4)
  1467.         HIDDEN(GL_PREFIX(_dispatch_stub_1106, _dispatch_stub_1106@4))
  1468.         GL_STUB(_dispatch_stub_1107, 1107, _dispatch_stub_1107@20)
  1469.         HIDDEN(GL_PREFIX(_dispatch_stub_1107, _dispatch_stub_1107@20))
  1470.         GL_STUB(_dispatch_stub_1108, 1108, _dispatch_stub_1108@24)
  1471.         HIDDEN(GL_PREFIX(_dispatch_stub_1108, _dispatch_stub_1108@24))
  1472.         GL_STUB(_dispatch_stub_1109, 1109, _dispatch_stub_1109@12)
  1473.         HIDDEN(GL_PREFIX(_dispatch_stub_1109, _dispatch_stub_1109@12))
  1474.         GL_STUB(_dispatch_stub_1110, 1110, _dispatch_stub_1110@12)
  1475.         HIDDEN(GL_PREFIX(_dispatch_stub_1110, _dispatch_stub_1110@12))
  1476.         GL_STUB(_dispatch_stub_1111, 1111, _dispatch_stub_1111@16)
  1477.         HIDDEN(GL_PREFIX(_dispatch_stub_1111, _dispatch_stub_1111@16))
  1478.         GL_STUB(_dispatch_stub_1112, 1112, _dispatch_stub_1112@16)
  1479.         HIDDEN(GL_PREFIX(_dispatch_stub_1112, _dispatch_stub_1112@16))
  1480.         GL_STUB(_dispatch_stub_1113, 1113, _dispatch_stub_1113@12)
  1481.         HIDDEN(GL_PREFIX(_dispatch_stub_1113, _dispatch_stub_1113@12))
  1482.         GL_STUB(_dispatch_stub_1114, 1114, _dispatch_stub_1114@12)
  1483.         HIDDEN(GL_PREFIX(_dispatch_stub_1114, _dispatch_stub_1114@12))
  1484.         GL_STUB(_dispatch_stub_1115, 1115, _dispatch_stub_1115@16)
  1485.         HIDDEN(GL_PREFIX(_dispatch_stub_1115, _dispatch_stub_1115@16))
  1486.         GL_STUB(_dispatch_stub_1116, 1116, _dispatch_stub_1116@12)
  1487.         HIDDEN(GL_PREFIX(_dispatch_stub_1116, _dispatch_stub_1116@12))
  1488.         GL_STUB(_dispatch_stub_1117, 1117, _dispatch_stub_1117@12)
  1489.         HIDDEN(GL_PREFIX(_dispatch_stub_1117, _dispatch_stub_1117@12))
  1490.         GL_STUB(_dispatch_stub_1118, 1118, _dispatch_stub_1118@12)
  1491.         HIDDEN(GL_PREFIX(_dispatch_stub_1118, _dispatch_stub_1118@12))
  1492.         GL_STUB(_dispatch_stub_1119, 1119, _dispatch_stub_1119@16)
  1493.         HIDDEN(GL_PREFIX(_dispatch_stub_1119, _dispatch_stub_1119@16))
  1494.         GL_STUB(_dispatch_stub_1120, 1120, _dispatch_stub_1120@16)
  1495.         HIDDEN(GL_PREFIX(_dispatch_stub_1120, _dispatch_stub_1120@16))
  1496.         GL_STUB(_dispatch_stub_1121, 1121, _dispatch_stub_1121@16)
  1497.         HIDDEN(GL_PREFIX(_dispatch_stub_1121, _dispatch_stub_1121@16))
  1498.         GL_STUB(_dispatch_stub_1122, 1122, _dispatch_stub_1122@8)
  1499.         HIDDEN(GL_PREFIX(_dispatch_stub_1122, _dispatch_stub_1122@8))
  1500.         GL_STUB(_dispatch_stub_1123, 1123, _dispatch_stub_1123@16)
  1501.         HIDDEN(GL_PREFIX(_dispatch_stub_1123, _dispatch_stub_1123@16))
  1502.         GL_STUB(_dispatch_stub_1124, 1124, _dispatch_stub_1124@12)
  1503.         HIDDEN(GL_PREFIX(_dispatch_stub_1124, _dispatch_stub_1124@12))
  1504.         GL_STUB(_dispatch_stub_1125, 1125, _dispatch_stub_1125@8)
  1505.         HIDDEN(GL_PREFIX(_dispatch_stub_1125, _dispatch_stub_1125@8))
  1506.         GL_STUB(_dispatch_stub_1126, 1126, _dispatch_stub_1126@8)
  1507.         HIDDEN(GL_PREFIX(_dispatch_stub_1126, _dispatch_stub_1126@8))
  1508.         GL_STUB(_dispatch_stub_1127, 1127, _dispatch_stub_1127@8)
  1509.         HIDDEN(GL_PREFIX(_dispatch_stub_1127, _dispatch_stub_1127@8))
  1510.         GL_STUB(_dispatch_stub_1128, 1128, _dispatch_stub_1128@8)
  1511.         HIDDEN(GL_PREFIX(_dispatch_stub_1128, _dispatch_stub_1128@8))
  1512.         GL_STUB(_dispatch_stub_1129, 1129, _dispatch_stub_1129@8)
  1513.         HIDDEN(GL_PREFIX(_dispatch_stub_1129, _dispatch_stub_1129@8))
  1514.         GL_STUB(_dispatch_stub_1130, 1130, _dispatch_stub_1130@20)
  1515.         HIDDEN(GL_PREFIX(_dispatch_stub_1130, _dispatch_stub_1130@20))
  1516.         GL_STUB(_dispatch_stub_1131, 1131, _dispatch_stub_1131@8)
  1517.         HIDDEN(GL_PREFIX(_dispatch_stub_1131, _dispatch_stub_1131@8))
  1518.         GL_STUB(_dispatch_stub_1132, 1132, _dispatch_stub_1132@12)
  1519.         HIDDEN(GL_PREFIX(_dispatch_stub_1132, _dispatch_stub_1132@12))
  1520.         GL_STUB(_dispatch_stub_1133, 1133, _dispatch_stub_1133@8)
  1521.         HIDDEN(GL_PREFIX(_dispatch_stub_1133, _dispatch_stub_1133@8))
  1522.         GL_STUB(_dispatch_stub_1134, 1134, _dispatch_stub_1134@12)
  1523.         HIDDEN(GL_PREFIX(_dispatch_stub_1134, _dispatch_stub_1134@12))
  1524.         GL_STUB(_dispatch_stub_1135, 1135, _dispatch_stub_1135@8)
  1525.         HIDDEN(GL_PREFIX(_dispatch_stub_1135, _dispatch_stub_1135@8))
  1526.         GL_STUB(_dispatch_stub_1136, 1136, _dispatch_stub_1136@28)
  1527.         HIDDEN(GL_PREFIX(_dispatch_stub_1136, _dispatch_stub_1136@28))
  1528.         GL_STUB(_dispatch_stub_1137, 1137, _dispatch_stub_1137@8)
  1529.         HIDDEN(GL_PREFIX(_dispatch_stub_1137, _dispatch_stub_1137@8))
  1530.         GL_STUB(_dispatch_stub_1138, 1138, _dispatch_stub_1138@16)
  1531.         HIDDEN(GL_PREFIX(_dispatch_stub_1138, _dispatch_stub_1138@16))
  1532.         GL_STUB(_dispatch_stub_1139, 1139, _dispatch_stub_1139@8)
  1533.         HIDDEN(GL_PREFIX(_dispatch_stub_1139, _dispatch_stub_1139@8))
  1534.         GL_STUB(_dispatch_stub_1140, 1140, _dispatch_stub_1140@16)
  1535.         HIDDEN(GL_PREFIX(_dispatch_stub_1140, _dispatch_stub_1140@16))
  1536.         GL_STUB(_dispatch_stub_1141, 1141, _dispatch_stub_1141@8)
  1537.         HIDDEN(GL_PREFIX(_dispatch_stub_1141, _dispatch_stub_1141@8))
  1538.         GL_STUB(_dispatch_stub_1142, 1142, _dispatch_stub_1142@36)
  1539.         HIDDEN(GL_PREFIX(_dispatch_stub_1142, _dispatch_stub_1142@36))
  1540.         GL_STUB(_dispatch_stub_1143, 1143, _dispatch_stub_1143@8)
  1541.         HIDDEN(GL_PREFIX(_dispatch_stub_1143, _dispatch_stub_1143@8))
  1542.         GL_STUB(_dispatch_stub_1144, 1144, _dispatch_stub_1144@20)
  1543.         HIDDEN(GL_PREFIX(_dispatch_stub_1144, _dispatch_stub_1144@20))
  1544.         GL_STUB(_dispatch_stub_1145, 1145, _dispatch_stub_1145@8)
  1545.         HIDDEN(GL_PREFIX(_dispatch_stub_1145, _dispatch_stub_1145@8))
  1546.         GL_STUB(_dispatch_stub_1146, 1146, _dispatch_stub_1146@20)
  1547.         HIDDEN(GL_PREFIX(_dispatch_stub_1146, _dispatch_stub_1146@20))
  1548.         GL_STUB(_dispatch_stub_1147, 1147, _dispatch_stub_1147@8)
  1549.         HIDDEN(GL_PREFIX(_dispatch_stub_1147, _dispatch_stub_1147@8))
  1550.         GL_STUB(_dispatch_stub_1148, 1148, _dispatch_stub_1148@20)
  1551.         HIDDEN(GL_PREFIX(_dispatch_stub_1148, _dispatch_stub_1148@20))
  1552.         GL_STUB(_dispatch_stub_1149, 1149, _dispatch_stub_1149@8)
  1553.         HIDDEN(GL_PREFIX(_dispatch_stub_1149, _dispatch_stub_1149@8))
  1554.         GL_STUB(_dispatch_stub_1150, 1150, _dispatch_stub_1150@20)
  1555.         HIDDEN(GL_PREFIX(_dispatch_stub_1150, _dispatch_stub_1150@20))
  1556.         GL_STUB(_dispatch_stub_1151, 1151, _dispatch_stub_1151@12)
  1557.         HIDDEN(GL_PREFIX(_dispatch_stub_1151, _dispatch_stub_1151@12))
  1558.         GL_STUB(_dispatch_stub_1152, 1152, _dispatch_stub_1152@12)
  1559.         HIDDEN(GL_PREFIX(_dispatch_stub_1152, _dispatch_stub_1152@12))
  1560.         GL_STUB(_dispatch_stub_1153, 1153, _dispatch_stub_1153@12)
  1561.         HIDDEN(GL_PREFIX(_dispatch_stub_1153, _dispatch_stub_1153@12))
  1562.         GL_STUB(_dispatch_stub_1154, 1154, _dispatch_stub_1154@12)
  1563.         HIDDEN(GL_PREFIX(_dispatch_stub_1154, _dispatch_stub_1154@12))
  1564.         GL_STUB(_dispatch_stub_1155, 1155, _dispatch_stub_1155@12)
  1565.         HIDDEN(GL_PREFIX(_dispatch_stub_1155, _dispatch_stub_1155@12))
  1566.         GL_STUB(_dispatch_stub_1156, 1156, _dispatch_stub_1156@12)
  1567.         HIDDEN(GL_PREFIX(_dispatch_stub_1156, _dispatch_stub_1156@12))
  1568.         GL_STUB(_dispatch_stub_1157, 1157, _dispatch_stub_1157@12)
  1569.         HIDDEN(GL_PREFIX(_dispatch_stub_1157, _dispatch_stub_1157@12))
  1570.         GL_STUB(_dispatch_stub_1158, 1158, _dispatch_stub_1158@12)
  1571.         HIDDEN(GL_PREFIX(_dispatch_stub_1158, _dispatch_stub_1158@12))
  1572.         GL_STUB(_dispatch_stub_1159, 1159, _dispatch_stub_1159@12)
  1573.         HIDDEN(GL_PREFIX(_dispatch_stub_1159, _dispatch_stub_1159@12))
  1574.         GL_STUB(_dispatch_stub_1160, 1160, _dispatch_stub_1160@12)
  1575.         HIDDEN(GL_PREFIX(_dispatch_stub_1160, _dispatch_stub_1160@12))
  1576.         GL_STUB(_dispatch_stub_1161, 1161, _dispatch_stub_1161@12)
  1577.         HIDDEN(GL_PREFIX(_dispatch_stub_1161, _dispatch_stub_1161@12))
  1578.         GL_STUB(_dispatch_stub_1162, 1162, _dispatch_stub_1162@12)
  1579.         HIDDEN(GL_PREFIX(_dispatch_stub_1162, _dispatch_stub_1162@12))
  1580.         GL_STUB(_dispatch_stub_1163, 1163, _dispatch_stub_1163@12)
  1581.         HIDDEN(GL_PREFIX(_dispatch_stub_1163, _dispatch_stub_1163@12))
  1582.         GL_STUB(_dispatch_stub_1164, 1164, _dispatch_stub_1164@8)
  1583.         HIDDEN(GL_PREFIX(_dispatch_stub_1164, _dispatch_stub_1164@8))
  1584.         GL_STUB(_dispatch_stub_1165, 1165, _dispatch_stub_1165@8)
  1585.         HIDDEN(GL_PREFIX(_dispatch_stub_1165, _dispatch_stub_1165@8))
  1586.         GL_STUB(_dispatch_stub_1166, 1166, _dispatch_stub_1166@8)
  1587.         HIDDEN(GL_PREFIX(_dispatch_stub_1166, _dispatch_stub_1166@8))
  1588.         GL_STUB(_dispatch_stub_1167, 1167, _dispatch_stub_1167@8)
  1589.         HIDDEN(GL_PREFIX(_dispatch_stub_1167, _dispatch_stub_1167@8))
  1590.         GL_STUB(_dispatch_stub_1168, 1168, _dispatch_stub_1168@24)
  1591.         HIDDEN(GL_PREFIX(_dispatch_stub_1168, _dispatch_stub_1168@24))
  1592.         GL_STUB(_dispatch_stub_1169, 1169, _dispatch_stub_1169@36)
  1593.         HIDDEN(GL_PREFIX(_dispatch_stub_1169, _dispatch_stub_1169@36))
  1594.         GL_STUB(_dispatch_stub_1170, 1170, _dispatch_stub_1170@48)
  1595.         HIDDEN(GL_PREFIX(_dispatch_stub_1170, _dispatch_stub_1170@48))
  1596.         GL_STUB(_dispatch_stub_1171, 1171, _dispatch_stub_1171@0)
  1597.         HIDDEN(GL_PREFIX(_dispatch_stub_1171, _dispatch_stub_1171@0))
  1598.         GL_STUB(_dispatch_stub_1172, 1172, _dispatch_stub_1172@4)
  1599.         HIDDEN(GL_PREFIX(_dispatch_stub_1172, _dispatch_stub_1172@4))
  1600.         GL_STUB(_dispatch_stub_1173, 1173, _dispatch_stub_1173@28)
  1601.         HIDDEN(GL_PREFIX(_dispatch_stub_1173, _dispatch_stub_1173@28))
  1602.         GL_STUB(_dispatch_stub_1174, 1174, _dispatch_stub_1174@40)
  1603.         HIDDEN(GL_PREFIX(_dispatch_stub_1174, _dispatch_stub_1174@40))
  1604.         GL_STUB(_dispatch_stub_1175, 1175, _dispatch_stub_1175@52)
  1605.         HIDDEN(GL_PREFIX(_dispatch_stub_1175, _dispatch_stub_1175@52))
  1606.         GL_STUB(_dispatch_stub_1176, 1176, _dispatch_stub_1176@4)
  1607.         HIDDEN(GL_PREFIX(_dispatch_stub_1176, _dispatch_stub_1176@4))
  1608.         GL_STUB(_dispatch_stub_1177, 1177, _dispatch_stub_1177@0)
  1609.         HIDDEN(GL_PREFIX(_dispatch_stub_1177, _dispatch_stub_1177@0))
  1610.         GL_STUB(_dispatch_stub_1178, 1178, _dispatch_stub_1178@4)
  1611.         HIDDEN(GL_PREFIX(_dispatch_stub_1178, _dispatch_stub_1178@4))
  1612.         GL_STUB(_dispatch_stub_1179, 1179, _dispatch_stub_1179@12)
  1613.         HIDDEN(GL_PREFIX(_dispatch_stub_1179, _dispatch_stub_1179@12))
  1614.         GL_STUB(_dispatch_stub_1180, 1180, _dispatch_stub_1180@12)
  1615.         HIDDEN(GL_PREFIX(_dispatch_stub_1180, _dispatch_stub_1180@12))
  1616.         GL_STUB(_dispatch_stub_1181, 1181, _dispatch_stub_1181@8)
  1617.         HIDDEN(GL_PREFIX(_dispatch_stub_1181, _dispatch_stub_1181@8))
  1618.         GL_STUB(_dispatch_stub_1182, 1182, _dispatch_stub_1182@4)
  1619.         HIDDEN(GL_PREFIX(_dispatch_stub_1182, _dispatch_stub_1182@4))
  1620.         GL_STUB(_dispatch_stub_1183, 1183, _dispatch_stub_1183@4)
  1621.         HIDDEN(GL_PREFIX(_dispatch_stub_1183, _dispatch_stub_1183@4))
  1622.         GL_STUB(_dispatch_stub_1184, 1184, _dispatch_stub_1184@8)
  1623.         HIDDEN(GL_PREFIX(_dispatch_stub_1184, _dispatch_stub_1184@8))
  1624.         GL_STUB(_dispatch_stub_1185, 1185, _dispatch_stub_1185@16)
  1625.         HIDDEN(GL_PREFIX(_dispatch_stub_1185, _dispatch_stub_1185@16))
  1626.         GL_STUB(_dispatch_stub_1186, 1186, _dispatch_stub_1186@16)
  1627.         HIDDEN(GL_PREFIX(_dispatch_stub_1186, _dispatch_stub_1186@16))
  1628.         GL_STUB(_dispatch_stub_1187, 1187, _dispatch_stub_1187@44)
  1629.         HIDDEN(GL_PREFIX(_dispatch_stub_1187, _dispatch_stub_1187@44))
  1630.         GL_STUB(_dispatch_stub_1188, 1188, _dispatch_stub_1188@16)
  1631.         HIDDEN(GL_PREFIX(_dispatch_stub_1188, _dispatch_stub_1188@16))
  1632.         GL_STUB(_dispatch_stub_1189, 1189, _dispatch_stub_1189@28)
  1633.         HIDDEN(GL_PREFIX(_dispatch_stub_1189, _dispatch_stub_1189@28))
  1634.         GL_STUB(_dispatch_stub_1190, 1190, _dispatch_stub_1190@16)
  1635.         HIDDEN(GL_PREFIX(_dispatch_stub_1190, _dispatch_stub_1190@16))
  1636.         GL_STUB(PrimitiveRestartNV, 1191, PrimitiveRestartNV@0)
  1637.         GL_STUB(_dispatch_stub_1192, 1192, _dispatch_stub_1192@12)
  1638.         HIDDEN(GL_PREFIX(_dispatch_stub_1192, _dispatch_stub_1192@12))
  1639.         GL_STUB(_dispatch_stub_1193, 1193, _dispatch_stub_1193@12)
  1640.         HIDDEN(GL_PREFIX(_dispatch_stub_1193, _dispatch_stub_1193@12))
  1641.         GL_STUB(_dispatch_stub_1194, 1194, _dispatch_stub_1194@12)
  1642.         HIDDEN(GL_PREFIX(_dispatch_stub_1194, _dispatch_stub_1194@12))
  1643.         GL_STUB(_dispatch_stub_1195, 1195, _dispatch_stub_1195@16)
  1644.         HIDDEN(GL_PREFIX(_dispatch_stub_1195, _dispatch_stub_1195@16))
  1645.         GL_STUB(BindFramebufferEXT, 1196, BindFramebufferEXT@8)
  1646.         GL_STUB(BindRenderbufferEXT, 1197, BindRenderbufferEXT@8)
  1647.         GL_STUB(_dispatch_stub_1198, 1198, _dispatch_stub_1198@12)
  1648.         HIDDEN(GL_PREFIX(_dispatch_stub_1198, _dispatch_stub_1198@12))
  1649.         GL_STUB(_dispatch_stub_1199, 1199, _dispatch_stub_1199@12)
  1650.         HIDDEN(GL_PREFIX(_dispatch_stub_1199, _dispatch_stub_1199@12))
  1651.         GL_STUB(VertexAttribI1iEXT, 1200, VertexAttribI1iEXT@8)
  1652.         GL_STUB(VertexAttribI1uiEXT, 1201, VertexAttribI1uiEXT@8)
  1653.         GL_STUB(VertexAttribI2iEXT, 1202, VertexAttribI2iEXT@12)
  1654.         GL_STUB(VertexAttribI2ivEXT, 1203, VertexAttribI2ivEXT@8)
  1655.         GL_STUB(VertexAttribI2uiEXT, 1204, VertexAttribI2uiEXT@12)
  1656.         GL_STUB(VertexAttribI2uivEXT, 1205, VertexAttribI2uivEXT@8)
  1657.         GL_STUB(VertexAttribI3iEXT, 1206, VertexAttribI3iEXT@16)
  1658.         GL_STUB(VertexAttribI3ivEXT, 1207, VertexAttribI3ivEXT@8)
  1659.         GL_STUB(VertexAttribI3uiEXT, 1208, VertexAttribI3uiEXT@16)
  1660.         GL_STUB(VertexAttribI3uivEXT, 1209, VertexAttribI3uivEXT@8)
  1661.         GL_STUB(VertexAttribI4iEXT, 1210, VertexAttribI4iEXT@20)
  1662.         GL_STUB(VertexAttribI4ivEXT, 1211, VertexAttribI4ivEXT@8)
  1663.         GL_STUB(VertexAttribI4uiEXT, 1212, VertexAttribI4uiEXT@20)
  1664.         GL_STUB(VertexAttribI4uivEXT, 1213, VertexAttribI4uivEXT@8)
  1665.         GL_STUB(ClearColorIiEXT, 1214, ClearColorIiEXT@16)
  1666.         GL_STUB(ClearColorIuiEXT, 1215, ClearColorIuiEXT@16)
  1667.         GL_STUB(_dispatch_stub_1216, 1216, _dispatch_stub_1216@16)
  1668.         HIDDEN(GL_PREFIX(_dispatch_stub_1216, _dispatch_stub_1216@16))
  1669.         GL_STUB(_dispatch_stub_1217, 1217, _dispatch_stub_1217@4)
  1670.         HIDDEN(GL_PREFIX(_dispatch_stub_1217, _dispatch_stub_1217@4))
  1671.         GL_STUB(_dispatch_stub_1218, 1218, _dispatch_stub_1218@8)
  1672.         HIDDEN(GL_PREFIX(_dispatch_stub_1218, _dispatch_stub_1218@8))
  1673.         GL_STUB(_dispatch_stub_1219, 1219, _dispatch_stub_1219@4)
  1674.         HIDDEN(GL_PREFIX(_dispatch_stub_1219, _dispatch_stub_1219@4))
  1675.         GL_STUB(_dispatch_stub_1220, 1220, _dispatch_stub_1220@8)
  1676.         HIDDEN(GL_PREFIX(_dispatch_stub_1220, _dispatch_stub_1220@8))
  1677.         GL_STUB(_dispatch_stub_1221, 1221, _dispatch_stub_1221@20)
  1678.         HIDDEN(GL_PREFIX(_dispatch_stub_1221, _dispatch_stub_1221@20))
  1679.         GL_STUB(_dispatch_stub_1222, 1222, _dispatch_stub_1222@16)
  1680.         HIDDEN(GL_PREFIX(_dispatch_stub_1222, _dispatch_stub_1222@16))
  1681.         GL_STUB(_dispatch_stub_1223, 1223, _dispatch_stub_1223@20)
  1682.         HIDDEN(GL_PREFIX(_dispatch_stub_1223, _dispatch_stub_1223@20))
  1683.         GL_STUB(_dispatch_stub_1224, 1224, _dispatch_stub_1224@20)
  1684.         HIDDEN(GL_PREFIX(_dispatch_stub_1224, _dispatch_stub_1224@20))
  1685.         GL_STUB(_dispatch_stub_1225, 1225, _dispatch_stub_1225@16)
  1686.         HIDDEN(GL_PREFIX(_dispatch_stub_1225, _dispatch_stub_1225@16))
  1687.         GL_STUB(_dispatch_stub_1226, 1226, _dispatch_stub_1226@12)
  1688.         HIDDEN(GL_PREFIX(_dispatch_stub_1226, _dispatch_stub_1226@12))
  1689.         GL_STUB(_dispatch_stub_1227, 1227, _dispatch_stub_1227@20)
  1690.         HIDDEN(GL_PREFIX(_dispatch_stub_1227, _dispatch_stub_1227@20))
  1691.         GL_STUB(_dispatch_stub_1228, 1228, _dispatch_stub_1228@16)
  1692.         HIDDEN(GL_PREFIX(_dispatch_stub_1228, _dispatch_stub_1228@16))
  1693.         GL_STUB(_dispatch_stub_1229, 1229, _dispatch_stub_1229@12)
  1694.         HIDDEN(GL_PREFIX(_dispatch_stub_1229, _dispatch_stub_1229@12))
  1695.         GL_STUB(_dispatch_stub_1230, 1230, _dispatch_stub_1230@12)
  1696.         HIDDEN(GL_PREFIX(_dispatch_stub_1230, _dispatch_stub_1230@12))
  1697.         GL_STUB(_dispatch_stub_1231, 1231, _dispatch_stub_1231@4)
  1698.         HIDDEN(GL_PREFIX(_dispatch_stub_1231, _dispatch_stub_1231@4))
  1699.         GL_STUB(_dispatch_stub_1232, 1232, _dispatch_stub_1232@8)
  1700.         HIDDEN(GL_PREFIX(_dispatch_stub_1232, _dispatch_stub_1232@8))
  1701.         GL_STUB(_dispatch_stub_1233, 1233, _dispatch_stub_1233@8)
  1702.         HIDDEN(GL_PREFIX(_dispatch_stub_1233, _dispatch_stub_1233@8))
  1703.         GL_STUB(TextureBarrierNV, 1234, TextureBarrierNV@0)
  1704.         GL_STUB(_dispatch_stub_1235, 1235, _dispatch_stub_1235@0)
  1705.         HIDDEN(GL_PREFIX(_dispatch_stub_1235, _dispatch_stub_1235@0))
  1706.         GL_STUB(_dispatch_stub_1236, 1236, _dispatch_stub_1236@20)
  1707.         HIDDEN(GL_PREFIX(_dispatch_stub_1236, _dispatch_stub_1236@20))
  1708.         GL_STUB(_dispatch_stub_1237, 1237, _dispatch_stub_1237@8)
  1709.         HIDDEN(GL_PREFIX(_dispatch_stub_1237, _dispatch_stub_1237@8))
  1710.         GL_STUB(_dispatch_stub_1238, 1238, _dispatch_stub_1238@4)
  1711.         HIDDEN(GL_PREFIX(_dispatch_stub_1238, _dispatch_stub_1238@4))
  1712.         GL_STUB(_dispatch_stub_1239, 1239, _dispatch_stub_1239@8)
  1713.         HIDDEN(GL_PREFIX(_dispatch_stub_1239, _dispatch_stub_1239@8))
  1714.         GL_STUB(_dispatch_stub_1240, 1240, _dispatch_stub_1240@16)
  1715.         HIDDEN(GL_PREFIX(_dispatch_stub_1240, _dispatch_stub_1240@16))
  1716.         GL_STUB(_dispatch_stub_1241, 1241, _dispatch_stub_1241@16)
  1717.         HIDDEN(GL_PREFIX(_dispatch_stub_1241, _dispatch_stub_1241@16))
  1718.         GL_STUB(_dispatch_stub_1242, 1242, _dispatch_stub_1242@8)
  1719.         HIDDEN(GL_PREFIX(_dispatch_stub_1242, _dispatch_stub_1242@8))
  1720.         GL_STUB(_dispatch_stub_1243, 1243, _dispatch_stub_1243@8)
  1721.         HIDDEN(GL_PREFIX(_dispatch_stub_1243, _dispatch_stub_1243@8))
  1722.         GL_STUB(_dispatch_stub_1244, 1244, _dispatch_stub_1244@4)
  1723.         HIDDEN(GL_PREFIX(_dispatch_stub_1244, _dispatch_stub_1244@4))
  1724.         GL_STUB(_dispatch_stub_1245, 1245, _dispatch_stub_1245@4)
  1725.         HIDDEN(GL_PREFIX(_dispatch_stub_1245, _dispatch_stub_1245@4))
  1726.         GL_STUB(_dispatch_stub_1246, 1246, _dispatch_stub_1246@8)
  1727.         HIDDEN(GL_PREFIX(_dispatch_stub_1246, _dispatch_stub_1246@8))
  1728.         GL_STUB(_dispatch_stub_1247, 1247, _dispatch_stub_1247@4)
  1729.         HIDDEN(GL_PREFIX(_dispatch_stub_1247, _dispatch_stub_1247@4))
  1730.         GL_STUB(_dispatch_stub_1248, 1248, _dispatch_stub_1248@4)
  1731.         HIDDEN(GL_PREFIX(_dispatch_stub_1248, _dispatch_stub_1248@4))
  1732.         GL_STUB(_dispatch_stub_1249, 1249, _dispatch_stub_1249@4)
  1733.         HIDDEN(GL_PREFIX(_dispatch_stub_1249, _dispatch_stub_1249@4))
  1734.         GL_STUB(_dispatch_stub_1250, 1250, _dispatch_stub_1250@8)
  1735.         HIDDEN(GL_PREFIX(_dispatch_stub_1250, _dispatch_stub_1250@8))
  1736.         GL_STUB(_dispatch_stub_1251, 1251, _dispatch_stub_1251@44)
  1737.         HIDDEN(GL_PREFIX(_dispatch_stub_1251, _dispatch_stub_1251@44))
  1738.         GL_STUB(_dispatch_stub_1252, 1252, _dispatch_stub_1252@20)
  1739.         HIDDEN(GL_PREFIX(_dispatch_stub_1252, _dispatch_stub_1252@20))
  1740.         GL_STUB(_dispatch_stub_1253, 1253, _dispatch_stub_1253@8)
  1741.         HIDDEN(GL_PREFIX(_dispatch_stub_1253, _dispatch_stub_1253@8))
  1742.         GL_STUB(_dispatch_stub_1254, 1254, _dispatch_stub_1254@28)
  1743.         HIDDEN(GL_PREFIX(_dispatch_stub_1254, _dispatch_stub_1254@28))
  1744.         GL_STUB(_dispatch_stub_1255, 1255, _dispatch_stub_1255@12)
  1745.         HIDDEN(GL_PREFIX(_dispatch_stub_1255, _dispatch_stub_1255@12))
  1746.         GL_STUB(_dispatch_stub_1256, 1256, _dispatch_stub_1256@16)
  1747.         HIDDEN(GL_PREFIX(_dispatch_stub_1256, _dispatch_stub_1256@16))
  1748.         GL_STUB(_dispatch_stub_1257, 1257, _dispatch_stub_1257@16)
  1749.         HIDDEN(GL_PREFIX(_dispatch_stub_1257, _dispatch_stub_1257@16))
  1750.         GL_STUB(_dispatch_stub_1258, 1258, _dispatch_stub_1258@16)
  1751.         HIDDEN(GL_PREFIX(_dispatch_stub_1258, _dispatch_stub_1258@16))
  1752.         GL_STUB(_dispatch_stub_1259, 1259, _dispatch_stub_1259@8)
  1753.         HIDDEN(GL_PREFIX(_dispatch_stub_1259, _dispatch_stub_1259@8))
  1754.         GL_STUB(_dispatch_stub_1260, 1260, _dispatch_stub_1260@8)
  1755.         HIDDEN(GL_PREFIX(_dispatch_stub_1260, _dispatch_stub_1260@8))
  1756.         GL_STUB(AlphaFuncx, 1261, AlphaFuncx@8)
  1757.         GL_STUB(ClearColorx, 1262, ClearColorx@16)
  1758.         GL_STUB(ClearDepthx, 1263, ClearDepthx@4)
  1759.         GL_STUB(Color4x, 1264, Color4x@16)
  1760.         GL_STUB(DepthRangex, 1265, DepthRangex@8)
  1761.         GL_STUB(Fogx, 1266, Fogx@8)
  1762.         GL_STUB(Fogxv, 1267, Fogxv@8)
  1763.         GL_STUB(Frustumf, 1268, Frustumf@24)
  1764.         GL_STUB(Frustumx, 1269, Frustumx@24)
  1765.         GL_STUB(LightModelx, 1270, LightModelx@8)
  1766.         GL_STUB(LightModelxv, 1271, LightModelxv@8)
  1767.         GL_STUB(Lightx, 1272, Lightx@12)
  1768.         GL_STUB(Lightxv, 1273, Lightxv@12)
  1769.         GL_STUB(LineWidthx, 1274, LineWidthx@4)
  1770.         GL_STUB(LoadMatrixx, 1275, LoadMatrixx@4)
  1771.         GL_STUB(Materialx, 1276, Materialx@12)
  1772.         GL_STUB(Materialxv, 1277, Materialxv@12)
  1773.         GL_STUB(MultMatrixx, 1278, MultMatrixx@4)
  1774.         GL_STUB(MultiTexCoord4x, 1279, MultiTexCoord4x@20)
  1775.         GL_STUB(Normal3x, 1280, Normal3x@12)
  1776.         GL_STUB(Orthof, 1281, Orthof@24)
  1777.         GL_STUB(Orthox, 1282, Orthox@24)
  1778.         GL_STUB(PointSizex, 1283, PointSizex@4)
  1779.         GL_STUB(PolygonOffsetx, 1284, PolygonOffsetx@8)
  1780.         GL_STUB(Rotatex, 1285, Rotatex@16)
  1781.         GL_STUB(SampleCoveragex, 1286, SampleCoveragex@8)
  1782.         GL_STUB(Scalex, 1287, Scalex@12)
  1783.         GL_STUB(TexEnvx, 1288, TexEnvx@12)
  1784.         GL_STUB(TexEnvxv, 1289, TexEnvxv@12)
  1785.         GL_STUB(TexParameterx, 1290, TexParameterx@12)
  1786.         GL_STUB(Translatex, 1291, Translatex@12)
  1787.         GL_STUB(ClipPlanef, 1292, ClipPlanef@8)
  1788.         GL_STUB(ClipPlanex, 1293, ClipPlanex@8)
  1789.         GL_STUB(GetClipPlanef, 1294, GetClipPlanef@8)
  1790.         GL_STUB(GetClipPlanex, 1295, GetClipPlanex@8)
  1791.         GL_STUB(GetFixedv, 1296, GetFixedv@8)
  1792.         GL_STUB(GetLightxv, 1297, GetLightxv@12)
  1793.         GL_STUB(GetMaterialxv, 1298, GetMaterialxv@12)
  1794.         GL_STUB(GetTexEnvxv, 1299, GetTexEnvxv@12)
  1795.         GL_STUB(GetTexParameterxv, 1300, GetTexParameterxv@12)
  1796.         GL_STUB(PointParameterx, 1301, PointParameterx@8)
  1797.         GL_STUB(PointParameterxv, 1302, PointParameterxv@8)
  1798.         GL_STUB(TexParameterxv, 1303, TexParameterxv@12)
  1799.         GL_STUB_ALIAS(ArrayElementEXT, 306, ArrayElementEXT@4, ArrayElement, ArrayElement@4)
  1800.         GL_STUB_ALIAS(BindTextureEXT, 307, BindTextureEXT@8, BindTexture, BindTexture@8)
  1801.         GL_STUB_ALIAS(DrawArraysEXT, 310, DrawArraysEXT@12, DrawArrays, DrawArrays@12)
  1802. #ifndef GLX_INDIRECT_RENDERING
  1803.         GL_STUB_ALIAS(AreTexturesResidentEXT, 322, AreTexturesResidentEXT@12, AreTexturesResident, AreTexturesResident@12)
  1804. #endif
  1805. #ifndef GLX_INDIRECT_RENDERING
  1806.         GL_STUB_ALIAS(DeleteTexturesEXT, 327, DeleteTexturesEXT@8, DeleteTextures, DeleteTextures@8)
  1807. #endif
  1808. #ifndef GLX_INDIRECT_RENDERING
  1809.         GL_STUB_ALIAS(GenTexturesEXT, 328, GenTexturesEXT@8, GenTextures, GenTextures@8)
  1810. #endif
  1811.         GL_STUB_ALIAS(GetPointervEXT, 329, GetPointervEXT@8, GetPointerv, GetPointerv@8)
  1812. #ifndef GLX_INDIRECT_RENDERING
  1813.         GL_STUB_ALIAS(IsTextureEXT, 330, IsTextureEXT@4, IsTexture, IsTexture@4)
  1814. #endif
  1815.         GL_STUB_ALIAS(PrioritizeTexturesEXT, 331, PrioritizeTexturesEXT@12, PrioritizeTextures, PrioritizeTextures@12)
  1816.         GL_STUB_ALIAS(BlendColorEXT, 336, BlendColorEXT@16, BlendColor, BlendColor@16)
  1817.         GL_STUB_ALIAS(BlendEquationEXT, 337, BlendEquationEXT@4, BlendEquation, BlendEquation@4)
  1818.         GL_STUB_ALIAS(DrawRangeElementsEXT, 338, DrawRangeElementsEXT@24, DrawRangeElements, DrawRangeElements@24)
  1819.         GL_STUB_ALIAS(TexImage3DEXT, 371, TexImage3DEXT@40, TexImage3D, TexImage3D@40)
  1820.         GL_STUB_ALIAS(TexSubImage3DEXT, 372, TexSubImage3DEXT@44, TexSubImage3D, TexSubImage3D@44)
  1821.         GL_STUB_ALIAS(CopyTexSubImage3DEXT, 373, CopyTexSubImage3DEXT@36, CopyTexSubImage3D, CopyTexSubImage3D@36)
  1822.         GL_STUB_ALIAS(ActiveTextureARB, 374, ActiveTextureARB@4, ActiveTexture, ActiveTexture@4)
  1823.         GL_STUB_ALIAS(ClientActiveTextureARB, 375, ClientActiveTextureARB@4, ClientActiveTexture, ClientActiveTexture@4)
  1824.         GL_STUB_ALIAS(MultiTexCoord1dARB, 376, MultiTexCoord1dARB@12, MultiTexCoord1d, MultiTexCoord1d@12)
  1825.         GL_STUB_ALIAS(MultiTexCoord1dvARB, 377, MultiTexCoord1dvARB@8, MultiTexCoord1dv, MultiTexCoord1dv@8)
  1826.         GL_STUB_ALIAS(MultiTexCoord1f, 378, MultiTexCoord1f@8, MultiTexCoord1fARB, MultiTexCoord1fARB@8)
  1827.         GL_STUB_ALIAS(MultiTexCoord1fv, 379, MultiTexCoord1fv@8, MultiTexCoord1fvARB, MultiTexCoord1fvARB@8)
  1828.         GL_STUB_ALIAS(MultiTexCoord1iARB, 380, MultiTexCoord1iARB@8, MultiTexCoord1i, MultiTexCoord1i@8)
  1829.         GL_STUB_ALIAS(MultiTexCoord1ivARB, 381, MultiTexCoord1ivARB@8, MultiTexCoord1iv, MultiTexCoord1iv@8)
  1830.         GL_STUB_ALIAS(MultiTexCoord1sARB, 382, MultiTexCoord1sARB@8, MultiTexCoord1s, MultiTexCoord1s@8)
  1831.         GL_STUB_ALIAS(MultiTexCoord1svARB, 383, MultiTexCoord1svARB@8, MultiTexCoord1sv, MultiTexCoord1sv@8)
  1832.         GL_STUB_ALIAS(MultiTexCoord2dARB, 384, MultiTexCoord2dARB@20, MultiTexCoord2d, MultiTexCoord2d@20)
  1833.         GL_STUB_ALIAS(MultiTexCoord2dvARB, 385, MultiTexCoord2dvARB@8, MultiTexCoord2dv, MultiTexCoord2dv@8)
  1834.         GL_STUB_ALIAS(MultiTexCoord2f, 386, MultiTexCoord2f@12, MultiTexCoord2fARB, MultiTexCoord2fARB@12)
  1835.         GL_STUB_ALIAS(MultiTexCoord2fv, 387, MultiTexCoord2fv@8, MultiTexCoord2fvARB, MultiTexCoord2fvARB@8)
  1836.         GL_STUB_ALIAS(MultiTexCoord2iARB, 388, MultiTexCoord2iARB@12, MultiTexCoord2i, MultiTexCoord2i@12)
  1837.         GL_STUB_ALIAS(MultiTexCoord2ivARB, 389, MultiTexCoord2ivARB@8, MultiTexCoord2iv, MultiTexCoord2iv@8)
  1838.         GL_STUB_ALIAS(MultiTexCoord2sARB, 390, MultiTexCoord2sARB@12, MultiTexCoord2s, MultiTexCoord2s@12)
  1839.         GL_STUB_ALIAS(MultiTexCoord2svARB, 391, MultiTexCoord2svARB@8, MultiTexCoord2sv, MultiTexCoord2sv@8)
  1840.         GL_STUB_ALIAS(MultiTexCoord3dARB, 392, MultiTexCoord3dARB@28, MultiTexCoord3d, MultiTexCoord3d@28)
  1841.         GL_STUB_ALIAS(MultiTexCoord3dvARB, 393, MultiTexCoord3dvARB@8, MultiTexCoord3dv, MultiTexCoord3dv@8)
  1842.         GL_STUB_ALIAS(MultiTexCoord3f, 394, MultiTexCoord3f@16, MultiTexCoord3fARB, MultiTexCoord3fARB@16)
  1843.         GL_STUB_ALIAS(MultiTexCoord3fv, 395, MultiTexCoord3fv@8, MultiTexCoord3fvARB, MultiTexCoord3fvARB@8)
  1844.         GL_STUB_ALIAS(MultiTexCoord3iARB, 396, MultiTexCoord3iARB@16, MultiTexCoord3i, MultiTexCoord3i@16)
  1845.         GL_STUB_ALIAS(MultiTexCoord3ivARB, 397, MultiTexCoord3ivARB@8, MultiTexCoord3iv, MultiTexCoord3iv@8)
  1846.         GL_STUB_ALIAS(MultiTexCoord3sARB, 398, MultiTexCoord3sARB@16, MultiTexCoord3s, MultiTexCoord3s@16)
  1847.         GL_STUB_ALIAS(MultiTexCoord3svARB, 399, MultiTexCoord3svARB@8, MultiTexCoord3sv, MultiTexCoord3sv@8)
  1848.         GL_STUB_ALIAS(MultiTexCoord4dARB, 400, MultiTexCoord4dARB@36, MultiTexCoord4d, MultiTexCoord4d@36)
  1849.         GL_STUB_ALIAS(MultiTexCoord4dvARB, 401, MultiTexCoord4dvARB@8, MultiTexCoord4dv, MultiTexCoord4dv@8)
  1850.         GL_STUB_ALIAS(MultiTexCoord4f, 402, MultiTexCoord4f@20, MultiTexCoord4fARB, MultiTexCoord4fARB@20)
  1851.         GL_STUB_ALIAS(MultiTexCoord4fv, 403, MultiTexCoord4fv@8, MultiTexCoord4fvARB, MultiTexCoord4fvARB@8)
  1852.         GL_STUB_ALIAS(MultiTexCoord4iARB, 404, MultiTexCoord4iARB@20, MultiTexCoord4i, MultiTexCoord4i@20)
  1853.         GL_STUB_ALIAS(MultiTexCoord4ivARB, 405, MultiTexCoord4ivARB@8, MultiTexCoord4iv, MultiTexCoord4iv@8)
  1854.         GL_STUB_ALIAS(MultiTexCoord4sARB, 406, MultiTexCoord4sARB@20, MultiTexCoord4s, MultiTexCoord4s@20)
  1855.         GL_STUB_ALIAS(MultiTexCoord4svARB, 407, MultiTexCoord4svARB@8, MultiTexCoord4sv, MultiTexCoord4sv@8)
  1856.         GL_STUB_ALIAS(CompressedTexImage1DARB, 408, CompressedTexImage1DARB@28, CompressedTexImage1D, CompressedTexImage1D@28)
  1857.         GL_STUB_ALIAS(CompressedTexImage2DARB, 409, CompressedTexImage2DARB@32, CompressedTexImage2D, CompressedTexImage2D@32)
  1858.         GL_STUB_ALIAS(CompressedTexImage3DARB, 410, CompressedTexImage3DARB@36, CompressedTexImage3D, CompressedTexImage3D@36)
  1859.         GL_STUB_ALIAS(CompressedTexSubImage1DARB, 411, CompressedTexSubImage1DARB@28, CompressedTexSubImage1D, CompressedTexSubImage1D@28)
  1860.         GL_STUB_ALIAS(CompressedTexSubImage2DARB, 412, CompressedTexSubImage2DARB@36, CompressedTexSubImage2D, CompressedTexSubImage2D@36)
  1861.         GL_STUB_ALIAS(CompressedTexSubImage3DARB, 413, CompressedTexSubImage3DARB@44, CompressedTexSubImage3D, CompressedTexSubImage3D@44)
  1862.         GL_STUB_ALIAS(GetCompressedTexImageARB, 414, GetCompressedTexImageARB@12, GetCompressedTexImage, GetCompressedTexImage@12)
  1863.         GL_STUB_ALIAS(LoadTransposeMatrixdARB, 415, LoadTransposeMatrixdARB@4, LoadTransposeMatrixd, LoadTransposeMatrixd@4)
  1864.         GL_STUB_ALIAS(LoadTransposeMatrixfARB, 416, LoadTransposeMatrixfARB@4, LoadTransposeMatrixf, LoadTransposeMatrixf@4)
  1865.         GL_STUB_ALIAS(MultTransposeMatrixdARB, 417, MultTransposeMatrixdARB@4, MultTransposeMatrixd, MultTransposeMatrixd@4)
  1866.         GL_STUB_ALIAS(MultTransposeMatrixfARB, 418, MultTransposeMatrixfARB@4, MultTransposeMatrixf, MultTransposeMatrixf@4)
  1867.         GL_STUB_ALIAS(SampleCoverageARB, 419, SampleCoverageARB@8, SampleCoverage, SampleCoverage@8)
  1868.         GL_STUB_ALIAS(BlendFuncSeparateEXT, 420, BlendFuncSeparateEXT@16, BlendFuncSeparate, BlendFuncSeparate@16)
  1869.         GL_STUB_ALIAS(FogCoordPointerEXT, 421, FogCoordPointerEXT@12, FogCoordPointer, FogCoordPointer@12)
  1870.         GL_STUB_ALIAS(FogCoorddEXT, 422, FogCoorddEXT@8, FogCoordd, FogCoordd@8)
  1871.         GL_STUB_ALIAS(FogCoorddvEXT, 423, FogCoorddvEXT@4, FogCoorddv, FogCoorddv@4)
  1872.         GL_STUB_ALIAS(MultiDrawArraysEXT, 424, MultiDrawArraysEXT@16, MultiDrawArrays, MultiDrawArrays@16)
  1873.         GL_STUB_ALIAS(PointParameterfARB, 425, PointParameterfARB@8, PointParameterf, PointParameterf@8)
  1874.         GL_STUB_ALIAS(PointParameterfEXT, 425, PointParameterfEXT@8, PointParameterf, PointParameterf@8)
  1875.         GL_STUB_ALIAS(PointParameterfvARB, 426, PointParameterfvARB@8, PointParameterfv, PointParameterfv@8)
  1876.         GL_STUB_ALIAS(PointParameterfvEXT, 426, PointParameterfvEXT@8, PointParameterfv, PointParameterfv@8)
  1877.         GL_STUB_ALIAS(SecondaryColor3bEXT, 429, SecondaryColor3bEXT@12, SecondaryColor3b, SecondaryColor3b@12)
  1878.         GL_STUB_ALIAS(SecondaryColor3bvEXT, 430, SecondaryColor3bvEXT@4, SecondaryColor3bv, SecondaryColor3bv@4)
  1879.         GL_STUB_ALIAS(SecondaryColor3dEXT, 431, SecondaryColor3dEXT@24, SecondaryColor3d, SecondaryColor3d@24)
  1880.         GL_STUB_ALIAS(SecondaryColor3dvEXT, 432, SecondaryColor3dvEXT@4, SecondaryColor3dv, SecondaryColor3dv@4)
  1881.         GL_STUB_ALIAS(SecondaryColor3iEXT, 433, SecondaryColor3iEXT@12, SecondaryColor3i, SecondaryColor3i@12)
  1882.         GL_STUB_ALIAS(SecondaryColor3ivEXT, 434, SecondaryColor3ivEXT@4, SecondaryColor3iv, SecondaryColor3iv@4)
  1883.         GL_STUB_ALIAS(SecondaryColor3sEXT, 435, SecondaryColor3sEXT@12, SecondaryColor3s, SecondaryColor3s@12)
  1884.         GL_STUB_ALIAS(SecondaryColor3svEXT, 436, SecondaryColor3svEXT@4, SecondaryColor3sv, SecondaryColor3sv@4)
  1885.         GL_STUB_ALIAS(SecondaryColor3ubEXT, 437, SecondaryColor3ubEXT@12, SecondaryColor3ub, SecondaryColor3ub@12)
  1886.         GL_STUB_ALIAS(SecondaryColor3ubvEXT, 438, SecondaryColor3ubvEXT@4, SecondaryColor3ubv, SecondaryColor3ubv@4)
  1887.         GL_STUB_ALIAS(SecondaryColor3uiEXT, 439, SecondaryColor3uiEXT@12, SecondaryColor3ui, SecondaryColor3ui@12)
  1888.         GL_STUB_ALIAS(SecondaryColor3uivEXT, 440, SecondaryColor3uivEXT@4, SecondaryColor3uiv, SecondaryColor3uiv@4)
  1889.         GL_STUB_ALIAS(SecondaryColor3usEXT, 441, SecondaryColor3usEXT@12, SecondaryColor3us, SecondaryColor3us@12)
  1890.         GL_STUB_ALIAS(SecondaryColor3usvEXT, 442, SecondaryColor3usvEXT@4, SecondaryColor3usv, SecondaryColor3usv@4)
  1891.         GL_STUB_ALIAS(SecondaryColorPointerEXT, 443, SecondaryColorPointerEXT@16, SecondaryColorPointer, SecondaryColorPointer@16)
  1892.         GL_STUB_ALIAS(WindowPos2dARB, 444, WindowPos2dARB@16, WindowPos2d, WindowPos2d@16)
  1893.         GL_STUB_ALIAS(WindowPos2dvARB, 445, WindowPos2dvARB@4, WindowPos2dv, WindowPos2dv@4)
  1894.         GL_STUB_ALIAS(WindowPos2fARB, 446, WindowPos2fARB@8, WindowPos2f, WindowPos2f@8)
  1895.         GL_STUB_ALIAS(WindowPos2fvARB, 447, WindowPos2fvARB@4, WindowPos2fv, WindowPos2fv@4)
  1896.         GL_STUB_ALIAS(WindowPos2iARB, 448, WindowPos2iARB@8, WindowPos2i, WindowPos2i@8)
  1897.         GL_STUB_ALIAS(WindowPos2ivARB, 449, WindowPos2ivARB@4, WindowPos2iv, WindowPos2iv@4)
  1898.         GL_STUB_ALIAS(WindowPos2sARB, 450, WindowPos2sARB@8, WindowPos2s, WindowPos2s@8)
  1899.         GL_STUB_ALIAS(WindowPos2svARB, 451, WindowPos2svARB@4, WindowPos2sv, WindowPos2sv@4)
  1900.         GL_STUB_ALIAS(WindowPos3dARB, 452, WindowPos3dARB@24, WindowPos3d, WindowPos3d@24)
  1901.         GL_STUB_ALIAS(WindowPos3dvARB, 453, WindowPos3dvARB@4, WindowPos3dv, WindowPos3dv@4)
  1902.         GL_STUB_ALIAS(WindowPos3fARB, 454, WindowPos3fARB@12, WindowPos3f, WindowPos3f@12)
  1903.         GL_STUB_ALIAS(WindowPos3fvARB, 455, WindowPos3fvARB@4, WindowPos3fv, WindowPos3fv@4)
  1904.         GL_STUB_ALIAS(WindowPos3iARB, 456, WindowPos3iARB@12, WindowPos3i, WindowPos3i@12)
  1905.         GL_STUB_ALIAS(WindowPos3ivARB, 457, WindowPos3ivARB@4, WindowPos3iv, WindowPos3iv@4)
  1906.         GL_STUB_ALIAS(WindowPos3sARB, 458, WindowPos3sARB@12, WindowPos3s, WindowPos3s@12)
  1907.         GL_STUB_ALIAS(WindowPos3svARB, 459, WindowPos3svARB@4, WindowPos3sv, WindowPos3sv@4)
  1908.         GL_STUB_ALIAS(BeginQueryARB, 460, BeginQueryARB@8, BeginQuery, BeginQuery@8)
  1909.         GL_STUB_ALIAS(BindBufferARB, 461, BindBufferARB@8, BindBuffer, BindBuffer@8)
  1910.         GL_STUB_ALIAS(BufferDataARB, 462, BufferDataARB@16, BufferData, BufferData@16)
  1911.         GL_STUB_ALIAS(BufferSubDataARB, 463, BufferSubDataARB@16, BufferSubData, BufferSubData@16)
  1912.         GL_STUB_ALIAS(DeleteBuffersARB, 464, DeleteBuffersARB@8, DeleteBuffers, DeleteBuffers@8)
  1913.         GL_STUB_ALIAS(DeleteQueriesARB, 465, DeleteQueriesARB@8, DeleteQueries, DeleteQueries@8)
  1914.         GL_STUB_ALIAS(EndQueryARB, 466, EndQueryARB@4, EndQuery, EndQuery@4)
  1915.         GL_STUB_ALIAS(GenBuffersARB, 467, GenBuffersARB@8, GenBuffers, GenBuffers@8)
  1916.         GL_STUB_ALIAS(GenQueriesARB, 468, GenQueriesARB@8, GenQueries, GenQueries@8)
  1917.         GL_STUB_ALIAS(GetBufferParameterivARB, 469, GetBufferParameterivARB@12, GetBufferParameteriv, GetBufferParameteriv@12)
  1918.         GL_STUB_ALIAS(GetBufferPointervARB, 470, GetBufferPointervARB@12, GetBufferPointerv, GetBufferPointerv@12)
  1919.         GL_STUB_ALIAS(GetBufferSubDataARB, 471, GetBufferSubDataARB@16, GetBufferSubData, GetBufferSubData@16)
  1920.         GL_STUB_ALIAS(GetQueryObjectivARB, 472, GetQueryObjectivARB@12, GetQueryObjectiv, GetQueryObjectiv@12)
  1921.         GL_STUB_ALIAS(GetQueryObjectuivARB, 473, GetQueryObjectuivARB@12, GetQueryObjectuiv, GetQueryObjectuiv@12)
  1922.         GL_STUB_ALIAS(GetQueryivARB, 474, GetQueryivARB@12, GetQueryiv, GetQueryiv@12)
  1923.         GL_STUB_ALIAS(IsBufferARB, 475, IsBufferARB@4, IsBuffer, IsBuffer@4)
  1924.         GL_STUB_ALIAS(IsQueryARB, 476, IsQueryARB@4, IsQuery, IsQuery@4)
  1925.         GL_STUB_ALIAS(MapBufferARB, 477, MapBufferARB@8, MapBuffer, MapBuffer@8)
  1926.         GL_STUB_ALIAS(UnmapBufferARB, 478, UnmapBufferARB@4, UnmapBuffer, UnmapBuffer@4)
  1927.         GL_STUB_ALIAS(BindAttribLocationARB, 480, BindAttribLocationARB@12, BindAttribLocation, BindAttribLocation@12)
  1928.         GL_STUB_ALIAS(CompileShaderARB, 482, CompileShaderARB@4, CompileShader, CompileShader@4)
  1929.         GL_STUB_ALIAS(DisableVertexAttribArrayARB, 488, DisableVertexAttribArrayARB@4, DisableVertexAttribArray, DisableVertexAttribArray@4)
  1930.         GL_STUB_ALIAS(DrawBuffersARB, 489, DrawBuffersARB@8, DrawBuffers, DrawBuffers@8)
  1931.         GL_STUB_ALIAS(DrawBuffersATI, 489, DrawBuffersATI@8, DrawBuffers, DrawBuffers@8)
  1932.         GL_STUB_ALIAS(EnableVertexAttribArrayARB, 490, EnableVertexAttribArrayARB@4, EnableVertexAttribArray, EnableVertexAttribArray@4)
  1933.         GL_STUB_ALIAS(GetActiveAttribARB, 491, GetActiveAttribARB@28, GetActiveAttrib, GetActiveAttrib@28)
  1934.         GL_STUB_ALIAS(GetActiveUniformARB, 492, GetActiveUniformARB@28, GetActiveUniform, GetActiveUniform@28)
  1935.         GL_STUB_ALIAS(GetAttribLocationARB, 494, GetAttribLocationARB@8, GetAttribLocation, GetAttribLocation@8)
  1936.         GL_STUB_ALIAS(GetShaderSourceARB, 498, GetShaderSourceARB@16, GetShaderSource, GetShaderSource@16)
  1937.         GL_STUB_ALIAS(GetUniformLocationARB, 500, GetUniformLocationARB@8, GetUniformLocation, GetUniformLocation@8)
  1938.         GL_STUB_ALIAS(GetUniformfvARB, 501, GetUniformfvARB@12, GetUniformfv, GetUniformfv@12)
  1939.         GL_STUB_ALIAS(GetUniformivARB, 502, GetUniformivARB@12, GetUniformiv, GetUniformiv@12)
  1940.         GL_STUB_ALIAS(GetVertexAttribPointervARB, 503, GetVertexAttribPointervARB@12, GetVertexAttribPointerv, GetVertexAttribPointerv@12)
  1941.         GL_STUB_ALIAS(GetVertexAttribdvARB, 504, GetVertexAttribdvARB@12, GetVertexAttribdv, GetVertexAttribdv@12)
  1942.         GL_STUB_ALIAS(GetVertexAttribfvARB, 505, GetVertexAttribfvARB@12, GetVertexAttribfv, GetVertexAttribfv@12)
  1943.         GL_STUB_ALIAS(GetVertexAttribivARB, 506, GetVertexAttribivARB@12, GetVertexAttribiv, GetVertexAttribiv@12)
  1944.         GL_STUB_ALIAS(LinkProgramARB, 509, LinkProgramARB@4, LinkProgram, LinkProgram@4)
  1945.         GL_STUB_ALIAS(ShaderSourceARB, 510, ShaderSourceARB@16, ShaderSource, ShaderSource@16)
  1946.         GL_STUB_ALIAS(Uniform1fARB, 514, Uniform1fARB@8, Uniform1f, Uniform1f@8)
  1947.         GL_STUB_ALIAS(Uniform1fvARB, 515, Uniform1fvARB@12, Uniform1fv, Uniform1fv@12)
  1948.         GL_STUB_ALIAS(Uniform1iARB, 516, Uniform1iARB@8, Uniform1i, Uniform1i@8)
  1949.         GL_STUB_ALIAS(Uniform1ivARB, 517, Uniform1ivARB@12, Uniform1iv, Uniform1iv@12)
  1950.         GL_STUB_ALIAS(Uniform2fARB, 518, Uniform2fARB@12, Uniform2f, Uniform2f@12)
  1951.         GL_STUB_ALIAS(Uniform2fvARB, 519, Uniform2fvARB@12, Uniform2fv, Uniform2fv@12)
  1952.         GL_STUB_ALIAS(Uniform2iARB, 520, Uniform2iARB@12, Uniform2i, Uniform2i@12)
  1953.         GL_STUB_ALIAS(Uniform2ivARB, 521, Uniform2ivARB@12, Uniform2iv, Uniform2iv@12)
  1954.         GL_STUB_ALIAS(Uniform3fARB, 522, Uniform3fARB@16, Uniform3f, Uniform3f@16)
  1955.         GL_STUB_ALIAS(Uniform3fvARB, 523, Uniform3fvARB@12, Uniform3fv, Uniform3fv@12)
  1956.         GL_STUB_ALIAS(Uniform3iARB, 524, Uniform3iARB@16, Uniform3i, Uniform3i@16)
  1957.         GL_STUB_ALIAS(Uniform3ivARB, 525, Uniform3ivARB@12, Uniform3iv, Uniform3iv@12)
  1958.         GL_STUB_ALIAS(Uniform4fARB, 526, Uniform4fARB@20, Uniform4f, Uniform4f@20)
  1959.         GL_STUB_ALIAS(Uniform4fvARB, 527, Uniform4fvARB@12, Uniform4fv, Uniform4fv@12)
  1960.         GL_STUB_ALIAS(Uniform4iARB, 528, Uniform4iARB@20, Uniform4i, Uniform4i@20)
  1961.         GL_STUB_ALIAS(Uniform4ivARB, 529, Uniform4ivARB@12, Uniform4iv, Uniform4iv@12)
  1962.         GL_STUB_ALIAS(UniformMatrix2fvARB, 530, UniformMatrix2fvARB@16, UniformMatrix2fv, UniformMatrix2fv@16)
  1963.         GL_STUB_ALIAS(UniformMatrix3fvARB, 531, UniformMatrix3fvARB@16, UniformMatrix3fv, UniformMatrix3fv@16)
  1964.         GL_STUB_ALIAS(UniformMatrix4fvARB, 532, UniformMatrix4fvARB@16, UniformMatrix4fv, UniformMatrix4fv@16)
  1965.         GL_STUB_ALIAS(UseProgramObjectARB, 533, UseProgramObjectARB@4, UseProgram, UseProgram@4)
  1966.         GL_STUB_ALIAS(ValidateProgramARB, 534, ValidateProgramARB@4, ValidateProgram, ValidateProgram@4)
  1967.         GL_STUB_ALIAS(VertexAttrib1dARB, 535, VertexAttrib1dARB@12, VertexAttrib1d, VertexAttrib1d@12)
  1968.         GL_STUB_ALIAS(VertexAttrib1dvARB, 536, VertexAttrib1dvARB@8, VertexAttrib1dv, VertexAttrib1dv@8)
  1969.         GL_STUB_ALIAS(VertexAttrib1sARB, 537, VertexAttrib1sARB@8, VertexAttrib1s, VertexAttrib1s@8)
  1970.         GL_STUB_ALIAS(VertexAttrib1svARB, 538, VertexAttrib1svARB@8, VertexAttrib1sv, VertexAttrib1sv@8)
  1971.         GL_STUB_ALIAS(VertexAttrib2dARB, 539, VertexAttrib2dARB@20, VertexAttrib2d, VertexAttrib2d@20)
  1972.         GL_STUB_ALIAS(VertexAttrib2dvARB, 540, VertexAttrib2dvARB@8, VertexAttrib2dv, VertexAttrib2dv@8)
  1973.         GL_STUB_ALIAS(VertexAttrib2sARB, 541, VertexAttrib2sARB@12, VertexAttrib2s, VertexAttrib2s@12)
  1974.         GL_STUB_ALIAS(VertexAttrib2svARB, 542, VertexAttrib2svARB@8, VertexAttrib2sv, VertexAttrib2sv@8)
  1975.         GL_STUB_ALIAS(VertexAttrib3dARB, 543, VertexAttrib3dARB@28, VertexAttrib3d, VertexAttrib3d@28)
  1976.         GL_STUB_ALIAS(VertexAttrib3dvARB, 544, VertexAttrib3dvARB@8, VertexAttrib3dv, VertexAttrib3dv@8)
  1977.         GL_STUB_ALIAS(VertexAttrib3sARB, 545, VertexAttrib3sARB@16, VertexAttrib3s, VertexAttrib3s@16)
  1978.         GL_STUB_ALIAS(VertexAttrib3svARB, 546, VertexAttrib3svARB@8, VertexAttrib3sv, VertexAttrib3sv@8)
  1979.         GL_STUB_ALIAS(VertexAttrib4NbvARB, 547, VertexAttrib4NbvARB@8, VertexAttrib4Nbv, VertexAttrib4Nbv@8)
  1980.         GL_STUB_ALIAS(VertexAttrib4NivARB, 548, VertexAttrib4NivARB@8, VertexAttrib4Niv, VertexAttrib4Niv@8)
  1981.         GL_STUB_ALIAS(VertexAttrib4NsvARB, 549, VertexAttrib4NsvARB@8, VertexAttrib4Nsv, VertexAttrib4Nsv@8)
  1982.         GL_STUB_ALIAS(VertexAttrib4NubARB, 550, VertexAttrib4NubARB@20, VertexAttrib4Nub, VertexAttrib4Nub@20)
  1983.         GL_STUB_ALIAS(VertexAttrib4NubvARB, 551, VertexAttrib4NubvARB@8, VertexAttrib4Nubv, VertexAttrib4Nubv@8)
  1984.         GL_STUB_ALIAS(VertexAttrib4NuivARB, 552, VertexAttrib4NuivARB@8, VertexAttrib4Nuiv, VertexAttrib4Nuiv@8)
  1985.         GL_STUB_ALIAS(VertexAttrib4NusvARB, 553, VertexAttrib4NusvARB@8, VertexAttrib4Nusv, VertexAttrib4Nusv@8)
  1986.         GL_STUB_ALIAS(VertexAttrib4bvARB, 554, VertexAttrib4bvARB@8, VertexAttrib4bv, VertexAttrib4bv@8)
  1987.         GL_STUB_ALIAS(VertexAttrib4dARB, 555, VertexAttrib4dARB@36, VertexAttrib4d, VertexAttrib4d@36)
  1988.         GL_STUB_ALIAS(VertexAttrib4dvARB, 556, VertexAttrib4dvARB@8, VertexAttrib4dv, VertexAttrib4dv@8)
  1989.         GL_STUB_ALIAS(VertexAttrib4ivARB, 557, VertexAttrib4ivARB@8, VertexAttrib4iv, VertexAttrib4iv@8)
  1990.         GL_STUB_ALIAS(VertexAttrib4sARB, 558, VertexAttrib4sARB@20, VertexAttrib4s, VertexAttrib4s@20)
  1991.         GL_STUB_ALIAS(VertexAttrib4svARB, 559, VertexAttrib4svARB@8, VertexAttrib4sv, VertexAttrib4sv@8)
  1992.         GL_STUB_ALIAS(VertexAttrib4ubvARB, 560, VertexAttrib4ubvARB@8, VertexAttrib4ubv, VertexAttrib4ubv@8)
  1993.         GL_STUB_ALIAS(VertexAttrib4uivARB, 561, VertexAttrib4uivARB@8, VertexAttrib4uiv, VertexAttrib4uiv@8)
  1994.         GL_STUB_ALIAS(VertexAttrib4usvARB, 562, VertexAttrib4usvARB@8, VertexAttrib4usv, VertexAttrib4usv@8)
  1995.         GL_STUB_ALIAS(VertexAttribPointerARB, 563, VertexAttribPointerARB@24, VertexAttribPointer, VertexAttribPointer@24)
  1996.         GL_STUB_ALIAS(BeginConditionalRenderNV, 570, BeginConditionalRenderNV@8, BeginConditionalRender, BeginConditionalRender@8)
  1997.         GL_STUB_ALIAS(BindFragDataLocationEXT, 574, BindFragDataLocationEXT@12, BindFragDataLocation, BindFragDataLocation@12)
  1998.         GL_STUB_ALIAS(ClampColorARB, 575, ClampColorARB@8, ClampColor, ClampColor@8)
  1999.         GL_STUB_ALIAS(ColorMaskIndexedEXT, 580, ColorMaskIndexedEXT@20, ColorMaski, ColorMaski@20)
  2000.         GL_STUB_ALIAS(DisableIndexedEXT, 581, DisableIndexedEXT@8, Disablei, Disablei@8)
  2001.         GL_STUB_ALIAS(EnableIndexedEXT, 582, EnableIndexedEXT@8, Enablei, Enablei@8)
  2002.         GL_STUB_ALIAS(EndConditionalRenderNV, 583, EndConditionalRenderNV@0, EndConditionalRender, EndConditionalRender@0)
  2003.         GL_STUB_ALIAS(GetBooleanIndexedvEXT, 585, GetBooleanIndexedvEXT@12, GetBooleani_v, GetBooleani_v@12)
  2004.         GL_STUB_ALIAS(GetFragDataLocationEXT, 586, GetFragDataLocationEXT@8, GetFragDataLocation, GetFragDataLocation@8)
  2005.         GL_STUB_ALIAS(GetIntegerIndexedvEXT, 587, GetIntegerIndexedvEXT@12, GetIntegeri_v, GetIntegeri_v@12)
  2006.         GL_STUB_ALIAS(GetTexParameterIivEXT, 589, GetTexParameterIivEXT@12, GetTexParameterIiv, GetTexParameterIiv@12)
  2007.         GL_STUB_ALIAS(GetTexParameterIuivEXT, 590, GetTexParameterIuivEXT@12, GetTexParameterIuiv, GetTexParameterIuiv@12)
  2008.         GL_STUB_ALIAS(GetUniformuivEXT, 592, GetUniformuivEXT@12, GetUniformuiv, GetUniformuiv@12)
  2009.         GL_STUB_ALIAS(GetVertexAttribIivEXT, 593, GetVertexAttribIivEXT@12, GetVertexAttribIiv, GetVertexAttribIiv@12)
  2010.         GL_STUB_ALIAS(GetVertexAttribIuivEXT, 594, GetVertexAttribIuivEXT@12, GetVertexAttribIuiv, GetVertexAttribIuiv@12)
  2011.         GL_STUB_ALIAS(IsEnabledIndexedEXT, 595, IsEnabledIndexedEXT@8, IsEnabledi, IsEnabledi@8)
  2012.         GL_STUB_ALIAS(TexParameterIivEXT, 596, TexParameterIivEXT@12, TexParameterIiv, TexParameterIiv@12)
  2013.         GL_STUB_ALIAS(TexParameterIuivEXT, 597, TexParameterIuivEXT@12, TexParameterIuiv, TexParameterIuiv@12)
  2014.         GL_STUB_ALIAS(Uniform1uiEXT, 599, Uniform1uiEXT@8, Uniform1ui, Uniform1ui@8)
  2015.         GL_STUB_ALIAS(Uniform1uivEXT, 600, Uniform1uivEXT@12, Uniform1uiv, Uniform1uiv@12)
  2016.         GL_STUB_ALIAS(Uniform2uiEXT, 601, Uniform2uiEXT@12, Uniform2ui, Uniform2ui@12)
  2017.         GL_STUB_ALIAS(Uniform2uivEXT, 602, Uniform2uivEXT@12, Uniform2uiv, Uniform2uiv@12)
  2018.         GL_STUB_ALIAS(Uniform3uiEXT, 603, Uniform3uiEXT@16, Uniform3ui, Uniform3ui@16)
  2019.         GL_STUB_ALIAS(Uniform3uivEXT, 604, Uniform3uivEXT@12, Uniform3uiv, Uniform3uiv@12)
  2020.         GL_STUB_ALIAS(Uniform4uiEXT, 605, Uniform4uiEXT@20, Uniform4ui, Uniform4ui@20)
  2021.         GL_STUB_ALIAS(Uniform4uivEXT, 606, Uniform4uivEXT@12, Uniform4uiv, Uniform4uiv@12)
  2022.         GL_STUB_ALIAS(VertexAttribI1ivEXT, 607, VertexAttribI1ivEXT@8, VertexAttribI1iv, VertexAttribI1iv@8)
  2023.         GL_STUB_ALIAS(VertexAttribI1uivEXT, 608, VertexAttribI1uivEXT@8, VertexAttribI1uiv, VertexAttribI1uiv@8)
  2024.         GL_STUB_ALIAS(VertexAttribI4bvEXT, 609, VertexAttribI4bvEXT@8, VertexAttribI4bv, VertexAttribI4bv@8)
  2025.         GL_STUB_ALIAS(VertexAttribI4svEXT, 610, VertexAttribI4svEXT@8, VertexAttribI4sv, VertexAttribI4sv@8)
  2026.         GL_STUB_ALIAS(VertexAttribI4ubvEXT, 611, VertexAttribI4ubvEXT@8, VertexAttribI4ubv, VertexAttribI4ubv@8)
  2027.         GL_STUB_ALIAS(VertexAttribI4usvEXT, 612, VertexAttribI4usvEXT@8, VertexAttribI4usv, VertexAttribI4usv@8)
  2028.         GL_STUB_ALIAS(VertexAttribIPointerEXT, 613, VertexAttribIPointerEXT@20, VertexAttribIPointer, VertexAttribIPointer@20)
  2029.         GL_STUB_ALIAS(PrimitiveRestartIndexNV, 614, PrimitiveRestartIndexNV@4, PrimitiveRestartIndex, PrimitiveRestartIndex@4)
  2030.         GL_STUB_ALIAS(TexBufferARB, 615, TexBufferARB@12, TexBuffer, TexBuffer@12)
  2031.         GL_STUB_ALIAS(FramebufferTextureARB, 616, FramebufferTextureARB@16, FramebufferTexture, FramebufferTexture@16)
  2032.         GL_STUB_ALIAS(VertexAttribDivisorARB, 619, VertexAttribDivisorARB@8, VertexAttribDivisor, VertexAttribDivisor@8)
  2033.         GL_STUB_ALIAS(MinSampleShadingARB, 620, MinSampleShadingARB@4, MinSampleShading, MinSampleShading@4)
  2034.         GL_STUB_ALIAS(VertexAttrib1f, 640, VertexAttrib1f@8, VertexAttrib1fARB, VertexAttrib1fARB@8)
  2035.         GL_STUB_ALIAS(VertexAttrib1fv, 641, VertexAttrib1fv@8, VertexAttrib1fvARB, VertexAttrib1fvARB@8)
  2036.         GL_STUB_ALIAS(VertexAttrib2f, 642, VertexAttrib2f@12, VertexAttrib2fARB, VertexAttrib2fARB@12)
  2037.         GL_STUB_ALIAS(VertexAttrib2fv, 643, VertexAttrib2fv@8, VertexAttrib2fvARB, VertexAttrib2fvARB@8)
  2038.         GL_STUB_ALIAS(VertexAttrib3f, 644, VertexAttrib3f@16, VertexAttrib3fARB, VertexAttrib3fARB@16)
  2039.         GL_STUB_ALIAS(VertexAttrib3fv, 645, VertexAttrib3fv@8, VertexAttrib3fvARB, VertexAttrib3fvARB@8)
  2040.         GL_STUB_ALIAS(VertexAttrib4f, 646, VertexAttrib4f@20, VertexAttrib4fARB, VertexAttrib4fARB@20)
  2041.         GL_STUB_ALIAS(VertexAttrib4fv, 647, VertexAttrib4fv@8, VertexAttrib4fvARB, VertexAttrib4fvARB@8)
  2042.         GL_STUB_ALIAS(DrawArraysInstancedEXT, 658, DrawArraysInstancedEXT@16, DrawArraysInstancedARB, DrawArraysInstancedARB@16)
  2043.         GL_STUB_ALIAS(DrawArraysInstanced, 658, DrawArraysInstanced@16, DrawArraysInstancedARB, DrawArraysInstancedARB@16)
  2044.         GL_STUB_ALIAS(DrawElementsInstancedEXT, 659, DrawElementsInstancedEXT@20, DrawElementsInstancedARB, DrawElementsInstancedARB@20)
  2045.         GL_STUB_ALIAS(DrawElementsInstanced, 659, DrawElementsInstanced@20, DrawElementsInstancedARB, DrawElementsInstancedARB@20)
  2046.         GL_STUB_ALIAS(CheckFramebufferStatusEXT, 663, CheckFramebufferStatusEXT@4, CheckFramebufferStatus, CheckFramebufferStatus@4)
  2047.         GL_STUB_ALIAS(DeleteFramebuffersEXT, 664, DeleteFramebuffersEXT@8, DeleteFramebuffers, DeleteFramebuffers@8)
  2048.         GL_STUB_ALIAS(DeleteRenderbuffersEXT, 665, DeleteRenderbuffersEXT@8, DeleteRenderbuffers, DeleteRenderbuffers@8)
  2049.         GL_STUB_ALIAS(FramebufferRenderbufferEXT, 666, FramebufferRenderbufferEXT@16, FramebufferRenderbuffer, FramebufferRenderbuffer@16)
  2050.         GL_STUB_ALIAS(FramebufferTexture1DEXT, 667, FramebufferTexture1DEXT@20, FramebufferTexture1D, FramebufferTexture1D@20)
  2051.         GL_STUB_ALIAS(FramebufferTexture2DEXT, 668, FramebufferTexture2DEXT@20, FramebufferTexture2D, FramebufferTexture2D@20)
  2052.         GL_STUB_ALIAS(FramebufferTexture3DEXT, 669, FramebufferTexture3DEXT@24, FramebufferTexture3D, FramebufferTexture3D@24)
  2053.         GL_STUB_ALIAS(FramebufferTextureLayerARB, 670, FramebufferTextureLayerARB@20, FramebufferTextureLayer, FramebufferTextureLayer@20)
  2054.         GL_STUB_ALIAS(FramebufferTextureLayerEXT, 670, FramebufferTextureLayerEXT@20, FramebufferTextureLayer, FramebufferTextureLayer@20)
  2055.         GL_STUB_ALIAS(GenFramebuffersEXT, 671, GenFramebuffersEXT@8, GenFramebuffers, GenFramebuffers@8)
  2056.         GL_STUB_ALIAS(GenRenderbuffersEXT, 672, GenRenderbuffersEXT@8, GenRenderbuffers, GenRenderbuffers@8)
  2057.         GL_STUB_ALIAS(GenerateMipmapEXT, 673, GenerateMipmapEXT@4, GenerateMipmap, GenerateMipmap@4)
  2058.         GL_STUB_ALIAS(GetFramebufferAttachmentParameterivEXT, 674, GetFramebufferAttachmentParameterivEXT@16, GetFramebufferAttachmentParameteriv, GetFramebufferAttachmentParameteriv@16)
  2059.         GL_STUB_ALIAS(GetRenderbufferParameterivEXT, 675, GetRenderbufferParameterivEXT@12, GetRenderbufferParameteriv, GetRenderbufferParameteriv@12)
  2060.         GL_STUB_ALIAS(IsFramebufferEXT, 676, IsFramebufferEXT@4, IsFramebuffer, IsFramebuffer@4)
  2061.         GL_STUB_ALIAS(IsRenderbufferEXT, 677, IsRenderbufferEXT@4, IsRenderbuffer, IsRenderbuffer@4)
  2062.         GL_STUB_ALIAS(RenderbufferStorageEXT, 678, RenderbufferStorageEXT@16, RenderbufferStorage, RenderbufferStorage@16)
  2063.         GL_STUB_ALIAS(RenderbufferStorageMultisampleEXT, 679, RenderbufferStorageMultisampleEXT@20, RenderbufferStorageMultisample, RenderbufferStorageMultisample@20)
  2064.         GL_STUB_ALIAS(ProvokingVertexEXT, 705, ProvokingVertexEXT@4, ProvokingVertex, ProvokingVertex@4)
  2065.         GL_STUB_ALIAS(ProgramParameteriARB, 809, ProgramParameteriARB@12, ProgramParameteri, ProgramParameteri@12)
  2066.         GL_STUB_ALIAS(DebugMessageCallbackARB, 1083, DebugMessageCallbackARB@8, DebugMessageCallback, DebugMessageCallback@8)
  2067.         GL_STUB_ALIAS(DebugMessageControlARB, 1084, DebugMessageControlARB@24, DebugMessageControl, DebugMessageControl@24)
  2068.         GL_STUB_ALIAS(DebugMessageInsertARB, 1085, DebugMessageInsertARB@24, DebugMessageInsert, DebugMessageInsert@24)
  2069.         GL_STUB_ALIAS(GetDebugMessageLogARB, 1086, GetDebugMessageLogARB@32, GetDebugMessageLog, GetDebugMessageLog@32)
  2070.         GL_STUB_ALIAS(SecondaryColor3f, 1093, SecondaryColor3f@12, SecondaryColor3fEXT, SecondaryColor3fEXT@12)
  2071.         GL_STUB_ALIAS(SecondaryColor3fv, 1094, SecondaryColor3fv@4, SecondaryColor3fvEXT, SecondaryColor3fvEXT@4)
  2072.         GL_STUB_ALIAS(MultiDrawElements, 1095, MultiDrawElements@20, MultiDrawElementsEXT, MultiDrawElementsEXT@20)
  2073.         GL_STUB_ALIAS(FogCoordf, 1096, FogCoordf@4, FogCoordfEXT, FogCoordfEXT@4)
  2074.         GL_STUB_ALIAS(FogCoordfv, 1097, FogCoordfv@4, FogCoordfvEXT, FogCoordfvEXT@4)
  2075.         GL_STUB_ALIAS(VertexAttribI1i, 1200, VertexAttribI1i@8, VertexAttribI1iEXT, VertexAttribI1iEXT@8)
  2076.         GL_STUB_ALIAS(VertexAttribI1ui, 1201, VertexAttribI1ui@8, VertexAttribI1uiEXT, VertexAttribI1uiEXT@8)
  2077.         GL_STUB_ALIAS(VertexAttribI2i, 1202, VertexAttribI2i@12, VertexAttribI2iEXT, VertexAttribI2iEXT@12)
  2078.         GL_STUB_ALIAS(VertexAttribI2iv, 1203, VertexAttribI2iv@8, VertexAttribI2ivEXT, VertexAttribI2ivEXT@8)
  2079.         GL_STUB_ALIAS(VertexAttribI2ui, 1204, VertexAttribI2ui@12, VertexAttribI2uiEXT, VertexAttribI2uiEXT@12)
  2080.         GL_STUB_ALIAS(VertexAttribI2uiv, 1205, VertexAttribI2uiv@8, VertexAttribI2uivEXT, VertexAttribI2uivEXT@8)
  2081.         GL_STUB_ALIAS(VertexAttribI3i, 1206, VertexAttribI3i@16, VertexAttribI3iEXT, VertexAttribI3iEXT@16)
  2082.         GL_STUB_ALIAS(VertexAttribI3iv, 1207, VertexAttribI3iv@8, VertexAttribI3ivEXT, VertexAttribI3ivEXT@8)
  2083.         GL_STUB_ALIAS(VertexAttribI3ui, 1208, VertexAttribI3ui@16, VertexAttribI3uiEXT, VertexAttribI3uiEXT@16)
  2084.         GL_STUB_ALIAS(VertexAttribI3uiv, 1209, VertexAttribI3uiv@8, VertexAttribI3uivEXT, VertexAttribI3uivEXT@8)
  2085.         GL_STUB_ALIAS(VertexAttribI4i, 1210, VertexAttribI4i@20, VertexAttribI4iEXT, VertexAttribI4iEXT@20)
  2086.         GL_STUB_ALIAS(VertexAttribI4iv, 1211, VertexAttribI4iv@8, VertexAttribI4ivEXT, VertexAttribI4ivEXT@8)
  2087.         GL_STUB_ALIAS(VertexAttribI4ui, 1212, VertexAttribI4ui@20, VertexAttribI4uiEXT, VertexAttribI4uiEXT@20)
  2088.         GL_STUB_ALIAS(VertexAttribI4uiv, 1213, VertexAttribI4uiv@8, VertexAttribI4uivEXT, VertexAttribI4uivEXT@8)
  2089.  
  2090.                 GLOBL   GLNAME(gl_dispatch_functions_end)
  2091.                 HIDDEN(GLNAME(gl_dispatch_functions_end))
  2092.                 ALIGNTEXT16
  2093. GLNAME(gl_dispatch_functions_end):
  2094.  
  2095. #if defined (__ELF__) && defined (__linux__)
  2096.         .section .note.GNU-stack,"",%progbits
  2097. #endif
  2098.