196c5ddc4Srjs/* DO NOT EDIT - This file generated automatically by gl_marshal.py script */
296c5ddc4Srjs
396c5ddc4Srjs/*
496c5ddc4Srjs * Copyright (C) 2012 Intel Corporation
596c5ddc4Srjs * All Rights Reserved.
696c5ddc4Srjs *
796c5ddc4Srjs * Permission is hereby granted, free of charge, to any person obtaining a
896c5ddc4Srjs * copy of this software and associated documentation files (the "Software"),
996c5ddc4Srjs * to deal in the Software without restriction, including without limitation
1096c5ddc4Srjs * the rights to use, copy, modify, merge, publish, distribute, sub license,
1196c5ddc4Srjs * and/or sell copies of the Software, and to permit persons to whom the
1296c5ddc4Srjs * Software is furnished to do so, subject to the following conditions:
1396c5ddc4Srjs *
1496c5ddc4Srjs * The above copyright notice and this permission notice (including the next
1596c5ddc4Srjs * paragraph) shall be included in all copies or substantial portions of the
1696c5ddc4Srjs * Software.
1796c5ddc4Srjs *
1896c5ddc4Srjs * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1996c5ddc4Srjs * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2096c5ddc4Srjs * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.  IN NO EVENT SHALL
2196c5ddc4Srjs * INTEL CORPORATION,
2296c5ddc4Srjs * AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
2396c5ddc4Srjs * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
2496c5ddc4Srjs * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2596c5ddc4Srjs * SOFTWARE.
2696c5ddc4Srjs */
2796c5ddc4Srjs
2896c5ddc4Srjs
2996c5ddc4Srjs#include "api_exec.h"
3096c5ddc4Srjs#include "glthread_marshal.h"
3196c5ddc4Srjs#include "bufferobj.h"
3296c5ddc4Srjs#include "dispatch.h"
3396c5ddc4Srjs
3496c5ddc4Srjs#define COMPAT (ctx->API != API_OPENGL_CORE)
3596c5ddc4Srjs
3696c5ddc4SrjsUNUSED static inline int safe_mul(int a, int b)
3796c5ddc4Srjs{
3896c5ddc4Srjs    if (a < 0 || b < 0) return -1;
3996c5ddc4Srjs    if (a == 0 || b == 0) return 0;
4096c5ddc4Srjs    if (a > INT_MAX / b) return -1;
4196c5ddc4Srjs    return a * b;
4296c5ddc4Srjs}
4396c5ddc4Srjs
4496c5ddc4Srjsconst _mesa_unmarshal_func _mesa_unmarshal_dispatch[NUM_DISPATCH_CMD] = {
4596c5ddc4Srjs   [DISPATCH_CMD_NewList] = (_mesa_unmarshal_func)_mesa_unmarshal_NewList,
4696c5ddc4Srjs   [DISPATCH_CMD_EndList] = (_mesa_unmarshal_func)_mesa_unmarshal_EndList,
4796c5ddc4Srjs   [DISPATCH_CMD_CallList] = (_mesa_unmarshal_func)_mesa_unmarshal_CallList,
4896c5ddc4Srjs   [DISPATCH_CMD_CallLists] = (_mesa_unmarshal_func)_mesa_unmarshal_CallLists,
4996c5ddc4Srjs   [DISPATCH_CMD_DeleteLists] = (_mesa_unmarshal_func)_mesa_unmarshal_DeleteLists,
5096c5ddc4Srjs   [DISPATCH_CMD_ListBase] = (_mesa_unmarshal_func)_mesa_unmarshal_ListBase,
5196c5ddc4Srjs   [DISPATCH_CMD_Begin] = (_mesa_unmarshal_func)_mesa_unmarshal_Begin,
5296c5ddc4Srjs   [DISPATCH_CMD_Bitmap] = (_mesa_unmarshal_func)_mesa_unmarshal_Bitmap,
5396c5ddc4Srjs   [DISPATCH_CMD_Color3b] = (_mesa_unmarshal_func)_mesa_unmarshal_Color3b,
5496c5ddc4Srjs   [DISPATCH_CMD_Color3bv] = (_mesa_unmarshal_func)_mesa_unmarshal_Color3bv,
5596c5ddc4Srjs   [DISPATCH_CMD_Color3d] = (_mesa_unmarshal_func)_mesa_unmarshal_Color3d,
5696c5ddc4Srjs   [DISPATCH_CMD_Color3dv] = (_mesa_unmarshal_func)_mesa_unmarshal_Color3dv,
5796c5ddc4Srjs   [DISPATCH_CMD_Color3f] = (_mesa_unmarshal_func)_mesa_unmarshal_Color3f,
5896c5ddc4Srjs   [DISPATCH_CMD_Color3fv] = (_mesa_unmarshal_func)_mesa_unmarshal_Color3fv,
5996c5ddc4Srjs   [DISPATCH_CMD_Color3i] = (_mesa_unmarshal_func)_mesa_unmarshal_Color3i,
6096c5ddc4Srjs   [DISPATCH_CMD_Color3iv] = (_mesa_unmarshal_func)_mesa_unmarshal_Color3iv,
6196c5ddc4Srjs   [DISPATCH_CMD_Color3s] = (_mesa_unmarshal_func)_mesa_unmarshal_Color3s,
6296c5ddc4Srjs   [DISPATCH_CMD_Color3sv] = (_mesa_unmarshal_func)_mesa_unmarshal_Color3sv,
6396c5ddc4Srjs   [DISPATCH_CMD_Color3ub] = (_mesa_unmarshal_func)_mesa_unmarshal_Color3ub,
6496c5ddc4Srjs   [DISPATCH_CMD_Color3ubv] = (_mesa_unmarshal_func)_mesa_unmarshal_Color3ubv,
6596c5ddc4Srjs   [DISPATCH_CMD_Color3ui] = (_mesa_unmarshal_func)_mesa_unmarshal_Color3ui,
6696c5ddc4Srjs   [DISPATCH_CMD_Color3uiv] = (_mesa_unmarshal_func)_mesa_unmarshal_Color3uiv,
6796c5ddc4Srjs   [DISPATCH_CMD_Color3us] = (_mesa_unmarshal_func)_mesa_unmarshal_Color3us,
6896c5ddc4Srjs   [DISPATCH_CMD_Color3usv] = (_mesa_unmarshal_func)_mesa_unmarshal_Color3usv,
6996c5ddc4Srjs   [DISPATCH_CMD_Color4b] = (_mesa_unmarshal_func)_mesa_unmarshal_Color4b,
7096c5ddc4Srjs   [DISPATCH_CMD_Color4bv] = (_mesa_unmarshal_func)_mesa_unmarshal_Color4bv,
7196c5ddc4Srjs   [DISPATCH_CMD_Color4d] = (_mesa_unmarshal_func)_mesa_unmarshal_Color4d,
7296c5ddc4Srjs   [DISPATCH_CMD_Color4dv] = (_mesa_unmarshal_func)_mesa_unmarshal_Color4dv,
7396c5ddc4Srjs   [DISPATCH_CMD_Color4f] = (_mesa_unmarshal_func)_mesa_unmarshal_Color4f,
7496c5ddc4Srjs   [DISPATCH_CMD_Color4fv] = (_mesa_unmarshal_func)_mesa_unmarshal_Color4fv,
7596c5ddc4Srjs   [DISPATCH_CMD_Color4i] = (_mesa_unmarshal_func)_mesa_unmarshal_Color4i,
7696c5ddc4Srjs   [DISPATCH_CMD_Color4iv] = (_mesa_unmarshal_func)_mesa_unmarshal_Color4iv,
7796c5ddc4Srjs   [DISPATCH_CMD_Color4s] = (_mesa_unmarshal_func)_mesa_unmarshal_Color4s,
7896c5ddc4Srjs   [DISPATCH_CMD_Color4sv] = (_mesa_unmarshal_func)_mesa_unmarshal_Color4sv,
7996c5ddc4Srjs   [DISPATCH_CMD_Color4ub] = (_mesa_unmarshal_func)_mesa_unmarshal_Color4ub,
8096c5ddc4Srjs   [DISPATCH_CMD_Color4ubv] = (_mesa_unmarshal_func)_mesa_unmarshal_Color4ubv,
8196c5ddc4Srjs   [DISPATCH_CMD_Color4ui] = (_mesa_unmarshal_func)_mesa_unmarshal_Color4ui,
8296c5ddc4Srjs   [DISPATCH_CMD_Color4uiv] = (_mesa_unmarshal_func)_mesa_unmarshal_Color4uiv,
8396c5ddc4Srjs   [DISPATCH_CMD_Color4us] = (_mesa_unmarshal_func)_mesa_unmarshal_Color4us,
8496c5ddc4Srjs   [DISPATCH_CMD_Color4usv] = (_mesa_unmarshal_func)_mesa_unmarshal_Color4usv,
8596c5ddc4Srjs   [DISPATCH_CMD_EdgeFlag] = (_mesa_unmarshal_func)_mesa_unmarshal_EdgeFlag,
8696c5ddc4Srjs   [DISPATCH_CMD_EdgeFlagv] = (_mesa_unmarshal_func)_mesa_unmarshal_EdgeFlagv,
8796c5ddc4Srjs   [DISPATCH_CMD_End] = (_mesa_unmarshal_func)_mesa_unmarshal_End,
8896c5ddc4Srjs   [DISPATCH_CMD_Indexd] = (_mesa_unmarshal_func)_mesa_unmarshal_Indexd,
8996c5ddc4Srjs   [DISPATCH_CMD_Indexdv] = (_mesa_unmarshal_func)_mesa_unmarshal_Indexdv,
9096c5ddc4Srjs   [DISPATCH_CMD_Indexf] = (_mesa_unmarshal_func)_mesa_unmarshal_Indexf,
9196c5ddc4Srjs   [DISPATCH_CMD_Indexfv] = (_mesa_unmarshal_func)_mesa_unmarshal_Indexfv,
9296c5ddc4Srjs   [DISPATCH_CMD_Indexi] = (_mesa_unmarshal_func)_mesa_unmarshal_Indexi,
9396c5ddc4Srjs   [DISPATCH_CMD_Indexiv] = (_mesa_unmarshal_func)_mesa_unmarshal_Indexiv,
9496c5ddc4Srjs   [DISPATCH_CMD_Indexs] = (_mesa_unmarshal_func)_mesa_unmarshal_Indexs,
9596c5ddc4Srjs   [DISPATCH_CMD_Indexsv] = (_mesa_unmarshal_func)_mesa_unmarshal_Indexsv,
9696c5ddc4Srjs   [DISPATCH_CMD_Normal3b] = (_mesa_unmarshal_func)_mesa_unmarshal_Normal3b,
9796c5ddc4Srjs   [DISPATCH_CMD_Normal3bv] = (_mesa_unmarshal_func)_mesa_unmarshal_Normal3bv,
9896c5ddc4Srjs   [DISPATCH_CMD_Normal3d] = (_mesa_unmarshal_func)_mesa_unmarshal_Normal3d,
9996c5ddc4Srjs   [DISPATCH_CMD_Normal3dv] = (_mesa_unmarshal_func)_mesa_unmarshal_Normal3dv,
10096c5ddc4Srjs   [DISPATCH_CMD_Normal3f] = (_mesa_unmarshal_func)_mesa_unmarshal_Normal3f,
10196c5ddc4Srjs   [DISPATCH_CMD_Normal3fv] = (_mesa_unmarshal_func)_mesa_unmarshal_Normal3fv,
10296c5ddc4Srjs   [DISPATCH_CMD_Normal3i] = (_mesa_unmarshal_func)_mesa_unmarshal_Normal3i,
10396c5ddc4Srjs   [DISPATCH_CMD_Normal3iv] = (_mesa_unmarshal_func)_mesa_unmarshal_Normal3iv,
10496c5ddc4Srjs   [DISPATCH_CMD_Normal3s] = (_mesa_unmarshal_func)_mesa_unmarshal_Normal3s,
10596c5ddc4Srjs   [DISPATCH_CMD_Normal3sv] = (_mesa_unmarshal_func)_mesa_unmarshal_Normal3sv,
10696c5ddc4Srjs   [DISPATCH_CMD_RasterPos2d] = (_mesa_unmarshal_func)_mesa_unmarshal_RasterPos2d,
10796c5ddc4Srjs   [DISPATCH_CMD_RasterPos2dv] = (_mesa_unmarshal_func)_mesa_unmarshal_RasterPos2dv,
10896c5ddc4Srjs   [DISPATCH_CMD_RasterPos2f] = (_mesa_unmarshal_func)_mesa_unmarshal_RasterPos2f,
10996c5ddc4Srjs   [DISPATCH_CMD_RasterPos2fv] = (_mesa_unmarshal_func)_mesa_unmarshal_RasterPos2fv,
11096c5ddc4Srjs   [DISPATCH_CMD_RasterPos2i] = (_mesa_unmarshal_func)_mesa_unmarshal_RasterPos2i,
11196c5ddc4Srjs   [DISPATCH_CMD_RasterPos2iv] = (_mesa_unmarshal_func)_mesa_unmarshal_RasterPos2iv,
11296c5ddc4Srjs   [DISPATCH_CMD_RasterPos2s] = (_mesa_unmarshal_func)_mesa_unmarshal_RasterPos2s,
11396c5ddc4Srjs   [DISPATCH_CMD_RasterPos2sv] = (_mesa_unmarshal_func)_mesa_unmarshal_RasterPos2sv,
11496c5ddc4Srjs   [DISPATCH_CMD_RasterPos3d] = (_mesa_unmarshal_func)_mesa_unmarshal_RasterPos3d,
11596c5ddc4Srjs   [DISPATCH_CMD_RasterPos3dv] = (_mesa_unmarshal_func)_mesa_unmarshal_RasterPos3dv,
11696c5ddc4Srjs   [DISPATCH_CMD_RasterPos3f] = (_mesa_unmarshal_func)_mesa_unmarshal_RasterPos3f,
11796c5ddc4Srjs   [DISPATCH_CMD_RasterPos3fv] = (_mesa_unmarshal_func)_mesa_unmarshal_RasterPos3fv,
11896c5ddc4Srjs   [DISPATCH_CMD_RasterPos3i] = (_mesa_unmarshal_func)_mesa_unmarshal_RasterPos3i,
11996c5ddc4Srjs   [DISPATCH_CMD_RasterPos3iv] = (_mesa_unmarshal_func)_mesa_unmarshal_RasterPos3iv,
12096c5ddc4Srjs   [DISPATCH_CMD_RasterPos3s] = (_mesa_unmarshal_func)_mesa_unmarshal_RasterPos3s,
12196c5ddc4Srjs   [DISPATCH_CMD_RasterPos3sv] = (_mesa_unmarshal_func)_mesa_unmarshal_RasterPos3sv,
12296c5ddc4Srjs   [DISPATCH_CMD_RasterPos4d] = (_mesa_unmarshal_func)_mesa_unmarshal_RasterPos4d,
12396c5ddc4Srjs   [DISPATCH_CMD_RasterPos4dv] = (_mesa_unmarshal_func)_mesa_unmarshal_RasterPos4dv,
12496c5ddc4Srjs   [DISPATCH_CMD_RasterPos4f] = (_mesa_unmarshal_func)_mesa_unmarshal_RasterPos4f,
12596c5ddc4Srjs   [DISPATCH_CMD_RasterPos4fv] = (_mesa_unmarshal_func)_mesa_unmarshal_RasterPos4fv,
12696c5ddc4Srjs   [DISPATCH_CMD_RasterPos4i] = (_mesa_unmarshal_func)_mesa_unmarshal_RasterPos4i,
12796c5ddc4Srjs   [DISPATCH_CMD_RasterPos4iv] = (_mesa_unmarshal_func)_mesa_unmarshal_RasterPos4iv,
12896c5ddc4Srjs   [DISPATCH_CMD_RasterPos4s] = (_mesa_unmarshal_func)_mesa_unmarshal_RasterPos4s,
12996c5ddc4Srjs   [DISPATCH_CMD_RasterPos4sv] = (_mesa_unmarshal_func)_mesa_unmarshal_RasterPos4sv,
13096c5ddc4Srjs   [DISPATCH_CMD_Rectd] = (_mesa_unmarshal_func)_mesa_unmarshal_Rectd,
13196c5ddc4Srjs   [DISPATCH_CMD_Rectdv] = (_mesa_unmarshal_func)_mesa_unmarshal_Rectdv,
13296c5ddc4Srjs   [DISPATCH_CMD_Rectf] = (_mesa_unmarshal_func)_mesa_unmarshal_Rectf,
13396c5ddc4Srjs   [DISPATCH_CMD_Rectfv] = (_mesa_unmarshal_func)_mesa_unmarshal_Rectfv,
13496c5ddc4Srjs   [DISPATCH_CMD_Recti] = (_mesa_unmarshal_func)_mesa_unmarshal_Recti,
13596c5ddc4Srjs   [DISPATCH_CMD_Rectiv] = (_mesa_unmarshal_func)_mesa_unmarshal_Rectiv,
13696c5ddc4Srjs   [DISPATCH_CMD_Rects] = (_mesa_unmarshal_func)_mesa_unmarshal_Rects,
13796c5ddc4Srjs   [DISPATCH_CMD_Rectsv] = (_mesa_unmarshal_func)_mesa_unmarshal_Rectsv,
13896c5ddc4Srjs   [DISPATCH_CMD_TexCoord1d] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord1d,
13996c5ddc4Srjs   [DISPATCH_CMD_TexCoord1dv] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord1dv,
14096c5ddc4Srjs   [DISPATCH_CMD_TexCoord1f] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord1f,
14196c5ddc4Srjs   [DISPATCH_CMD_TexCoord1fv] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord1fv,
14296c5ddc4Srjs   [DISPATCH_CMD_TexCoord1i] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord1i,
14396c5ddc4Srjs   [DISPATCH_CMD_TexCoord1iv] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord1iv,
14496c5ddc4Srjs   [DISPATCH_CMD_TexCoord1s] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord1s,
14596c5ddc4Srjs   [DISPATCH_CMD_TexCoord1sv] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord1sv,
14696c5ddc4Srjs   [DISPATCH_CMD_TexCoord2d] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord2d,
14796c5ddc4Srjs   [DISPATCH_CMD_TexCoord2dv] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord2dv,
14896c5ddc4Srjs   [DISPATCH_CMD_TexCoord2f] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord2f,
14996c5ddc4Srjs   [DISPATCH_CMD_TexCoord2fv] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord2fv,
15096c5ddc4Srjs   [DISPATCH_CMD_TexCoord2i] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord2i,
15196c5ddc4Srjs   [DISPATCH_CMD_TexCoord2iv] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord2iv,
15296c5ddc4Srjs   [DISPATCH_CMD_TexCoord2s] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord2s,
15396c5ddc4Srjs   [DISPATCH_CMD_TexCoord2sv] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord2sv,
15496c5ddc4Srjs   [DISPATCH_CMD_TexCoord3d] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord3d,
15596c5ddc4Srjs   [DISPATCH_CMD_TexCoord3dv] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord3dv,
15696c5ddc4Srjs   [DISPATCH_CMD_TexCoord3f] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord3f,
15796c5ddc4Srjs   [DISPATCH_CMD_TexCoord3fv] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord3fv,
15896c5ddc4Srjs   [DISPATCH_CMD_TexCoord3i] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord3i,
15996c5ddc4Srjs   [DISPATCH_CMD_TexCoord3iv] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord3iv,
16096c5ddc4Srjs   [DISPATCH_CMD_TexCoord3s] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord3s,
16196c5ddc4Srjs   [DISPATCH_CMD_TexCoord3sv] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord3sv,
16296c5ddc4Srjs   [DISPATCH_CMD_TexCoord4d] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord4d,
16396c5ddc4Srjs   [DISPATCH_CMD_TexCoord4dv] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord4dv,
16496c5ddc4Srjs   [DISPATCH_CMD_TexCoord4f] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord4f,
16596c5ddc4Srjs   [DISPATCH_CMD_TexCoord4fv] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord4fv,
16696c5ddc4Srjs   [DISPATCH_CMD_TexCoord4i] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord4i,
16796c5ddc4Srjs   [DISPATCH_CMD_TexCoord4iv] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord4iv,
16896c5ddc4Srjs   [DISPATCH_CMD_TexCoord4s] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord4s,
16996c5ddc4Srjs   [DISPATCH_CMD_TexCoord4sv] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord4sv,
17096c5ddc4Srjs   [DISPATCH_CMD_Vertex2d] = (_mesa_unmarshal_func)_mesa_unmarshal_Vertex2d,
17196c5ddc4Srjs   [DISPATCH_CMD_Vertex2dv] = (_mesa_unmarshal_func)_mesa_unmarshal_Vertex2dv,
17296c5ddc4Srjs   [DISPATCH_CMD_Vertex2f] = (_mesa_unmarshal_func)_mesa_unmarshal_Vertex2f,
17396c5ddc4Srjs   [DISPATCH_CMD_Vertex2fv] = (_mesa_unmarshal_func)_mesa_unmarshal_Vertex2fv,
17496c5ddc4Srjs   [DISPATCH_CMD_Vertex2i] = (_mesa_unmarshal_func)_mesa_unmarshal_Vertex2i,
17596c5ddc4Srjs   [DISPATCH_CMD_Vertex2iv] = (_mesa_unmarshal_func)_mesa_unmarshal_Vertex2iv,
17696c5ddc4Srjs   [DISPATCH_CMD_Vertex2s] = (_mesa_unmarshal_func)_mesa_unmarshal_Vertex2s,
17796c5ddc4Srjs   [DISPATCH_CMD_Vertex2sv] = (_mesa_unmarshal_func)_mesa_unmarshal_Vertex2sv,
17896c5ddc4Srjs   [DISPATCH_CMD_Vertex3d] = (_mesa_unmarshal_func)_mesa_unmarshal_Vertex3d,
17996c5ddc4Srjs   [DISPATCH_CMD_Vertex3dv] = (_mesa_unmarshal_func)_mesa_unmarshal_Vertex3dv,
18096c5ddc4Srjs   [DISPATCH_CMD_Vertex3f] = (_mesa_unmarshal_func)_mesa_unmarshal_Vertex3f,
18196c5ddc4Srjs   [DISPATCH_CMD_Vertex3fv] = (_mesa_unmarshal_func)_mesa_unmarshal_Vertex3fv,
18296c5ddc4Srjs   [DISPATCH_CMD_Vertex3i] = (_mesa_unmarshal_func)_mesa_unmarshal_Vertex3i,
18396c5ddc4Srjs   [DISPATCH_CMD_Vertex3iv] = (_mesa_unmarshal_func)_mesa_unmarshal_Vertex3iv,
18496c5ddc4Srjs   [DISPATCH_CMD_Vertex3s] = (_mesa_unmarshal_func)_mesa_unmarshal_Vertex3s,
18596c5ddc4Srjs   [DISPATCH_CMD_Vertex3sv] = (_mesa_unmarshal_func)_mesa_unmarshal_Vertex3sv,
18696c5ddc4Srjs   [DISPATCH_CMD_Vertex4d] = (_mesa_unmarshal_func)_mesa_unmarshal_Vertex4d,
18796c5ddc4Srjs   [DISPATCH_CMD_Vertex4dv] = (_mesa_unmarshal_func)_mesa_unmarshal_Vertex4dv,
18896c5ddc4Srjs   [DISPATCH_CMD_Vertex4f] = (_mesa_unmarshal_func)_mesa_unmarshal_Vertex4f,
18996c5ddc4Srjs   [DISPATCH_CMD_Vertex4fv] = (_mesa_unmarshal_func)_mesa_unmarshal_Vertex4fv,
19096c5ddc4Srjs   [DISPATCH_CMD_Vertex4i] = (_mesa_unmarshal_func)_mesa_unmarshal_Vertex4i,
19196c5ddc4Srjs   [DISPATCH_CMD_Vertex4iv] = (_mesa_unmarshal_func)_mesa_unmarshal_Vertex4iv,
19296c5ddc4Srjs   [DISPATCH_CMD_Vertex4s] = (_mesa_unmarshal_func)_mesa_unmarshal_Vertex4s,
19396c5ddc4Srjs   [DISPATCH_CMD_Vertex4sv] = (_mesa_unmarshal_func)_mesa_unmarshal_Vertex4sv,
19496c5ddc4Srjs   [DISPATCH_CMD_ClipPlane] = (_mesa_unmarshal_func)_mesa_unmarshal_ClipPlane,
19596c5ddc4Srjs   [DISPATCH_CMD_ColorMaterial] = (_mesa_unmarshal_func)_mesa_unmarshal_ColorMaterial,
19696c5ddc4Srjs   [DISPATCH_CMD_CullFace] = (_mesa_unmarshal_func)_mesa_unmarshal_CullFace,
19796c5ddc4Srjs   [DISPATCH_CMD_Fogf] = (_mesa_unmarshal_func)_mesa_unmarshal_Fogf,
19896c5ddc4Srjs   [DISPATCH_CMD_Fogfv] = (_mesa_unmarshal_func)_mesa_unmarshal_Fogfv,
19996c5ddc4Srjs   [DISPATCH_CMD_Fogi] = (_mesa_unmarshal_func)_mesa_unmarshal_Fogi,
20096c5ddc4Srjs   [DISPATCH_CMD_Fogiv] = (_mesa_unmarshal_func)_mesa_unmarshal_Fogiv,
20196c5ddc4Srjs   [DISPATCH_CMD_FrontFace] = (_mesa_unmarshal_func)_mesa_unmarshal_FrontFace,
20296c5ddc4Srjs   [DISPATCH_CMD_Hint] = (_mesa_unmarshal_func)_mesa_unmarshal_Hint,
20396c5ddc4Srjs   [DISPATCH_CMD_Lightf] = (_mesa_unmarshal_func)_mesa_unmarshal_Lightf,
20496c5ddc4Srjs   [DISPATCH_CMD_Lightfv] = (_mesa_unmarshal_func)_mesa_unmarshal_Lightfv,
20596c5ddc4Srjs   [DISPATCH_CMD_Lighti] = (_mesa_unmarshal_func)_mesa_unmarshal_Lighti,
20696c5ddc4Srjs   [DISPATCH_CMD_Lightiv] = (_mesa_unmarshal_func)_mesa_unmarshal_Lightiv,
20796c5ddc4Srjs   [DISPATCH_CMD_LightModelf] = (_mesa_unmarshal_func)_mesa_unmarshal_LightModelf,
20896c5ddc4Srjs   [DISPATCH_CMD_LightModelfv] = (_mesa_unmarshal_func)_mesa_unmarshal_LightModelfv,
20996c5ddc4Srjs   [DISPATCH_CMD_LightModeli] = (_mesa_unmarshal_func)_mesa_unmarshal_LightModeli,
21096c5ddc4Srjs   [DISPATCH_CMD_LightModeliv] = (_mesa_unmarshal_func)_mesa_unmarshal_LightModeliv,
21196c5ddc4Srjs   [DISPATCH_CMD_LineStipple] = (_mesa_unmarshal_func)_mesa_unmarshal_LineStipple,
21296c5ddc4Srjs   [DISPATCH_CMD_LineWidth] = (_mesa_unmarshal_func)_mesa_unmarshal_LineWidth,
21396c5ddc4Srjs   [DISPATCH_CMD_Materialf] = (_mesa_unmarshal_func)_mesa_unmarshal_Materialf,
21496c5ddc4Srjs   [DISPATCH_CMD_Materialfv] = (_mesa_unmarshal_func)_mesa_unmarshal_Materialfv,
21596c5ddc4Srjs   [DISPATCH_CMD_Materiali] = (_mesa_unmarshal_func)_mesa_unmarshal_Materiali,
21696c5ddc4Srjs   [DISPATCH_CMD_Materialiv] = (_mesa_unmarshal_func)_mesa_unmarshal_Materialiv,
21796c5ddc4Srjs   [DISPATCH_CMD_PointSize] = (_mesa_unmarshal_func)_mesa_unmarshal_PointSize,
21896c5ddc4Srjs   [DISPATCH_CMD_PolygonMode] = (_mesa_unmarshal_func)_mesa_unmarshal_PolygonMode,
21996c5ddc4Srjs   [DISPATCH_CMD_PolygonStipple] = (_mesa_unmarshal_func)_mesa_unmarshal_PolygonStipple,
22096c5ddc4Srjs   [DISPATCH_CMD_Scissor] = (_mesa_unmarshal_func)_mesa_unmarshal_Scissor,
22196c5ddc4Srjs   [DISPATCH_CMD_ShadeModel] = (_mesa_unmarshal_func)_mesa_unmarshal_ShadeModel,
22296c5ddc4Srjs   [DISPATCH_CMD_TexParameterf] = (_mesa_unmarshal_func)_mesa_unmarshal_TexParameterf,
22396c5ddc4Srjs   [DISPATCH_CMD_TexParameterfv] = (_mesa_unmarshal_func)_mesa_unmarshal_TexParameterfv,
22496c5ddc4Srjs   [DISPATCH_CMD_TexParameteri] = (_mesa_unmarshal_func)_mesa_unmarshal_TexParameteri,
22596c5ddc4Srjs   [DISPATCH_CMD_TexParameteriv] = (_mesa_unmarshal_func)_mesa_unmarshal_TexParameteriv,
22696c5ddc4Srjs   [DISPATCH_CMD_TexImage1D] = (_mesa_unmarshal_func)_mesa_unmarshal_TexImage1D,
22796c5ddc4Srjs   [DISPATCH_CMD_TexImage2D] = (_mesa_unmarshal_func)_mesa_unmarshal_TexImage2D,
22896c5ddc4Srjs   [DISPATCH_CMD_TexEnvf] = (_mesa_unmarshal_func)_mesa_unmarshal_TexEnvf,
22996c5ddc4Srjs   [DISPATCH_CMD_TexEnvfv] = (_mesa_unmarshal_func)_mesa_unmarshal_TexEnvfv,
23096c5ddc4Srjs   [DISPATCH_CMD_TexEnvi] = (_mesa_unmarshal_func)_mesa_unmarshal_TexEnvi,
23196c5ddc4Srjs   [DISPATCH_CMD_TexEnviv] = (_mesa_unmarshal_func)_mesa_unmarshal_TexEnviv,
23296c5ddc4Srjs   [DISPATCH_CMD_TexGend] = (_mesa_unmarshal_func)_mesa_unmarshal_TexGend,
23396c5ddc4Srjs   [DISPATCH_CMD_TexGendv] = (_mesa_unmarshal_func)_mesa_unmarshal_TexGendv,
23496c5ddc4Srjs   [DISPATCH_CMD_TexGenf] = (_mesa_unmarshal_func)_mesa_unmarshal_TexGenf,
23596c5ddc4Srjs   [DISPATCH_CMD_TexGenfv] = (_mesa_unmarshal_func)_mesa_unmarshal_TexGenfv,
23696c5ddc4Srjs   [DISPATCH_CMD_TexGeni] = (_mesa_unmarshal_func)_mesa_unmarshal_TexGeni,
23796c5ddc4Srjs   [DISPATCH_CMD_TexGeniv] = (_mesa_unmarshal_func)_mesa_unmarshal_TexGeniv,
23896c5ddc4Srjs   [DISPATCH_CMD_InitNames] = (_mesa_unmarshal_func)_mesa_unmarshal_InitNames,
23996c5ddc4Srjs   [DISPATCH_CMD_LoadName] = (_mesa_unmarshal_func)_mesa_unmarshal_LoadName,
24096c5ddc4Srjs   [DISPATCH_CMD_PassThrough] = (_mesa_unmarshal_func)_mesa_unmarshal_PassThrough,
24196c5ddc4Srjs   [DISPATCH_CMD_PopName] = (_mesa_unmarshal_func)_mesa_unmarshal_PopName,
24296c5ddc4Srjs   [DISPATCH_CMD_PushName] = (_mesa_unmarshal_func)_mesa_unmarshal_PushName,
24396c5ddc4Srjs   [DISPATCH_CMD_DrawBuffer] = (_mesa_unmarshal_func)_mesa_unmarshal_DrawBuffer,
24496c5ddc4Srjs   [DISPATCH_CMD_Clear] = (_mesa_unmarshal_func)_mesa_unmarshal_Clear,
24596c5ddc4Srjs   [DISPATCH_CMD_ClearAccum] = (_mesa_unmarshal_func)_mesa_unmarshal_ClearAccum,
24696c5ddc4Srjs   [DISPATCH_CMD_ClearIndex] = (_mesa_unmarshal_func)_mesa_unmarshal_ClearIndex,
24796c5ddc4Srjs   [DISPATCH_CMD_ClearColor] = (_mesa_unmarshal_func)_mesa_unmarshal_ClearColor,
24896c5ddc4Srjs   [DISPATCH_CMD_ClearStencil] = (_mesa_unmarshal_func)_mesa_unmarshal_ClearStencil,
24996c5ddc4Srjs   [DISPATCH_CMD_ClearDepth] = (_mesa_unmarshal_func)_mesa_unmarshal_ClearDepth,
25096c5ddc4Srjs   [DISPATCH_CMD_StencilMask] = (_mesa_unmarshal_func)_mesa_unmarshal_StencilMask,
25196c5ddc4Srjs   [DISPATCH_CMD_ColorMask] = (_mesa_unmarshal_func)_mesa_unmarshal_ColorMask,
25296c5ddc4Srjs   [DISPATCH_CMD_DepthMask] = (_mesa_unmarshal_func)_mesa_unmarshal_DepthMask,
25396c5ddc4Srjs   [DISPATCH_CMD_IndexMask] = (_mesa_unmarshal_func)_mesa_unmarshal_IndexMask,
25496c5ddc4Srjs   [DISPATCH_CMD_Accum] = (_mesa_unmarshal_func)_mesa_unmarshal_Accum,
25596c5ddc4Srjs   [DISPATCH_CMD_Disable] = (_mesa_unmarshal_func)_mesa_unmarshal_Disable,
25696c5ddc4Srjs   [DISPATCH_CMD_Enable] = (_mesa_unmarshal_func)_mesa_unmarshal_Enable,
25796c5ddc4Srjs   [DISPATCH_CMD_Flush] = (_mesa_unmarshal_func)_mesa_unmarshal_Flush,
25896c5ddc4Srjs   [DISPATCH_CMD_PopAttrib] = (_mesa_unmarshal_func)_mesa_unmarshal_PopAttrib,
25996c5ddc4Srjs   [DISPATCH_CMD_PushAttrib] = (_mesa_unmarshal_func)_mesa_unmarshal_PushAttrib,
26096c5ddc4Srjs   [DISPATCH_CMD_MapGrid1d] = (_mesa_unmarshal_func)_mesa_unmarshal_MapGrid1d,
26196c5ddc4Srjs   [DISPATCH_CMD_MapGrid1f] = (_mesa_unmarshal_func)_mesa_unmarshal_MapGrid1f,
26296c5ddc4Srjs   [DISPATCH_CMD_MapGrid2d] = (_mesa_unmarshal_func)_mesa_unmarshal_MapGrid2d,
26396c5ddc4Srjs   [DISPATCH_CMD_MapGrid2f] = (_mesa_unmarshal_func)_mesa_unmarshal_MapGrid2f,
26496c5ddc4Srjs   [DISPATCH_CMD_EvalCoord1d] = (_mesa_unmarshal_func)_mesa_unmarshal_EvalCoord1d,
26596c5ddc4Srjs   [DISPATCH_CMD_EvalCoord1dv] = (_mesa_unmarshal_func)_mesa_unmarshal_EvalCoord1dv,
26696c5ddc4Srjs   [DISPATCH_CMD_EvalCoord1f] = (_mesa_unmarshal_func)_mesa_unmarshal_EvalCoord1f,
26796c5ddc4Srjs   [DISPATCH_CMD_EvalCoord1fv] = (_mesa_unmarshal_func)_mesa_unmarshal_EvalCoord1fv,
26896c5ddc4Srjs   [DISPATCH_CMD_EvalCoord2d] = (_mesa_unmarshal_func)_mesa_unmarshal_EvalCoord2d,
26996c5ddc4Srjs   [DISPATCH_CMD_EvalCoord2dv] = (_mesa_unmarshal_func)_mesa_unmarshal_EvalCoord2dv,
27096c5ddc4Srjs   [DISPATCH_CMD_EvalCoord2f] = (_mesa_unmarshal_func)_mesa_unmarshal_EvalCoord2f,
27196c5ddc4Srjs   [DISPATCH_CMD_EvalCoord2fv] = (_mesa_unmarshal_func)_mesa_unmarshal_EvalCoord2fv,
27296c5ddc4Srjs   [DISPATCH_CMD_EvalMesh1] = (_mesa_unmarshal_func)_mesa_unmarshal_EvalMesh1,
27396c5ddc4Srjs   [DISPATCH_CMD_EvalPoint1] = (_mesa_unmarshal_func)_mesa_unmarshal_EvalPoint1,
27496c5ddc4Srjs   [DISPATCH_CMD_EvalMesh2] = (_mesa_unmarshal_func)_mesa_unmarshal_EvalMesh2,
27596c5ddc4Srjs   [DISPATCH_CMD_EvalPoint2] = (_mesa_unmarshal_func)_mesa_unmarshal_EvalPoint2,
27696c5ddc4Srjs   [DISPATCH_CMD_AlphaFunc] = (_mesa_unmarshal_func)_mesa_unmarshal_AlphaFunc,
27796c5ddc4Srjs   [DISPATCH_CMD_BlendFunc] = (_mesa_unmarshal_func)_mesa_unmarshal_BlendFunc,
27896c5ddc4Srjs   [DISPATCH_CMD_LogicOp] = (_mesa_unmarshal_func)_mesa_unmarshal_LogicOp,
27996c5ddc4Srjs   [DISPATCH_CMD_StencilFunc] = (_mesa_unmarshal_func)_mesa_unmarshal_StencilFunc,
28096c5ddc4Srjs   [DISPATCH_CMD_StencilOp] = (_mesa_unmarshal_func)_mesa_unmarshal_StencilOp,
28196c5ddc4Srjs   [DISPATCH_CMD_DepthFunc] = (_mesa_unmarshal_func)_mesa_unmarshal_DepthFunc,
28296c5ddc4Srjs   [DISPATCH_CMD_PixelZoom] = (_mesa_unmarshal_func)_mesa_unmarshal_PixelZoom,
28396c5ddc4Srjs   [DISPATCH_CMD_PixelTransferf] = (_mesa_unmarshal_func)_mesa_unmarshal_PixelTransferf,
28496c5ddc4Srjs   [DISPATCH_CMD_PixelTransferi] = (_mesa_unmarshal_func)_mesa_unmarshal_PixelTransferi,
28596c5ddc4Srjs   [DISPATCH_CMD_PixelStoref] = (_mesa_unmarshal_func)_mesa_unmarshal_PixelStoref,
28696c5ddc4Srjs   [DISPATCH_CMD_PixelStorei] = (_mesa_unmarshal_func)_mesa_unmarshal_PixelStorei,
28796c5ddc4Srjs   [DISPATCH_CMD_PixelMapfv] = (_mesa_unmarshal_func)_mesa_unmarshal_PixelMapfv,
28896c5ddc4Srjs   [DISPATCH_CMD_PixelMapuiv] = (_mesa_unmarshal_func)_mesa_unmarshal_PixelMapuiv,
28996c5ddc4Srjs   [DISPATCH_CMD_PixelMapusv] = (_mesa_unmarshal_func)_mesa_unmarshal_PixelMapusv,
29096c5ddc4Srjs   [DISPATCH_CMD_ReadBuffer] = (_mesa_unmarshal_func)_mesa_unmarshal_ReadBuffer,
29196c5ddc4Srjs   [DISPATCH_CMD_CopyPixels] = (_mesa_unmarshal_func)_mesa_unmarshal_CopyPixels,
29296c5ddc4Srjs   [DISPATCH_CMD_ReadPixels] = (_mesa_unmarshal_func)_mesa_unmarshal_ReadPixels,
29396c5ddc4Srjs   [DISPATCH_CMD_DrawPixels] = (_mesa_unmarshal_func)_mesa_unmarshal_DrawPixels,
29496c5ddc4Srjs   [DISPATCH_CMD_GetIntegerv] = (_mesa_unmarshal_func)_mesa_unmarshal_GetIntegerv,
29596c5ddc4Srjs   [DISPATCH_CMD_GetPixelMapfv] = (_mesa_unmarshal_func)_mesa_unmarshal_GetPixelMapfv,
29696c5ddc4Srjs   [DISPATCH_CMD_GetPixelMapuiv] = (_mesa_unmarshal_func)_mesa_unmarshal_GetPixelMapuiv,
29796c5ddc4Srjs   [DISPATCH_CMD_GetPixelMapusv] = (_mesa_unmarshal_func)_mesa_unmarshal_GetPixelMapusv,
29896c5ddc4Srjs   [DISPATCH_CMD_GetPolygonStipple] = (_mesa_unmarshal_func)_mesa_unmarshal_GetPolygonStipple,
29996c5ddc4Srjs   [DISPATCH_CMD_GetTexImage] = (_mesa_unmarshal_func)_mesa_unmarshal_GetTexImage,
30096c5ddc4Srjs   [DISPATCH_CMD_DepthRange] = (_mesa_unmarshal_func)_mesa_unmarshal_DepthRange,
30196c5ddc4Srjs   [DISPATCH_CMD_Frustum] = (_mesa_unmarshal_func)_mesa_unmarshal_Frustum,
30296c5ddc4Srjs   [DISPATCH_CMD_LoadIdentity] = (_mesa_unmarshal_func)_mesa_unmarshal_LoadIdentity,
30396c5ddc4Srjs   [DISPATCH_CMD_LoadMatrixf] = (_mesa_unmarshal_func)_mesa_unmarshal_LoadMatrixf,
30496c5ddc4Srjs   [DISPATCH_CMD_LoadMatrixd] = (_mesa_unmarshal_func)_mesa_unmarshal_LoadMatrixd,
30596c5ddc4Srjs   [DISPATCH_CMD_MatrixMode] = (_mesa_unmarshal_func)_mesa_unmarshal_MatrixMode,
30696c5ddc4Srjs   [DISPATCH_CMD_MultMatrixf] = (_mesa_unmarshal_func)_mesa_unmarshal_MultMatrixf,
30796c5ddc4Srjs   [DISPATCH_CMD_MultMatrixd] = (_mesa_unmarshal_func)_mesa_unmarshal_MultMatrixd,
30896c5ddc4Srjs   [DISPATCH_CMD_Ortho] = (_mesa_unmarshal_func)_mesa_unmarshal_Ortho,
30996c5ddc4Srjs   [DISPATCH_CMD_PopMatrix] = (_mesa_unmarshal_func)_mesa_unmarshal_PopMatrix,
31096c5ddc4Srjs   [DISPATCH_CMD_PushMatrix] = (_mesa_unmarshal_func)_mesa_unmarshal_PushMatrix,
31196c5ddc4Srjs   [DISPATCH_CMD_Rotated] = (_mesa_unmarshal_func)_mesa_unmarshal_Rotated,
31296c5ddc4Srjs   [DISPATCH_CMD_Rotatef] = (_mesa_unmarshal_func)_mesa_unmarshal_Rotatef,
31396c5ddc4Srjs   [DISPATCH_CMD_Scaled] = (_mesa_unmarshal_func)_mesa_unmarshal_Scaled,
31496c5ddc4Srjs   [DISPATCH_CMD_Scalef] = (_mesa_unmarshal_func)_mesa_unmarshal_Scalef,
31596c5ddc4Srjs   [DISPATCH_CMD_Translated] = (_mesa_unmarshal_func)_mesa_unmarshal_Translated,
31696c5ddc4Srjs   [DISPATCH_CMD_Translatef] = (_mesa_unmarshal_func)_mesa_unmarshal_Translatef,
31796c5ddc4Srjs   [DISPATCH_CMD_Viewport] = (_mesa_unmarshal_func)_mesa_unmarshal_Viewport,
31896c5ddc4Srjs   [DISPATCH_CMD_ArrayElement] = (_mesa_unmarshal_func)_mesa_unmarshal_ArrayElement,
31996c5ddc4Srjs   [DISPATCH_CMD_ColorPointer] = (_mesa_unmarshal_func)_mesa_unmarshal_ColorPointer,
32096c5ddc4Srjs   [DISPATCH_CMD_DisableClientState] = (_mesa_unmarshal_func)_mesa_unmarshal_DisableClientState,
32196c5ddc4Srjs   [DISPATCH_CMD_DrawArrays] = (_mesa_unmarshal_func)_mesa_unmarshal_DrawArrays,
32296c5ddc4Srjs   [DISPATCH_CMD_DrawElements] = (_mesa_unmarshal_func)_mesa_unmarshal_DrawElements,
32396c5ddc4Srjs   [DISPATCH_CMD_EdgeFlagPointer] = (_mesa_unmarshal_func)_mesa_unmarshal_EdgeFlagPointer,
32496c5ddc4Srjs   [DISPATCH_CMD_EnableClientState] = (_mesa_unmarshal_func)_mesa_unmarshal_EnableClientState,
32596c5ddc4Srjs   [DISPATCH_CMD_IndexPointer] = (_mesa_unmarshal_func)_mesa_unmarshal_IndexPointer,
32696c5ddc4Srjs   [DISPATCH_CMD_InterleavedArrays] = (_mesa_unmarshal_func)_mesa_unmarshal_InterleavedArrays,
32796c5ddc4Srjs   [DISPATCH_CMD_NormalPointer] = (_mesa_unmarshal_func)_mesa_unmarshal_NormalPointer,
32896c5ddc4Srjs   [DISPATCH_CMD_TexCoordPointer] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoordPointer,
32996c5ddc4Srjs   [DISPATCH_CMD_VertexPointer] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexPointer,
33096c5ddc4Srjs   [DISPATCH_CMD_PolygonOffset] = (_mesa_unmarshal_func)_mesa_unmarshal_PolygonOffset,
33196c5ddc4Srjs   [DISPATCH_CMD_CopyTexImage1D] = (_mesa_unmarshal_func)_mesa_unmarshal_CopyTexImage1D,
33296c5ddc4Srjs   [DISPATCH_CMD_CopyTexImage2D] = (_mesa_unmarshal_func)_mesa_unmarshal_CopyTexImage2D,
33396c5ddc4Srjs   [DISPATCH_CMD_CopyTexSubImage1D] = (_mesa_unmarshal_func)_mesa_unmarshal_CopyTexSubImage1D,
33496c5ddc4Srjs   [DISPATCH_CMD_CopyTexSubImage2D] = (_mesa_unmarshal_func)_mesa_unmarshal_CopyTexSubImage2D,
33596c5ddc4Srjs   [DISPATCH_CMD_TexSubImage1D] = (_mesa_unmarshal_func)_mesa_unmarshal_TexSubImage1D,
33696c5ddc4Srjs   [DISPATCH_CMD_TexSubImage2D] = (_mesa_unmarshal_func)_mesa_unmarshal_TexSubImage2D,
33796c5ddc4Srjs   [DISPATCH_CMD_BindTexture] = (_mesa_unmarshal_func)_mesa_unmarshal_BindTexture,
33896c5ddc4Srjs   [DISPATCH_CMD_DeleteTextures] = (_mesa_unmarshal_func)_mesa_unmarshal_DeleteTextures,
33996c5ddc4Srjs   [DISPATCH_CMD_PrioritizeTextures] = (_mesa_unmarshal_func)_mesa_unmarshal_PrioritizeTextures,
34096c5ddc4Srjs   [DISPATCH_CMD_Indexub] = (_mesa_unmarshal_func)_mesa_unmarshal_Indexub,
34196c5ddc4Srjs   [DISPATCH_CMD_Indexubv] = (_mesa_unmarshal_func)_mesa_unmarshal_Indexubv,
34296c5ddc4Srjs   [DISPATCH_CMD_PopClientAttrib] = (_mesa_unmarshal_func)_mesa_unmarshal_PopClientAttrib,
34396c5ddc4Srjs   [DISPATCH_CMD_PushClientAttrib] = (_mesa_unmarshal_func)_mesa_unmarshal_PushClientAttrib,
34496c5ddc4Srjs   [DISPATCH_CMD_BlendColor] = (_mesa_unmarshal_func)_mesa_unmarshal_BlendColor,
34596c5ddc4Srjs   [DISPATCH_CMD_BlendEquation] = (_mesa_unmarshal_func)_mesa_unmarshal_BlendEquation,
34696c5ddc4Srjs   [DISPATCH_CMD_DrawRangeElements] = (_mesa_unmarshal_func)_mesa_unmarshal_DrawRangeElements,
34796c5ddc4Srjs   [DISPATCH_CMD_CopyColorTable] = (_mesa_unmarshal_func)_mesa_unmarshal_CopyColorTable,
34896c5ddc4Srjs   [DISPATCH_CMD_CopyColorSubTable] = (_mesa_unmarshal_func)_mesa_unmarshal_CopyColorSubTable,
34996c5ddc4Srjs   [DISPATCH_CMD_ConvolutionParameterf] = (_mesa_unmarshal_func)_mesa_unmarshal_ConvolutionParameterf,
35096c5ddc4Srjs   [DISPATCH_CMD_ConvolutionParameteri] = (_mesa_unmarshal_func)_mesa_unmarshal_ConvolutionParameteri,
35196c5ddc4Srjs   [DISPATCH_CMD_CopyConvolutionFilter1D] = (_mesa_unmarshal_func)_mesa_unmarshal_CopyConvolutionFilter1D,
35296c5ddc4Srjs   [DISPATCH_CMD_CopyConvolutionFilter2D] = (_mesa_unmarshal_func)_mesa_unmarshal_CopyConvolutionFilter2D,
35396c5ddc4Srjs   [DISPATCH_CMD_Histogram] = (_mesa_unmarshal_func)_mesa_unmarshal_Histogram,
35496c5ddc4Srjs   [DISPATCH_CMD_Minmax] = (_mesa_unmarshal_func)_mesa_unmarshal_Minmax,
35596c5ddc4Srjs   [DISPATCH_CMD_ResetHistogram] = (_mesa_unmarshal_func)_mesa_unmarshal_ResetHistogram,
35696c5ddc4Srjs   [DISPATCH_CMD_ResetMinmax] = (_mesa_unmarshal_func)_mesa_unmarshal_ResetMinmax,
35796c5ddc4Srjs   [DISPATCH_CMD_TexImage3D] = (_mesa_unmarshal_func)_mesa_unmarshal_TexImage3D,
35896c5ddc4Srjs   [DISPATCH_CMD_TexSubImage3D] = (_mesa_unmarshal_func)_mesa_unmarshal_TexSubImage3D,
35996c5ddc4Srjs   [DISPATCH_CMD_CopyTexSubImage3D] = (_mesa_unmarshal_func)_mesa_unmarshal_CopyTexSubImage3D,
36096c5ddc4Srjs   [DISPATCH_CMD_ActiveTexture] = (_mesa_unmarshal_func)_mesa_unmarshal_ActiveTexture,
36196c5ddc4Srjs   [DISPATCH_CMD_ClientActiveTexture] = (_mesa_unmarshal_func)_mesa_unmarshal_ClientActiveTexture,
36296c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord1d] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord1d,
36396c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord1dv] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord1dv,
36496c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord1fARB] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord1fARB,
36596c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord1fvARB] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord1fvARB,
36696c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord1i] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord1i,
36796c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord1iv] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord1iv,
36896c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord1s] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord1s,
36996c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord1sv] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord1sv,
37096c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord2d] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord2d,
37196c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord2dv] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord2dv,
37296c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord2fARB] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord2fARB,
37396c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord2fvARB] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord2fvARB,
37496c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord2i] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord2i,
37596c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord2iv] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord2iv,
37696c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord2s] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord2s,
37796c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord2sv] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord2sv,
37896c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord3d] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord3d,
37996c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord3dv] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord3dv,
38096c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord3fARB] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord3fARB,
38196c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord3fvARB] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord3fvARB,
38296c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord3i] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord3i,
38396c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord3iv] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord3iv,
38496c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord3s] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord3s,
38596c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord3sv] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord3sv,
38696c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord4d] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord4d,
38796c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord4dv] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord4dv,
38896c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord4fARB] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord4fARB,
38996c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord4fvARB] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord4fvARB,
39096c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord4i] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord4i,
39196c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord4iv] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord4iv,
39296c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord4s] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord4s,
39396c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord4sv] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord4sv,
39496c5ddc4Srjs   [DISPATCH_CMD_LoadTransposeMatrixf] = (_mesa_unmarshal_func)_mesa_unmarshal_LoadTransposeMatrixf,
39596c5ddc4Srjs   [DISPATCH_CMD_LoadTransposeMatrixd] = (_mesa_unmarshal_func)_mesa_unmarshal_LoadTransposeMatrixd,
39696c5ddc4Srjs   [DISPATCH_CMD_MultTransposeMatrixf] = (_mesa_unmarshal_func)_mesa_unmarshal_MultTransposeMatrixf,
39796c5ddc4Srjs   [DISPATCH_CMD_MultTransposeMatrixd] = (_mesa_unmarshal_func)_mesa_unmarshal_MultTransposeMatrixd,
39896c5ddc4Srjs   [DISPATCH_CMD_SampleCoverage] = (_mesa_unmarshal_func)_mesa_unmarshal_SampleCoverage,
39996c5ddc4Srjs   [DISPATCH_CMD_CompressedTexImage3D] = (_mesa_unmarshal_func)_mesa_unmarshal_CompressedTexImage3D,
40096c5ddc4Srjs   [DISPATCH_CMD_CompressedTexImage2D] = (_mesa_unmarshal_func)_mesa_unmarshal_CompressedTexImage2D,
40196c5ddc4Srjs   [DISPATCH_CMD_CompressedTexImage1D] = (_mesa_unmarshal_func)_mesa_unmarshal_CompressedTexImage1D,
40296c5ddc4Srjs   [DISPATCH_CMD_CompressedTexSubImage3D] = (_mesa_unmarshal_func)_mesa_unmarshal_CompressedTexSubImage3D,
40396c5ddc4Srjs   [DISPATCH_CMD_CompressedTexSubImage2D] = (_mesa_unmarshal_func)_mesa_unmarshal_CompressedTexSubImage2D,
40496c5ddc4Srjs   [DISPATCH_CMD_CompressedTexSubImage1D] = (_mesa_unmarshal_func)_mesa_unmarshal_CompressedTexSubImage1D,
40596c5ddc4Srjs   [DISPATCH_CMD_GetCompressedTexImage] = (_mesa_unmarshal_func)_mesa_unmarshal_GetCompressedTexImage,
40696c5ddc4Srjs   [DISPATCH_CMD_BlendFuncSeparate] = (_mesa_unmarshal_func)_mesa_unmarshal_BlendFuncSeparate,
40796c5ddc4Srjs   [DISPATCH_CMD_FogCoordfEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_FogCoordfEXT,
40896c5ddc4Srjs   [DISPATCH_CMD_FogCoordfvEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_FogCoordfvEXT,
40996c5ddc4Srjs   [DISPATCH_CMD_FogCoordd] = (_mesa_unmarshal_func)_mesa_unmarshal_FogCoordd,
41096c5ddc4Srjs   [DISPATCH_CMD_FogCoorddv] = (_mesa_unmarshal_func)_mesa_unmarshal_FogCoorddv,
41196c5ddc4Srjs   [DISPATCH_CMD_FogCoordPointer] = (_mesa_unmarshal_func)_mesa_unmarshal_FogCoordPointer,
41296c5ddc4Srjs   [DISPATCH_CMD_MultiDrawArrays] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiDrawArrays,
41396c5ddc4Srjs   [DISPATCH_CMD_MultiDrawElementsEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiDrawElementsEXT,
41496c5ddc4Srjs   [DISPATCH_CMD_PointParameterf] = (_mesa_unmarshal_func)_mesa_unmarshal_PointParameterf,
41596c5ddc4Srjs   [DISPATCH_CMD_PointParameterfv] = (_mesa_unmarshal_func)_mesa_unmarshal_PointParameterfv,
41696c5ddc4Srjs   [DISPATCH_CMD_PointParameteri] = (_mesa_unmarshal_func)_mesa_unmarshal_PointParameteri,
41796c5ddc4Srjs   [DISPATCH_CMD_PointParameteriv] = (_mesa_unmarshal_func)_mesa_unmarshal_PointParameteriv,
41896c5ddc4Srjs   [DISPATCH_CMD_SecondaryColor3b] = (_mesa_unmarshal_func)_mesa_unmarshal_SecondaryColor3b,
41996c5ddc4Srjs   [DISPATCH_CMD_SecondaryColor3bv] = (_mesa_unmarshal_func)_mesa_unmarshal_SecondaryColor3bv,
42096c5ddc4Srjs   [DISPATCH_CMD_SecondaryColor3d] = (_mesa_unmarshal_func)_mesa_unmarshal_SecondaryColor3d,
42196c5ddc4Srjs   [DISPATCH_CMD_SecondaryColor3dv] = (_mesa_unmarshal_func)_mesa_unmarshal_SecondaryColor3dv,
42296c5ddc4Srjs   [DISPATCH_CMD_SecondaryColor3fEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_SecondaryColor3fEXT,
42396c5ddc4Srjs   [DISPATCH_CMD_SecondaryColor3fvEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_SecondaryColor3fvEXT,
42496c5ddc4Srjs   [DISPATCH_CMD_SecondaryColor3i] = (_mesa_unmarshal_func)_mesa_unmarshal_SecondaryColor3i,
42596c5ddc4Srjs   [DISPATCH_CMD_SecondaryColor3iv] = (_mesa_unmarshal_func)_mesa_unmarshal_SecondaryColor3iv,
42696c5ddc4Srjs   [DISPATCH_CMD_SecondaryColor3s] = (_mesa_unmarshal_func)_mesa_unmarshal_SecondaryColor3s,
42796c5ddc4Srjs   [DISPATCH_CMD_SecondaryColor3sv] = (_mesa_unmarshal_func)_mesa_unmarshal_SecondaryColor3sv,
42896c5ddc4Srjs   [DISPATCH_CMD_SecondaryColor3ub] = (_mesa_unmarshal_func)_mesa_unmarshal_SecondaryColor3ub,
42996c5ddc4Srjs   [DISPATCH_CMD_SecondaryColor3ubv] = (_mesa_unmarshal_func)_mesa_unmarshal_SecondaryColor3ubv,
43096c5ddc4Srjs   [DISPATCH_CMD_SecondaryColor3ui] = (_mesa_unmarshal_func)_mesa_unmarshal_SecondaryColor3ui,
43196c5ddc4Srjs   [DISPATCH_CMD_SecondaryColor3uiv] = (_mesa_unmarshal_func)_mesa_unmarshal_SecondaryColor3uiv,
43296c5ddc4Srjs   [DISPATCH_CMD_SecondaryColor3us] = (_mesa_unmarshal_func)_mesa_unmarshal_SecondaryColor3us,
43396c5ddc4Srjs   [DISPATCH_CMD_SecondaryColor3usv] = (_mesa_unmarshal_func)_mesa_unmarshal_SecondaryColor3usv,
43496c5ddc4Srjs   [DISPATCH_CMD_SecondaryColorPointer] = (_mesa_unmarshal_func)_mesa_unmarshal_SecondaryColorPointer,
43596c5ddc4Srjs   [DISPATCH_CMD_WindowPos2d] = (_mesa_unmarshal_func)_mesa_unmarshal_WindowPos2d,
43696c5ddc4Srjs   [DISPATCH_CMD_WindowPos2dv] = (_mesa_unmarshal_func)_mesa_unmarshal_WindowPos2dv,
43796c5ddc4Srjs   [DISPATCH_CMD_WindowPos2f] = (_mesa_unmarshal_func)_mesa_unmarshal_WindowPos2f,
43896c5ddc4Srjs   [DISPATCH_CMD_WindowPos2fv] = (_mesa_unmarshal_func)_mesa_unmarshal_WindowPos2fv,
43996c5ddc4Srjs   [DISPATCH_CMD_WindowPos2i] = (_mesa_unmarshal_func)_mesa_unmarshal_WindowPos2i,
44096c5ddc4Srjs   [DISPATCH_CMD_WindowPos2iv] = (_mesa_unmarshal_func)_mesa_unmarshal_WindowPos2iv,
44196c5ddc4Srjs   [DISPATCH_CMD_WindowPos2s] = (_mesa_unmarshal_func)_mesa_unmarshal_WindowPos2s,
44296c5ddc4Srjs   [DISPATCH_CMD_WindowPos2sv] = (_mesa_unmarshal_func)_mesa_unmarshal_WindowPos2sv,
44396c5ddc4Srjs   [DISPATCH_CMD_WindowPos3d] = (_mesa_unmarshal_func)_mesa_unmarshal_WindowPos3d,
44496c5ddc4Srjs   [DISPATCH_CMD_WindowPos3dv] = (_mesa_unmarshal_func)_mesa_unmarshal_WindowPos3dv,
44596c5ddc4Srjs   [DISPATCH_CMD_WindowPos3f] = (_mesa_unmarshal_func)_mesa_unmarshal_WindowPos3f,
44696c5ddc4Srjs   [DISPATCH_CMD_WindowPos3fv] = (_mesa_unmarshal_func)_mesa_unmarshal_WindowPos3fv,
44796c5ddc4Srjs   [DISPATCH_CMD_WindowPos3i] = (_mesa_unmarshal_func)_mesa_unmarshal_WindowPos3i,
44896c5ddc4Srjs   [DISPATCH_CMD_WindowPos3iv] = (_mesa_unmarshal_func)_mesa_unmarshal_WindowPos3iv,
44996c5ddc4Srjs   [DISPATCH_CMD_WindowPos3s] = (_mesa_unmarshal_func)_mesa_unmarshal_WindowPos3s,
45096c5ddc4Srjs   [DISPATCH_CMD_WindowPos3sv] = (_mesa_unmarshal_func)_mesa_unmarshal_WindowPos3sv,
45196c5ddc4Srjs   [DISPATCH_CMD_BindBuffer] = (_mesa_unmarshal_func)_mesa_unmarshal_BindBuffer,
45296c5ddc4Srjs   [DISPATCH_CMD_BufferData] = (_mesa_unmarshal_func)_mesa_unmarshal_BufferData,
45396c5ddc4Srjs   [DISPATCH_CMD_BufferSubData] = (_mesa_unmarshal_func)_mesa_unmarshal_BufferSubData,
45496c5ddc4Srjs   [DISPATCH_CMD_DeleteBuffers] = (_mesa_unmarshal_func)_mesa_unmarshal_DeleteBuffers,
45596c5ddc4Srjs   [DISPATCH_CMD_UnmapBuffer] = (_mesa_unmarshal_func)_mesa_unmarshal_UnmapBuffer,
45696c5ddc4Srjs   [DISPATCH_CMD_DeleteQueries] = (_mesa_unmarshal_func)_mesa_unmarshal_DeleteQueries,
45796c5ddc4Srjs   [DISPATCH_CMD_BeginQuery] = (_mesa_unmarshal_func)_mesa_unmarshal_BeginQuery,
45896c5ddc4Srjs   [DISPATCH_CMD_EndQuery] = (_mesa_unmarshal_func)_mesa_unmarshal_EndQuery,
45996c5ddc4Srjs   [DISPATCH_CMD_BlendEquationSeparate] = (_mesa_unmarshal_func)_mesa_unmarshal_BlendEquationSeparate,
46096c5ddc4Srjs   [DISPATCH_CMD_DrawBuffers] = (_mesa_unmarshal_func)_mesa_unmarshal_DrawBuffers,
46196c5ddc4Srjs   [DISPATCH_CMD_StencilFuncSeparate] = (_mesa_unmarshal_func)_mesa_unmarshal_StencilFuncSeparate,
46296c5ddc4Srjs   [DISPATCH_CMD_StencilOpSeparate] = (_mesa_unmarshal_func)_mesa_unmarshal_StencilOpSeparate,
46396c5ddc4Srjs   [DISPATCH_CMD_StencilMaskSeparate] = (_mesa_unmarshal_func)_mesa_unmarshal_StencilMaskSeparate,
46496c5ddc4Srjs   [DISPATCH_CMD_AttachShader] = (_mesa_unmarshal_func)_mesa_unmarshal_AttachShader,
46596c5ddc4Srjs   [DISPATCH_CMD_BindAttribLocation] = (_mesa_unmarshal_func)_mesa_unmarshal_BindAttribLocation,
46696c5ddc4Srjs   [DISPATCH_CMD_CompileShader] = (_mesa_unmarshal_func)_mesa_unmarshal_CompileShader,
46796c5ddc4Srjs   [DISPATCH_CMD_DeleteProgram] = (_mesa_unmarshal_func)_mesa_unmarshal_DeleteProgram,
46896c5ddc4Srjs   [DISPATCH_CMD_DeleteShader] = (_mesa_unmarshal_func)_mesa_unmarshal_DeleteShader,
46996c5ddc4Srjs   [DISPATCH_CMD_DetachShader] = (_mesa_unmarshal_func)_mesa_unmarshal_DetachShader,
47096c5ddc4Srjs   [DISPATCH_CMD_DisableVertexAttribArray] = (_mesa_unmarshal_func)_mesa_unmarshal_DisableVertexAttribArray,
47196c5ddc4Srjs   [DISPATCH_CMD_EnableVertexAttribArray] = (_mesa_unmarshal_func)_mesa_unmarshal_EnableVertexAttribArray,
47296c5ddc4Srjs   [DISPATCH_CMD_GetActiveUniform] = (_mesa_unmarshal_func)_mesa_unmarshal_GetActiveUniform,
47396c5ddc4Srjs   [DISPATCH_CMD_GetUniformLocation] = (_mesa_unmarshal_func)_mesa_unmarshal_GetUniformLocation,
47496c5ddc4Srjs   [DISPATCH_CMD_LinkProgram] = (_mesa_unmarshal_func)_mesa_unmarshal_LinkProgram,
47596c5ddc4Srjs   [DISPATCH_CMD_ShaderSource] = (_mesa_unmarshal_func)_mesa_unmarshal_ShaderSource,
47696c5ddc4Srjs   [DISPATCH_CMD_UseProgram] = (_mesa_unmarshal_func)_mesa_unmarshal_UseProgram,
47796c5ddc4Srjs   [DISPATCH_CMD_Uniform1f] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform1f,
47896c5ddc4Srjs   [DISPATCH_CMD_Uniform2f] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform2f,
47996c5ddc4Srjs   [DISPATCH_CMD_Uniform3f] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform3f,
48096c5ddc4Srjs   [DISPATCH_CMD_Uniform4f] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform4f,
48196c5ddc4Srjs   [DISPATCH_CMD_Uniform1i] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform1i,
48296c5ddc4Srjs   [DISPATCH_CMD_Uniform2i] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform2i,
48396c5ddc4Srjs   [DISPATCH_CMD_Uniform3i] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform3i,
48496c5ddc4Srjs   [DISPATCH_CMD_Uniform4i] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform4i,
48596c5ddc4Srjs   [DISPATCH_CMD_Uniform1fv] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform1fv,
48696c5ddc4Srjs   [DISPATCH_CMD_Uniform2fv] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform2fv,
48796c5ddc4Srjs   [DISPATCH_CMD_Uniform3fv] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform3fv,
48896c5ddc4Srjs   [DISPATCH_CMD_Uniform4fv] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform4fv,
48996c5ddc4Srjs   [DISPATCH_CMD_Uniform1iv] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform1iv,
49096c5ddc4Srjs   [DISPATCH_CMD_Uniform2iv] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform2iv,
49196c5ddc4Srjs   [DISPATCH_CMD_Uniform3iv] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform3iv,
49296c5ddc4Srjs   [DISPATCH_CMD_Uniform4iv] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform4iv,
49396c5ddc4Srjs   [DISPATCH_CMD_UniformMatrix2fv] = (_mesa_unmarshal_func)_mesa_unmarshal_UniformMatrix2fv,
49496c5ddc4Srjs   [DISPATCH_CMD_UniformMatrix3fv] = (_mesa_unmarshal_func)_mesa_unmarshal_UniformMatrix3fv,
49596c5ddc4Srjs   [DISPATCH_CMD_UniformMatrix4fv] = (_mesa_unmarshal_func)_mesa_unmarshal_UniformMatrix4fv,
49696c5ddc4Srjs   [DISPATCH_CMD_ValidateProgram] = (_mesa_unmarshal_func)_mesa_unmarshal_ValidateProgram,
49796c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib1d] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib1d,
49896c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib1dv] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib1dv,
49996c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib1fARB] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib1fARB,
50096c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib1fvARB] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib1fvARB,
50196c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib1s] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib1s,
50296c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib1sv] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib1sv,
50396c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib2d] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib2d,
50496c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib2dv] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib2dv,
50596c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib2fARB] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib2fARB,
50696c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib2fvARB] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib2fvARB,
50796c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib2s] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib2s,
50896c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib2sv] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib2sv,
50996c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib3d] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib3d,
51096c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib3dv] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib3dv,
51196c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib3fARB] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib3fARB,
51296c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib3fvARB] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib3fvARB,
51396c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib3s] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib3s,
51496c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib3sv] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib3sv,
51596c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib4Nbv] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib4Nbv,
51696c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib4Niv] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib4Niv,
51796c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib4Nsv] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib4Nsv,
51896c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib4Nub] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib4Nub,
51996c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib4Nubv] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib4Nubv,
52096c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib4Nuiv] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib4Nuiv,
52196c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib4Nusv] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib4Nusv,
52296c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib4bv] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib4bv,
52396c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib4d] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib4d,
52496c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib4dv] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib4dv,
52596c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib4fARB] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib4fARB,
52696c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib4fvARB] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib4fvARB,
52796c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib4iv] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib4iv,
52896c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib4s] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib4s,
52996c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib4sv] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib4sv,
53096c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib4ubv] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib4ubv,
53196c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib4uiv] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib4uiv,
53296c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib4usv] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib4usv,
53396c5ddc4Srjs   [DISPATCH_CMD_VertexAttribPointer] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribPointer,
53496c5ddc4Srjs   [DISPATCH_CMD_UniformMatrix2x3fv] = (_mesa_unmarshal_func)_mesa_unmarshal_UniformMatrix2x3fv,
53596c5ddc4Srjs   [DISPATCH_CMD_UniformMatrix3x2fv] = (_mesa_unmarshal_func)_mesa_unmarshal_UniformMatrix3x2fv,
53696c5ddc4Srjs   [DISPATCH_CMD_UniformMatrix2x4fv] = (_mesa_unmarshal_func)_mesa_unmarshal_UniformMatrix2x4fv,
53796c5ddc4Srjs   [DISPATCH_CMD_UniformMatrix4x2fv] = (_mesa_unmarshal_func)_mesa_unmarshal_UniformMatrix4x2fv,
53896c5ddc4Srjs   [DISPATCH_CMD_UniformMatrix3x4fv] = (_mesa_unmarshal_func)_mesa_unmarshal_UniformMatrix3x4fv,
53996c5ddc4Srjs   [DISPATCH_CMD_UniformMatrix4x3fv] = (_mesa_unmarshal_func)_mesa_unmarshal_UniformMatrix4x3fv,
54096c5ddc4Srjs   [DISPATCH_CMD_ProgramStringARB] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramStringARB,
54196c5ddc4Srjs   [DISPATCH_CMD_BindProgramARB] = (_mesa_unmarshal_func)_mesa_unmarshal_BindProgramARB,
54296c5ddc4Srjs   [DISPATCH_CMD_DeleteProgramsARB] = (_mesa_unmarshal_func)_mesa_unmarshal_DeleteProgramsARB,
54396c5ddc4Srjs   [DISPATCH_CMD_ProgramEnvParameter4dARB] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramEnvParameter4dARB,
54496c5ddc4Srjs   [DISPATCH_CMD_ProgramEnvParameter4dvARB] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramEnvParameter4dvARB,
54596c5ddc4Srjs   [DISPATCH_CMD_ProgramEnvParameter4fARB] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramEnvParameter4fARB,
54696c5ddc4Srjs   [DISPATCH_CMD_ProgramEnvParameter4fvARB] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramEnvParameter4fvARB,
54796c5ddc4Srjs   [DISPATCH_CMD_ProgramLocalParameter4dARB] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramLocalParameter4dARB,
54896c5ddc4Srjs   [DISPATCH_CMD_ProgramLocalParameter4dvARB] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramLocalParameter4dvARB,
54996c5ddc4Srjs   [DISPATCH_CMD_ProgramLocalParameter4fARB] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramLocalParameter4fARB,
55096c5ddc4Srjs   [DISPATCH_CMD_ProgramLocalParameter4fvARB] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramLocalParameter4fvARB,
55196c5ddc4Srjs   [DISPATCH_CMD_DeleteObjectARB] = (_mesa_unmarshal_func)_mesa_unmarshal_DeleteObjectARB,
55296c5ddc4Srjs   [DISPATCH_CMD_DetachObjectARB] = (_mesa_unmarshal_func)_mesa_unmarshal_DetachObjectARB,
55396c5ddc4Srjs   [DISPATCH_CMD_AttachObjectARB] = (_mesa_unmarshal_func)_mesa_unmarshal_AttachObjectARB,
55496c5ddc4Srjs   [DISPATCH_CMD_ClampColor] = (_mesa_unmarshal_func)_mesa_unmarshal_ClampColor,
55596c5ddc4Srjs   [DISPATCH_CMD_DrawArraysInstancedARB] = (_mesa_unmarshal_func)_mesa_unmarshal_DrawArraysInstancedARB,
55696c5ddc4Srjs   [DISPATCH_CMD_DrawElementsInstancedARB] = (_mesa_unmarshal_func)_mesa_unmarshal_DrawElementsInstancedARB,
55796c5ddc4Srjs   [DISPATCH_CMD_BindRenderbuffer] = (_mesa_unmarshal_func)_mesa_unmarshal_BindRenderbuffer,
55896c5ddc4Srjs   [DISPATCH_CMD_DeleteRenderbuffers] = (_mesa_unmarshal_func)_mesa_unmarshal_DeleteRenderbuffers,
55996c5ddc4Srjs   [DISPATCH_CMD_RenderbufferStorage] = (_mesa_unmarshal_func)_mesa_unmarshal_RenderbufferStorage,
56096c5ddc4Srjs   [DISPATCH_CMD_RenderbufferStorageMultisample] = (_mesa_unmarshal_func)_mesa_unmarshal_RenderbufferStorageMultisample,
56196c5ddc4Srjs   [DISPATCH_CMD_BindFramebuffer] = (_mesa_unmarshal_func)_mesa_unmarshal_BindFramebuffer,
56296c5ddc4Srjs   [DISPATCH_CMD_DeleteFramebuffers] = (_mesa_unmarshal_func)_mesa_unmarshal_DeleteFramebuffers,
56396c5ddc4Srjs   [DISPATCH_CMD_FramebufferTexture1D] = (_mesa_unmarshal_func)_mesa_unmarshal_FramebufferTexture1D,
56496c5ddc4Srjs   [DISPATCH_CMD_FramebufferTexture2D] = (_mesa_unmarshal_func)_mesa_unmarshal_FramebufferTexture2D,
56596c5ddc4Srjs   [DISPATCH_CMD_FramebufferTexture3D] = (_mesa_unmarshal_func)_mesa_unmarshal_FramebufferTexture3D,
56696c5ddc4Srjs   [DISPATCH_CMD_FramebufferTextureLayer] = (_mesa_unmarshal_func)_mesa_unmarshal_FramebufferTextureLayer,
56796c5ddc4Srjs   [DISPATCH_CMD_FramebufferRenderbuffer] = (_mesa_unmarshal_func)_mesa_unmarshal_FramebufferRenderbuffer,
56896c5ddc4Srjs   [DISPATCH_CMD_BlitFramebuffer] = (_mesa_unmarshal_func)_mesa_unmarshal_BlitFramebuffer,
56996c5ddc4Srjs   [DISPATCH_CMD_GenerateMipmap] = (_mesa_unmarshal_func)_mesa_unmarshal_GenerateMipmap,
57096c5ddc4Srjs   [DISPATCH_CMD_VertexAttribDivisor] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribDivisor,
57196c5ddc4Srjs   [DISPATCH_CMD_VertexArrayVertexAttribDivisorEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexArrayVertexAttribDivisorEXT,
57296c5ddc4Srjs   [DISPATCH_CMD_FlushMappedBufferRange] = (_mesa_unmarshal_func)_mesa_unmarshal_FlushMappedBufferRange,
57396c5ddc4Srjs   [DISPATCH_CMD_TexBuffer] = (_mesa_unmarshal_func)_mesa_unmarshal_TexBuffer,
57496c5ddc4Srjs   [DISPATCH_CMD_BindVertexArray] = (_mesa_unmarshal_func)_mesa_unmarshal_BindVertexArray,
57596c5ddc4Srjs   [DISPATCH_CMD_DeleteVertexArrays] = (_mesa_unmarshal_func)_mesa_unmarshal_DeleteVertexArrays,
57696c5ddc4Srjs   [DISPATCH_CMD_UniformBlockBinding] = (_mesa_unmarshal_func)_mesa_unmarshal_UniformBlockBinding,
57796c5ddc4Srjs   [DISPATCH_CMD_CopyBufferSubData] = (_mesa_unmarshal_func)_mesa_unmarshal_CopyBufferSubData,
57896c5ddc4Srjs   [DISPATCH_CMD_DrawElementsBaseVertex] = (_mesa_unmarshal_func)_mesa_unmarshal_DrawElementsBaseVertex,
57996c5ddc4Srjs   [DISPATCH_CMD_DrawRangeElementsBaseVertex] = (_mesa_unmarshal_func)_mesa_unmarshal_DrawRangeElementsBaseVertex,
58096c5ddc4Srjs   [DISPATCH_CMD_MultiDrawElementsBaseVertex] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiDrawElementsBaseVertex,
58196c5ddc4Srjs   [DISPATCH_CMD_DrawElementsInstancedBaseVertex] = (_mesa_unmarshal_func)_mesa_unmarshal_DrawElementsInstancedBaseVertex,
58296c5ddc4Srjs   [DISPATCH_CMD_DeleteSync] = (_mesa_unmarshal_func)_mesa_unmarshal_DeleteSync,
58396c5ddc4Srjs   [DISPATCH_CMD_WaitSync] = (_mesa_unmarshal_func)_mesa_unmarshal_WaitSync,
58496c5ddc4Srjs   [DISPATCH_CMD_TexImage2DMultisample] = (_mesa_unmarshal_func)_mesa_unmarshal_TexImage2DMultisample,
58596c5ddc4Srjs   [DISPATCH_CMD_TexImage3DMultisample] = (_mesa_unmarshal_func)_mesa_unmarshal_TexImage3DMultisample,
58696c5ddc4Srjs   [DISPATCH_CMD_SampleMaski] = (_mesa_unmarshal_func)_mesa_unmarshal_SampleMaski,
58796c5ddc4Srjs   [DISPATCH_CMD_BlendEquationiARB] = (_mesa_unmarshal_func)_mesa_unmarshal_BlendEquationiARB,
58896c5ddc4Srjs   [DISPATCH_CMD_BlendEquationSeparateiARB] = (_mesa_unmarshal_func)_mesa_unmarshal_BlendEquationSeparateiARB,
58996c5ddc4Srjs   [DISPATCH_CMD_BlendFunciARB] = (_mesa_unmarshal_func)_mesa_unmarshal_BlendFunciARB,
59096c5ddc4Srjs   [DISPATCH_CMD_BlendFuncSeparateiARB] = (_mesa_unmarshal_func)_mesa_unmarshal_BlendFuncSeparateiARB,
59196c5ddc4Srjs   [DISPATCH_CMD_MinSampleShading] = (_mesa_unmarshal_func)_mesa_unmarshal_MinSampleShading,
59296c5ddc4Srjs   [DISPATCH_CMD_NamedStringARB] = (_mesa_unmarshal_func)_mesa_unmarshal_NamedStringARB,
59396c5ddc4Srjs   [DISPATCH_CMD_DeleteNamedStringARB] = (_mesa_unmarshal_func)_mesa_unmarshal_DeleteNamedStringARB,
59496c5ddc4Srjs   [DISPATCH_CMD_BindFragDataLocationIndexed] = (_mesa_unmarshal_func)_mesa_unmarshal_BindFragDataLocationIndexed,
59596c5ddc4Srjs   [DISPATCH_CMD_DeleteSamplers] = (_mesa_unmarshal_func)_mesa_unmarshal_DeleteSamplers,
59696c5ddc4Srjs   [DISPATCH_CMD_BindSampler] = (_mesa_unmarshal_func)_mesa_unmarshal_BindSampler,
59796c5ddc4Srjs   [DISPATCH_CMD_SamplerParameteri] = (_mesa_unmarshal_func)_mesa_unmarshal_SamplerParameteri,
59896c5ddc4Srjs   [DISPATCH_CMD_SamplerParameterf] = (_mesa_unmarshal_func)_mesa_unmarshal_SamplerParameterf,
59996c5ddc4Srjs   [DISPATCH_CMD_SamplerParameteriv] = (_mesa_unmarshal_func)_mesa_unmarshal_SamplerParameteriv,
60096c5ddc4Srjs   [DISPATCH_CMD_SamplerParameterfv] = (_mesa_unmarshal_func)_mesa_unmarshal_SamplerParameterfv,
60196c5ddc4Srjs   [DISPATCH_CMD_SamplerParameterIiv] = (_mesa_unmarshal_func)_mesa_unmarshal_SamplerParameterIiv,
60296c5ddc4Srjs   [DISPATCH_CMD_SamplerParameterIuiv] = (_mesa_unmarshal_func)_mesa_unmarshal_SamplerParameterIuiv,
60396c5ddc4Srjs   [DISPATCH_CMD_QueryCounter] = (_mesa_unmarshal_func)_mesa_unmarshal_QueryCounter,
60496c5ddc4Srjs   [DISPATCH_CMD_VertexP2ui] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexP2ui,
60596c5ddc4Srjs   [DISPATCH_CMD_VertexP3ui] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexP3ui,
60696c5ddc4Srjs   [DISPATCH_CMD_VertexP4ui] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexP4ui,
60796c5ddc4Srjs   [DISPATCH_CMD_VertexP2uiv] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexP2uiv,
60896c5ddc4Srjs   [DISPATCH_CMD_VertexP3uiv] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexP3uiv,
60996c5ddc4Srjs   [DISPATCH_CMD_VertexP4uiv] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexP4uiv,
61096c5ddc4Srjs   [DISPATCH_CMD_TexCoordP1ui] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoordP1ui,
61196c5ddc4Srjs   [DISPATCH_CMD_TexCoordP2ui] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoordP2ui,
61296c5ddc4Srjs   [DISPATCH_CMD_TexCoordP3ui] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoordP3ui,
61396c5ddc4Srjs   [DISPATCH_CMD_TexCoordP4ui] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoordP4ui,
61496c5ddc4Srjs   [DISPATCH_CMD_TexCoordP1uiv] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoordP1uiv,
61596c5ddc4Srjs   [DISPATCH_CMD_TexCoordP2uiv] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoordP2uiv,
61696c5ddc4Srjs   [DISPATCH_CMD_TexCoordP3uiv] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoordP3uiv,
61796c5ddc4Srjs   [DISPATCH_CMD_TexCoordP4uiv] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoordP4uiv,
61896c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoordP1ui] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoordP1ui,
61996c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoordP2ui] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoordP2ui,
62096c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoordP3ui] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoordP3ui,
62196c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoordP4ui] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoordP4ui,
62296c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoordP1uiv] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoordP1uiv,
62396c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoordP2uiv] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoordP2uiv,
62496c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoordP3uiv] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoordP3uiv,
62596c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoordP4uiv] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoordP4uiv,
62696c5ddc4Srjs   [DISPATCH_CMD_NormalP3ui] = (_mesa_unmarshal_func)_mesa_unmarshal_NormalP3ui,
62796c5ddc4Srjs   [DISPATCH_CMD_NormalP3uiv] = (_mesa_unmarshal_func)_mesa_unmarshal_NormalP3uiv,
62896c5ddc4Srjs   [DISPATCH_CMD_ColorP3ui] = (_mesa_unmarshal_func)_mesa_unmarshal_ColorP3ui,
62996c5ddc4Srjs   [DISPATCH_CMD_ColorP4ui] = (_mesa_unmarshal_func)_mesa_unmarshal_ColorP4ui,
63096c5ddc4Srjs   [DISPATCH_CMD_ColorP3uiv] = (_mesa_unmarshal_func)_mesa_unmarshal_ColorP3uiv,
63196c5ddc4Srjs   [DISPATCH_CMD_ColorP4uiv] = (_mesa_unmarshal_func)_mesa_unmarshal_ColorP4uiv,
63296c5ddc4Srjs   [DISPATCH_CMD_SecondaryColorP3ui] = (_mesa_unmarshal_func)_mesa_unmarshal_SecondaryColorP3ui,
63396c5ddc4Srjs   [DISPATCH_CMD_SecondaryColorP3uiv] = (_mesa_unmarshal_func)_mesa_unmarshal_SecondaryColorP3uiv,
63496c5ddc4Srjs   [DISPATCH_CMD_VertexAttribP1ui] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribP1ui,
63596c5ddc4Srjs   [DISPATCH_CMD_VertexAttribP2ui] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribP2ui,
63696c5ddc4Srjs   [DISPATCH_CMD_VertexAttribP3ui] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribP3ui,
63796c5ddc4Srjs   [DISPATCH_CMD_VertexAttribP4ui] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribP4ui,
63896c5ddc4Srjs   [DISPATCH_CMD_VertexAttribP1uiv] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribP1uiv,
63996c5ddc4Srjs   [DISPATCH_CMD_VertexAttribP2uiv] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribP2uiv,
64096c5ddc4Srjs   [DISPATCH_CMD_VertexAttribP3uiv] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribP3uiv,
64196c5ddc4Srjs   [DISPATCH_CMD_VertexAttribP4uiv] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribP4uiv,
64296c5ddc4Srjs   [DISPATCH_CMD_UniformSubroutinesuiv] = (_mesa_unmarshal_func)_mesa_unmarshal_UniformSubroutinesuiv,
64396c5ddc4Srjs   [DISPATCH_CMD_PatchParameteri] = (_mesa_unmarshal_func)_mesa_unmarshal_PatchParameteri,
64496c5ddc4Srjs   [DISPATCH_CMD_PatchParameterfv] = (_mesa_unmarshal_func)_mesa_unmarshal_PatchParameterfv,
64596c5ddc4Srjs   [DISPATCH_CMD_DrawArraysIndirect] = (_mesa_unmarshal_func)_mesa_unmarshal_DrawArraysIndirect,
64696c5ddc4Srjs   [DISPATCH_CMD_DrawElementsIndirect] = (_mesa_unmarshal_func)_mesa_unmarshal_DrawElementsIndirect,
64796c5ddc4Srjs   [DISPATCH_CMD_MultiDrawArraysIndirect] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiDrawArraysIndirect,
64896c5ddc4Srjs   [DISPATCH_CMD_MultiDrawElementsIndirect] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiDrawElementsIndirect,
64996c5ddc4Srjs   [DISPATCH_CMD_Uniform1d] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform1d,
65096c5ddc4Srjs   [DISPATCH_CMD_Uniform2d] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform2d,
65196c5ddc4Srjs   [DISPATCH_CMD_Uniform3d] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform3d,
65296c5ddc4Srjs   [DISPATCH_CMD_Uniform4d] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform4d,
65396c5ddc4Srjs   [DISPATCH_CMD_Uniform1dv] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform1dv,
65496c5ddc4Srjs   [DISPATCH_CMD_Uniform2dv] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform2dv,
65596c5ddc4Srjs   [DISPATCH_CMD_Uniform3dv] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform3dv,
65696c5ddc4Srjs   [DISPATCH_CMD_Uniform4dv] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform4dv,
65796c5ddc4Srjs   [DISPATCH_CMD_UniformMatrix2dv] = (_mesa_unmarshal_func)_mesa_unmarshal_UniformMatrix2dv,
65896c5ddc4Srjs   [DISPATCH_CMD_UniformMatrix3dv] = (_mesa_unmarshal_func)_mesa_unmarshal_UniformMatrix3dv,
65996c5ddc4Srjs   [DISPATCH_CMD_UniformMatrix4dv] = (_mesa_unmarshal_func)_mesa_unmarshal_UniformMatrix4dv,
66096c5ddc4Srjs   [DISPATCH_CMD_UniformMatrix2x3dv] = (_mesa_unmarshal_func)_mesa_unmarshal_UniformMatrix2x3dv,
66196c5ddc4Srjs   [DISPATCH_CMD_UniformMatrix2x4dv] = (_mesa_unmarshal_func)_mesa_unmarshal_UniformMatrix2x4dv,
66296c5ddc4Srjs   [DISPATCH_CMD_UniformMatrix3x2dv] = (_mesa_unmarshal_func)_mesa_unmarshal_UniformMatrix3x2dv,
66396c5ddc4Srjs   [DISPATCH_CMD_UniformMatrix3x4dv] = (_mesa_unmarshal_func)_mesa_unmarshal_UniformMatrix3x4dv,
66496c5ddc4Srjs   [DISPATCH_CMD_UniformMatrix4x2dv] = (_mesa_unmarshal_func)_mesa_unmarshal_UniformMatrix4x2dv,
66596c5ddc4Srjs   [DISPATCH_CMD_UniformMatrix4x3dv] = (_mesa_unmarshal_func)_mesa_unmarshal_UniformMatrix4x3dv,
66696c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform1d] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform1d,
66796c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform2d] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform2d,
66896c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform3d] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform3d,
66996c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform4d] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform4d,
67096c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform1dv] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform1dv,
67196c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform2dv] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform2dv,
67296c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform3dv] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform3dv,
67396c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform4dv] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform4dv,
67496c5ddc4Srjs   [DISPATCH_CMD_ProgramUniformMatrix2dv] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniformMatrix2dv,
67596c5ddc4Srjs   [DISPATCH_CMD_ProgramUniformMatrix3dv] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniformMatrix3dv,
67696c5ddc4Srjs   [DISPATCH_CMD_ProgramUniformMatrix4dv] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniformMatrix4dv,
67796c5ddc4Srjs   [DISPATCH_CMD_ProgramUniformMatrix2x3dv] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniformMatrix2x3dv,
67896c5ddc4Srjs   [DISPATCH_CMD_ProgramUniformMatrix2x4dv] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniformMatrix2x4dv,
67996c5ddc4Srjs   [DISPATCH_CMD_ProgramUniformMatrix3x2dv] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniformMatrix3x2dv,
68096c5ddc4Srjs   [DISPATCH_CMD_ProgramUniformMatrix3x4dv] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniformMatrix3x4dv,
68196c5ddc4Srjs   [DISPATCH_CMD_ProgramUniformMatrix4x2dv] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniformMatrix4x2dv,
68296c5ddc4Srjs   [DISPATCH_CMD_ProgramUniformMatrix4x3dv] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniformMatrix4x3dv,
68396c5ddc4Srjs   [DISPATCH_CMD_DrawTransformFeedbackStream] = (_mesa_unmarshal_func)_mesa_unmarshal_DrawTransformFeedbackStream,
68496c5ddc4Srjs   [DISPATCH_CMD_BeginQueryIndexed] = (_mesa_unmarshal_func)_mesa_unmarshal_BeginQueryIndexed,
68596c5ddc4Srjs   [DISPATCH_CMD_EndQueryIndexed] = (_mesa_unmarshal_func)_mesa_unmarshal_EndQueryIndexed,
68696c5ddc4Srjs   [DISPATCH_CMD_UseProgramStages] = (_mesa_unmarshal_func)_mesa_unmarshal_UseProgramStages,
68796c5ddc4Srjs   [DISPATCH_CMD_ActiveShaderProgram] = (_mesa_unmarshal_func)_mesa_unmarshal_ActiveShaderProgram,
68896c5ddc4Srjs   [DISPATCH_CMD_BindProgramPipeline] = (_mesa_unmarshal_func)_mesa_unmarshal_BindProgramPipeline,
68996c5ddc4Srjs   [DISPATCH_CMD_DeleteProgramPipelines] = (_mesa_unmarshal_func)_mesa_unmarshal_DeleteProgramPipelines,
69096c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform1i] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform1i,
69196c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform2i] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform2i,
69296c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform3i] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform3i,
69396c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform4i] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform4i,
69496c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform1ui] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform1ui,
69596c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform2ui] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform2ui,
69696c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform3ui] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform3ui,
69796c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform4ui] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform4ui,
69896c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform1f] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform1f,
69996c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform2f] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform2f,
70096c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform3f] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform3f,
70196c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform4f] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform4f,
70296c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform1iv] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform1iv,
70396c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform2iv] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform2iv,
70496c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform3iv] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform3iv,
70596c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform4iv] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform4iv,
70696c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform1uiv] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform1uiv,
70796c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform2uiv] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform2uiv,
70896c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform3uiv] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform3uiv,
70996c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform4uiv] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform4uiv,
71096c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform1fv] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform1fv,
71196c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform2fv] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform2fv,
71296c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform3fv] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform3fv,
71396c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform4fv] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform4fv,
71496c5ddc4Srjs   [DISPATCH_CMD_ProgramUniformMatrix2fv] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniformMatrix2fv,
71596c5ddc4Srjs   [DISPATCH_CMD_ProgramUniformMatrix3fv] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniformMatrix3fv,
71696c5ddc4Srjs   [DISPATCH_CMD_ProgramUniformMatrix4fv] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniformMatrix4fv,
71796c5ddc4Srjs   [DISPATCH_CMD_ProgramUniformMatrix2x3fv] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniformMatrix2x3fv,
71896c5ddc4Srjs   [DISPATCH_CMD_ProgramUniformMatrix3x2fv] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniformMatrix3x2fv,
71996c5ddc4Srjs   [DISPATCH_CMD_ProgramUniformMatrix2x4fv] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniformMatrix2x4fv,
72096c5ddc4Srjs   [DISPATCH_CMD_ProgramUniformMatrix4x2fv] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniformMatrix4x2fv,
72196c5ddc4Srjs   [DISPATCH_CMD_ProgramUniformMatrix3x4fv] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniformMatrix3x4fv,
72296c5ddc4Srjs   [DISPATCH_CMD_ProgramUniformMatrix4x3fv] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniformMatrix4x3fv,
72396c5ddc4Srjs   [DISPATCH_CMD_ValidateProgramPipeline] = (_mesa_unmarshal_func)_mesa_unmarshal_ValidateProgramPipeline,
72496c5ddc4Srjs   [DISPATCH_CMD_VertexAttribL1d] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribL1d,
72596c5ddc4Srjs   [DISPATCH_CMD_VertexAttribL2d] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribL2d,
72696c5ddc4Srjs   [DISPATCH_CMD_VertexAttribL3d] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribL3d,
72796c5ddc4Srjs   [DISPATCH_CMD_VertexAttribL4d] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribL4d,
72896c5ddc4Srjs   [DISPATCH_CMD_VertexAttribL1dv] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribL1dv,
72996c5ddc4Srjs   [DISPATCH_CMD_VertexAttribL2dv] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribL2dv,
73096c5ddc4Srjs   [DISPATCH_CMD_VertexAttribL3dv] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribL3dv,
73196c5ddc4Srjs   [DISPATCH_CMD_VertexAttribL4dv] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribL4dv,
73296c5ddc4Srjs   [DISPATCH_CMD_VertexAttribLPointer] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribLPointer,
73396c5ddc4Srjs   [DISPATCH_CMD_VertexArrayVertexAttribLOffsetEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexArrayVertexAttribLOffsetEXT,
73496c5ddc4Srjs   [DISPATCH_CMD_ReleaseShaderCompiler] = (_mesa_unmarshal_func)_mesa_unmarshal_ReleaseShaderCompiler,
73596c5ddc4Srjs   [DISPATCH_CMD_ShaderBinary] = (_mesa_unmarshal_func)_mesa_unmarshal_ShaderBinary,
73696c5ddc4Srjs   [DISPATCH_CMD_ClearDepthf] = (_mesa_unmarshal_func)_mesa_unmarshal_ClearDepthf,
73796c5ddc4Srjs   [DISPATCH_CMD_DepthRangef] = (_mesa_unmarshal_func)_mesa_unmarshal_DepthRangef,
73896c5ddc4Srjs   [DISPATCH_CMD_ProgramBinary] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramBinary,
73996c5ddc4Srjs   [DISPATCH_CMD_ProgramParameteri] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramParameteri,
74096c5ddc4Srjs   [DISPATCH_CMD_DebugMessageControl] = (_mesa_unmarshal_func)_mesa_unmarshal_DebugMessageControl,
74196c5ddc4Srjs   [DISPATCH_CMD_DebugMessageInsert] = (_mesa_unmarshal_func)_mesa_unmarshal_DebugMessageInsert,
74296c5ddc4Srjs   [DISPATCH_CMD_GetnPolygonStippleARB] = (_mesa_unmarshal_func)_mesa_unmarshal_GetnPolygonStippleARB,
74396c5ddc4Srjs   [DISPATCH_CMD_GetnTexImageARB] = (_mesa_unmarshal_func)_mesa_unmarshal_GetnTexImageARB,
74496c5ddc4Srjs   [DISPATCH_CMD_ReadnPixelsARB] = (_mesa_unmarshal_func)_mesa_unmarshal_ReadnPixelsARB,
74596c5ddc4Srjs   [DISPATCH_CMD_GetnCompressedTexImageARB] = (_mesa_unmarshal_func)_mesa_unmarshal_GetnCompressedTexImageARB,
74696c5ddc4Srjs   [DISPATCH_CMD_DrawArraysInstancedBaseInstance] = (_mesa_unmarshal_func)_mesa_unmarshal_DrawArraysInstancedBaseInstance,
74796c5ddc4Srjs   [DISPATCH_CMD_DrawElementsInstancedBaseInstance] = (_mesa_unmarshal_func)_mesa_unmarshal_DrawElementsInstancedBaseInstance,
74896c5ddc4Srjs   [DISPATCH_CMD_DrawElementsInstancedBaseVertexBaseInstance] = (_mesa_unmarshal_func)_mesa_unmarshal_DrawElementsInstancedBaseVertexBaseInstance,
74996c5ddc4Srjs   [DISPATCH_CMD_DrawTransformFeedbackInstanced] = (_mesa_unmarshal_func)_mesa_unmarshal_DrawTransformFeedbackInstanced,
75096c5ddc4Srjs   [DISPATCH_CMD_DrawTransformFeedbackStreamInstanced] = (_mesa_unmarshal_func)_mesa_unmarshal_DrawTransformFeedbackStreamInstanced,
75196c5ddc4Srjs   [DISPATCH_CMD_BindImageTexture] = (_mesa_unmarshal_func)_mesa_unmarshal_BindImageTexture,
75296c5ddc4Srjs   [DISPATCH_CMD_MemoryBarrier] = (_mesa_unmarshal_func)_mesa_unmarshal_MemoryBarrier,
75396c5ddc4Srjs   [DISPATCH_CMD_TexStorage1D] = (_mesa_unmarshal_func)_mesa_unmarshal_TexStorage1D,
75496c5ddc4Srjs   [DISPATCH_CMD_TexStorage2D] = (_mesa_unmarshal_func)_mesa_unmarshal_TexStorage2D,
75596c5ddc4Srjs   [DISPATCH_CMD_TexStorage3D] = (_mesa_unmarshal_func)_mesa_unmarshal_TexStorage3D,
75696c5ddc4Srjs   [DISPATCH_CMD_TextureStorage1DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureStorage1DEXT,
75796c5ddc4Srjs   [DISPATCH_CMD_TextureStorage2DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureStorage2DEXT,
75896c5ddc4Srjs   [DISPATCH_CMD_TextureStorage3DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureStorage3DEXT,
75996c5ddc4Srjs   [DISPATCH_CMD_PushDebugGroup] = (_mesa_unmarshal_func)_mesa_unmarshal_PushDebugGroup,
76096c5ddc4Srjs   [DISPATCH_CMD_PopDebugGroup] = (_mesa_unmarshal_func)_mesa_unmarshal_PopDebugGroup,
76196c5ddc4Srjs   [DISPATCH_CMD_ObjectLabel] = (_mesa_unmarshal_func)_mesa_unmarshal_ObjectLabel,
76296c5ddc4Srjs   [DISPATCH_CMD_DispatchCompute] = (_mesa_unmarshal_func)_mesa_unmarshal_DispatchCompute,
76396c5ddc4Srjs   [DISPATCH_CMD_DispatchComputeIndirect] = (_mesa_unmarshal_func)_mesa_unmarshal_DispatchComputeIndirect,
76496c5ddc4Srjs   [DISPATCH_CMD_CopyImageSubData] = (_mesa_unmarshal_func)_mesa_unmarshal_CopyImageSubData,
76596c5ddc4Srjs   [DISPATCH_CMD_TextureView] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureView,
76696c5ddc4Srjs   [DISPATCH_CMD_BindVertexBuffer] = (_mesa_unmarshal_func)_mesa_unmarshal_BindVertexBuffer,
76796c5ddc4Srjs   [DISPATCH_CMD_VertexAttribFormat] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribFormat,
76896c5ddc4Srjs   [DISPATCH_CMD_VertexAttribIFormat] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribIFormat,
76996c5ddc4Srjs   [DISPATCH_CMD_VertexAttribLFormat] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribLFormat,
77096c5ddc4Srjs   [DISPATCH_CMD_VertexAttribBinding] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribBinding,
77196c5ddc4Srjs   [DISPATCH_CMD_VertexBindingDivisor] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexBindingDivisor,
77296c5ddc4Srjs   [DISPATCH_CMD_VertexArrayBindVertexBufferEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexArrayBindVertexBufferEXT,
77396c5ddc4Srjs   [DISPATCH_CMD_VertexArrayVertexAttribFormatEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexArrayVertexAttribFormatEXT,
77496c5ddc4Srjs   [DISPATCH_CMD_VertexArrayVertexAttribIFormatEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexArrayVertexAttribIFormatEXT,
77596c5ddc4Srjs   [DISPATCH_CMD_VertexArrayVertexAttribLFormatEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexArrayVertexAttribLFormatEXT,
77696c5ddc4Srjs   [DISPATCH_CMD_VertexArrayVertexAttribBindingEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexArrayVertexAttribBindingEXT,
77796c5ddc4Srjs   [DISPATCH_CMD_VertexArrayVertexBindingDivisorEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexArrayVertexBindingDivisorEXT,
77896c5ddc4Srjs   [DISPATCH_CMD_FramebufferParameteri] = (_mesa_unmarshal_func)_mesa_unmarshal_FramebufferParameteri,
77996c5ddc4Srjs   [DISPATCH_CMD_NamedFramebufferParameteriEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_NamedFramebufferParameteriEXT,
78096c5ddc4Srjs   [DISPATCH_CMD_InvalidateTexSubImage] = (_mesa_unmarshal_func)_mesa_unmarshal_InvalidateTexSubImage,
78196c5ddc4Srjs   [DISPATCH_CMD_InvalidateTexImage] = (_mesa_unmarshal_func)_mesa_unmarshal_InvalidateTexImage,
78296c5ddc4Srjs   [DISPATCH_CMD_InvalidateBufferSubData] = (_mesa_unmarshal_func)_mesa_unmarshal_InvalidateBufferSubData,
78396c5ddc4Srjs   [DISPATCH_CMD_InvalidateBufferData] = (_mesa_unmarshal_func)_mesa_unmarshal_InvalidateBufferData,
78496c5ddc4Srjs   [DISPATCH_CMD_InvalidateSubFramebuffer] = (_mesa_unmarshal_func)_mesa_unmarshal_InvalidateSubFramebuffer,
78596c5ddc4Srjs   [DISPATCH_CMD_InvalidateFramebuffer] = (_mesa_unmarshal_func)_mesa_unmarshal_InvalidateFramebuffer,
78696c5ddc4Srjs   [DISPATCH_CMD_ShaderStorageBlockBinding] = (_mesa_unmarshal_func)_mesa_unmarshal_ShaderStorageBlockBinding,
78796c5ddc4Srjs   [DISPATCH_CMD_TexBufferRange] = (_mesa_unmarshal_func)_mesa_unmarshal_TexBufferRange,
78896c5ddc4Srjs   [DISPATCH_CMD_TextureBufferRangeEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureBufferRangeEXT,
78996c5ddc4Srjs   [DISPATCH_CMD_TexStorage2DMultisample] = (_mesa_unmarshal_func)_mesa_unmarshal_TexStorage2DMultisample,
79096c5ddc4Srjs   [DISPATCH_CMD_TexStorage3DMultisample] = (_mesa_unmarshal_func)_mesa_unmarshal_TexStorage3DMultisample,
79196c5ddc4Srjs   [DISPATCH_CMD_TextureStorage2DMultisampleEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureStorage2DMultisampleEXT,
79296c5ddc4Srjs   [DISPATCH_CMD_TextureStorage3DMultisampleEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureStorage3DMultisampleEXT,
79396c5ddc4Srjs   [DISPATCH_CMD_BindBuffersBase] = (_mesa_unmarshal_func)_mesa_unmarshal_BindBuffersBase,
79496c5ddc4Srjs   [DISPATCH_CMD_BindBuffersRange] = (_mesa_unmarshal_func)_mesa_unmarshal_BindBuffersRange,
79596c5ddc4Srjs   [DISPATCH_CMD_BindTextures] = (_mesa_unmarshal_func)_mesa_unmarshal_BindTextures,
79696c5ddc4Srjs   [DISPATCH_CMD_BindSamplers] = (_mesa_unmarshal_func)_mesa_unmarshal_BindSamplers,
79796c5ddc4Srjs   [DISPATCH_CMD_BindImageTextures] = (_mesa_unmarshal_func)_mesa_unmarshal_BindImageTextures,
79896c5ddc4Srjs   [DISPATCH_CMD_BindVertexBuffers] = (_mesa_unmarshal_func)_mesa_unmarshal_BindVertexBuffers,
79996c5ddc4Srjs   [DISPATCH_CMD_MakeTextureHandleResidentARB] = (_mesa_unmarshal_func)_mesa_unmarshal_MakeTextureHandleResidentARB,
80096c5ddc4Srjs   [DISPATCH_CMD_MakeTextureHandleNonResidentARB] = (_mesa_unmarshal_func)_mesa_unmarshal_MakeTextureHandleNonResidentARB,
80196c5ddc4Srjs   [DISPATCH_CMD_MakeImageHandleResidentARB] = (_mesa_unmarshal_func)_mesa_unmarshal_MakeImageHandleResidentARB,
80296c5ddc4Srjs   [DISPATCH_CMD_MakeImageHandleNonResidentARB] = (_mesa_unmarshal_func)_mesa_unmarshal_MakeImageHandleNonResidentARB,
80396c5ddc4Srjs   [DISPATCH_CMD_UniformHandleui64ARB] = (_mesa_unmarshal_func)_mesa_unmarshal_UniformHandleui64ARB,
80496c5ddc4Srjs   [DISPATCH_CMD_UniformHandleui64vARB] = (_mesa_unmarshal_func)_mesa_unmarshal_UniformHandleui64vARB,
80596c5ddc4Srjs   [DISPATCH_CMD_ProgramUniformHandleui64ARB] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniformHandleui64ARB,
80696c5ddc4Srjs   [DISPATCH_CMD_ProgramUniformHandleui64vARB] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniformHandleui64vARB,
80796c5ddc4Srjs   [DISPATCH_CMD_VertexAttribL1ui64ARB] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribL1ui64ARB,
80896c5ddc4Srjs   [DISPATCH_CMD_VertexAttribL1ui64vARB] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribL1ui64vARB,
80996c5ddc4Srjs   [DISPATCH_CMD_DispatchComputeGroupSizeARB] = (_mesa_unmarshal_func)_mesa_unmarshal_DispatchComputeGroupSizeARB,
81096c5ddc4Srjs   [DISPATCH_CMD_MultiDrawArraysIndirectCountARB] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiDrawArraysIndirectCountARB,
81196c5ddc4Srjs   [DISPATCH_CMD_MultiDrawElementsIndirectCountARB] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiDrawElementsIndirectCountARB,
81296c5ddc4Srjs   [DISPATCH_CMD_ClipControl] = (_mesa_unmarshal_func)_mesa_unmarshal_ClipControl,
81396c5ddc4Srjs   [DISPATCH_CMD_TransformFeedbackBufferBase] = (_mesa_unmarshal_func)_mesa_unmarshal_TransformFeedbackBufferBase,
81496c5ddc4Srjs   [DISPATCH_CMD_TransformFeedbackBufferRange] = (_mesa_unmarshal_func)_mesa_unmarshal_TransformFeedbackBufferRange,
81596c5ddc4Srjs   [DISPATCH_CMD_NamedBufferData] = (_mesa_unmarshal_func)_mesa_unmarshal_NamedBufferData,
81696c5ddc4Srjs   [DISPATCH_CMD_NamedBufferSubData] = (_mesa_unmarshal_func)_mesa_unmarshal_NamedBufferSubData,
81796c5ddc4Srjs   [DISPATCH_CMD_CopyNamedBufferSubData] = (_mesa_unmarshal_func)_mesa_unmarshal_CopyNamedBufferSubData,
81896c5ddc4Srjs   [DISPATCH_CMD_UnmapNamedBufferEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_UnmapNamedBufferEXT,
81996c5ddc4Srjs   [DISPATCH_CMD_FlushMappedNamedBufferRange] = (_mesa_unmarshal_func)_mesa_unmarshal_FlushMappedNamedBufferRange,
82096c5ddc4Srjs   [DISPATCH_CMD_NamedFramebufferRenderbuffer] = (_mesa_unmarshal_func)_mesa_unmarshal_NamedFramebufferRenderbuffer,
82196c5ddc4Srjs   [DISPATCH_CMD_NamedFramebufferParameteri] = (_mesa_unmarshal_func)_mesa_unmarshal_NamedFramebufferParameteri,
82296c5ddc4Srjs   [DISPATCH_CMD_NamedFramebufferTexture] = (_mesa_unmarshal_func)_mesa_unmarshal_NamedFramebufferTexture,
82396c5ddc4Srjs   [DISPATCH_CMD_NamedFramebufferTextureLayer] = (_mesa_unmarshal_func)_mesa_unmarshal_NamedFramebufferTextureLayer,
82496c5ddc4Srjs   [DISPATCH_CMD_NamedFramebufferDrawBuffer] = (_mesa_unmarshal_func)_mesa_unmarshal_NamedFramebufferDrawBuffer,
82596c5ddc4Srjs   [DISPATCH_CMD_NamedFramebufferDrawBuffers] = (_mesa_unmarshal_func)_mesa_unmarshal_NamedFramebufferDrawBuffers,
82696c5ddc4Srjs   [DISPATCH_CMD_NamedFramebufferReadBuffer] = (_mesa_unmarshal_func)_mesa_unmarshal_NamedFramebufferReadBuffer,
82796c5ddc4Srjs   [DISPATCH_CMD_InvalidateNamedFramebufferData] = (_mesa_unmarshal_func)_mesa_unmarshal_InvalidateNamedFramebufferData,
82896c5ddc4Srjs   [DISPATCH_CMD_InvalidateNamedFramebufferSubData] = (_mesa_unmarshal_func)_mesa_unmarshal_InvalidateNamedFramebufferSubData,
82996c5ddc4Srjs   [DISPATCH_CMD_ClearNamedFramebufferiv] = (_mesa_unmarshal_func)_mesa_unmarshal_ClearNamedFramebufferiv,
83096c5ddc4Srjs   [DISPATCH_CMD_ClearNamedFramebufferuiv] = (_mesa_unmarshal_func)_mesa_unmarshal_ClearNamedFramebufferuiv,
83196c5ddc4Srjs   [DISPATCH_CMD_ClearNamedFramebufferfv] = (_mesa_unmarshal_func)_mesa_unmarshal_ClearNamedFramebufferfv,
83296c5ddc4Srjs   [DISPATCH_CMD_ClearNamedFramebufferfi] = (_mesa_unmarshal_func)_mesa_unmarshal_ClearNamedFramebufferfi,
83396c5ddc4Srjs   [DISPATCH_CMD_BlitNamedFramebuffer] = (_mesa_unmarshal_func)_mesa_unmarshal_BlitNamedFramebuffer,
83496c5ddc4Srjs   [DISPATCH_CMD_NamedRenderbufferStorage] = (_mesa_unmarshal_func)_mesa_unmarshal_NamedRenderbufferStorage,
83596c5ddc4Srjs   [DISPATCH_CMD_NamedRenderbufferStorageMultisample] = (_mesa_unmarshal_func)_mesa_unmarshal_NamedRenderbufferStorageMultisample,
83696c5ddc4Srjs   [DISPATCH_CMD_TextureBuffer] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureBuffer,
83796c5ddc4Srjs   [DISPATCH_CMD_TextureBufferRange] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureBufferRange,
83896c5ddc4Srjs   [DISPATCH_CMD_TextureStorage1D] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureStorage1D,
83996c5ddc4Srjs   [DISPATCH_CMD_TextureStorage2D] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureStorage2D,
84096c5ddc4Srjs   [DISPATCH_CMD_TextureStorage3D] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureStorage3D,
84196c5ddc4Srjs   [DISPATCH_CMD_TextureStorage2DMultisample] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureStorage2DMultisample,
84296c5ddc4Srjs   [DISPATCH_CMD_TextureStorage3DMultisample] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureStorage3DMultisample,
84396c5ddc4Srjs   [DISPATCH_CMD_TextureSubImage1D] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureSubImage1D,
84496c5ddc4Srjs   [DISPATCH_CMD_TextureSubImage2D] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureSubImage2D,
84596c5ddc4Srjs   [DISPATCH_CMD_TextureSubImage3D] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureSubImage3D,
84696c5ddc4Srjs   [DISPATCH_CMD_CompressedTextureSubImage1D] = (_mesa_unmarshal_func)_mesa_unmarshal_CompressedTextureSubImage1D,
84796c5ddc4Srjs   [DISPATCH_CMD_CompressedTextureSubImage2D] = (_mesa_unmarshal_func)_mesa_unmarshal_CompressedTextureSubImage2D,
84896c5ddc4Srjs   [DISPATCH_CMD_CompressedTextureSubImage3D] = (_mesa_unmarshal_func)_mesa_unmarshal_CompressedTextureSubImage3D,
84996c5ddc4Srjs   [DISPATCH_CMD_CopyTextureSubImage1D] = (_mesa_unmarshal_func)_mesa_unmarshal_CopyTextureSubImage1D,
85096c5ddc4Srjs   [DISPATCH_CMD_CopyTextureSubImage2D] = (_mesa_unmarshal_func)_mesa_unmarshal_CopyTextureSubImage2D,
85196c5ddc4Srjs   [DISPATCH_CMD_CopyTextureSubImage3D] = (_mesa_unmarshal_func)_mesa_unmarshal_CopyTextureSubImage3D,
85296c5ddc4Srjs   [DISPATCH_CMD_TextureParameterf] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureParameterf,
85396c5ddc4Srjs   [DISPATCH_CMD_TextureParameterfv] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureParameterfv,
85496c5ddc4Srjs   [DISPATCH_CMD_TextureParameteri] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureParameteri,
85596c5ddc4Srjs   [DISPATCH_CMD_TextureParameterIiv] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureParameterIiv,
85696c5ddc4Srjs   [DISPATCH_CMD_TextureParameterIuiv] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureParameterIuiv,
85796c5ddc4Srjs   [DISPATCH_CMD_TextureParameteriv] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureParameteriv,
85896c5ddc4Srjs   [DISPATCH_CMD_GenerateTextureMipmap] = (_mesa_unmarshal_func)_mesa_unmarshal_GenerateTextureMipmap,
85996c5ddc4Srjs   [DISPATCH_CMD_BindTextureUnit] = (_mesa_unmarshal_func)_mesa_unmarshal_BindTextureUnit,
86096c5ddc4Srjs   [DISPATCH_CMD_GetTextureImage] = (_mesa_unmarshal_func)_mesa_unmarshal_GetTextureImage,
86196c5ddc4Srjs   [DISPATCH_CMD_GetCompressedTextureImage] = (_mesa_unmarshal_func)_mesa_unmarshal_GetCompressedTextureImage,
86296c5ddc4Srjs   [DISPATCH_CMD_DisableVertexArrayAttrib] = (_mesa_unmarshal_func)_mesa_unmarshal_DisableVertexArrayAttrib,
86396c5ddc4Srjs   [DISPATCH_CMD_EnableVertexArrayAttrib] = (_mesa_unmarshal_func)_mesa_unmarshal_EnableVertexArrayAttrib,
86496c5ddc4Srjs   [DISPATCH_CMD_VertexArrayElementBuffer] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexArrayElementBuffer,
86596c5ddc4Srjs   [DISPATCH_CMD_VertexArrayVertexBuffer] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexArrayVertexBuffer,
86696c5ddc4Srjs   [DISPATCH_CMD_VertexArrayVertexBuffers] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexArrayVertexBuffers,
86796c5ddc4Srjs   [DISPATCH_CMD_VertexArrayAttribFormat] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexArrayAttribFormat,
86896c5ddc4Srjs   [DISPATCH_CMD_VertexArrayAttribIFormat] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexArrayAttribIFormat,
86996c5ddc4Srjs   [DISPATCH_CMD_VertexArrayAttribLFormat] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexArrayAttribLFormat,
87096c5ddc4Srjs   [DISPATCH_CMD_VertexArrayAttribBinding] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexArrayAttribBinding,
87196c5ddc4Srjs   [DISPATCH_CMD_VertexArrayBindingDivisor] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexArrayBindingDivisor,
87296c5ddc4Srjs   [DISPATCH_CMD_GetQueryBufferObjectiv] = (_mesa_unmarshal_func)_mesa_unmarshal_GetQueryBufferObjectiv,
87396c5ddc4Srjs   [DISPATCH_CMD_GetQueryBufferObjectuiv] = (_mesa_unmarshal_func)_mesa_unmarshal_GetQueryBufferObjectuiv,
87496c5ddc4Srjs   [DISPATCH_CMD_GetQueryBufferObjecti64v] = (_mesa_unmarshal_func)_mesa_unmarshal_GetQueryBufferObjecti64v,
87596c5ddc4Srjs   [DISPATCH_CMD_GetQueryBufferObjectui64v] = (_mesa_unmarshal_func)_mesa_unmarshal_GetQueryBufferObjectui64v,
87696c5ddc4Srjs   [DISPATCH_CMD_GetTextureSubImage] = (_mesa_unmarshal_func)_mesa_unmarshal_GetTextureSubImage,
87796c5ddc4Srjs   [DISPATCH_CMD_GetCompressedTextureSubImage] = (_mesa_unmarshal_func)_mesa_unmarshal_GetCompressedTextureSubImage,
87896c5ddc4Srjs   [DISPATCH_CMD_TextureBarrierNV] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureBarrierNV,
87996c5ddc4Srjs   [DISPATCH_CMD_BufferPageCommitmentARB] = (_mesa_unmarshal_func)_mesa_unmarshal_BufferPageCommitmentARB,
88096c5ddc4Srjs   [DISPATCH_CMD_NamedBufferPageCommitmentEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_NamedBufferPageCommitmentEXT,
88196c5ddc4Srjs   [DISPATCH_CMD_NamedBufferPageCommitmentARB] = (_mesa_unmarshal_func)_mesa_unmarshal_NamedBufferPageCommitmentARB,
88296c5ddc4Srjs   [DISPATCH_CMD_PrimitiveBoundingBox] = (_mesa_unmarshal_func)_mesa_unmarshal_PrimitiveBoundingBox,
88396c5ddc4Srjs   [DISPATCH_CMD_BlendBarrier] = (_mesa_unmarshal_func)_mesa_unmarshal_BlendBarrier,
88496c5ddc4Srjs   [DISPATCH_CMD_Uniform1i64ARB] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform1i64ARB,
88596c5ddc4Srjs   [DISPATCH_CMD_Uniform2i64ARB] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform2i64ARB,
88696c5ddc4Srjs   [DISPATCH_CMD_Uniform3i64ARB] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform3i64ARB,
88796c5ddc4Srjs   [DISPATCH_CMD_Uniform4i64ARB] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform4i64ARB,
88896c5ddc4Srjs   [DISPATCH_CMD_Uniform1i64vARB] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform1i64vARB,
88996c5ddc4Srjs   [DISPATCH_CMD_Uniform2i64vARB] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform2i64vARB,
89096c5ddc4Srjs   [DISPATCH_CMD_Uniform3i64vARB] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform3i64vARB,
89196c5ddc4Srjs   [DISPATCH_CMD_Uniform4i64vARB] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform4i64vARB,
89296c5ddc4Srjs   [DISPATCH_CMD_Uniform1ui64ARB] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform1ui64ARB,
89396c5ddc4Srjs   [DISPATCH_CMD_Uniform2ui64ARB] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform2ui64ARB,
89496c5ddc4Srjs   [DISPATCH_CMD_Uniform3ui64ARB] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform3ui64ARB,
89596c5ddc4Srjs   [DISPATCH_CMD_Uniform4ui64ARB] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform4ui64ARB,
89696c5ddc4Srjs   [DISPATCH_CMD_Uniform1ui64vARB] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform1ui64vARB,
89796c5ddc4Srjs   [DISPATCH_CMD_Uniform2ui64vARB] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform2ui64vARB,
89896c5ddc4Srjs   [DISPATCH_CMD_Uniform3ui64vARB] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform3ui64vARB,
89996c5ddc4Srjs   [DISPATCH_CMD_Uniform4ui64vARB] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform4ui64vARB,
90096c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform1i64ARB] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform1i64ARB,
90196c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform2i64ARB] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform2i64ARB,
90296c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform3i64ARB] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform3i64ARB,
90396c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform4i64ARB] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform4i64ARB,
90496c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform1i64vARB] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform1i64vARB,
90596c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform2i64vARB] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform2i64vARB,
90696c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform3i64vARB] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform3i64vARB,
90796c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform4i64vARB] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform4i64vARB,
90896c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform1ui64ARB] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform1ui64ARB,
90996c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform2ui64ARB] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform2ui64ARB,
91096c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform3ui64ARB] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform3ui64ARB,
91196c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform4ui64ARB] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform4ui64ARB,
91296c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform1ui64vARB] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform1ui64vARB,
91396c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform2ui64vARB] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform2ui64vARB,
91496c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform3ui64vARB] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform3ui64vARB,
91596c5ddc4Srjs   [DISPATCH_CMD_ProgramUniform4ui64vARB] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramUniform4ui64vARB,
91696c5ddc4Srjs   [DISPATCH_CMD_MaxShaderCompilerThreadsKHR] = (_mesa_unmarshal_func)_mesa_unmarshal_MaxShaderCompilerThreadsKHR,
91796c5ddc4Srjs   [DISPATCH_CMD_SpecializeShaderARB] = (_mesa_unmarshal_func)_mesa_unmarshal_SpecializeShaderARB,
91896c5ddc4Srjs   [DISPATCH_CMD_ColorPointerEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_ColorPointerEXT,
91996c5ddc4Srjs   [DISPATCH_CMD_EdgeFlagPointerEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_EdgeFlagPointerEXT,
92096c5ddc4Srjs   [DISPATCH_CMD_IndexPointerEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_IndexPointerEXT,
92196c5ddc4Srjs   [DISPATCH_CMD_NormalPointerEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_NormalPointerEXT,
92296c5ddc4Srjs   [DISPATCH_CMD_TexCoordPointerEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoordPointerEXT,
92396c5ddc4Srjs   [DISPATCH_CMD_VertexPointerEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexPointerEXT,
92496c5ddc4Srjs   [DISPATCH_CMD_LockArraysEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_LockArraysEXT,
92596c5ddc4Srjs   [DISPATCH_CMD_UnlockArraysEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_UnlockArraysEXT,
92696c5ddc4Srjs   [DISPATCH_CMD_ViewportArrayv] = (_mesa_unmarshal_func)_mesa_unmarshal_ViewportArrayv,
92796c5ddc4Srjs   [DISPATCH_CMD_ViewportIndexedf] = (_mesa_unmarshal_func)_mesa_unmarshal_ViewportIndexedf,
92896c5ddc4Srjs   [DISPATCH_CMD_ViewportIndexedfv] = (_mesa_unmarshal_func)_mesa_unmarshal_ViewportIndexedfv,
92996c5ddc4Srjs   [DISPATCH_CMD_ScissorArrayv] = (_mesa_unmarshal_func)_mesa_unmarshal_ScissorArrayv,
93096c5ddc4Srjs   [DISPATCH_CMD_ScissorIndexed] = (_mesa_unmarshal_func)_mesa_unmarshal_ScissorIndexed,
93196c5ddc4Srjs   [DISPATCH_CMD_ScissorIndexedv] = (_mesa_unmarshal_func)_mesa_unmarshal_ScissorIndexedv,
93296c5ddc4Srjs   [DISPATCH_CMD_DepthRangeArrayv] = (_mesa_unmarshal_func)_mesa_unmarshal_DepthRangeArrayv,
93396c5ddc4Srjs   [DISPATCH_CMD_DepthRangeIndexed] = (_mesa_unmarshal_func)_mesa_unmarshal_DepthRangeIndexed,
93496c5ddc4Srjs   [DISPATCH_CMD_FramebufferSampleLocationsfvARB] = (_mesa_unmarshal_func)_mesa_unmarshal_FramebufferSampleLocationsfvARB,
93596c5ddc4Srjs   [DISPATCH_CMD_NamedFramebufferSampleLocationsfvARB] = (_mesa_unmarshal_func)_mesa_unmarshal_NamedFramebufferSampleLocationsfvARB,
93696c5ddc4Srjs   [DISPATCH_CMD_EvaluateDepthValuesARB] = (_mesa_unmarshal_func)_mesa_unmarshal_EvaluateDepthValuesARB,
93796c5ddc4Srjs   [DISPATCH_CMD_WindowPos4dMESA] = (_mesa_unmarshal_func)_mesa_unmarshal_WindowPos4dMESA,
93896c5ddc4Srjs   [DISPATCH_CMD_WindowPos4dvMESA] = (_mesa_unmarshal_func)_mesa_unmarshal_WindowPos4dvMESA,
93996c5ddc4Srjs   [DISPATCH_CMD_WindowPos4fMESA] = (_mesa_unmarshal_func)_mesa_unmarshal_WindowPos4fMESA,
94096c5ddc4Srjs   [DISPATCH_CMD_WindowPos4fvMESA] = (_mesa_unmarshal_func)_mesa_unmarshal_WindowPos4fvMESA,
94196c5ddc4Srjs   [DISPATCH_CMD_WindowPos4iMESA] = (_mesa_unmarshal_func)_mesa_unmarshal_WindowPos4iMESA,
94296c5ddc4Srjs   [DISPATCH_CMD_WindowPos4ivMESA] = (_mesa_unmarshal_func)_mesa_unmarshal_WindowPos4ivMESA,
94396c5ddc4Srjs   [DISPATCH_CMD_WindowPos4sMESA] = (_mesa_unmarshal_func)_mesa_unmarshal_WindowPos4sMESA,
94496c5ddc4Srjs   [DISPATCH_CMD_WindowPos4svMESA] = (_mesa_unmarshal_func)_mesa_unmarshal_WindowPos4svMESA,
94596c5ddc4Srjs   [DISPATCH_CMD_MultiModeDrawArraysIBM] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiModeDrawArraysIBM,
94696c5ddc4Srjs   [DISPATCH_CMD_MultiModeDrawElementsIBM] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiModeDrawElementsIBM,
94796c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib1sNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib1sNV,
94896c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib1svNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib1svNV,
94996c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib2sNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib2sNV,
95096c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib2svNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib2svNV,
95196c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib3sNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib3sNV,
95296c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib3svNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib3svNV,
95396c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib4sNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib4sNV,
95496c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib4svNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib4svNV,
95596c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib1fNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib1fNV,
95696c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib1fvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib1fvNV,
95796c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib2fNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib2fNV,
95896c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib2fvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib2fvNV,
95996c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib3fNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib3fNV,
96096c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib3fvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib3fvNV,
96196c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib4fNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib4fNV,
96296c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib4fvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib4fvNV,
96396c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib1dNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib1dNV,
96496c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib1dvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib1dvNV,
96596c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib2dNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib2dNV,
96696c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib2dvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib2dvNV,
96796c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib3dNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib3dNV,
96896c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib3dvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib3dvNV,
96996c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib4dNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib4dNV,
97096c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib4dvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib4dvNV,
97196c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib4ubNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib4ubNV,
97296c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib4ubvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib4ubvNV,
97396c5ddc4Srjs   [DISPATCH_CMD_VertexAttribs1svNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribs1svNV,
97496c5ddc4Srjs   [DISPATCH_CMD_VertexAttribs2svNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribs2svNV,
97596c5ddc4Srjs   [DISPATCH_CMD_VertexAttribs3svNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribs3svNV,
97696c5ddc4Srjs   [DISPATCH_CMD_VertexAttribs4svNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribs4svNV,
97796c5ddc4Srjs   [DISPATCH_CMD_VertexAttribs1fvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribs1fvNV,
97896c5ddc4Srjs   [DISPATCH_CMD_VertexAttribs2fvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribs2fvNV,
97996c5ddc4Srjs   [DISPATCH_CMD_VertexAttribs3fvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribs3fvNV,
98096c5ddc4Srjs   [DISPATCH_CMD_VertexAttribs4fvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribs4fvNV,
98196c5ddc4Srjs   [DISPATCH_CMD_VertexAttribs1dvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribs1dvNV,
98296c5ddc4Srjs   [DISPATCH_CMD_VertexAttribs2dvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribs2dvNV,
98396c5ddc4Srjs   [DISPATCH_CMD_VertexAttribs3dvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribs3dvNV,
98496c5ddc4Srjs   [DISPATCH_CMD_VertexAttribs4dvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribs4dvNV,
98596c5ddc4Srjs   [DISPATCH_CMD_VertexAttribs4ubvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribs4ubvNV,
98696c5ddc4Srjs   [DISPATCH_CMD_BindFragmentShaderATI] = (_mesa_unmarshal_func)_mesa_unmarshal_BindFragmentShaderATI,
98796c5ddc4Srjs   [DISPATCH_CMD_DeleteFragmentShaderATI] = (_mesa_unmarshal_func)_mesa_unmarshal_DeleteFragmentShaderATI,
98896c5ddc4Srjs   [DISPATCH_CMD_BeginFragmentShaderATI] = (_mesa_unmarshal_func)_mesa_unmarshal_BeginFragmentShaderATI,
98996c5ddc4Srjs   [DISPATCH_CMD_EndFragmentShaderATI] = (_mesa_unmarshal_func)_mesa_unmarshal_EndFragmentShaderATI,
99096c5ddc4Srjs   [DISPATCH_CMD_PassTexCoordATI] = (_mesa_unmarshal_func)_mesa_unmarshal_PassTexCoordATI,
99196c5ddc4Srjs   [DISPATCH_CMD_SampleMapATI] = (_mesa_unmarshal_func)_mesa_unmarshal_SampleMapATI,
99296c5ddc4Srjs   [DISPATCH_CMD_ColorFragmentOp1ATI] = (_mesa_unmarshal_func)_mesa_unmarshal_ColorFragmentOp1ATI,
99396c5ddc4Srjs   [DISPATCH_CMD_ColorFragmentOp2ATI] = (_mesa_unmarshal_func)_mesa_unmarshal_ColorFragmentOp2ATI,
99496c5ddc4Srjs   [DISPATCH_CMD_ColorFragmentOp3ATI] = (_mesa_unmarshal_func)_mesa_unmarshal_ColorFragmentOp3ATI,
99596c5ddc4Srjs   [DISPATCH_CMD_AlphaFragmentOp1ATI] = (_mesa_unmarshal_func)_mesa_unmarshal_AlphaFragmentOp1ATI,
99696c5ddc4Srjs   [DISPATCH_CMD_AlphaFragmentOp2ATI] = (_mesa_unmarshal_func)_mesa_unmarshal_AlphaFragmentOp2ATI,
99796c5ddc4Srjs   [DISPATCH_CMD_AlphaFragmentOp3ATI] = (_mesa_unmarshal_func)_mesa_unmarshal_AlphaFragmentOp3ATI,
99896c5ddc4Srjs   [DISPATCH_CMD_SetFragmentShaderConstantATI] = (_mesa_unmarshal_func)_mesa_unmarshal_SetFragmentShaderConstantATI,
99996c5ddc4Srjs   [DISPATCH_CMD_ActiveStencilFaceEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_ActiveStencilFaceEXT,
100096c5ddc4Srjs   [DISPATCH_CMD_DepthBoundsEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_DepthBoundsEXT,
100196c5ddc4Srjs   [DISPATCH_CMD_BindRenderbufferEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_BindRenderbufferEXT,
100296c5ddc4Srjs   [DISPATCH_CMD_BindFramebufferEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_BindFramebufferEXT,
100396c5ddc4Srjs   [DISPATCH_CMD_ProvokingVertex] = (_mesa_unmarshal_func)_mesa_unmarshal_ProvokingVertex,
100496c5ddc4Srjs   [DISPATCH_CMD_ColorMaski] = (_mesa_unmarshal_func)_mesa_unmarshal_ColorMaski,
100596c5ddc4Srjs   [DISPATCH_CMD_Enablei] = (_mesa_unmarshal_func)_mesa_unmarshal_Enablei,
100696c5ddc4Srjs   [DISPATCH_CMD_Disablei] = (_mesa_unmarshal_func)_mesa_unmarshal_Disablei,
100796c5ddc4Srjs   [DISPATCH_CMD_DeletePerfMonitorsAMD] = (_mesa_unmarshal_func)_mesa_unmarshal_DeletePerfMonitorsAMD,
100896c5ddc4Srjs   [DISPATCH_CMD_SelectPerfMonitorCountersAMD] = (_mesa_unmarshal_func)_mesa_unmarshal_SelectPerfMonitorCountersAMD,
100996c5ddc4Srjs   [DISPATCH_CMD_BeginPerfMonitorAMD] = (_mesa_unmarshal_func)_mesa_unmarshal_BeginPerfMonitorAMD,
101096c5ddc4Srjs   [DISPATCH_CMD_EndPerfMonitorAMD] = (_mesa_unmarshal_func)_mesa_unmarshal_EndPerfMonitorAMD,
101196c5ddc4Srjs   [DISPATCH_CMD_CopyImageSubDataNV] = (_mesa_unmarshal_func)_mesa_unmarshal_CopyImageSubDataNV,
101296c5ddc4Srjs   [DISPATCH_CMD_MatrixLoadfEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MatrixLoadfEXT,
101396c5ddc4Srjs   [DISPATCH_CMD_MatrixLoaddEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MatrixLoaddEXT,
101496c5ddc4Srjs   [DISPATCH_CMD_MatrixMultfEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MatrixMultfEXT,
101596c5ddc4Srjs   [DISPATCH_CMD_MatrixMultdEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MatrixMultdEXT,
101696c5ddc4Srjs   [DISPATCH_CMD_MatrixLoadIdentityEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MatrixLoadIdentityEXT,
101796c5ddc4Srjs   [DISPATCH_CMD_MatrixRotatefEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MatrixRotatefEXT,
101896c5ddc4Srjs   [DISPATCH_CMD_MatrixRotatedEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MatrixRotatedEXT,
101996c5ddc4Srjs   [DISPATCH_CMD_MatrixScalefEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MatrixScalefEXT,
102096c5ddc4Srjs   [DISPATCH_CMD_MatrixScaledEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MatrixScaledEXT,
102196c5ddc4Srjs   [DISPATCH_CMD_MatrixTranslatefEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MatrixTranslatefEXT,
102296c5ddc4Srjs   [DISPATCH_CMD_MatrixTranslatedEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MatrixTranslatedEXT,
102396c5ddc4Srjs   [DISPATCH_CMD_MatrixOrthoEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MatrixOrthoEXT,
102496c5ddc4Srjs   [DISPATCH_CMD_MatrixFrustumEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MatrixFrustumEXT,
102596c5ddc4Srjs   [DISPATCH_CMD_MatrixPushEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MatrixPushEXT,
102696c5ddc4Srjs   [DISPATCH_CMD_MatrixPopEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MatrixPopEXT,
102796c5ddc4Srjs   [DISPATCH_CMD_ClientAttribDefaultEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_ClientAttribDefaultEXT,
102896c5ddc4Srjs   [DISPATCH_CMD_PushClientAttribDefaultEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_PushClientAttribDefaultEXT,
102996c5ddc4Srjs   [DISPATCH_CMD_TextureParameteriEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureParameteriEXT,
103096c5ddc4Srjs   [DISPATCH_CMD_TextureParameterivEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureParameterivEXT,
103196c5ddc4Srjs   [DISPATCH_CMD_TextureParameterfEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureParameterfEXT,
103296c5ddc4Srjs   [DISPATCH_CMD_TextureParameterfvEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureParameterfvEXT,
103396c5ddc4Srjs   [DISPATCH_CMD_TextureImage1DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureImage1DEXT,
103496c5ddc4Srjs   [DISPATCH_CMD_TextureImage2DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureImage2DEXT,
103596c5ddc4Srjs   [DISPATCH_CMD_TextureImage3DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureImage3DEXT,
103696c5ddc4Srjs   [DISPATCH_CMD_TextureSubImage1DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureSubImage1DEXT,
103796c5ddc4Srjs   [DISPATCH_CMD_TextureSubImage2DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureSubImage2DEXT,
103896c5ddc4Srjs   [DISPATCH_CMD_TextureSubImage3DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureSubImage3DEXT,
103996c5ddc4Srjs   [DISPATCH_CMD_CopyTextureImage1DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_CopyTextureImage1DEXT,
104096c5ddc4Srjs   [DISPATCH_CMD_CopyTextureImage2DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_CopyTextureImage2DEXT,
104196c5ddc4Srjs   [DISPATCH_CMD_CopyTextureSubImage1DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_CopyTextureSubImage1DEXT,
104296c5ddc4Srjs   [DISPATCH_CMD_CopyTextureSubImage2DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_CopyTextureSubImage2DEXT,
104396c5ddc4Srjs   [DISPATCH_CMD_CopyTextureSubImage3DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_CopyTextureSubImage3DEXT,
104496c5ddc4Srjs   [DISPATCH_CMD_GetTextureImageEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_GetTextureImageEXT,
104596c5ddc4Srjs   [DISPATCH_CMD_BindMultiTextureEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_BindMultiTextureEXT,
104696c5ddc4Srjs   [DISPATCH_CMD_EnableClientStateiEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_EnableClientStateiEXT,
104796c5ddc4Srjs   [DISPATCH_CMD_DisableClientStateiEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_DisableClientStateiEXT,
104896c5ddc4Srjs   [DISPATCH_CMD_MultiTexEnviEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexEnviEXT,
104996c5ddc4Srjs   [DISPATCH_CMD_MultiTexEnvivEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexEnvivEXT,
105096c5ddc4Srjs   [DISPATCH_CMD_MultiTexEnvfEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexEnvfEXT,
105196c5ddc4Srjs   [DISPATCH_CMD_MultiTexEnvfvEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexEnvfvEXT,
105296c5ddc4Srjs   [DISPATCH_CMD_MultiTexParameteriEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexParameteriEXT,
105396c5ddc4Srjs   [DISPATCH_CMD_MultiTexParameterivEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexParameterivEXT,
105496c5ddc4Srjs   [DISPATCH_CMD_MultiTexParameterfEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexParameterfEXT,
105596c5ddc4Srjs   [DISPATCH_CMD_MultiTexParameterfvEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexParameterfvEXT,
105696c5ddc4Srjs   [DISPATCH_CMD_GetMultiTexImageEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_GetMultiTexImageEXT,
105796c5ddc4Srjs   [DISPATCH_CMD_MultiTexImage1DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexImage1DEXT,
105896c5ddc4Srjs   [DISPATCH_CMD_MultiTexImage2DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexImage2DEXT,
105996c5ddc4Srjs   [DISPATCH_CMD_MultiTexImage3DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexImage3DEXT,
106096c5ddc4Srjs   [DISPATCH_CMD_MultiTexSubImage1DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexSubImage1DEXT,
106196c5ddc4Srjs   [DISPATCH_CMD_MultiTexSubImage2DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexSubImage2DEXT,
106296c5ddc4Srjs   [DISPATCH_CMD_MultiTexSubImage3DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexSubImage3DEXT,
106396c5ddc4Srjs   [DISPATCH_CMD_CopyMultiTexImage1DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_CopyMultiTexImage1DEXT,
106496c5ddc4Srjs   [DISPATCH_CMD_CopyMultiTexImage2DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_CopyMultiTexImage2DEXT,
106596c5ddc4Srjs   [DISPATCH_CMD_CopyMultiTexSubImage1DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_CopyMultiTexSubImage1DEXT,
106696c5ddc4Srjs   [DISPATCH_CMD_CopyMultiTexSubImage2DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_CopyMultiTexSubImage2DEXT,
106796c5ddc4Srjs   [DISPATCH_CMD_CopyMultiTexSubImage3DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_CopyMultiTexSubImage3DEXT,
106896c5ddc4Srjs   [DISPATCH_CMD_MultiTexGendEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexGendEXT,
106996c5ddc4Srjs   [DISPATCH_CMD_MultiTexGendvEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexGendvEXT,
107096c5ddc4Srjs   [DISPATCH_CMD_MultiTexGenfEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexGenfEXT,
107196c5ddc4Srjs   [DISPATCH_CMD_MultiTexGenfvEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexGenfvEXT,
107296c5ddc4Srjs   [DISPATCH_CMD_MultiTexGeniEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexGeniEXT,
107396c5ddc4Srjs   [DISPATCH_CMD_MultiTexGenivEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexGenivEXT,
107496c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoordPointerEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoordPointerEXT,
107596c5ddc4Srjs   [DISPATCH_CMD_MatrixLoadTransposefEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MatrixLoadTransposefEXT,
107696c5ddc4Srjs   [DISPATCH_CMD_MatrixLoadTransposedEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MatrixLoadTransposedEXT,
107796c5ddc4Srjs   [DISPATCH_CMD_MatrixMultTransposefEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MatrixMultTransposefEXT,
107896c5ddc4Srjs   [DISPATCH_CMD_MatrixMultTransposedEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MatrixMultTransposedEXT,
107996c5ddc4Srjs   [DISPATCH_CMD_CompressedTextureImage1DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_CompressedTextureImage1DEXT,
108096c5ddc4Srjs   [DISPATCH_CMD_CompressedTextureImage2DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_CompressedTextureImage2DEXT,
108196c5ddc4Srjs   [DISPATCH_CMD_CompressedTextureImage3DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_CompressedTextureImage3DEXT,
108296c5ddc4Srjs   [DISPATCH_CMD_CompressedTextureSubImage1DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_CompressedTextureSubImage1DEXT,
108396c5ddc4Srjs   [DISPATCH_CMD_CompressedTextureSubImage2DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_CompressedTextureSubImage2DEXT,
108496c5ddc4Srjs   [DISPATCH_CMD_CompressedTextureSubImage3DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_CompressedTextureSubImage3DEXT,
108596c5ddc4Srjs   [DISPATCH_CMD_GetCompressedTextureImageEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_GetCompressedTextureImageEXT,
108696c5ddc4Srjs   [DISPATCH_CMD_CompressedMultiTexImage1DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_CompressedMultiTexImage1DEXT,
108796c5ddc4Srjs   [DISPATCH_CMD_CompressedMultiTexImage2DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_CompressedMultiTexImage2DEXT,
108896c5ddc4Srjs   [DISPATCH_CMD_CompressedMultiTexImage3DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_CompressedMultiTexImage3DEXT,
108996c5ddc4Srjs   [DISPATCH_CMD_CompressedMultiTexSubImage1DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_CompressedMultiTexSubImage1DEXT,
109096c5ddc4Srjs   [DISPATCH_CMD_CompressedMultiTexSubImage2DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_CompressedMultiTexSubImage2DEXT,
109196c5ddc4Srjs   [DISPATCH_CMD_CompressedMultiTexSubImage3DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_CompressedMultiTexSubImage3DEXT,
109296c5ddc4Srjs   [DISPATCH_CMD_GetCompressedMultiTexImageEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_GetCompressedMultiTexImageEXT,
109396c5ddc4Srjs   [DISPATCH_CMD_NamedBufferDataEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_NamedBufferDataEXT,
109496c5ddc4Srjs   [DISPATCH_CMD_NamedBufferSubDataEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_NamedBufferSubDataEXT,
109596c5ddc4Srjs   [DISPATCH_CMD_FlushMappedNamedBufferRangeEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_FlushMappedNamedBufferRangeEXT,
109696c5ddc4Srjs   [DISPATCH_CMD_FramebufferDrawBufferEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_FramebufferDrawBufferEXT,
109796c5ddc4Srjs   [DISPATCH_CMD_FramebufferDrawBuffersEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_FramebufferDrawBuffersEXT,
109896c5ddc4Srjs   [DISPATCH_CMD_FramebufferReadBufferEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_FramebufferReadBufferEXT,
109996c5ddc4Srjs   [DISPATCH_CMD_NamedFramebufferTexture1DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_NamedFramebufferTexture1DEXT,
110096c5ddc4Srjs   [DISPATCH_CMD_NamedFramebufferTexture2DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_NamedFramebufferTexture2DEXT,
110196c5ddc4Srjs   [DISPATCH_CMD_NamedFramebufferTexture3DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_NamedFramebufferTexture3DEXT,
110296c5ddc4Srjs   [DISPATCH_CMD_NamedFramebufferRenderbufferEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_NamedFramebufferRenderbufferEXT,
110396c5ddc4Srjs   [DISPATCH_CMD_NamedRenderbufferStorageEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_NamedRenderbufferStorageEXT,
110496c5ddc4Srjs   [DISPATCH_CMD_GenerateTextureMipmapEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_GenerateTextureMipmapEXT,
110596c5ddc4Srjs   [DISPATCH_CMD_GenerateMultiTexMipmapEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_GenerateMultiTexMipmapEXT,
110696c5ddc4Srjs   [DISPATCH_CMD_NamedRenderbufferStorageMultisampleEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_NamedRenderbufferStorageMultisampleEXT,
110796c5ddc4Srjs   [DISPATCH_CMD_NamedCopyBufferSubDataEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_NamedCopyBufferSubDataEXT,
110896c5ddc4Srjs   [DISPATCH_CMD_VertexArrayVertexOffsetEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexArrayVertexOffsetEXT,
110996c5ddc4Srjs   [DISPATCH_CMD_VertexArrayColorOffsetEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexArrayColorOffsetEXT,
111096c5ddc4Srjs   [DISPATCH_CMD_VertexArrayEdgeFlagOffsetEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexArrayEdgeFlagOffsetEXT,
111196c5ddc4Srjs   [DISPATCH_CMD_VertexArrayIndexOffsetEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexArrayIndexOffsetEXT,
111296c5ddc4Srjs   [DISPATCH_CMD_VertexArrayNormalOffsetEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexArrayNormalOffsetEXT,
111396c5ddc4Srjs   [DISPATCH_CMD_VertexArrayTexCoordOffsetEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexArrayTexCoordOffsetEXT,
111496c5ddc4Srjs   [DISPATCH_CMD_VertexArrayMultiTexCoordOffsetEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexArrayMultiTexCoordOffsetEXT,
111596c5ddc4Srjs   [DISPATCH_CMD_VertexArrayFogCoordOffsetEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexArrayFogCoordOffsetEXT,
111696c5ddc4Srjs   [DISPATCH_CMD_VertexArraySecondaryColorOffsetEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexArraySecondaryColorOffsetEXT,
111796c5ddc4Srjs   [DISPATCH_CMD_VertexArrayVertexAttribOffsetEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexArrayVertexAttribOffsetEXT,
111896c5ddc4Srjs   [DISPATCH_CMD_VertexArrayVertexAttribIOffsetEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexArrayVertexAttribIOffsetEXT,
111996c5ddc4Srjs   [DISPATCH_CMD_EnableVertexArrayEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_EnableVertexArrayEXT,
112096c5ddc4Srjs   [DISPATCH_CMD_DisableVertexArrayEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_DisableVertexArrayEXT,
112196c5ddc4Srjs   [DISPATCH_CMD_EnableVertexArrayAttribEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_EnableVertexArrayAttribEXT,
112296c5ddc4Srjs   [DISPATCH_CMD_DisableVertexArrayAttribEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_DisableVertexArrayAttribEXT,
112396c5ddc4Srjs   [DISPATCH_CMD_NamedProgramStringEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_NamedProgramStringEXT,
112496c5ddc4Srjs   [DISPATCH_CMD_NamedProgramLocalParameter4fEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_NamedProgramLocalParameter4fEXT,
112596c5ddc4Srjs   [DISPATCH_CMD_NamedProgramLocalParameter4fvEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_NamedProgramLocalParameter4fvEXT,
112696c5ddc4Srjs   [DISPATCH_CMD_NamedProgramLocalParameter4dEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_NamedProgramLocalParameter4dEXT,
112796c5ddc4Srjs   [DISPATCH_CMD_NamedProgramLocalParameter4dvEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_NamedProgramLocalParameter4dvEXT,
112896c5ddc4Srjs   [DISPATCH_CMD_TextureBufferEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureBufferEXT,
112996c5ddc4Srjs   [DISPATCH_CMD_MultiTexBufferEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexBufferEXT,
113096c5ddc4Srjs   [DISPATCH_CMD_TextureParameterIivEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureParameterIivEXT,
113196c5ddc4Srjs   [DISPATCH_CMD_TextureParameterIuivEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureParameterIuivEXT,
113296c5ddc4Srjs   [DISPATCH_CMD_MultiTexParameterIivEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexParameterIivEXT,
113396c5ddc4Srjs   [DISPATCH_CMD_MultiTexParameterIuivEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexParameterIuivEXT,
113496c5ddc4Srjs   [DISPATCH_CMD_NamedProgramLocalParameters4fvEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_NamedProgramLocalParameters4fvEXT,
113596c5ddc4Srjs   [DISPATCH_CMD_BindImageTextureEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_BindImageTextureEXT,
113696c5ddc4Srjs   [DISPATCH_CMD_SubpixelPrecisionBiasNV] = (_mesa_unmarshal_func)_mesa_unmarshal_SubpixelPrecisionBiasNV,
113796c5ddc4Srjs   [DISPATCH_CMD_ConservativeRasterParameterfNV] = (_mesa_unmarshal_func)_mesa_unmarshal_ConservativeRasterParameterfNV,
113896c5ddc4Srjs   [DISPATCH_CMD_ConservativeRasterParameteriNV] = (_mesa_unmarshal_func)_mesa_unmarshal_ConservativeRasterParameteriNV,
113996c5ddc4Srjs   [DISPATCH_CMD_DeletePerfQueryINTEL] = (_mesa_unmarshal_func)_mesa_unmarshal_DeletePerfQueryINTEL,
114096c5ddc4Srjs   [DISPATCH_CMD_BeginPerfQueryINTEL] = (_mesa_unmarshal_func)_mesa_unmarshal_BeginPerfQueryINTEL,
114196c5ddc4Srjs   [DISPATCH_CMD_EndPerfQueryINTEL] = (_mesa_unmarshal_func)_mesa_unmarshal_EndPerfQueryINTEL,
114296c5ddc4Srjs   [DISPATCH_CMD_AlphaToCoverageDitherControlNV] = (_mesa_unmarshal_func)_mesa_unmarshal_AlphaToCoverageDitherControlNV,
114396c5ddc4Srjs   [DISPATCH_CMD_PolygonOffsetClampEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_PolygonOffsetClampEXT,
114496c5ddc4Srjs   [DISPATCH_CMD_WindowRectanglesEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_WindowRectanglesEXT,
114596c5ddc4Srjs   [DISPATCH_CMD_FramebufferFetchBarrierEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_FramebufferFetchBarrierEXT,
114696c5ddc4Srjs   [DISPATCH_CMD_RenderbufferStorageMultisampleAdvancedAMD] = (_mesa_unmarshal_func)_mesa_unmarshal_RenderbufferStorageMultisampleAdvancedAMD,
114796c5ddc4Srjs   [DISPATCH_CMD_NamedRenderbufferStorageMultisampleAdvancedAMD] = (_mesa_unmarshal_func)_mesa_unmarshal_NamedRenderbufferStorageMultisampleAdvancedAMD,
114896c5ddc4Srjs   [DISPATCH_CMD_StencilFuncSeparateATI] = (_mesa_unmarshal_func)_mesa_unmarshal_StencilFuncSeparateATI,
114996c5ddc4Srjs   [DISPATCH_CMD_ProgramEnvParameters4fvEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramEnvParameters4fvEXT,
115096c5ddc4Srjs   [DISPATCH_CMD_ProgramLocalParameters4fvEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_ProgramLocalParameters4fvEXT,
115196c5ddc4Srjs   [DISPATCH_CMD_InternalBufferSubDataCopyMESA] = (_mesa_unmarshal_func)_mesa_unmarshal_InternalBufferSubDataCopyMESA,
115296c5ddc4Srjs   [DISPATCH_CMD_InternalSetError] = (_mesa_unmarshal_func)_mesa_unmarshal_InternalSetError,
115396c5ddc4Srjs   [DISPATCH_CMD_ClearColorIiEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_ClearColorIiEXT,
115496c5ddc4Srjs   [DISPATCH_CMD_ClearColorIuiEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_ClearColorIuiEXT,
115596c5ddc4Srjs   [DISPATCH_CMD_TexParameterIiv] = (_mesa_unmarshal_func)_mesa_unmarshal_TexParameterIiv,
115696c5ddc4Srjs   [DISPATCH_CMD_TexParameterIuiv] = (_mesa_unmarshal_func)_mesa_unmarshal_TexParameterIuiv,
115796c5ddc4Srjs   [DISPATCH_CMD_VertexAttribI1iEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribI1iEXT,
115896c5ddc4Srjs   [DISPATCH_CMD_VertexAttribI2iEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribI2iEXT,
115996c5ddc4Srjs   [DISPATCH_CMD_VertexAttribI3iEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribI3iEXT,
116096c5ddc4Srjs   [DISPATCH_CMD_VertexAttribI4iEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribI4iEXT,
116196c5ddc4Srjs   [DISPATCH_CMD_VertexAttribI1uiEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribI1uiEXT,
116296c5ddc4Srjs   [DISPATCH_CMD_VertexAttribI2uiEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribI2uiEXT,
116396c5ddc4Srjs   [DISPATCH_CMD_VertexAttribI3uiEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribI3uiEXT,
116496c5ddc4Srjs   [DISPATCH_CMD_VertexAttribI4uiEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribI4uiEXT,
116596c5ddc4Srjs   [DISPATCH_CMD_VertexAttribI1iv] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribI1iv,
116696c5ddc4Srjs   [DISPATCH_CMD_VertexAttribI2ivEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribI2ivEXT,
116796c5ddc4Srjs   [DISPATCH_CMD_VertexAttribI3ivEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribI3ivEXT,
116896c5ddc4Srjs   [DISPATCH_CMD_VertexAttribI4ivEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribI4ivEXT,
116996c5ddc4Srjs   [DISPATCH_CMD_VertexAttribI1uiv] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribI1uiv,
117096c5ddc4Srjs   [DISPATCH_CMD_VertexAttribI2uivEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribI2uivEXT,
117196c5ddc4Srjs   [DISPATCH_CMD_VertexAttribI3uivEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribI3uivEXT,
117296c5ddc4Srjs   [DISPATCH_CMD_VertexAttribI4uivEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribI4uivEXT,
117396c5ddc4Srjs   [DISPATCH_CMD_VertexAttribI4bv] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribI4bv,
117496c5ddc4Srjs   [DISPATCH_CMD_VertexAttribI4sv] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribI4sv,
117596c5ddc4Srjs   [DISPATCH_CMD_VertexAttribI4ubv] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribI4ubv,
117696c5ddc4Srjs   [DISPATCH_CMD_VertexAttribI4usv] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribI4usv,
117796c5ddc4Srjs   [DISPATCH_CMD_VertexAttribIPointer] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribIPointer,
117896c5ddc4Srjs   [DISPATCH_CMD_Uniform1ui] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform1ui,
117996c5ddc4Srjs   [DISPATCH_CMD_Uniform2ui] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform2ui,
118096c5ddc4Srjs   [DISPATCH_CMD_Uniform3ui] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform3ui,
118196c5ddc4Srjs   [DISPATCH_CMD_Uniform4ui] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform4ui,
118296c5ddc4Srjs   [DISPATCH_CMD_Uniform1uiv] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform1uiv,
118396c5ddc4Srjs   [DISPATCH_CMD_Uniform2uiv] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform2uiv,
118496c5ddc4Srjs   [DISPATCH_CMD_Uniform3uiv] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform3uiv,
118596c5ddc4Srjs   [DISPATCH_CMD_Uniform4uiv] = (_mesa_unmarshal_func)_mesa_unmarshal_Uniform4uiv,
118696c5ddc4Srjs   [DISPATCH_CMD_BindFragDataLocation] = (_mesa_unmarshal_func)_mesa_unmarshal_BindFragDataLocation,
118796c5ddc4Srjs   [DISPATCH_CMD_ClearBufferiv] = (_mesa_unmarshal_func)_mesa_unmarshal_ClearBufferiv,
118896c5ddc4Srjs   [DISPATCH_CMD_ClearBufferuiv] = (_mesa_unmarshal_func)_mesa_unmarshal_ClearBufferuiv,
118996c5ddc4Srjs   [DISPATCH_CMD_ClearBufferfv] = (_mesa_unmarshal_func)_mesa_unmarshal_ClearBufferfv,
119096c5ddc4Srjs   [DISPATCH_CMD_ClearBufferfi] = (_mesa_unmarshal_func)_mesa_unmarshal_ClearBufferfi,
119196c5ddc4Srjs   [DISPATCH_CMD_BeginTransformFeedback] = (_mesa_unmarshal_func)_mesa_unmarshal_BeginTransformFeedback,
119296c5ddc4Srjs   [DISPATCH_CMD_EndTransformFeedback] = (_mesa_unmarshal_func)_mesa_unmarshal_EndTransformFeedback,
119396c5ddc4Srjs   [DISPATCH_CMD_BindBufferRange] = (_mesa_unmarshal_func)_mesa_unmarshal_BindBufferRange,
119496c5ddc4Srjs   [DISPATCH_CMD_BindBufferBase] = (_mesa_unmarshal_func)_mesa_unmarshal_BindBufferBase,
119596c5ddc4Srjs   [DISPATCH_CMD_BeginConditionalRender] = (_mesa_unmarshal_func)_mesa_unmarshal_BeginConditionalRender,
119696c5ddc4Srjs   [DISPATCH_CMD_EndConditionalRender] = (_mesa_unmarshal_func)_mesa_unmarshal_EndConditionalRender,
119796c5ddc4Srjs   [DISPATCH_CMD_PrimitiveRestartIndex] = (_mesa_unmarshal_func)_mesa_unmarshal_PrimitiveRestartIndex,
119896c5ddc4Srjs   [DISPATCH_CMD_FramebufferTexture] = (_mesa_unmarshal_func)_mesa_unmarshal_FramebufferTexture,
119996c5ddc4Srjs   [DISPATCH_CMD_PrimitiveRestartNV] = (_mesa_unmarshal_func)_mesa_unmarshal_PrimitiveRestartNV,
120096c5ddc4Srjs   [DISPATCH_CMD_BindBufferOffsetEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_BindBufferOffsetEXT,
120196c5ddc4Srjs   [DISPATCH_CMD_BindTransformFeedback] = (_mesa_unmarshal_func)_mesa_unmarshal_BindTransformFeedback,
120296c5ddc4Srjs   [DISPATCH_CMD_DeleteTransformFeedbacks] = (_mesa_unmarshal_func)_mesa_unmarshal_DeleteTransformFeedbacks,
120396c5ddc4Srjs   [DISPATCH_CMD_PauseTransformFeedback] = (_mesa_unmarshal_func)_mesa_unmarshal_PauseTransformFeedback,
120496c5ddc4Srjs   [DISPATCH_CMD_ResumeTransformFeedback] = (_mesa_unmarshal_func)_mesa_unmarshal_ResumeTransformFeedback,
120596c5ddc4Srjs   [DISPATCH_CMD_DrawTransformFeedback] = (_mesa_unmarshal_func)_mesa_unmarshal_DrawTransformFeedback,
120696c5ddc4Srjs   [DISPATCH_CMD_VDPAUFiniNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VDPAUFiniNV,
120796c5ddc4Srjs   [DISPATCH_CMD_VDPAUUnregisterSurfaceNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VDPAUUnregisterSurfaceNV,
120896c5ddc4Srjs   [DISPATCH_CMD_VDPAUSurfaceAccessNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VDPAUSurfaceAccessNV,
120996c5ddc4Srjs   [DISPATCH_CMD_VDPAUMapSurfacesNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VDPAUMapSurfacesNV,
121096c5ddc4Srjs   [DISPATCH_CMD_VDPAUUnmapSurfacesNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VDPAUUnmapSurfacesNV,
121196c5ddc4Srjs   [DISPATCH_CMD_DeleteMemoryObjectsEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_DeleteMemoryObjectsEXT,
121296c5ddc4Srjs   [DISPATCH_CMD_MemoryObjectParameterivEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_MemoryObjectParameterivEXT,
121396c5ddc4Srjs   [DISPATCH_CMD_TexStorageMem2DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_TexStorageMem2DEXT,
121496c5ddc4Srjs   [DISPATCH_CMD_TexStorageMem2DMultisampleEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_TexStorageMem2DMultisampleEXT,
121596c5ddc4Srjs   [DISPATCH_CMD_TexStorageMem3DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_TexStorageMem3DEXT,
121696c5ddc4Srjs   [DISPATCH_CMD_TexStorageMem3DMultisampleEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_TexStorageMem3DMultisampleEXT,
121796c5ddc4Srjs   [DISPATCH_CMD_BufferStorageMemEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_BufferStorageMemEXT,
121896c5ddc4Srjs   [DISPATCH_CMD_TextureStorageMem2DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureStorageMem2DEXT,
121996c5ddc4Srjs   [DISPATCH_CMD_TextureStorageMem2DMultisampleEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureStorageMem2DMultisampleEXT,
122096c5ddc4Srjs   [DISPATCH_CMD_TextureStorageMem3DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureStorageMem3DEXT,
122196c5ddc4Srjs   [DISPATCH_CMD_TextureStorageMem3DMultisampleEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureStorageMem3DMultisampleEXT,
122296c5ddc4Srjs   [DISPATCH_CMD_NamedBufferStorageMemEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_NamedBufferStorageMemEXT,
122396c5ddc4Srjs   [DISPATCH_CMD_TexStorageMem1DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_TexStorageMem1DEXT,
122496c5ddc4Srjs   [DISPATCH_CMD_TextureStorageMem1DEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_TextureStorageMem1DEXT,
122596c5ddc4Srjs   [DISPATCH_CMD_DeleteSemaphoresEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_DeleteSemaphoresEXT,
122696c5ddc4Srjs   [DISPATCH_CMD_SemaphoreParameterui64vEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_SemaphoreParameterui64vEXT,
122796c5ddc4Srjs   [DISPATCH_CMD_WaitSemaphoreEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_WaitSemaphoreEXT,
122896c5ddc4Srjs   [DISPATCH_CMD_SignalSemaphoreEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_SignalSemaphoreEXT,
122996c5ddc4Srjs   [DISPATCH_CMD_ImportMemoryFdEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_ImportMemoryFdEXT,
123096c5ddc4Srjs   [DISPATCH_CMD_ImportSemaphoreFdEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_ImportSemaphoreFdEXT,
123196c5ddc4Srjs   [DISPATCH_CMD_ViewportSwizzleNV] = (_mesa_unmarshal_func)_mesa_unmarshal_ViewportSwizzleNV,
123296c5ddc4Srjs   [DISPATCH_CMD_Vertex2hNV] = (_mesa_unmarshal_func)_mesa_unmarshal_Vertex2hNV,
123396c5ddc4Srjs   [DISPATCH_CMD_Vertex2hvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_Vertex2hvNV,
123496c5ddc4Srjs   [DISPATCH_CMD_Vertex3hNV] = (_mesa_unmarshal_func)_mesa_unmarshal_Vertex3hNV,
123596c5ddc4Srjs   [DISPATCH_CMD_Vertex3hvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_Vertex3hvNV,
123696c5ddc4Srjs   [DISPATCH_CMD_Vertex4hNV] = (_mesa_unmarshal_func)_mesa_unmarshal_Vertex4hNV,
123796c5ddc4Srjs   [DISPATCH_CMD_Vertex4hvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_Vertex4hvNV,
123896c5ddc4Srjs   [DISPATCH_CMD_Normal3hNV] = (_mesa_unmarshal_func)_mesa_unmarshal_Normal3hNV,
123996c5ddc4Srjs   [DISPATCH_CMD_Normal3hvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_Normal3hvNV,
124096c5ddc4Srjs   [DISPATCH_CMD_Color3hNV] = (_mesa_unmarshal_func)_mesa_unmarshal_Color3hNV,
124196c5ddc4Srjs   [DISPATCH_CMD_Color3hvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_Color3hvNV,
124296c5ddc4Srjs   [DISPATCH_CMD_Color4hNV] = (_mesa_unmarshal_func)_mesa_unmarshal_Color4hNV,
124396c5ddc4Srjs   [DISPATCH_CMD_Color4hvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_Color4hvNV,
124496c5ddc4Srjs   [DISPATCH_CMD_TexCoord1hNV] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord1hNV,
124596c5ddc4Srjs   [DISPATCH_CMD_TexCoord1hvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord1hvNV,
124696c5ddc4Srjs   [DISPATCH_CMD_TexCoord2hNV] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord2hNV,
124796c5ddc4Srjs   [DISPATCH_CMD_TexCoord2hvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord2hvNV,
124896c5ddc4Srjs   [DISPATCH_CMD_TexCoord3hNV] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord3hNV,
124996c5ddc4Srjs   [DISPATCH_CMD_TexCoord3hvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord3hvNV,
125096c5ddc4Srjs   [DISPATCH_CMD_TexCoord4hNV] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord4hNV,
125196c5ddc4Srjs   [DISPATCH_CMD_TexCoord4hvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_TexCoord4hvNV,
125296c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord1hNV] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord1hNV,
125396c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord1hvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord1hvNV,
125496c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord2hNV] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord2hNV,
125596c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord2hvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord2hvNV,
125696c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord3hNV] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord3hNV,
125796c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord3hvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord3hvNV,
125896c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord4hNV] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord4hNV,
125996c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord4hvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord4hvNV,
126096c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib1hNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib1hNV,
126196c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib1hvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib1hvNV,
126296c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib2hNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib2hNV,
126396c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib2hvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib2hvNV,
126496c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib3hNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib3hNV,
126596c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib3hvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib3hvNV,
126696c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib4hNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib4hNV,
126796c5ddc4Srjs   [DISPATCH_CMD_VertexAttrib4hvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttrib4hvNV,
126896c5ddc4Srjs   [DISPATCH_CMD_VertexAttribs1hvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribs1hvNV,
126996c5ddc4Srjs   [DISPATCH_CMD_VertexAttribs2hvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribs2hvNV,
127096c5ddc4Srjs   [DISPATCH_CMD_VertexAttribs3hvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribs3hvNV,
127196c5ddc4Srjs   [DISPATCH_CMD_VertexAttribs4hvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_VertexAttribs4hvNV,
127296c5ddc4Srjs   [DISPATCH_CMD_FogCoordhNV] = (_mesa_unmarshal_func)_mesa_unmarshal_FogCoordhNV,
127396c5ddc4Srjs   [DISPATCH_CMD_FogCoordhvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_FogCoordhvNV,
127496c5ddc4Srjs   [DISPATCH_CMD_SecondaryColor3hNV] = (_mesa_unmarshal_func)_mesa_unmarshal_SecondaryColor3hNV,
127596c5ddc4Srjs   [DISPATCH_CMD_SecondaryColor3hvNV] = (_mesa_unmarshal_func)_mesa_unmarshal_SecondaryColor3hvNV,
127696c5ddc4Srjs   [DISPATCH_CMD_MemoryBarrierByRegion] = (_mesa_unmarshal_func)_mesa_unmarshal_MemoryBarrierByRegion,
127796c5ddc4Srjs   [DISPATCH_CMD_AlphaFuncx] = (_mesa_unmarshal_func)_mesa_unmarshal_AlphaFuncx,
127896c5ddc4Srjs   [DISPATCH_CMD_ClearColorx] = (_mesa_unmarshal_func)_mesa_unmarshal_ClearColorx,
127996c5ddc4Srjs   [DISPATCH_CMD_ClearDepthx] = (_mesa_unmarshal_func)_mesa_unmarshal_ClearDepthx,
128096c5ddc4Srjs   [DISPATCH_CMD_Color4x] = (_mesa_unmarshal_func)_mesa_unmarshal_Color4x,
128196c5ddc4Srjs   [DISPATCH_CMD_DepthRangex] = (_mesa_unmarshal_func)_mesa_unmarshal_DepthRangex,
128296c5ddc4Srjs   [DISPATCH_CMD_Fogx] = (_mesa_unmarshal_func)_mesa_unmarshal_Fogx,
128396c5ddc4Srjs   [DISPATCH_CMD_Fogxv] = (_mesa_unmarshal_func)_mesa_unmarshal_Fogxv,
128496c5ddc4Srjs   [DISPATCH_CMD_Frustumx] = (_mesa_unmarshal_func)_mesa_unmarshal_Frustumx,
128596c5ddc4Srjs   [DISPATCH_CMD_LightModelx] = (_mesa_unmarshal_func)_mesa_unmarshal_LightModelx,
128696c5ddc4Srjs   [DISPATCH_CMD_LightModelxv] = (_mesa_unmarshal_func)_mesa_unmarshal_LightModelxv,
128796c5ddc4Srjs   [DISPATCH_CMD_Lightx] = (_mesa_unmarshal_func)_mesa_unmarshal_Lightx,
128896c5ddc4Srjs   [DISPATCH_CMD_Lightxv] = (_mesa_unmarshal_func)_mesa_unmarshal_Lightxv,
128996c5ddc4Srjs   [DISPATCH_CMD_LineWidthx] = (_mesa_unmarshal_func)_mesa_unmarshal_LineWidthx,
129096c5ddc4Srjs   [DISPATCH_CMD_LoadMatrixx] = (_mesa_unmarshal_func)_mesa_unmarshal_LoadMatrixx,
129196c5ddc4Srjs   [DISPATCH_CMD_Materialx] = (_mesa_unmarshal_func)_mesa_unmarshal_Materialx,
129296c5ddc4Srjs   [DISPATCH_CMD_Materialxv] = (_mesa_unmarshal_func)_mesa_unmarshal_Materialxv,
129396c5ddc4Srjs   [DISPATCH_CMD_MultMatrixx] = (_mesa_unmarshal_func)_mesa_unmarshal_MultMatrixx,
129496c5ddc4Srjs   [DISPATCH_CMD_MultiTexCoord4x] = (_mesa_unmarshal_func)_mesa_unmarshal_MultiTexCoord4x,
129596c5ddc4Srjs   [DISPATCH_CMD_Normal3x] = (_mesa_unmarshal_func)_mesa_unmarshal_Normal3x,
129696c5ddc4Srjs   [DISPATCH_CMD_Orthox] = (_mesa_unmarshal_func)_mesa_unmarshal_Orthox,
129796c5ddc4Srjs   [DISPATCH_CMD_PointSizex] = (_mesa_unmarshal_func)_mesa_unmarshal_PointSizex,
129896c5ddc4Srjs   [DISPATCH_CMD_PolygonOffsetx] = (_mesa_unmarshal_func)_mesa_unmarshal_PolygonOffsetx,
129996c5ddc4Srjs   [DISPATCH_CMD_Rotatex] = (_mesa_unmarshal_func)_mesa_unmarshal_Rotatex,
130096c5ddc4Srjs   [DISPATCH_CMD_SampleCoveragex] = (_mesa_unmarshal_func)_mesa_unmarshal_SampleCoveragex,
130196c5ddc4Srjs   [DISPATCH_CMD_Scalex] = (_mesa_unmarshal_func)_mesa_unmarshal_Scalex,
130296c5ddc4Srjs   [DISPATCH_CMD_TexEnvx] = (_mesa_unmarshal_func)_mesa_unmarshal_TexEnvx,
130396c5ddc4Srjs   [DISPATCH_CMD_TexEnvxv] = (_mesa_unmarshal_func)_mesa_unmarshal_TexEnvxv,
130496c5ddc4Srjs   [DISPATCH_CMD_TexParameterx] = (_mesa_unmarshal_func)_mesa_unmarshal_TexParameterx,
130596c5ddc4Srjs   [DISPATCH_CMD_Translatex] = (_mesa_unmarshal_func)_mesa_unmarshal_Translatex,
130696c5ddc4Srjs   [DISPATCH_CMD_ClipPlanex] = (_mesa_unmarshal_func)_mesa_unmarshal_ClipPlanex,
130796c5ddc4Srjs   [DISPATCH_CMD_PointParameterx] = (_mesa_unmarshal_func)_mesa_unmarshal_PointParameterx,
130896c5ddc4Srjs   [DISPATCH_CMD_PointParameterxv] = (_mesa_unmarshal_func)_mesa_unmarshal_PointParameterxv,
130996c5ddc4Srjs   [DISPATCH_CMD_TexParameterxv] = (_mesa_unmarshal_func)_mesa_unmarshal_TexParameterxv,
131096c5ddc4Srjs   [DISPATCH_CMD_TexGenxOES] = (_mesa_unmarshal_func)_mesa_unmarshal_TexGenxOES,
131196c5ddc4Srjs   [DISPATCH_CMD_TexGenxvOES] = (_mesa_unmarshal_func)_mesa_unmarshal_TexGenxvOES,
131296c5ddc4Srjs   [DISPATCH_CMD_ClipPlanef] = (_mesa_unmarshal_func)_mesa_unmarshal_ClipPlanef,
131396c5ddc4Srjs   [DISPATCH_CMD_Frustumf] = (_mesa_unmarshal_func)_mesa_unmarshal_Frustumf,
131496c5ddc4Srjs   [DISPATCH_CMD_Orthof] = (_mesa_unmarshal_func)_mesa_unmarshal_Orthof,
131596c5ddc4Srjs   [DISPATCH_CMD_DrawTexiOES] = (_mesa_unmarshal_func)_mesa_unmarshal_DrawTexiOES,
131696c5ddc4Srjs   [DISPATCH_CMD_DrawTexivOES] = (_mesa_unmarshal_func)_mesa_unmarshal_DrawTexivOES,
131796c5ddc4Srjs   [DISPATCH_CMD_DrawTexfOES] = (_mesa_unmarshal_func)_mesa_unmarshal_DrawTexfOES,
131896c5ddc4Srjs   [DISPATCH_CMD_DrawTexfvOES] = (_mesa_unmarshal_func)_mesa_unmarshal_DrawTexfvOES,
131996c5ddc4Srjs   [DISPATCH_CMD_DrawTexsOES] = (_mesa_unmarshal_func)_mesa_unmarshal_DrawTexsOES,
132096c5ddc4Srjs   [DISPATCH_CMD_DrawTexsvOES] = (_mesa_unmarshal_func)_mesa_unmarshal_DrawTexsvOES,
132196c5ddc4Srjs   [DISPATCH_CMD_DrawTexxOES] = (_mesa_unmarshal_func)_mesa_unmarshal_DrawTexxOES,
132296c5ddc4Srjs   [DISPATCH_CMD_DrawTexxvOES] = (_mesa_unmarshal_func)_mesa_unmarshal_DrawTexxvOES,
132396c5ddc4Srjs   [DISPATCH_CMD_PointSizePointerOES] = (_mesa_unmarshal_func)_mesa_unmarshal_PointSizePointerOES,
132496c5ddc4Srjs   [DISPATCH_CMD_DiscardFramebufferEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_DiscardFramebufferEXT,
132596c5ddc4Srjs   [DISPATCH_CMD_FramebufferTexture2DMultisampleEXT] = (_mesa_unmarshal_func)_mesa_unmarshal_FramebufferTexture2DMultisampleEXT,
132696c5ddc4Srjs   [DISPATCH_CMD_DepthRangeArrayfvOES] = (_mesa_unmarshal_func)_mesa_unmarshal_DepthRangeArrayfvOES,
132796c5ddc4Srjs   [DISPATCH_CMD_DepthRangeIndexedfOES] = (_mesa_unmarshal_func)_mesa_unmarshal_DepthRangeIndexedfOES,
132896c5ddc4Srjs   [DISPATCH_CMD_FramebufferParameteriMESA] = (_mesa_unmarshal_func)_mesa_unmarshal_FramebufferParameteriMESA,
132996c5ddc4Srjs};
133096c5ddc4Srjs
133196c5ddc4Srjs
133296c5ddc4Srjs/* _mesa_create_marshal_table takes a long time to compile with -O2 */
133396c5ddc4Srjs#if defined(__GNUC__) && !defined(__clang__)
133496c5ddc4Srjs__attribute__((optimize("O1")))
133596c5ddc4Srjs#endif
133696c5ddc4Srjsstruct _glapi_table *
133796c5ddc4Srjs_mesa_create_marshal_table(const struct gl_context *ctx)
133896c5ddc4Srjs{
133996c5ddc4Srjs   struct _glapi_table *table;
134096c5ddc4Srjs
134196c5ddc4Srjs   table = _mesa_alloc_dispatch_table();
134296c5ddc4Srjs   if (table == NULL)
134396c5ddc4Srjs      return NULL;
134496c5ddc4Srjs
134596c5ddc4Srjs   if (_gloffset_NewList >= 0)
134696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NewList] = (_glapi_proc)_mesa_marshal_NewList;
134796c5ddc4Srjs   if (_gloffset_EndList >= 0)
134896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_EndList] = (_glapi_proc)_mesa_marshal_EndList;
134996c5ddc4Srjs   if (_gloffset_CallList >= 0)
135096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CallList] = (_glapi_proc)_mesa_marshal_CallList;
135196c5ddc4Srjs   if (_gloffset_CallLists >= 0)
135296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CallLists] = (_glapi_proc)_mesa_marshal_CallLists;
135396c5ddc4Srjs   if (_gloffset_DeleteLists >= 0)
135496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DeleteLists] = (_glapi_proc)_mesa_marshal_DeleteLists;
135596c5ddc4Srjs   if (_gloffset_GenLists >= 0)
135696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GenLists] = (_glapi_proc)_mesa_marshal_GenLists;
135796c5ddc4Srjs   if (_gloffset_ListBase >= 0)
135896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ListBase] = (_glapi_proc)_mesa_marshal_ListBase;
135996c5ddc4Srjs   if (_gloffset_Begin >= 0)
136096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Begin] = (_glapi_proc)_mesa_marshal_Begin;
136196c5ddc4Srjs   if (_gloffset_Bitmap >= 0)
136296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Bitmap] = (_glapi_proc)_mesa_marshal_Bitmap;
136396c5ddc4Srjs   if (_gloffset_Color3b >= 0)
136496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Color3b] = (_glapi_proc)_mesa_marshal_Color3b;
136596c5ddc4Srjs   if (_gloffset_Color3bv >= 0)
136696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Color3bv] = (_glapi_proc)_mesa_marshal_Color3bv;
136796c5ddc4Srjs   if (_gloffset_Color3d >= 0)
136896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Color3d] = (_glapi_proc)_mesa_marshal_Color3d;
136996c5ddc4Srjs   if (_gloffset_Color3dv >= 0)
137096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Color3dv] = (_glapi_proc)_mesa_marshal_Color3dv;
137196c5ddc4Srjs   if (_gloffset_Color3f >= 0)
137296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Color3f] = (_glapi_proc)_mesa_marshal_Color3f;
137396c5ddc4Srjs   if (_gloffset_Color3fv >= 0)
137496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Color3fv] = (_glapi_proc)_mesa_marshal_Color3fv;
137596c5ddc4Srjs   if (_gloffset_Color3i >= 0)
137696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Color3i] = (_glapi_proc)_mesa_marshal_Color3i;
137796c5ddc4Srjs   if (_gloffset_Color3iv >= 0)
137896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Color3iv] = (_glapi_proc)_mesa_marshal_Color3iv;
137996c5ddc4Srjs   if (_gloffset_Color3s >= 0)
138096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Color3s] = (_glapi_proc)_mesa_marshal_Color3s;
138196c5ddc4Srjs   if (_gloffset_Color3sv >= 0)
138296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Color3sv] = (_glapi_proc)_mesa_marshal_Color3sv;
138396c5ddc4Srjs   if (_gloffset_Color3ub >= 0)
138496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Color3ub] = (_glapi_proc)_mesa_marshal_Color3ub;
138596c5ddc4Srjs   if (_gloffset_Color3ubv >= 0)
138696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Color3ubv] = (_glapi_proc)_mesa_marshal_Color3ubv;
138796c5ddc4Srjs   if (_gloffset_Color3ui >= 0)
138896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Color3ui] = (_glapi_proc)_mesa_marshal_Color3ui;
138996c5ddc4Srjs   if (_gloffset_Color3uiv >= 0)
139096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Color3uiv] = (_glapi_proc)_mesa_marshal_Color3uiv;
139196c5ddc4Srjs   if (_gloffset_Color3us >= 0)
139296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Color3us] = (_glapi_proc)_mesa_marshal_Color3us;
139396c5ddc4Srjs   if (_gloffset_Color3usv >= 0)
139496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Color3usv] = (_glapi_proc)_mesa_marshal_Color3usv;
139596c5ddc4Srjs   if (_gloffset_Color4b >= 0)
139696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Color4b] = (_glapi_proc)_mesa_marshal_Color4b;
139796c5ddc4Srjs   if (_gloffset_Color4bv >= 0)
139896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Color4bv] = (_glapi_proc)_mesa_marshal_Color4bv;
139996c5ddc4Srjs   if (_gloffset_Color4d >= 0)
140096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Color4d] = (_glapi_proc)_mesa_marshal_Color4d;
140196c5ddc4Srjs   if (_gloffset_Color4dv >= 0)
140296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Color4dv] = (_glapi_proc)_mesa_marshal_Color4dv;
140396c5ddc4Srjs   if (_gloffset_Color4f >= 0)
140496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Color4f] = (_glapi_proc)_mesa_marshal_Color4f;
140596c5ddc4Srjs   if (_gloffset_Color4fv >= 0)
140696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Color4fv] = (_glapi_proc)_mesa_marshal_Color4fv;
140796c5ddc4Srjs   if (_gloffset_Color4i >= 0)
140896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Color4i] = (_glapi_proc)_mesa_marshal_Color4i;
140996c5ddc4Srjs   if (_gloffset_Color4iv >= 0)
141096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Color4iv] = (_glapi_proc)_mesa_marshal_Color4iv;
141196c5ddc4Srjs   if (_gloffset_Color4s >= 0)
141296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Color4s] = (_glapi_proc)_mesa_marshal_Color4s;
141396c5ddc4Srjs   if (_gloffset_Color4sv >= 0)
141496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Color4sv] = (_glapi_proc)_mesa_marshal_Color4sv;
141596c5ddc4Srjs   if (_gloffset_Color4ub >= 0)
141696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Color4ub] = (_glapi_proc)_mesa_marshal_Color4ub;
141796c5ddc4Srjs   if (_gloffset_Color4ubv >= 0)
141896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Color4ubv] = (_glapi_proc)_mesa_marshal_Color4ubv;
141996c5ddc4Srjs   if (_gloffset_Color4ui >= 0)
142096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Color4ui] = (_glapi_proc)_mesa_marshal_Color4ui;
142196c5ddc4Srjs   if (_gloffset_Color4uiv >= 0)
142296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Color4uiv] = (_glapi_proc)_mesa_marshal_Color4uiv;
142396c5ddc4Srjs   if (_gloffset_Color4us >= 0)
142496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Color4us] = (_glapi_proc)_mesa_marshal_Color4us;
142596c5ddc4Srjs   if (_gloffset_Color4usv >= 0)
142696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Color4usv] = (_glapi_proc)_mesa_marshal_Color4usv;
142796c5ddc4Srjs   if (_gloffset_EdgeFlag >= 0)
142896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_EdgeFlag] = (_glapi_proc)_mesa_marshal_EdgeFlag;
142996c5ddc4Srjs   if (_gloffset_EdgeFlagv >= 0)
143096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_EdgeFlagv] = (_glapi_proc)_mesa_marshal_EdgeFlagv;
143196c5ddc4Srjs   if (_gloffset_End >= 0)
143296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_End] = (_glapi_proc)_mesa_marshal_End;
143396c5ddc4Srjs   if (_gloffset_Indexd >= 0)
143496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Indexd] = (_glapi_proc)_mesa_marshal_Indexd;
143596c5ddc4Srjs   if (_gloffset_Indexdv >= 0)
143696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Indexdv] = (_glapi_proc)_mesa_marshal_Indexdv;
143796c5ddc4Srjs   if (_gloffset_Indexf >= 0)
143896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Indexf] = (_glapi_proc)_mesa_marshal_Indexf;
143996c5ddc4Srjs   if (_gloffset_Indexfv >= 0)
144096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Indexfv] = (_glapi_proc)_mesa_marshal_Indexfv;
144196c5ddc4Srjs   if (_gloffset_Indexi >= 0)
144296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Indexi] = (_glapi_proc)_mesa_marshal_Indexi;
144396c5ddc4Srjs   if (_gloffset_Indexiv >= 0)
144496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Indexiv] = (_glapi_proc)_mesa_marshal_Indexiv;
144596c5ddc4Srjs   if (_gloffset_Indexs >= 0)
144696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Indexs] = (_glapi_proc)_mesa_marshal_Indexs;
144796c5ddc4Srjs   if (_gloffset_Indexsv >= 0)
144896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Indexsv] = (_glapi_proc)_mesa_marshal_Indexsv;
144996c5ddc4Srjs   if (_gloffset_Normal3b >= 0)
145096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Normal3b] = (_glapi_proc)_mesa_marshal_Normal3b;
145196c5ddc4Srjs   if (_gloffset_Normal3bv >= 0)
145296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Normal3bv] = (_glapi_proc)_mesa_marshal_Normal3bv;
145396c5ddc4Srjs   if (_gloffset_Normal3d >= 0)
145496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Normal3d] = (_glapi_proc)_mesa_marshal_Normal3d;
145596c5ddc4Srjs   if (_gloffset_Normal3dv >= 0)
145696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Normal3dv] = (_glapi_proc)_mesa_marshal_Normal3dv;
145796c5ddc4Srjs   if (_gloffset_Normal3f >= 0)
145896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Normal3f] = (_glapi_proc)_mesa_marshal_Normal3f;
145996c5ddc4Srjs   if (_gloffset_Normal3fv >= 0)
146096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Normal3fv] = (_glapi_proc)_mesa_marshal_Normal3fv;
146196c5ddc4Srjs   if (_gloffset_Normal3i >= 0)
146296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Normal3i] = (_glapi_proc)_mesa_marshal_Normal3i;
146396c5ddc4Srjs   if (_gloffset_Normal3iv >= 0)
146496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Normal3iv] = (_glapi_proc)_mesa_marshal_Normal3iv;
146596c5ddc4Srjs   if (_gloffset_Normal3s >= 0)
146696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Normal3s] = (_glapi_proc)_mesa_marshal_Normal3s;
146796c5ddc4Srjs   if (_gloffset_Normal3sv >= 0)
146896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Normal3sv] = (_glapi_proc)_mesa_marshal_Normal3sv;
146996c5ddc4Srjs   if (_gloffset_RasterPos2d >= 0)
147096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_RasterPos2d] = (_glapi_proc)_mesa_marshal_RasterPos2d;
147196c5ddc4Srjs   if (_gloffset_RasterPos2dv >= 0)
147296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_RasterPos2dv] = (_glapi_proc)_mesa_marshal_RasterPos2dv;
147396c5ddc4Srjs   if (_gloffset_RasterPos2f >= 0)
147496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_RasterPos2f] = (_glapi_proc)_mesa_marshal_RasterPos2f;
147596c5ddc4Srjs   if (_gloffset_RasterPos2fv >= 0)
147696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_RasterPos2fv] = (_glapi_proc)_mesa_marshal_RasterPos2fv;
147796c5ddc4Srjs   if (_gloffset_RasterPos2i >= 0)
147896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_RasterPos2i] = (_glapi_proc)_mesa_marshal_RasterPos2i;
147996c5ddc4Srjs   if (_gloffset_RasterPos2iv >= 0)
148096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_RasterPos2iv] = (_glapi_proc)_mesa_marshal_RasterPos2iv;
148196c5ddc4Srjs   if (_gloffset_RasterPos2s >= 0)
148296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_RasterPos2s] = (_glapi_proc)_mesa_marshal_RasterPos2s;
148396c5ddc4Srjs   if (_gloffset_RasterPos2sv >= 0)
148496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_RasterPos2sv] = (_glapi_proc)_mesa_marshal_RasterPos2sv;
148596c5ddc4Srjs   if (_gloffset_RasterPos3d >= 0)
148696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_RasterPos3d] = (_glapi_proc)_mesa_marshal_RasterPos3d;
148796c5ddc4Srjs   if (_gloffset_RasterPos3dv >= 0)
148896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_RasterPos3dv] = (_glapi_proc)_mesa_marshal_RasterPos3dv;
148996c5ddc4Srjs   if (_gloffset_RasterPos3f >= 0)
149096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_RasterPos3f] = (_glapi_proc)_mesa_marshal_RasterPos3f;
149196c5ddc4Srjs   if (_gloffset_RasterPos3fv >= 0)
149296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_RasterPos3fv] = (_glapi_proc)_mesa_marshal_RasterPos3fv;
149396c5ddc4Srjs   if (_gloffset_RasterPos3i >= 0)
149496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_RasterPos3i] = (_glapi_proc)_mesa_marshal_RasterPos3i;
149596c5ddc4Srjs   if (_gloffset_RasterPos3iv >= 0)
149696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_RasterPos3iv] = (_glapi_proc)_mesa_marshal_RasterPos3iv;
149796c5ddc4Srjs   if (_gloffset_RasterPos3s >= 0)
149896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_RasterPos3s] = (_glapi_proc)_mesa_marshal_RasterPos3s;
149996c5ddc4Srjs   if (_gloffset_RasterPos3sv >= 0)
150096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_RasterPos3sv] = (_glapi_proc)_mesa_marshal_RasterPos3sv;
150196c5ddc4Srjs   if (_gloffset_RasterPos4d >= 0)
150296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_RasterPos4d] = (_glapi_proc)_mesa_marshal_RasterPos4d;
150396c5ddc4Srjs   if (_gloffset_RasterPos4dv >= 0)
150496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_RasterPos4dv] = (_glapi_proc)_mesa_marshal_RasterPos4dv;
150596c5ddc4Srjs   if (_gloffset_RasterPos4f >= 0)
150696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_RasterPos4f] = (_glapi_proc)_mesa_marshal_RasterPos4f;
150796c5ddc4Srjs   if (_gloffset_RasterPos4fv >= 0)
150896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_RasterPos4fv] = (_glapi_proc)_mesa_marshal_RasterPos4fv;
150996c5ddc4Srjs   if (_gloffset_RasterPos4i >= 0)
151096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_RasterPos4i] = (_glapi_proc)_mesa_marshal_RasterPos4i;
151196c5ddc4Srjs   if (_gloffset_RasterPos4iv >= 0)
151296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_RasterPos4iv] = (_glapi_proc)_mesa_marshal_RasterPos4iv;
151396c5ddc4Srjs   if (_gloffset_RasterPos4s >= 0)
151496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_RasterPos4s] = (_glapi_proc)_mesa_marshal_RasterPos4s;
151596c5ddc4Srjs   if (_gloffset_RasterPos4sv >= 0)
151696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_RasterPos4sv] = (_glapi_proc)_mesa_marshal_RasterPos4sv;
151796c5ddc4Srjs   if (_gloffset_Rectd >= 0)
151896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Rectd] = (_glapi_proc)_mesa_marshal_Rectd;
151996c5ddc4Srjs   if (_gloffset_Rectdv >= 0)
152096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Rectdv] = (_glapi_proc)_mesa_marshal_Rectdv;
152196c5ddc4Srjs   if (_gloffset_Rectf >= 0)
152296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Rectf] = (_glapi_proc)_mesa_marshal_Rectf;
152396c5ddc4Srjs   if (_gloffset_Rectfv >= 0)
152496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Rectfv] = (_glapi_proc)_mesa_marshal_Rectfv;
152596c5ddc4Srjs   if (_gloffset_Recti >= 0)
152696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Recti] = (_glapi_proc)_mesa_marshal_Recti;
152796c5ddc4Srjs   if (_gloffset_Rectiv >= 0)
152896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Rectiv] = (_glapi_proc)_mesa_marshal_Rectiv;
152996c5ddc4Srjs   if (_gloffset_Rects >= 0)
153096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Rects] = (_glapi_proc)_mesa_marshal_Rects;
153196c5ddc4Srjs   if (_gloffset_Rectsv >= 0)
153296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Rectsv] = (_glapi_proc)_mesa_marshal_Rectsv;
153396c5ddc4Srjs   if (_gloffset_TexCoord1d >= 0)
153496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord1d] = (_glapi_proc)_mesa_marshal_TexCoord1d;
153596c5ddc4Srjs   if (_gloffset_TexCoord1dv >= 0)
153696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord1dv] = (_glapi_proc)_mesa_marshal_TexCoord1dv;
153796c5ddc4Srjs   if (_gloffset_TexCoord1f >= 0)
153896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord1f] = (_glapi_proc)_mesa_marshal_TexCoord1f;
153996c5ddc4Srjs   if (_gloffset_TexCoord1fv >= 0)
154096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord1fv] = (_glapi_proc)_mesa_marshal_TexCoord1fv;
154196c5ddc4Srjs   if (_gloffset_TexCoord1i >= 0)
154296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord1i] = (_glapi_proc)_mesa_marshal_TexCoord1i;
154396c5ddc4Srjs   if (_gloffset_TexCoord1iv >= 0)
154496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord1iv] = (_glapi_proc)_mesa_marshal_TexCoord1iv;
154596c5ddc4Srjs   if (_gloffset_TexCoord1s >= 0)
154696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord1s] = (_glapi_proc)_mesa_marshal_TexCoord1s;
154796c5ddc4Srjs   if (_gloffset_TexCoord1sv >= 0)
154896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord1sv] = (_glapi_proc)_mesa_marshal_TexCoord1sv;
154996c5ddc4Srjs   if (_gloffset_TexCoord2d >= 0)
155096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord2d] = (_glapi_proc)_mesa_marshal_TexCoord2d;
155196c5ddc4Srjs   if (_gloffset_TexCoord2dv >= 0)
155296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord2dv] = (_glapi_proc)_mesa_marshal_TexCoord2dv;
155396c5ddc4Srjs   if (_gloffset_TexCoord2f >= 0)
155496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord2f] = (_glapi_proc)_mesa_marshal_TexCoord2f;
155596c5ddc4Srjs   if (_gloffset_TexCoord2fv >= 0)
155696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord2fv] = (_glapi_proc)_mesa_marshal_TexCoord2fv;
155796c5ddc4Srjs   if (_gloffset_TexCoord2i >= 0)
155896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord2i] = (_glapi_proc)_mesa_marshal_TexCoord2i;
155996c5ddc4Srjs   if (_gloffset_TexCoord2iv >= 0)
156096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord2iv] = (_glapi_proc)_mesa_marshal_TexCoord2iv;
156196c5ddc4Srjs   if (_gloffset_TexCoord2s >= 0)
156296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord2s] = (_glapi_proc)_mesa_marshal_TexCoord2s;
156396c5ddc4Srjs   if (_gloffset_TexCoord2sv >= 0)
156496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord2sv] = (_glapi_proc)_mesa_marshal_TexCoord2sv;
156596c5ddc4Srjs   if (_gloffset_TexCoord3d >= 0)
156696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord3d] = (_glapi_proc)_mesa_marshal_TexCoord3d;
156796c5ddc4Srjs   if (_gloffset_TexCoord3dv >= 0)
156896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord3dv] = (_glapi_proc)_mesa_marshal_TexCoord3dv;
156996c5ddc4Srjs   if (_gloffset_TexCoord3f >= 0)
157096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord3f] = (_glapi_proc)_mesa_marshal_TexCoord3f;
157196c5ddc4Srjs   if (_gloffset_TexCoord3fv >= 0)
157296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord3fv] = (_glapi_proc)_mesa_marshal_TexCoord3fv;
157396c5ddc4Srjs   if (_gloffset_TexCoord3i >= 0)
157496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord3i] = (_glapi_proc)_mesa_marshal_TexCoord3i;
157596c5ddc4Srjs   if (_gloffset_TexCoord3iv >= 0)
157696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord3iv] = (_glapi_proc)_mesa_marshal_TexCoord3iv;
157796c5ddc4Srjs   if (_gloffset_TexCoord3s >= 0)
157896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord3s] = (_glapi_proc)_mesa_marshal_TexCoord3s;
157996c5ddc4Srjs   if (_gloffset_TexCoord3sv >= 0)
158096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord3sv] = (_glapi_proc)_mesa_marshal_TexCoord3sv;
158196c5ddc4Srjs   if (_gloffset_TexCoord4d >= 0)
158296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord4d] = (_glapi_proc)_mesa_marshal_TexCoord4d;
158396c5ddc4Srjs   if (_gloffset_TexCoord4dv >= 0)
158496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord4dv] = (_glapi_proc)_mesa_marshal_TexCoord4dv;
158596c5ddc4Srjs   if (_gloffset_TexCoord4f >= 0)
158696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord4f] = (_glapi_proc)_mesa_marshal_TexCoord4f;
158796c5ddc4Srjs   if (_gloffset_TexCoord4fv >= 0)
158896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord4fv] = (_glapi_proc)_mesa_marshal_TexCoord4fv;
158996c5ddc4Srjs   if (_gloffset_TexCoord4i >= 0)
159096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord4i] = (_glapi_proc)_mesa_marshal_TexCoord4i;
159196c5ddc4Srjs   if (_gloffset_TexCoord4iv >= 0)
159296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord4iv] = (_glapi_proc)_mesa_marshal_TexCoord4iv;
159396c5ddc4Srjs   if (_gloffset_TexCoord4s >= 0)
159496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord4s] = (_glapi_proc)_mesa_marshal_TexCoord4s;
159596c5ddc4Srjs   if (_gloffset_TexCoord4sv >= 0)
159696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord4sv] = (_glapi_proc)_mesa_marshal_TexCoord4sv;
159796c5ddc4Srjs   if (_gloffset_Vertex2d >= 0)
159896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Vertex2d] = (_glapi_proc)_mesa_marshal_Vertex2d;
159996c5ddc4Srjs   if (_gloffset_Vertex2dv >= 0)
160096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Vertex2dv] = (_glapi_proc)_mesa_marshal_Vertex2dv;
160196c5ddc4Srjs   if (_gloffset_Vertex2f >= 0)
160296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Vertex2f] = (_glapi_proc)_mesa_marshal_Vertex2f;
160396c5ddc4Srjs   if (_gloffset_Vertex2fv >= 0)
160496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Vertex2fv] = (_glapi_proc)_mesa_marshal_Vertex2fv;
160596c5ddc4Srjs   if (_gloffset_Vertex2i >= 0)
160696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Vertex2i] = (_glapi_proc)_mesa_marshal_Vertex2i;
160796c5ddc4Srjs   if (_gloffset_Vertex2iv >= 0)
160896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Vertex2iv] = (_glapi_proc)_mesa_marshal_Vertex2iv;
160996c5ddc4Srjs   if (_gloffset_Vertex2s >= 0)
161096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Vertex2s] = (_glapi_proc)_mesa_marshal_Vertex2s;
161196c5ddc4Srjs   if (_gloffset_Vertex2sv >= 0)
161296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Vertex2sv] = (_glapi_proc)_mesa_marshal_Vertex2sv;
161396c5ddc4Srjs   if (_gloffset_Vertex3d >= 0)
161496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Vertex3d] = (_glapi_proc)_mesa_marshal_Vertex3d;
161596c5ddc4Srjs   if (_gloffset_Vertex3dv >= 0)
161696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Vertex3dv] = (_glapi_proc)_mesa_marshal_Vertex3dv;
161796c5ddc4Srjs   if (_gloffset_Vertex3f >= 0)
161896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Vertex3f] = (_glapi_proc)_mesa_marshal_Vertex3f;
161996c5ddc4Srjs   if (_gloffset_Vertex3fv >= 0)
162096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Vertex3fv] = (_glapi_proc)_mesa_marshal_Vertex3fv;
162196c5ddc4Srjs   if (_gloffset_Vertex3i >= 0)
162296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Vertex3i] = (_glapi_proc)_mesa_marshal_Vertex3i;
162396c5ddc4Srjs   if (_gloffset_Vertex3iv >= 0)
162496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Vertex3iv] = (_glapi_proc)_mesa_marshal_Vertex3iv;
162596c5ddc4Srjs   if (_gloffset_Vertex3s >= 0)
162696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Vertex3s] = (_glapi_proc)_mesa_marshal_Vertex3s;
162796c5ddc4Srjs   if (_gloffset_Vertex3sv >= 0)
162896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Vertex3sv] = (_glapi_proc)_mesa_marshal_Vertex3sv;
162996c5ddc4Srjs   if (_gloffset_Vertex4d >= 0)
163096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Vertex4d] = (_glapi_proc)_mesa_marshal_Vertex4d;
163196c5ddc4Srjs   if (_gloffset_Vertex4dv >= 0)
163296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Vertex4dv] = (_glapi_proc)_mesa_marshal_Vertex4dv;
163396c5ddc4Srjs   if (_gloffset_Vertex4f >= 0)
163496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Vertex4f] = (_glapi_proc)_mesa_marshal_Vertex4f;
163596c5ddc4Srjs   if (_gloffset_Vertex4fv >= 0)
163696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Vertex4fv] = (_glapi_proc)_mesa_marshal_Vertex4fv;
163796c5ddc4Srjs   if (_gloffset_Vertex4i >= 0)
163896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Vertex4i] = (_glapi_proc)_mesa_marshal_Vertex4i;
163996c5ddc4Srjs   if (_gloffset_Vertex4iv >= 0)
164096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Vertex4iv] = (_glapi_proc)_mesa_marshal_Vertex4iv;
164196c5ddc4Srjs   if (_gloffset_Vertex4s >= 0)
164296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Vertex4s] = (_glapi_proc)_mesa_marshal_Vertex4s;
164396c5ddc4Srjs   if (_gloffset_Vertex4sv >= 0)
164496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Vertex4sv] = (_glapi_proc)_mesa_marshal_Vertex4sv;
164596c5ddc4Srjs   if (_gloffset_ClipPlane >= 0)
164696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ClipPlane] = (_glapi_proc)_mesa_marshal_ClipPlane;
164796c5ddc4Srjs   if (_gloffset_ColorMaterial >= 0)
164896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ColorMaterial] = (_glapi_proc)_mesa_marshal_ColorMaterial;
164996c5ddc4Srjs   if (_gloffset_CullFace >= 0)
165096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CullFace] = (_glapi_proc)_mesa_marshal_CullFace;
165196c5ddc4Srjs   if (_gloffset_Fogf >= 0)
165296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Fogf] = (_glapi_proc)_mesa_marshal_Fogf;
165396c5ddc4Srjs   if (_gloffset_Fogfv >= 0)
165496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Fogfv] = (_glapi_proc)_mesa_marshal_Fogfv;
165596c5ddc4Srjs   if (_gloffset_Fogi >= 0)
165696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Fogi] = (_glapi_proc)_mesa_marshal_Fogi;
165796c5ddc4Srjs   if (_gloffset_Fogiv >= 0)
165896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Fogiv] = (_glapi_proc)_mesa_marshal_Fogiv;
165996c5ddc4Srjs   if (_gloffset_FrontFace >= 0)
166096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_FrontFace] = (_glapi_proc)_mesa_marshal_FrontFace;
166196c5ddc4Srjs   if (_gloffset_Hint >= 0)
166296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Hint] = (_glapi_proc)_mesa_marshal_Hint;
166396c5ddc4Srjs   if (_gloffset_Lightf >= 0)
166496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Lightf] = (_glapi_proc)_mesa_marshal_Lightf;
166596c5ddc4Srjs   if (_gloffset_Lightfv >= 0)
166696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Lightfv] = (_glapi_proc)_mesa_marshal_Lightfv;
166796c5ddc4Srjs   if (_gloffset_Lighti >= 0)
166896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Lighti] = (_glapi_proc)_mesa_marshal_Lighti;
166996c5ddc4Srjs   if (_gloffset_Lightiv >= 0)
167096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Lightiv] = (_glapi_proc)_mesa_marshal_Lightiv;
167196c5ddc4Srjs   if (_gloffset_LightModelf >= 0)
167296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_LightModelf] = (_glapi_proc)_mesa_marshal_LightModelf;
167396c5ddc4Srjs   if (_gloffset_LightModelfv >= 0)
167496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_LightModelfv] = (_glapi_proc)_mesa_marshal_LightModelfv;
167596c5ddc4Srjs   if (_gloffset_LightModeli >= 0)
167696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_LightModeli] = (_glapi_proc)_mesa_marshal_LightModeli;
167796c5ddc4Srjs   if (_gloffset_LightModeliv >= 0)
167896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_LightModeliv] = (_glapi_proc)_mesa_marshal_LightModeliv;
167996c5ddc4Srjs   if (_gloffset_LineStipple >= 0)
168096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_LineStipple] = (_glapi_proc)_mesa_marshal_LineStipple;
168196c5ddc4Srjs   if (_gloffset_LineWidth >= 0)
168296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_LineWidth] = (_glapi_proc)_mesa_marshal_LineWidth;
168396c5ddc4Srjs   if (_gloffset_Materialf >= 0)
168496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Materialf] = (_glapi_proc)_mesa_marshal_Materialf;
168596c5ddc4Srjs   if (_gloffset_Materialfv >= 0)
168696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Materialfv] = (_glapi_proc)_mesa_marshal_Materialfv;
168796c5ddc4Srjs   if (_gloffset_Materiali >= 0)
168896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Materiali] = (_glapi_proc)_mesa_marshal_Materiali;
168996c5ddc4Srjs   if (_gloffset_Materialiv >= 0)
169096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Materialiv] = (_glapi_proc)_mesa_marshal_Materialiv;
169196c5ddc4Srjs   if (_gloffset_PointSize >= 0)
169296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PointSize] = (_glapi_proc)_mesa_marshal_PointSize;
169396c5ddc4Srjs   if (_gloffset_PolygonMode >= 0)
169496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PolygonMode] = (_glapi_proc)_mesa_marshal_PolygonMode;
169596c5ddc4Srjs   if (_gloffset_PolygonStipple >= 0)
169696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PolygonStipple] = (_glapi_proc)_mesa_marshal_PolygonStipple;
169796c5ddc4Srjs   if (_gloffset_Scissor >= 0)
169896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Scissor] = (_glapi_proc)_mesa_marshal_Scissor;
169996c5ddc4Srjs   if (_gloffset_ShadeModel >= 0)
170096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ShadeModel] = (_glapi_proc)_mesa_marshal_ShadeModel;
170196c5ddc4Srjs   if (_gloffset_TexParameterf >= 0)
170296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexParameterf] = (_glapi_proc)_mesa_marshal_TexParameterf;
170396c5ddc4Srjs   if (_gloffset_TexParameterfv >= 0)
170496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexParameterfv] = (_glapi_proc)_mesa_marshal_TexParameterfv;
170596c5ddc4Srjs   if (_gloffset_TexParameteri >= 0)
170696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexParameteri] = (_glapi_proc)_mesa_marshal_TexParameteri;
170796c5ddc4Srjs   if (_gloffset_TexParameteriv >= 0)
170896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexParameteriv] = (_glapi_proc)_mesa_marshal_TexParameteriv;
170996c5ddc4Srjs   if (_gloffset_TexImage1D >= 0)
171096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexImage1D] = (_glapi_proc)_mesa_marshal_TexImage1D;
171196c5ddc4Srjs   if (_gloffset_TexImage2D >= 0)
171296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexImage2D] = (_glapi_proc)_mesa_marshal_TexImage2D;
171396c5ddc4Srjs   if (_gloffset_TexEnvf >= 0)
171496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexEnvf] = (_glapi_proc)_mesa_marshal_TexEnvf;
171596c5ddc4Srjs   if (_gloffset_TexEnvfv >= 0)
171696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexEnvfv] = (_glapi_proc)_mesa_marshal_TexEnvfv;
171796c5ddc4Srjs   if (_gloffset_TexEnvi >= 0)
171896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexEnvi] = (_glapi_proc)_mesa_marshal_TexEnvi;
171996c5ddc4Srjs   if (_gloffset_TexEnviv >= 0)
172096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexEnviv] = (_glapi_proc)_mesa_marshal_TexEnviv;
172196c5ddc4Srjs   if (_gloffset_TexGend >= 0)
172296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexGend] = (_glapi_proc)_mesa_marshal_TexGend;
172396c5ddc4Srjs   if (_gloffset_TexGendv >= 0)
172496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexGendv] = (_glapi_proc)_mesa_marshal_TexGendv;
172596c5ddc4Srjs   if (_gloffset_TexGenf >= 0)
172696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexGenf] = (_glapi_proc)_mesa_marshal_TexGenf;
172796c5ddc4Srjs   if (_gloffset_TexGenfv >= 0)
172896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexGenfv] = (_glapi_proc)_mesa_marshal_TexGenfv;
172996c5ddc4Srjs   if (_gloffset_TexGeni >= 0)
173096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexGeni] = (_glapi_proc)_mesa_marshal_TexGeni;
173196c5ddc4Srjs   if (_gloffset_TexGeniv >= 0)
173296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexGeniv] = (_glapi_proc)_mesa_marshal_TexGeniv;
173396c5ddc4Srjs   if (_gloffset_FeedbackBuffer >= 0)
173496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_FeedbackBuffer] = (_glapi_proc)_mesa_marshal_FeedbackBuffer;
173596c5ddc4Srjs   if (_gloffset_SelectBuffer >= 0)
173696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_SelectBuffer] = (_glapi_proc)_mesa_marshal_SelectBuffer;
173796c5ddc4Srjs   if (_gloffset_RenderMode >= 0)
173896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_RenderMode] = (_glapi_proc)_mesa_marshal_RenderMode;
173996c5ddc4Srjs   if (_gloffset_InitNames >= 0)
174096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_InitNames] = (_glapi_proc)_mesa_marshal_InitNames;
174196c5ddc4Srjs   if (_gloffset_LoadName >= 0)
174296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_LoadName] = (_glapi_proc)_mesa_marshal_LoadName;
174396c5ddc4Srjs   if (_gloffset_PassThrough >= 0)
174496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PassThrough] = (_glapi_proc)_mesa_marshal_PassThrough;
174596c5ddc4Srjs   if (_gloffset_PopName >= 0)
174696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PopName] = (_glapi_proc)_mesa_marshal_PopName;
174796c5ddc4Srjs   if (_gloffset_PushName >= 0)
174896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PushName] = (_glapi_proc)_mesa_marshal_PushName;
174996c5ddc4Srjs   if (_gloffset_DrawBuffer >= 0)
175096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DrawBuffer] = (_glapi_proc)_mesa_marshal_DrawBuffer;
175196c5ddc4Srjs   if (_gloffset_Clear >= 0)
175296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Clear] = (_glapi_proc)_mesa_marshal_Clear;
175396c5ddc4Srjs   if (_gloffset_ClearAccum >= 0)
175496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ClearAccum] = (_glapi_proc)_mesa_marshal_ClearAccum;
175596c5ddc4Srjs   if (_gloffset_ClearIndex >= 0)
175696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ClearIndex] = (_glapi_proc)_mesa_marshal_ClearIndex;
175796c5ddc4Srjs   if (_gloffset_ClearColor >= 0)
175896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ClearColor] = (_glapi_proc)_mesa_marshal_ClearColor;
175996c5ddc4Srjs   if (_gloffset_ClearStencil >= 0)
176096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ClearStencil] = (_glapi_proc)_mesa_marshal_ClearStencil;
176196c5ddc4Srjs   if (_gloffset_ClearDepth >= 0)
176296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ClearDepth] = (_glapi_proc)_mesa_marshal_ClearDepth;
176396c5ddc4Srjs   if (_gloffset_StencilMask >= 0)
176496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_StencilMask] = (_glapi_proc)_mesa_marshal_StencilMask;
176596c5ddc4Srjs   if (_gloffset_ColorMask >= 0)
176696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ColorMask] = (_glapi_proc)_mesa_marshal_ColorMask;
176796c5ddc4Srjs   if (_gloffset_DepthMask >= 0)
176896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DepthMask] = (_glapi_proc)_mesa_marshal_DepthMask;
176996c5ddc4Srjs   if (_gloffset_IndexMask >= 0)
177096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_IndexMask] = (_glapi_proc)_mesa_marshal_IndexMask;
177196c5ddc4Srjs   if (_gloffset_Accum >= 0)
177296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Accum] = (_glapi_proc)_mesa_marshal_Accum;
177396c5ddc4Srjs   if (_gloffset_Disable >= 0)
177496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Disable] = (_glapi_proc)_mesa_marshal_Disable;
177596c5ddc4Srjs   if (_gloffset_Enable >= 0)
177696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Enable] = (_glapi_proc)_mesa_marshal_Enable;
177796c5ddc4Srjs   if (_gloffset_Finish >= 0)
177896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Finish] = (_glapi_proc)_mesa_marshal_Finish;
177996c5ddc4Srjs   if (_gloffset_Flush >= 0)
178096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Flush] = (_glapi_proc)_mesa_marshal_Flush;
178196c5ddc4Srjs   if (_gloffset_PopAttrib >= 0)
178296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PopAttrib] = (_glapi_proc)_mesa_marshal_PopAttrib;
178396c5ddc4Srjs   if (_gloffset_PushAttrib >= 0)
178496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PushAttrib] = (_glapi_proc)_mesa_marshal_PushAttrib;
178596c5ddc4Srjs   if (_gloffset_Map1d >= 0)
178696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Map1d] = (_glapi_proc)_mesa_marshal_Map1d;
178796c5ddc4Srjs   if (_gloffset_Map1f >= 0)
178896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Map1f] = (_glapi_proc)_mesa_marshal_Map1f;
178996c5ddc4Srjs   if (_gloffset_Map2d >= 0)
179096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Map2d] = (_glapi_proc)_mesa_marshal_Map2d;
179196c5ddc4Srjs   if (_gloffset_Map2f >= 0)
179296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Map2f] = (_glapi_proc)_mesa_marshal_Map2f;
179396c5ddc4Srjs   if (_gloffset_MapGrid1d >= 0)
179496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MapGrid1d] = (_glapi_proc)_mesa_marshal_MapGrid1d;
179596c5ddc4Srjs   if (_gloffset_MapGrid1f >= 0)
179696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MapGrid1f] = (_glapi_proc)_mesa_marshal_MapGrid1f;
179796c5ddc4Srjs   if (_gloffset_MapGrid2d >= 0)
179896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MapGrid2d] = (_glapi_proc)_mesa_marshal_MapGrid2d;
179996c5ddc4Srjs   if (_gloffset_MapGrid2f >= 0)
180096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MapGrid2f] = (_glapi_proc)_mesa_marshal_MapGrid2f;
180196c5ddc4Srjs   if (_gloffset_EvalCoord1d >= 0)
180296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_EvalCoord1d] = (_glapi_proc)_mesa_marshal_EvalCoord1d;
180396c5ddc4Srjs   if (_gloffset_EvalCoord1dv >= 0)
180496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_EvalCoord1dv] = (_glapi_proc)_mesa_marshal_EvalCoord1dv;
180596c5ddc4Srjs   if (_gloffset_EvalCoord1f >= 0)
180696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_EvalCoord1f] = (_glapi_proc)_mesa_marshal_EvalCoord1f;
180796c5ddc4Srjs   if (_gloffset_EvalCoord1fv >= 0)
180896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_EvalCoord1fv] = (_glapi_proc)_mesa_marshal_EvalCoord1fv;
180996c5ddc4Srjs   if (_gloffset_EvalCoord2d >= 0)
181096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_EvalCoord2d] = (_glapi_proc)_mesa_marshal_EvalCoord2d;
181196c5ddc4Srjs   if (_gloffset_EvalCoord2dv >= 0)
181296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_EvalCoord2dv] = (_glapi_proc)_mesa_marshal_EvalCoord2dv;
181396c5ddc4Srjs   if (_gloffset_EvalCoord2f >= 0)
181496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_EvalCoord2f] = (_glapi_proc)_mesa_marshal_EvalCoord2f;
181596c5ddc4Srjs   if (_gloffset_EvalCoord2fv >= 0)
181696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_EvalCoord2fv] = (_glapi_proc)_mesa_marshal_EvalCoord2fv;
181796c5ddc4Srjs   if (_gloffset_EvalMesh1 >= 0)
181896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_EvalMesh1] = (_glapi_proc)_mesa_marshal_EvalMesh1;
181996c5ddc4Srjs   if (_gloffset_EvalPoint1 >= 0)
182096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_EvalPoint1] = (_glapi_proc)_mesa_marshal_EvalPoint1;
182196c5ddc4Srjs   if (_gloffset_EvalMesh2 >= 0)
182296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_EvalMesh2] = (_glapi_proc)_mesa_marshal_EvalMesh2;
182396c5ddc4Srjs   if (_gloffset_EvalPoint2 >= 0)
182496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_EvalPoint2] = (_glapi_proc)_mesa_marshal_EvalPoint2;
182596c5ddc4Srjs   if (_gloffset_AlphaFunc >= 0)
182696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_AlphaFunc] = (_glapi_proc)_mesa_marshal_AlphaFunc;
182796c5ddc4Srjs   if (_gloffset_BlendFunc >= 0)
182896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BlendFunc] = (_glapi_proc)_mesa_marshal_BlendFunc;
182996c5ddc4Srjs   if (_gloffset_LogicOp >= 0)
183096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_LogicOp] = (_glapi_proc)_mesa_marshal_LogicOp;
183196c5ddc4Srjs   if (_gloffset_StencilFunc >= 0)
183296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_StencilFunc] = (_glapi_proc)_mesa_marshal_StencilFunc;
183396c5ddc4Srjs   if (_gloffset_StencilOp >= 0)
183496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_StencilOp] = (_glapi_proc)_mesa_marshal_StencilOp;
183596c5ddc4Srjs   if (_gloffset_DepthFunc >= 0)
183696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DepthFunc] = (_glapi_proc)_mesa_marshal_DepthFunc;
183796c5ddc4Srjs   if (_gloffset_PixelZoom >= 0)
183896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PixelZoom] = (_glapi_proc)_mesa_marshal_PixelZoom;
183996c5ddc4Srjs   if (_gloffset_PixelTransferf >= 0)
184096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PixelTransferf] = (_glapi_proc)_mesa_marshal_PixelTransferf;
184196c5ddc4Srjs   if (_gloffset_PixelTransferi >= 0)
184296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PixelTransferi] = (_glapi_proc)_mesa_marshal_PixelTransferi;
184396c5ddc4Srjs   if (_gloffset_PixelStoref >= 0)
184496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PixelStoref] = (_glapi_proc)_mesa_marshal_PixelStoref;
184596c5ddc4Srjs   if (_gloffset_PixelStorei >= 0)
184696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PixelStorei] = (_glapi_proc)_mesa_marshal_PixelStorei;
184796c5ddc4Srjs   if (_gloffset_PixelMapfv >= 0)
184896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PixelMapfv] = (_glapi_proc)_mesa_marshal_PixelMapfv;
184996c5ddc4Srjs   if (_gloffset_PixelMapuiv >= 0)
185096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PixelMapuiv] = (_glapi_proc)_mesa_marshal_PixelMapuiv;
185196c5ddc4Srjs   if (_gloffset_PixelMapusv >= 0)
185296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PixelMapusv] = (_glapi_proc)_mesa_marshal_PixelMapusv;
185396c5ddc4Srjs   if (_gloffset_ReadBuffer >= 0)
185496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ReadBuffer] = (_glapi_proc)_mesa_marshal_ReadBuffer;
185596c5ddc4Srjs   if (_gloffset_CopyPixels >= 0)
185696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CopyPixels] = (_glapi_proc)_mesa_marshal_CopyPixels;
185796c5ddc4Srjs   if (_gloffset_ReadPixels >= 0)
185896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ReadPixels] = (_glapi_proc)_mesa_marshal_ReadPixels;
185996c5ddc4Srjs   if (_gloffset_DrawPixels >= 0)
186096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DrawPixels] = (_glapi_proc)_mesa_marshal_DrawPixels;
186196c5ddc4Srjs   if (_gloffset_GetBooleanv >= 0)
186296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetBooleanv] = (_glapi_proc)_mesa_marshal_GetBooleanv;
186396c5ddc4Srjs   if (_gloffset_GetClipPlane >= 0)
186496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetClipPlane] = (_glapi_proc)_mesa_marshal_GetClipPlane;
186596c5ddc4Srjs   if (_gloffset_GetDoublev >= 0)
186696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetDoublev] = (_glapi_proc)_mesa_marshal_GetDoublev;
186796c5ddc4Srjs   if (_gloffset_GetError >= 0)
186896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetError] = (_glapi_proc)_mesa_marshal_GetError;
186996c5ddc4Srjs   if (_gloffset_GetFloatv >= 0)
187096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetFloatv] = (_glapi_proc)_mesa_marshal_GetFloatv;
187196c5ddc4Srjs   if (_gloffset_GetIntegerv >= 0)
187296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetIntegerv] = (_glapi_proc)_mesa_marshal_GetIntegerv;
187396c5ddc4Srjs   if (_gloffset_GetLightfv >= 0)
187496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetLightfv] = (_glapi_proc)_mesa_marshal_GetLightfv;
187596c5ddc4Srjs   if (_gloffset_GetLightiv >= 0)
187696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetLightiv] = (_glapi_proc)_mesa_marshal_GetLightiv;
187796c5ddc4Srjs   if (_gloffset_GetMapdv >= 0)
187896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetMapdv] = (_glapi_proc)_mesa_marshal_GetMapdv;
187996c5ddc4Srjs   if (_gloffset_GetMapfv >= 0)
188096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetMapfv] = (_glapi_proc)_mesa_marshal_GetMapfv;
188196c5ddc4Srjs   if (_gloffset_GetMapiv >= 0)
188296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetMapiv] = (_glapi_proc)_mesa_marshal_GetMapiv;
188396c5ddc4Srjs   if (_gloffset_GetMaterialfv >= 0)
188496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetMaterialfv] = (_glapi_proc)_mesa_marshal_GetMaterialfv;
188596c5ddc4Srjs   if (_gloffset_GetMaterialiv >= 0)
188696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetMaterialiv] = (_glapi_proc)_mesa_marshal_GetMaterialiv;
188796c5ddc4Srjs   if (_gloffset_GetPixelMapfv >= 0)
188896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetPixelMapfv] = (_glapi_proc)_mesa_marshal_GetPixelMapfv;
188996c5ddc4Srjs   if (_gloffset_GetPixelMapuiv >= 0)
189096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetPixelMapuiv] = (_glapi_proc)_mesa_marshal_GetPixelMapuiv;
189196c5ddc4Srjs   if (_gloffset_GetPixelMapusv >= 0)
189296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetPixelMapusv] = (_glapi_proc)_mesa_marshal_GetPixelMapusv;
189396c5ddc4Srjs   if (_gloffset_GetPolygonStipple >= 0)
189496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetPolygonStipple] = (_glapi_proc)_mesa_marshal_GetPolygonStipple;
189596c5ddc4Srjs   if (_gloffset_GetString >= 0)
189696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetString] = (_glapi_proc)_mesa_marshal_GetString;
189796c5ddc4Srjs   if (_gloffset_GetTexEnvfv >= 0)
189896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetTexEnvfv] = (_glapi_proc)_mesa_marshal_GetTexEnvfv;
189996c5ddc4Srjs   if (_gloffset_GetTexEnviv >= 0)
190096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetTexEnviv] = (_glapi_proc)_mesa_marshal_GetTexEnviv;
190196c5ddc4Srjs   if (_gloffset_GetTexGendv >= 0)
190296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetTexGendv] = (_glapi_proc)_mesa_marshal_GetTexGendv;
190396c5ddc4Srjs   if (_gloffset_GetTexGenfv >= 0)
190496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetTexGenfv] = (_glapi_proc)_mesa_marshal_GetTexGenfv;
190596c5ddc4Srjs   if (_gloffset_GetTexGeniv >= 0)
190696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetTexGeniv] = (_glapi_proc)_mesa_marshal_GetTexGeniv;
190796c5ddc4Srjs   if (_gloffset_GetTexImage >= 0)
190896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetTexImage] = (_glapi_proc)_mesa_marshal_GetTexImage;
190996c5ddc4Srjs   if (_gloffset_GetTexParameterfv >= 0)
191096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetTexParameterfv] = (_glapi_proc)_mesa_marshal_GetTexParameterfv;
191196c5ddc4Srjs   if (_gloffset_GetTexParameteriv >= 0)
191296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetTexParameteriv] = (_glapi_proc)_mesa_marshal_GetTexParameteriv;
191396c5ddc4Srjs   if (_gloffset_GetTexLevelParameterfv >= 0)
191496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetTexLevelParameterfv] = (_glapi_proc)_mesa_marshal_GetTexLevelParameterfv;
191596c5ddc4Srjs   if (_gloffset_GetTexLevelParameteriv >= 0)
191696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetTexLevelParameteriv] = (_glapi_proc)_mesa_marshal_GetTexLevelParameteriv;
191796c5ddc4Srjs   if (_gloffset_IsEnabled >= 0)
191896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_IsEnabled] = (_glapi_proc)_mesa_marshal_IsEnabled;
191996c5ddc4Srjs   if (_gloffset_IsList >= 0)
192096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_IsList] = (_glapi_proc)_mesa_marshal_IsList;
192196c5ddc4Srjs   if (_gloffset_DepthRange >= 0)
192296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DepthRange] = (_glapi_proc)_mesa_marshal_DepthRange;
192396c5ddc4Srjs   if (_gloffset_Frustum >= 0)
192496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Frustum] = (_glapi_proc)_mesa_marshal_Frustum;
192596c5ddc4Srjs   if (_gloffset_LoadIdentity >= 0)
192696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_LoadIdentity] = (_glapi_proc)_mesa_marshal_LoadIdentity;
192796c5ddc4Srjs   if (_gloffset_LoadMatrixf >= 0)
192896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_LoadMatrixf] = (_glapi_proc)_mesa_marshal_LoadMatrixf;
192996c5ddc4Srjs   if (_gloffset_LoadMatrixd >= 0)
193096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_LoadMatrixd] = (_glapi_proc)_mesa_marshal_LoadMatrixd;
193196c5ddc4Srjs   if (_gloffset_MatrixMode >= 0)
193296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MatrixMode] = (_glapi_proc)_mesa_marshal_MatrixMode;
193396c5ddc4Srjs   if (_gloffset_MultMatrixf >= 0)
193496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultMatrixf] = (_glapi_proc)_mesa_marshal_MultMatrixf;
193596c5ddc4Srjs   if (_gloffset_MultMatrixd >= 0)
193696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultMatrixd] = (_glapi_proc)_mesa_marshal_MultMatrixd;
193796c5ddc4Srjs   if (_gloffset_Ortho >= 0)
193896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Ortho] = (_glapi_proc)_mesa_marshal_Ortho;
193996c5ddc4Srjs   if (_gloffset_PopMatrix >= 0)
194096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PopMatrix] = (_glapi_proc)_mesa_marshal_PopMatrix;
194196c5ddc4Srjs   if (_gloffset_PushMatrix >= 0)
194296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PushMatrix] = (_glapi_proc)_mesa_marshal_PushMatrix;
194396c5ddc4Srjs   if (_gloffset_Rotated >= 0)
194496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Rotated] = (_glapi_proc)_mesa_marshal_Rotated;
194596c5ddc4Srjs   if (_gloffset_Rotatef >= 0)
194696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Rotatef] = (_glapi_proc)_mesa_marshal_Rotatef;
194796c5ddc4Srjs   if (_gloffset_Scaled >= 0)
194896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Scaled] = (_glapi_proc)_mesa_marshal_Scaled;
194996c5ddc4Srjs   if (_gloffset_Scalef >= 0)
195096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Scalef] = (_glapi_proc)_mesa_marshal_Scalef;
195196c5ddc4Srjs   if (_gloffset_Translated >= 0)
195296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Translated] = (_glapi_proc)_mesa_marshal_Translated;
195396c5ddc4Srjs   if (_gloffset_Translatef >= 0)
195496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Translatef] = (_glapi_proc)_mesa_marshal_Translatef;
195596c5ddc4Srjs   if (_gloffset_Viewport >= 0)
195696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Viewport] = (_glapi_proc)_mesa_marshal_Viewport;
195796c5ddc4Srjs   if (_gloffset_ArrayElement >= 0)
195896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ArrayElement] = (_glapi_proc)_mesa_marshal_ArrayElement;
195996c5ddc4Srjs   if (_gloffset_ColorPointer >= 0)
196096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ColorPointer] = (_glapi_proc)_mesa_marshal_ColorPointer;
196196c5ddc4Srjs   if (_gloffset_DisableClientState >= 0)
196296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DisableClientState] = (_glapi_proc)_mesa_marshal_DisableClientState;
196396c5ddc4Srjs   if (_gloffset_DrawArrays >= 0)
196496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DrawArrays] = (_glapi_proc)_mesa_marshal_DrawArrays;
196596c5ddc4Srjs   if (_gloffset_DrawElements >= 0)
196696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DrawElements] = (_glapi_proc)_mesa_marshal_DrawElements;
196796c5ddc4Srjs   if (_gloffset_EdgeFlagPointer >= 0)
196896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_EdgeFlagPointer] = (_glapi_proc)_mesa_marshal_EdgeFlagPointer;
196996c5ddc4Srjs   if (_gloffset_EnableClientState >= 0)
197096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_EnableClientState] = (_glapi_proc)_mesa_marshal_EnableClientState;
197196c5ddc4Srjs   if (_gloffset_GetPointerv >= 0)
197296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetPointerv] = (_glapi_proc)_mesa_marshal_GetPointerv;
197396c5ddc4Srjs   if (_gloffset_IndexPointer >= 0)
197496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_IndexPointer] = (_glapi_proc)_mesa_marshal_IndexPointer;
197596c5ddc4Srjs   if (_gloffset_InterleavedArrays >= 0)
197696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_InterleavedArrays] = (_glapi_proc)_mesa_marshal_InterleavedArrays;
197796c5ddc4Srjs   if (_gloffset_NormalPointer >= 0)
197896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NormalPointer] = (_glapi_proc)_mesa_marshal_NormalPointer;
197996c5ddc4Srjs   if (_gloffset_TexCoordPointer >= 0)
198096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoordPointer] = (_glapi_proc)_mesa_marshal_TexCoordPointer;
198196c5ddc4Srjs   if (_gloffset_VertexPointer >= 0)
198296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexPointer] = (_glapi_proc)_mesa_marshal_VertexPointer;
198396c5ddc4Srjs   if (_gloffset_PolygonOffset >= 0)
198496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PolygonOffset] = (_glapi_proc)_mesa_marshal_PolygonOffset;
198596c5ddc4Srjs   if (_gloffset_CopyTexImage1D >= 0)
198696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CopyTexImage1D] = (_glapi_proc)_mesa_marshal_CopyTexImage1D;
198796c5ddc4Srjs   if (_gloffset_CopyTexImage2D >= 0)
198896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CopyTexImage2D] = (_glapi_proc)_mesa_marshal_CopyTexImage2D;
198996c5ddc4Srjs   if (_gloffset_CopyTexSubImage1D >= 0)
199096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CopyTexSubImage1D] = (_glapi_proc)_mesa_marshal_CopyTexSubImage1D;
199196c5ddc4Srjs   if (_gloffset_CopyTexSubImage2D >= 0)
199296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CopyTexSubImage2D] = (_glapi_proc)_mesa_marshal_CopyTexSubImage2D;
199396c5ddc4Srjs   if (_gloffset_TexSubImage1D >= 0)
199496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexSubImage1D] = (_glapi_proc)_mesa_marshal_TexSubImage1D;
199596c5ddc4Srjs   if (_gloffset_TexSubImage2D >= 0)
199696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexSubImage2D] = (_glapi_proc)_mesa_marshal_TexSubImage2D;
199796c5ddc4Srjs   if (_gloffset_AreTexturesResident >= 0)
199896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_AreTexturesResident] = (_glapi_proc)_mesa_marshal_AreTexturesResident;
199996c5ddc4Srjs   if (_gloffset_BindTexture >= 0)
200096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BindTexture] = (_glapi_proc)_mesa_marshal_BindTexture;
200196c5ddc4Srjs   if (_gloffset_DeleteTextures >= 0)
200296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DeleteTextures] = (_glapi_proc)_mesa_marshal_DeleteTextures;
200396c5ddc4Srjs   if (_gloffset_GenTextures >= 0)
200496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GenTextures] = (_glapi_proc)_mesa_marshal_GenTextures;
200596c5ddc4Srjs   if (_gloffset_IsTexture >= 0)
200696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_IsTexture] = (_glapi_proc)_mesa_marshal_IsTexture;
200796c5ddc4Srjs   if (_gloffset_PrioritizeTextures >= 0)
200896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PrioritizeTextures] = (_glapi_proc)_mesa_marshal_PrioritizeTextures;
200996c5ddc4Srjs   if (_gloffset_Indexub >= 0)
201096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Indexub] = (_glapi_proc)_mesa_marshal_Indexub;
201196c5ddc4Srjs   if (_gloffset_Indexubv >= 0)
201296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Indexubv] = (_glapi_proc)_mesa_marshal_Indexubv;
201396c5ddc4Srjs   if (_gloffset_PopClientAttrib >= 0)
201496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PopClientAttrib] = (_glapi_proc)_mesa_marshal_PopClientAttrib;
201596c5ddc4Srjs   if (_gloffset_PushClientAttrib >= 0)
201696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PushClientAttrib] = (_glapi_proc)_mesa_marshal_PushClientAttrib;
201796c5ddc4Srjs   if (_gloffset_BlendColor >= 0)
201896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BlendColor] = (_glapi_proc)_mesa_marshal_BlendColor;
201996c5ddc4Srjs   if (_gloffset_BlendEquation >= 0)
202096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BlendEquation] = (_glapi_proc)_mesa_marshal_BlendEquation;
202196c5ddc4Srjs   if (_gloffset_DrawRangeElements >= 0)
202296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DrawRangeElements] = (_glapi_proc)_mesa_marshal_DrawRangeElements;
202396c5ddc4Srjs   if (_gloffset_ColorTable >= 0)
202496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ColorTable] = (_glapi_proc)_mesa_marshal_ColorTable;
202596c5ddc4Srjs   if (_gloffset_ColorTableParameterfv >= 0)
202696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ColorTableParameterfv] = (_glapi_proc)_mesa_marshal_ColorTableParameterfv;
202796c5ddc4Srjs   if (_gloffset_ColorTableParameteriv >= 0)
202896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ColorTableParameteriv] = (_glapi_proc)_mesa_marshal_ColorTableParameteriv;
202996c5ddc4Srjs   if (_gloffset_CopyColorTable >= 0)
203096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CopyColorTable] = (_glapi_proc)_mesa_marshal_CopyColorTable;
203196c5ddc4Srjs   if (_gloffset_GetColorTable >= 0)
203296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetColorTable] = (_glapi_proc)_mesa_marshal_GetColorTable;
203396c5ddc4Srjs   if (_gloffset_GetColorTableParameterfv >= 0)
203496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetColorTableParameterfv] = (_glapi_proc)_mesa_marshal_GetColorTableParameterfv;
203596c5ddc4Srjs   if (_gloffset_GetColorTableParameteriv >= 0)
203696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetColorTableParameteriv] = (_glapi_proc)_mesa_marshal_GetColorTableParameteriv;
203796c5ddc4Srjs   if (_gloffset_ColorSubTable >= 0)
203896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ColorSubTable] = (_glapi_proc)_mesa_marshal_ColorSubTable;
203996c5ddc4Srjs   if (_gloffset_CopyColorSubTable >= 0)
204096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CopyColorSubTable] = (_glapi_proc)_mesa_marshal_CopyColorSubTable;
204196c5ddc4Srjs   if (_gloffset_ConvolutionFilter1D >= 0)
204296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ConvolutionFilter1D] = (_glapi_proc)_mesa_marshal_ConvolutionFilter1D;
204396c5ddc4Srjs   if (_gloffset_ConvolutionFilter2D >= 0)
204496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ConvolutionFilter2D] = (_glapi_proc)_mesa_marshal_ConvolutionFilter2D;
204596c5ddc4Srjs   if (_gloffset_ConvolutionParameterf >= 0)
204696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ConvolutionParameterf] = (_glapi_proc)_mesa_marshal_ConvolutionParameterf;
204796c5ddc4Srjs   if (_gloffset_ConvolutionParameterfv >= 0)
204896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ConvolutionParameterfv] = (_glapi_proc)_mesa_marshal_ConvolutionParameterfv;
204996c5ddc4Srjs   if (_gloffset_ConvolutionParameteri >= 0)
205096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ConvolutionParameteri] = (_glapi_proc)_mesa_marshal_ConvolutionParameteri;
205196c5ddc4Srjs   if (_gloffset_ConvolutionParameteriv >= 0)
205296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ConvolutionParameteriv] = (_glapi_proc)_mesa_marshal_ConvolutionParameteriv;
205396c5ddc4Srjs   if (_gloffset_CopyConvolutionFilter1D >= 0)
205496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CopyConvolutionFilter1D] = (_glapi_proc)_mesa_marshal_CopyConvolutionFilter1D;
205596c5ddc4Srjs   if (_gloffset_CopyConvolutionFilter2D >= 0)
205696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CopyConvolutionFilter2D] = (_glapi_proc)_mesa_marshal_CopyConvolutionFilter2D;
205796c5ddc4Srjs   if (_gloffset_GetConvolutionFilter >= 0)
205896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetConvolutionFilter] = (_glapi_proc)_mesa_marshal_GetConvolutionFilter;
205996c5ddc4Srjs   if (_gloffset_GetConvolutionParameterfv >= 0)
206096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetConvolutionParameterfv] = (_glapi_proc)_mesa_marshal_GetConvolutionParameterfv;
206196c5ddc4Srjs   if (_gloffset_GetConvolutionParameteriv >= 0)
206296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetConvolutionParameteriv] = (_glapi_proc)_mesa_marshal_GetConvolutionParameteriv;
206396c5ddc4Srjs   if (_gloffset_GetSeparableFilter >= 0)
206496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetSeparableFilter] = (_glapi_proc)_mesa_marshal_GetSeparableFilter;
206596c5ddc4Srjs   if (_gloffset_SeparableFilter2D >= 0)
206696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_SeparableFilter2D] = (_glapi_proc)_mesa_marshal_SeparableFilter2D;
206796c5ddc4Srjs   if (_gloffset_GetHistogram >= 0)
206896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetHistogram] = (_glapi_proc)_mesa_marshal_GetHistogram;
206996c5ddc4Srjs   if (_gloffset_GetHistogramParameterfv >= 0)
207096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetHistogramParameterfv] = (_glapi_proc)_mesa_marshal_GetHistogramParameterfv;
207196c5ddc4Srjs   if (_gloffset_GetHistogramParameteriv >= 0)
207296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetHistogramParameteriv] = (_glapi_proc)_mesa_marshal_GetHistogramParameteriv;
207396c5ddc4Srjs   if (_gloffset_GetMinmax >= 0)
207496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetMinmax] = (_glapi_proc)_mesa_marshal_GetMinmax;
207596c5ddc4Srjs   if (_gloffset_GetMinmaxParameterfv >= 0)
207696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetMinmaxParameterfv] = (_glapi_proc)_mesa_marshal_GetMinmaxParameterfv;
207796c5ddc4Srjs   if (_gloffset_GetMinmaxParameteriv >= 0)
207896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetMinmaxParameteriv] = (_glapi_proc)_mesa_marshal_GetMinmaxParameteriv;
207996c5ddc4Srjs   if (_gloffset_Histogram >= 0)
208096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Histogram] = (_glapi_proc)_mesa_marshal_Histogram;
208196c5ddc4Srjs   if (_gloffset_Minmax >= 0)
208296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Minmax] = (_glapi_proc)_mesa_marshal_Minmax;
208396c5ddc4Srjs   if (_gloffset_ResetHistogram >= 0)
208496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ResetHistogram] = (_glapi_proc)_mesa_marshal_ResetHistogram;
208596c5ddc4Srjs   if (_gloffset_ResetMinmax >= 0)
208696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ResetMinmax] = (_glapi_proc)_mesa_marshal_ResetMinmax;
208796c5ddc4Srjs   if (_gloffset_TexImage3D >= 0)
208896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexImage3D] = (_glapi_proc)_mesa_marshal_TexImage3D;
208996c5ddc4Srjs   if (_gloffset_TexSubImage3D >= 0)
209096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexSubImage3D] = (_glapi_proc)_mesa_marshal_TexSubImage3D;
209196c5ddc4Srjs   if (_gloffset_CopyTexSubImage3D >= 0)
209296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CopyTexSubImage3D] = (_glapi_proc)_mesa_marshal_CopyTexSubImage3D;
209396c5ddc4Srjs   if (_gloffset_ActiveTexture >= 0)
209496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ActiveTexture] = (_glapi_proc)_mesa_marshal_ActiveTexture;
209596c5ddc4Srjs   if (_gloffset_ClientActiveTexture >= 0)
209696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ClientActiveTexture] = (_glapi_proc)_mesa_marshal_ClientActiveTexture;
209796c5ddc4Srjs   if (_gloffset_MultiTexCoord1d >= 0)
209896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord1d] = (_glapi_proc)_mesa_marshal_MultiTexCoord1d;
209996c5ddc4Srjs   if (_gloffset_MultiTexCoord1dv >= 0)
210096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord1dv] = (_glapi_proc)_mesa_marshal_MultiTexCoord1dv;
210196c5ddc4Srjs   if (_gloffset_MultiTexCoord1fARB >= 0)
210296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord1fARB] = (_glapi_proc)_mesa_marshal_MultiTexCoord1fARB;
210396c5ddc4Srjs   if (_gloffset_MultiTexCoord1fvARB >= 0)
210496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord1fvARB] = (_glapi_proc)_mesa_marshal_MultiTexCoord1fvARB;
210596c5ddc4Srjs   if (_gloffset_MultiTexCoord1i >= 0)
210696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord1i] = (_glapi_proc)_mesa_marshal_MultiTexCoord1i;
210796c5ddc4Srjs   if (_gloffset_MultiTexCoord1iv >= 0)
210896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord1iv] = (_glapi_proc)_mesa_marshal_MultiTexCoord1iv;
210996c5ddc4Srjs   if (_gloffset_MultiTexCoord1s >= 0)
211096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord1s] = (_glapi_proc)_mesa_marshal_MultiTexCoord1s;
211196c5ddc4Srjs   if (_gloffset_MultiTexCoord1sv >= 0)
211296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord1sv] = (_glapi_proc)_mesa_marshal_MultiTexCoord1sv;
211396c5ddc4Srjs   if (_gloffset_MultiTexCoord2d >= 0)
211496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord2d] = (_glapi_proc)_mesa_marshal_MultiTexCoord2d;
211596c5ddc4Srjs   if (_gloffset_MultiTexCoord2dv >= 0)
211696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord2dv] = (_glapi_proc)_mesa_marshal_MultiTexCoord2dv;
211796c5ddc4Srjs   if (_gloffset_MultiTexCoord2fARB >= 0)
211896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord2fARB] = (_glapi_proc)_mesa_marshal_MultiTexCoord2fARB;
211996c5ddc4Srjs   if (_gloffset_MultiTexCoord2fvARB >= 0)
212096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord2fvARB] = (_glapi_proc)_mesa_marshal_MultiTexCoord2fvARB;
212196c5ddc4Srjs   if (_gloffset_MultiTexCoord2i >= 0)
212296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord2i] = (_glapi_proc)_mesa_marshal_MultiTexCoord2i;
212396c5ddc4Srjs   if (_gloffset_MultiTexCoord2iv >= 0)
212496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord2iv] = (_glapi_proc)_mesa_marshal_MultiTexCoord2iv;
212596c5ddc4Srjs   if (_gloffset_MultiTexCoord2s >= 0)
212696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord2s] = (_glapi_proc)_mesa_marshal_MultiTexCoord2s;
212796c5ddc4Srjs   if (_gloffset_MultiTexCoord2sv >= 0)
212896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord2sv] = (_glapi_proc)_mesa_marshal_MultiTexCoord2sv;
212996c5ddc4Srjs   if (_gloffset_MultiTexCoord3d >= 0)
213096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord3d] = (_glapi_proc)_mesa_marshal_MultiTexCoord3d;
213196c5ddc4Srjs   if (_gloffset_MultiTexCoord3dv >= 0)
213296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord3dv] = (_glapi_proc)_mesa_marshal_MultiTexCoord3dv;
213396c5ddc4Srjs   if (_gloffset_MultiTexCoord3fARB >= 0)
213496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord3fARB] = (_glapi_proc)_mesa_marshal_MultiTexCoord3fARB;
213596c5ddc4Srjs   if (_gloffset_MultiTexCoord3fvARB >= 0)
213696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord3fvARB] = (_glapi_proc)_mesa_marshal_MultiTexCoord3fvARB;
213796c5ddc4Srjs   if (_gloffset_MultiTexCoord3i >= 0)
213896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord3i] = (_glapi_proc)_mesa_marshal_MultiTexCoord3i;
213996c5ddc4Srjs   if (_gloffset_MultiTexCoord3iv >= 0)
214096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord3iv] = (_glapi_proc)_mesa_marshal_MultiTexCoord3iv;
214196c5ddc4Srjs   if (_gloffset_MultiTexCoord3s >= 0)
214296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord3s] = (_glapi_proc)_mesa_marshal_MultiTexCoord3s;
214396c5ddc4Srjs   if (_gloffset_MultiTexCoord3sv >= 0)
214496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord3sv] = (_glapi_proc)_mesa_marshal_MultiTexCoord3sv;
214596c5ddc4Srjs   if (_gloffset_MultiTexCoord4d >= 0)
214696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord4d] = (_glapi_proc)_mesa_marshal_MultiTexCoord4d;
214796c5ddc4Srjs   if (_gloffset_MultiTexCoord4dv >= 0)
214896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord4dv] = (_glapi_proc)_mesa_marshal_MultiTexCoord4dv;
214996c5ddc4Srjs   if (_gloffset_MultiTexCoord4fARB >= 0)
215096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord4fARB] = (_glapi_proc)_mesa_marshal_MultiTexCoord4fARB;
215196c5ddc4Srjs   if (_gloffset_MultiTexCoord4fvARB >= 0)
215296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord4fvARB] = (_glapi_proc)_mesa_marshal_MultiTexCoord4fvARB;
215396c5ddc4Srjs   if (_gloffset_MultiTexCoord4i >= 0)
215496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord4i] = (_glapi_proc)_mesa_marshal_MultiTexCoord4i;
215596c5ddc4Srjs   if (_gloffset_MultiTexCoord4iv >= 0)
215696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord4iv] = (_glapi_proc)_mesa_marshal_MultiTexCoord4iv;
215796c5ddc4Srjs   if (_gloffset_MultiTexCoord4s >= 0)
215896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord4s] = (_glapi_proc)_mesa_marshal_MultiTexCoord4s;
215996c5ddc4Srjs   if (_gloffset_MultiTexCoord4sv >= 0)
216096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord4sv] = (_glapi_proc)_mesa_marshal_MultiTexCoord4sv;
216196c5ddc4Srjs   if (_gloffset_LoadTransposeMatrixf >= 0)
216296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_LoadTransposeMatrixf] = (_glapi_proc)_mesa_marshal_LoadTransposeMatrixf;
216396c5ddc4Srjs   if (_gloffset_LoadTransposeMatrixd >= 0)
216496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_LoadTransposeMatrixd] = (_glapi_proc)_mesa_marshal_LoadTransposeMatrixd;
216596c5ddc4Srjs   if (_gloffset_MultTransposeMatrixf >= 0)
216696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultTransposeMatrixf] = (_glapi_proc)_mesa_marshal_MultTransposeMatrixf;
216796c5ddc4Srjs   if (_gloffset_MultTransposeMatrixd >= 0)
216896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultTransposeMatrixd] = (_glapi_proc)_mesa_marshal_MultTransposeMatrixd;
216996c5ddc4Srjs   if (_gloffset_SampleCoverage >= 0)
217096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_SampleCoverage] = (_glapi_proc)_mesa_marshal_SampleCoverage;
217196c5ddc4Srjs   if (_gloffset_CompressedTexImage3D >= 0)
217296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CompressedTexImage3D] = (_glapi_proc)_mesa_marshal_CompressedTexImage3D;
217396c5ddc4Srjs   if (_gloffset_CompressedTexImage2D >= 0)
217496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CompressedTexImage2D] = (_glapi_proc)_mesa_marshal_CompressedTexImage2D;
217596c5ddc4Srjs   if (_gloffset_CompressedTexImage1D >= 0)
217696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CompressedTexImage1D] = (_glapi_proc)_mesa_marshal_CompressedTexImage1D;
217796c5ddc4Srjs   if (_gloffset_CompressedTexSubImage3D >= 0)
217896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CompressedTexSubImage3D] = (_glapi_proc)_mesa_marshal_CompressedTexSubImage3D;
217996c5ddc4Srjs   if (_gloffset_CompressedTexSubImage2D >= 0)
218096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CompressedTexSubImage2D] = (_glapi_proc)_mesa_marshal_CompressedTexSubImage2D;
218196c5ddc4Srjs   if (_gloffset_CompressedTexSubImage1D >= 0)
218296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CompressedTexSubImage1D] = (_glapi_proc)_mesa_marshal_CompressedTexSubImage1D;
218396c5ddc4Srjs   if (_gloffset_GetCompressedTexImage >= 0)
218496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetCompressedTexImage] = (_glapi_proc)_mesa_marshal_GetCompressedTexImage;
218596c5ddc4Srjs   if (_gloffset_BlendFuncSeparate >= 0)
218696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BlendFuncSeparate] = (_glapi_proc)_mesa_marshal_BlendFuncSeparate;
218796c5ddc4Srjs   if (_gloffset_FogCoordfEXT >= 0)
218896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_FogCoordfEXT] = (_glapi_proc)_mesa_marshal_FogCoordfEXT;
218996c5ddc4Srjs   if (_gloffset_FogCoordfvEXT >= 0)
219096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_FogCoordfvEXT] = (_glapi_proc)_mesa_marshal_FogCoordfvEXT;
219196c5ddc4Srjs   if (_gloffset_FogCoordd >= 0)
219296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_FogCoordd] = (_glapi_proc)_mesa_marshal_FogCoordd;
219396c5ddc4Srjs   if (_gloffset_FogCoorddv >= 0)
219496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_FogCoorddv] = (_glapi_proc)_mesa_marshal_FogCoorddv;
219596c5ddc4Srjs   if (_gloffset_FogCoordPointer >= 0)
219696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_FogCoordPointer] = (_glapi_proc)_mesa_marshal_FogCoordPointer;
219796c5ddc4Srjs   if (_gloffset_MultiDrawArrays >= 0)
219896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiDrawArrays] = (_glapi_proc)_mesa_marshal_MultiDrawArrays;
219996c5ddc4Srjs   if (_gloffset_MultiDrawElementsEXT >= 0)
220096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiDrawElementsEXT] = (_glapi_proc)_mesa_marshal_MultiDrawElementsEXT;
220196c5ddc4Srjs   if (_gloffset_PointParameterf >= 0)
220296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PointParameterf] = (_glapi_proc)_mesa_marshal_PointParameterf;
220396c5ddc4Srjs   if (_gloffset_PointParameterfv >= 0)
220496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PointParameterfv] = (_glapi_proc)_mesa_marshal_PointParameterfv;
220596c5ddc4Srjs   if (_gloffset_PointParameteri >= 0)
220696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PointParameteri] = (_glapi_proc)_mesa_marshal_PointParameteri;
220796c5ddc4Srjs   if (_gloffset_PointParameteriv >= 0)
220896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PointParameteriv] = (_glapi_proc)_mesa_marshal_PointParameteriv;
220996c5ddc4Srjs   if (_gloffset_SecondaryColor3b >= 0)
221096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_SecondaryColor3b] = (_glapi_proc)_mesa_marshal_SecondaryColor3b;
221196c5ddc4Srjs   if (_gloffset_SecondaryColor3bv >= 0)
221296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_SecondaryColor3bv] = (_glapi_proc)_mesa_marshal_SecondaryColor3bv;
221396c5ddc4Srjs   if (_gloffset_SecondaryColor3d >= 0)
221496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_SecondaryColor3d] = (_glapi_proc)_mesa_marshal_SecondaryColor3d;
221596c5ddc4Srjs   if (_gloffset_SecondaryColor3dv >= 0)
221696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_SecondaryColor3dv] = (_glapi_proc)_mesa_marshal_SecondaryColor3dv;
221796c5ddc4Srjs   if (_gloffset_SecondaryColor3fEXT >= 0)
221896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_SecondaryColor3fEXT] = (_glapi_proc)_mesa_marshal_SecondaryColor3fEXT;
221996c5ddc4Srjs   if (_gloffset_SecondaryColor3fvEXT >= 0)
222096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_SecondaryColor3fvEXT] = (_glapi_proc)_mesa_marshal_SecondaryColor3fvEXT;
222196c5ddc4Srjs   if (_gloffset_SecondaryColor3i >= 0)
222296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_SecondaryColor3i] = (_glapi_proc)_mesa_marshal_SecondaryColor3i;
222396c5ddc4Srjs   if (_gloffset_SecondaryColor3iv >= 0)
222496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_SecondaryColor3iv] = (_glapi_proc)_mesa_marshal_SecondaryColor3iv;
222596c5ddc4Srjs   if (_gloffset_SecondaryColor3s >= 0)
222696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_SecondaryColor3s] = (_glapi_proc)_mesa_marshal_SecondaryColor3s;
222796c5ddc4Srjs   if (_gloffset_SecondaryColor3sv >= 0)
222896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_SecondaryColor3sv] = (_glapi_proc)_mesa_marshal_SecondaryColor3sv;
222996c5ddc4Srjs   if (_gloffset_SecondaryColor3ub >= 0)
223096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_SecondaryColor3ub] = (_glapi_proc)_mesa_marshal_SecondaryColor3ub;
223196c5ddc4Srjs   if (_gloffset_SecondaryColor3ubv >= 0)
223296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_SecondaryColor3ubv] = (_glapi_proc)_mesa_marshal_SecondaryColor3ubv;
223396c5ddc4Srjs   if (_gloffset_SecondaryColor3ui >= 0)
223496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_SecondaryColor3ui] = (_glapi_proc)_mesa_marshal_SecondaryColor3ui;
223596c5ddc4Srjs   if (_gloffset_SecondaryColor3uiv >= 0)
223696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_SecondaryColor3uiv] = (_glapi_proc)_mesa_marshal_SecondaryColor3uiv;
223796c5ddc4Srjs   if (_gloffset_SecondaryColor3us >= 0)
223896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_SecondaryColor3us] = (_glapi_proc)_mesa_marshal_SecondaryColor3us;
223996c5ddc4Srjs   if (_gloffset_SecondaryColor3usv >= 0)
224096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_SecondaryColor3usv] = (_glapi_proc)_mesa_marshal_SecondaryColor3usv;
224196c5ddc4Srjs   if (_gloffset_SecondaryColorPointer >= 0)
224296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_SecondaryColorPointer] = (_glapi_proc)_mesa_marshal_SecondaryColorPointer;
224396c5ddc4Srjs   if (_gloffset_WindowPos2d >= 0)
224496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_WindowPos2d] = (_glapi_proc)_mesa_marshal_WindowPos2d;
224596c5ddc4Srjs   if (_gloffset_WindowPos2dv >= 0)
224696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_WindowPos2dv] = (_glapi_proc)_mesa_marshal_WindowPos2dv;
224796c5ddc4Srjs   if (_gloffset_WindowPos2f >= 0)
224896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_WindowPos2f] = (_glapi_proc)_mesa_marshal_WindowPos2f;
224996c5ddc4Srjs   if (_gloffset_WindowPos2fv >= 0)
225096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_WindowPos2fv] = (_glapi_proc)_mesa_marshal_WindowPos2fv;
225196c5ddc4Srjs   if (_gloffset_WindowPos2i >= 0)
225296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_WindowPos2i] = (_glapi_proc)_mesa_marshal_WindowPos2i;
225396c5ddc4Srjs   if (_gloffset_WindowPos2iv >= 0)
225496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_WindowPos2iv] = (_glapi_proc)_mesa_marshal_WindowPos2iv;
225596c5ddc4Srjs   if (_gloffset_WindowPos2s >= 0)
225696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_WindowPos2s] = (_glapi_proc)_mesa_marshal_WindowPos2s;
225796c5ddc4Srjs   if (_gloffset_WindowPos2sv >= 0)
225896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_WindowPos2sv] = (_glapi_proc)_mesa_marshal_WindowPos2sv;
225996c5ddc4Srjs   if (_gloffset_WindowPos3d >= 0)
226096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_WindowPos3d] = (_glapi_proc)_mesa_marshal_WindowPos3d;
226196c5ddc4Srjs   if (_gloffset_WindowPos3dv >= 0)
226296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_WindowPos3dv] = (_glapi_proc)_mesa_marshal_WindowPos3dv;
226396c5ddc4Srjs   if (_gloffset_WindowPos3f >= 0)
226496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_WindowPos3f] = (_glapi_proc)_mesa_marshal_WindowPos3f;
226596c5ddc4Srjs   if (_gloffset_WindowPos3fv >= 0)
226696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_WindowPos3fv] = (_glapi_proc)_mesa_marshal_WindowPos3fv;
226796c5ddc4Srjs   if (_gloffset_WindowPos3i >= 0)
226896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_WindowPos3i] = (_glapi_proc)_mesa_marshal_WindowPos3i;
226996c5ddc4Srjs   if (_gloffset_WindowPos3iv >= 0)
227096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_WindowPos3iv] = (_glapi_proc)_mesa_marshal_WindowPos3iv;
227196c5ddc4Srjs   if (_gloffset_WindowPos3s >= 0)
227296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_WindowPos3s] = (_glapi_proc)_mesa_marshal_WindowPos3s;
227396c5ddc4Srjs   if (_gloffset_WindowPos3sv >= 0)
227496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_WindowPos3sv] = (_glapi_proc)_mesa_marshal_WindowPos3sv;
227596c5ddc4Srjs   if (_gloffset_BindBuffer >= 0)
227696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BindBuffer] = (_glapi_proc)_mesa_marshal_BindBuffer;
227796c5ddc4Srjs   if (_gloffset_BufferData >= 0)
227896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BufferData] = (_glapi_proc)_mesa_marshal_BufferData;
227996c5ddc4Srjs   if (_gloffset_BufferSubData >= 0)
228096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BufferSubData] = (_glapi_proc)_mesa_marshal_BufferSubData;
228196c5ddc4Srjs   if (_gloffset_DeleteBuffers >= 0)
228296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DeleteBuffers] = (_glapi_proc)_mesa_marshal_DeleteBuffers;
228396c5ddc4Srjs   if (_gloffset_GenBuffers >= 0)
228496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GenBuffers] = (_glapi_proc)_mesa_marshal_GenBuffers;
228596c5ddc4Srjs   if (_gloffset_GetBufferParameteriv >= 0)
228696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetBufferParameteriv] = (_glapi_proc)_mesa_marshal_GetBufferParameteriv;
228796c5ddc4Srjs   if (_gloffset_GetBufferPointerv >= 0)
228896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetBufferPointerv] = (_glapi_proc)_mesa_marshal_GetBufferPointerv;
228996c5ddc4Srjs   if (_gloffset_GetBufferSubData >= 0)
229096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetBufferSubData] = (_glapi_proc)_mesa_marshal_GetBufferSubData;
229196c5ddc4Srjs   if (_gloffset_IsBuffer >= 0)
229296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_IsBuffer] = (_glapi_proc)_mesa_marshal_IsBuffer;
229396c5ddc4Srjs   if (_gloffset_MapBuffer >= 0)
229496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MapBuffer] = (_glapi_proc)_mesa_marshal_MapBuffer;
229596c5ddc4Srjs   if (_gloffset_UnmapBuffer >= 0)
229696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_UnmapBuffer] = (_glapi_proc)_mesa_marshal_UnmapBuffer;
229796c5ddc4Srjs   if (_gloffset_GenQueries >= 0)
229896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GenQueries] = (_glapi_proc)_mesa_marshal_GenQueries;
229996c5ddc4Srjs   if (_gloffset_DeleteQueries >= 0)
230096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DeleteQueries] = (_glapi_proc)_mesa_marshal_DeleteQueries;
230196c5ddc4Srjs   if (_gloffset_IsQuery >= 0)
230296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_IsQuery] = (_glapi_proc)_mesa_marshal_IsQuery;
230396c5ddc4Srjs   if (_gloffset_BeginQuery >= 0)
230496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BeginQuery] = (_glapi_proc)_mesa_marshal_BeginQuery;
230596c5ddc4Srjs   if (_gloffset_EndQuery >= 0)
230696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_EndQuery] = (_glapi_proc)_mesa_marshal_EndQuery;
230796c5ddc4Srjs   if (_gloffset_GetQueryiv >= 0)
230896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetQueryiv] = (_glapi_proc)_mesa_marshal_GetQueryiv;
230996c5ddc4Srjs   if (_gloffset_GetQueryObjectiv >= 0)
231096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetQueryObjectiv] = (_glapi_proc)_mesa_marshal_GetQueryObjectiv;
231196c5ddc4Srjs   if (_gloffset_GetQueryObjectuiv >= 0)
231296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetQueryObjectuiv] = (_glapi_proc)_mesa_marshal_GetQueryObjectuiv;
231396c5ddc4Srjs   if (_gloffset_BlendEquationSeparate >= 0)
231496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BlendEquationSeparate] = (_glapi_proc)_mesa_marshal_BlendEquationSeparate;
231596c5ddc4Srjs   if (_gloffset_DrawBuffers >= 0)
231696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DrawBuffers] = (_glapi_proc)_mesa_marshal_DrawBuffers;
231796c5ddc4Srjs   if (_gloffset_StencilFuncSeparate >= 0)
231896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_StencilFuncSeparate] = (_glapi_proc)_mesa_marshal_StencilFuncSeparate;
231996c5ddc4Srjs   if (_gloffset_StencilOpSeparate >= 0)
232096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_StencilOpSeparate] = (_glapi_proc)_mesa_marshal_StencilOpSeparate;
232196c5ddc4Srjs   if (_gloffset_StencilMaskSeparate >= 0)
232296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_StencilMaskSeparate] = (_glapi_proc)_mesa_marshal_StencilMaskSeparate;
232396c5ddc4Srjs   if (_gloffset_AttachShader >= 0)
232496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_AttachShader] = (_glapi_proc)_mesa_marshal_AttachShader;
232596c5ddc4Srjs   if (_gloffset_BindAttribLocation >= 0)
232696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BindAttribLocation] = (_glapi_proc)_mesa_marshal_BindAttribLocation;
232796c5ddc4Srjs   if (_gloffset_CompileShader >= 0)
232896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CompileShader] = (_glapi_proc)_mesa_marshal_CompileShader;
232996c5ddc4Srjs   if (_gloffset_CreateProgram >= 0)
233096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CreateProgram] = (_glapi_proc)_mesa_marshal_CreateProgram;
233196c5ddc4Srjs   if (_gloffset_CreateShader >= 0)
233296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CreateShader] = (_glapi_proc)_mesa_marshal_CreateShader;
233396c5ddc4Srjs   if (_gloffset_DeleteProgram >= 0)
233496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DeleteProgram] = (_glapi_proc)_mesa_marshal_DeleteProgram;
233596c5ddc4Srjs   if (_gloffset_DeleteShader >= 0)
233696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DeleteShader] = (_glapi_proc)_mesa_marshal_DeleteShader;
233796c5ddc4Srjs   if (_gloffset_DetachShader >= 0)
233896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DetachShader] = (_glapi_proc)_mesa_marshal_DetachShader;
233996c5ddc4Srjs   if (_gloffset_DisableVertexAttribArray >= 0)
234096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DisableVertexAttribArray] = (_glapi_proc)_mesa_marshal_DisableVertexAttribArray;
234196c5ddc4Srjs   if (_gloffset_EnableVertexAttribArray >= 0)
234296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_EnableVertexAttribArray] = (_glapi_proc)_mesa_marshal_EnableVertexAttribArray;
234396c5ddc4Srjs   if (_gloffset_GetActiveAttrib >= 0)
234496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetActiveAttrib] = (_glapi_proc)_mesa_marshal_GetActiveAttrib;
234596c5ddc4Srjs   if (_gloffset_GetActiveUniform >= 0)
234696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetActiveUniform] = (_glapi_proc)_mesa_marshal_GetActiveUniform;
234796c5ddc4Srjs   if (_gloffset_GetAttachedShaders >= 0)
234896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetAttachedShaders] = (_glapi_proc)_mesa_marshal_GetAttachedShaders;
234996c5ddc4Srjs   if (_gloffset_GetAttribLocation >= 0)
235096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetAttribLocation] = (_glapi_proc)_mesa_marshal_GetAttribLocation;
235196c5ddc4Srjs   if (_gloffset_GetProgramiv >= 0)
235296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetProgramiv] = (_glapi_proc)_mesa_marshal_GetProgramiv;
235396c5ddc4Srjs   if (_gloffset_GetProgramInfoLog >= 0)
235496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetProgramInfoLog] = (_glapi_proc)_mesa_marshal_GetProgramInfoLog;
235596c5ddc4Srjs   if (_gloffset_GetShaderiv >= 0)
235696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetShaderiv] = (_glapi_proc)_mesa_marshal_GetShaderiv;
235796c5ddc4Srjs   if (_gloffset_GetShaderInfoLog >= 0)
235896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetShaderInfoLog] = (_glapi_proc)_mesa_marshal_GetShaderInfoLog;
235996c5ddc4Srjs   if (_gloffset_GetShaderSource >= 0)
236096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetShaderSource] = (_glapi_proc)_mesa_marshal_GetShaderSource;
236196c5ddc4Srjs   if (_gloffset_GetUniformLocation >= 0)
236296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetUniformLocation] = (_glapi_proc)_mesa_marshal_GetUniformLocation;
236396c5ddc4Srjs   if (_gloffset_GetUniformfv >= 0)
236496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetUniformfv] = (_glapi_proc)_mesa_marshal_GetUniformfv;
236596c5ddc4Srjs   if (_gloffset_GetUniformiv >= 0)
236696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetUniformiv] = (_glapi_proc)_mesa_marshal_GetUniformiv;
236796c5ddc4Srjs   if (_gloffset_GetVertexAttribdv >= 0)
236896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetVertexAttribdv] = (_glapi_proc)_mesa_marshal_GetVertexAttribdv;
236996c5ddc4Srjs   if (_gloffset_GetVertexAttribfv >= 0)
237096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetVertexAttribfv] = (_glapi_proc)_mesa_marshal_GetVertexAttribfv;
237196c5ddc4Srjs   if (_gloffset_GetVertexAttribiv >= 0)
237296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetVertexAttribiv] = (_glapi_proc)_mesa_marshal_GetVertexAttribiv;
237396c5ddc4Srjs   if (_gloffset_GetVertexAttribPointerv >= 0)
237496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetVertexAttribPointerv] = (_glapi_proc)_mesa_marshal_GetVertexAttribPointerv;
237596c5ddc4Srjs   if (_gloffset_IsProgram >= 0)
237696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_IsProgram] = (_glapi_proc)_mesa_marshal_IsProgram;
237796c5ddc4Srjs   if (_gloffset_IsShader >= 0)
237896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_IsShader] = (_glapi_proc)_mesa_marshal_IsShader;
237996c5ddc4Srjs   if (_gloffset_LinkProgram >= 0)
238096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_LinkProgram] = (_glapi_proc)_mesa_marshal_LinkProgram;
238196c5ddc4Srjs   if (_gloffset_ShaderSource >= 0)
238296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ShaderSource] = (_glapi_proc)_mesa_marshal_ShaderSource;
238396c5ddc4Srjs   if (_gloffset_UseProgram >= 0)
238496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_UseProgram] = (_glapi_proc)_mesa_marshal_UseProgram;
238596c5ddc4Srjs   if (_gloffset_Uniform1f >= 0)
238696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform1f] = (_glapi_proc)_mesa_marshal_Uniform1f;
238796c5ddc4Srjs   if (_gloffset_Uniform2f >= 0)
238896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform2f] = (_glapi_proc)_mesa_marshal_Uniform2f;
238996c5ddc4Srjs   if (_gloffset_Uniform3f >= 0)
239096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform3f] = (_glapi_proc)_mesa_marshal_Uniform3f;
239196c5ddc4Srjs   if (_gloffset_Uniform4f >= 0)
239296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform4f] = (_glapi_proc)_mesa_marshal_Uniform4f;
239396c5ddc4Srjs   if (_gloffset_Uniform1i >= 0)
239496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform1i] = (_glapi_proc)_mesa_marshal_Uniform1i;
239596c5ddc4Srjs   if (_gloffset_Uniform2i >= 0)
239696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform2i] = (_glapi_proc)_mesa_marshal_Uniform2i;
239796c5ddc4Srjs   if (_gloffset_Uniform3i >= 0)
239896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform3i] = (_glapi_proc)_mesa_marshal_Uniform3i;
239996c5ddc4Srjs   if (_gloffset_Uniform4i >= 0)
240096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform4i] = (_glapi_proc)_mesa_marshal_Uniform4i;
240196c5ddc4Srjs   if (_gloffset_Uniform1fv >= 0)
240296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform1fv] = (_glapi_proc)_mesa_marshal_Uniform1fv;
240396c5ddc4Srjs   if (_gloffset_Uniform2fv >= 0)
240496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform2fv] = (_glapi_proc)_mesa_marshal_Uniform2fv;
240596c5ddc4Srjs   if (_gloffset_Uniform3fv >= 0)
240696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform3fv] = (_glapi_proc)_mesa_marshal_Uniform3fv;
240796c5ddc4Srjs   if (_gloffset_Uniform4fv >= 0)
240896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform4fv] = (_glapi_proc)_mesa_marshal_Uniform4fv;
240996c5ddc4Srjs   if (_gloffset_Uniform1iv >= 0)
241096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform1iv] = (_glapi_proc)_mesa_marshal_Uniform1iv;
241196c5ddc4Srjs   if (_gloffset_Uniform2iv >= 0)
241296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform2iv] = (_glapi_proc)_mesa_marshal_Uniform2iv;
241396c5ddc4Srjs   if (_gloffset_Uniform3iv >= 0)
241496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform3iv] = (_glapi_proc)_mesa_marshal_Uniform3iv;
241596c5ddc4Srjs   if (_gloffset_Uniform4iv >= 0)
241696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform4iv] = (_glapi_proc)_mesa_marshal_Uniform4iv;
241796c5ddc4Srjs   if (_gloffset_UniformMatrix2fv >= 0)
241896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_UniformMatrix2fv] = (_glapi_proc)_mesa_marshal_UniformMatrix2fv;
241996c5ddc4Srjs   if (_gloffset_UniformMatrix3fv >= 0)
242096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_UniformMatrix3fv] = (_glapi_proc)_mesa_marshal_UniformMatrix3fv;
242196c5ddc4Srjs   if (_gloffset_UniformMatrix4fv >= 0)
242296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_UniformMatrix4fv] = (_glapi_proc)_mesa_marshal_UniformMatrix4fv;
242396c5ddc4Srjs   if (_gloffset_ValidateProgram >= 0)
242496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ValidateProgram] = (_glapi_proc)_mesa_marshal_ValidateProgram;
242596c5ddc4Srjs   if (_gloffset_VertexAttrib1d >= 0)
242696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib1d] = (_glapi_proc)_mesa_marshal_VertexAttrib1d;
242796c5ddc4Srjs   if (_gloffset_VertexAttrib1dv >= 0)
242896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib1dv] = (_glapi_proc)_mesa_marshal_VertexAttrib1dv;
242996c5ddc4Srjs   if (_gloffset_VertexAttrib1fARB >= 0)
243096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib1fARB] = (_glapi_proc)_mesa_marshal_VertexAttrib1fARB;
243196c5ddc4Srjs   if (_gloffset_VertexAttrib1fvARB >= 0)
243296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib1fvARB] = (_glapi_proc)_mesa_marshal_VertexAttrib1fvARB;
243396c5ddc4Srjs   if (_gloffset_VertexAttrib1s >= 0)
243496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib1s] = (_glapi_proc)_mesa_marshal_VertexAttrib1s;
243596c5ddc4Srjs   if (_gloffset_VertexAttrib1sv >= 0)
243696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib1sv] = (_glapi_proc)_mesa_marshal_VertexAttrib1sv;
243796c5ddc4Srjs   if (_gloffset_VertexAttrib2d >= 0)
243896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib2d] = (_glapi_proc)_mesa_marshal_VertexAttrib2d;
243996c5ddc4Srjs   if (_gloffset_VertexAttrib2dv >= 0)
244096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib2dv] = (_glapi_proc)_mesa_marshal_VertexAttrib2dv;
244196c5ddc4Srjs   if (_gloffset_VertexAttrib2fARB >= 0)
244296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib2fARB] = (_glapi_proc)_mesa_marshal_VertexAttrib2fARB;
244396c5ddc4Srjs   if (_gloffset_VertexAttrib2fvARB >= 0)
244496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib2fvARB] = (_glapi_proc)_mesa_marshal_VertexAttrib2fvARB;
244596c5ddc4Srjs   if (_gloffset_VertexAttrib2s >= 0)
244696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib2s] = (_glapi_proc)_mesa_marshal_VertexAttrib2s;
244796c5ddc4Srjs   if (_gloffset_VertexAttrib2sv >= 0)
244896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib2sv] = (_glapi_proc)_mesa_marshal_VertexAttrib2sv;
244996c5ddc4Srjs   if (_gloffset_VertexAttrib3d >= 0)
245096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib3d] = (_glapi_proc)_mesa_marshal_VertexAttrib3d;
245196c5ddc4Srjs   if (_gloffset_VertexAttrib3dv >= 0)
245296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib3dv] = (_glapi_proc)_mesa_marshal_VertexAttrib3dv;
245396c5ddc4Srjs   if (_gloffset_VertexAttrib3fARB >= 0)
245496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib3fARB] = (_glapi_proc)_mesa_marshal_VertexAttrib3fARB;
245596c5ddc4Srjs   if (_gloffset_VertexAttrib3fvARB >= 0)
245696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib3fvARB] = (_glapi_proc)_mesa_marshal_VertexAttrib3fvARB;
245796c5ddc4Srjs   if (_gloffset_VertexAttrib3s >= 0)
245896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib3s] = (_glapi_proc)_mesa_marshal_VertexAttrib3s;
245996c5ddc4Srjs   if (_gloffset_VertexAttrib3sv >= 0)
246096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib3sv] = (_glapi_proc)_mesa_marshal_VertexAttrib3sv;
246196c5ddc4Srjs   if (_gloffset_VertexAttrib4Nbv >= 0)
246296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib4Nbv] = (_glapi_proc)_mesa_marshal_VertexAttrib4Nbv;
246396c5ddc4Srjs   if (_gloffset_VertexAttrib4Niv >= 0)
246496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib4Niv] = (_glapi_proc)_mesa_marshal_VertexAttrib4Niv;
246596c5ddc4Srjs   if (_gloffset_VertexAttrib4Nsv >= 0)
246696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib4Nsv] = (_glapi_proc)_mesa_marshal_VertexAttrib4Nsv;
246796c5ddc4Srjs   if (_gloffset_VertexAttrib4Nub >= 0)
246896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib4Nub] = (_glapi_proc)_mesa_marshal_VertexAttrib4Nub;
246996c5ddc4Srjs   if (_gloffset_VertexAttrib4Nubv >= 0)
247096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib4Nubv] = (_glapi_proc)_mesa_marshal_VertexAttrib4Nubv;
247196c5ddc4Srjs   if (_gloffset_VertexAttrib4Nuiv >= 0)
247296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib4Nuiv] = (_glapi_proc)_mesa_marshal_VertexAttrib4Nuiv;
247396c5ddc4Srjs   if (_gloffset_VertexAttrib4Nusv >= 0)
247496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib4Nusv] = (_glapi_proc)_mesa_marshal_VertexAttrib4Nusv;
247596c5ddc4Srjs   if (_gloffset_VertexAttrib4bv >= 0)
247696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib4bv] = (_glapi_proc)_mesa_marshal_VertexAttrib4bv;
247796c5ddc4Srjs   if (_gloffset_VertexAttrib4d >= 0)
247896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib4d] = (_glapi_proc)_mesa_marshal_VertexAttrib4d;
247996c5ddc4Srjs   if (_gloffset_VertexAttrib4dv >= 0)
248096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib4dv] = (_glapi_proc)_mesa_marshal_VertexAttrib4dv;
248196c5ddc4Srjs   if (_gloffset_VertexAttrib4fARB >= 0)
248296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib4fARB] = (_glapi_proc)_mesa_marshal_VertexAttrib4fARB;
248396c5ddc4Srjs   if (_gloffset_VertexAttrib4fvARB >= 0)
248496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib4fvARB] = (_glapi_proc)_mesa_marshal_VertexAttrib4fvARB;
248596c5ddc4Srjs   if (_gloffset_VertexAttrib4iv >= 0)
248696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib4iv] = (_glapi_proc)_mesa_marshal_VertexAttrib4iv;
248796c5ddc4Srjs   if (_gloffset_VertexAttrib4s >= 0)
248896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib4s] = (_glapi_proc)_mesa_marshal_VertexAttrib4s;
248996c5ddc4Srjs   if (_gloffset_VertexAttrib4sv >= 0)
249096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib4sv] = (_glapi_proc)_mesa_marshal_VertexAttrib4sv;
249196c5ddc4Srjs   if (_gloffset_VertexAttrib4ubv >= 0)
249296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib4ubv] = (_glapi_proc)_mesa_marshal_VertexAttrib4ubv;
249396c5ddc4Srjs   if (_gloffset_VertexAttrib4uiv >= 0)
249496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib4uiv] = (_glapi_proc)_mesa_marshal_VertexAttrib4uiv;
249596c5ddc4Srjs   if (_gloffset_VertexAttrib4usv >= 0)
249696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib4usv] = (_glapi_proc)_mesa_marshal_VertexAttrib4usv;
249796c5ddc4Srjs   if (_gloffset_VertexAttribPointer >= 0)
249896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribPointer] = (_glapi_proc)_mesa_marshal_VertexAttribPointer;
249996c5ddc4Srjs   if (_gloffset_UniformMatrix2x3fv >= 0)
250096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_UniformMatrix2x3fv] = (_glapi_proc)_mesa_marshal_UniformMatrix2x3fv;
250196c5ddc4Srjs   if (_gloffset_UniformMatrix3x2fv >= 0)
250296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_UniformMatrix3x2fv] = (_glapi_proc)_mesa_marshal_UniformMatrix3x2fv;
250396c5ddc4Srjs   if (_gloffset_UniformMatrix2x4fv >= 0)
250496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_UniformMatrix2x4fv] = (_glapi_proc)_mesa_marshal_UniformMatrix2x4fv;
250596c5ddc4Srjs   if (_gloffset_UniformMatrix4x2fv >= 0)
250696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_UniformMatrix4x2fv] = (_glapi_proc)_mesa_marshal_UniformMatrix4x2fv;
250796c5ddc4Srjs   if (_gloffset_UniformMatrix3x4fv >= 0)
250896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_UniformMatrix3x4fv] = (_glapi_proc)_mesa_marshal_UniformMatrix3x4fv;
250996c5ddc4Srjs   if (_gloffset_UniformMatrix4x3fv >= 0)
251096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_UniformMatrix4x3fv] = (_glapi_proc)_mesa_marshal_UniformMatrix4x3fv;
251196c5ddc4Srjs   if (_gloffset_ProgramStringARB >= 0)
251296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramStringARB] = (_glapi_proc)_mesa_marshal_ProgramStringARB;
251396c5ddc4Srjs   if (_gloffset_BindProgramARB >= 0)
251496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BindProgramARB] = (_glapi_proc)_mesa_marshal_BindProgramARB;
251596c5ddc4Srjs   if (_gloffset_DeleteProgramsARB >= 0)
251696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DeleteProgramsARB] = (_glapi_proc)_mesa_marshal_DeleteProgramsARB;
251796c5ddc4Srjs   if (_gloffset_GenProgramsARB >= 0)
251896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GenProgramsARB] = (_glapi_proc)_mesa_marshal_GenProgramsARB;
251996c5ddc4Srjs   if (_gloffset_IsProgramARB >= 0)
252096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_IsProgramARB] = (_glapi_proc)_mesa_marshal_IsProgramARB;
252196c5ddc4Srjs   if (_gloffset_ProgramEnvParameter4dARB >= 0)
252296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramEnvParameter4dARB] = (_glapi_proc)_mesa_marshal_ProgramEnvParameter4dARB;
252396c5ddc4Srjs   if (_gloffset_ProgramEnvParameter4dvARB >= 0)
252496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramEnvParameter4dvARB] = (_glapi_proc)_mesa_marshal_ProgramEnvParameter4dvARB;
252596c5ddc4Srjs   if (_gloffset_ProgramEnvParameter4fARB >= 0)
252696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramEnvParameter4fARB] = (_glapi_proc)_mesa_marshal_ProgramEnvParameter4fARB;
252796c5ddc4Srjs   if (_gloffset_ProgramEnvParameter4fvARB >= 0)
252896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramEnvParameter4fvARB] = (_glapi_proc)_mesa_marshal_ProgramEnvParameter4fvARB;
252996c5ddc4Srjs   if (_gloffset_ProgramLocalParameter4dARB >= 0)
253096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramLocalParameter4dARB] = (_glapi_proc)_mesa_marshal_ProgramLocalParameter4dARB;
253196c5ddc4Srjs   if (_gloffset_ProgramLocalParameter4dvARB >= 0)
253296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramLocalParameter4dvARB] = (_glapi_proc)_mesa_marshal_ProgramLocalParameter4dvARB;
253396c5ddc4Srjs   if (_gloffset_ProgramLocalParameter4fARB >= 0)
253496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramLocalParameter4fARB] = (_glapi_proc)_mesa_marshal_ProgramLocalParameter4fARB;
253596c5ddc4Srjs   if (_gloffset_ProgramLocalParameter4fvARB >= 0)
253696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramLocalParameter4fvARB] = (_glapi_proc)_mesa_marshal_ProgramLocalParameter4fvARB;
253796c5ddc4Srjs   if (_gloffset_GetProgramEnvParameterdvARB >= 0)
253896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetProgramEnvParameterdvARB] = (_glapi_proc)_mesa_marshal_GetProgramEnvParameterdvARB;
253996c5ddc4Srjs   if (_gloffset_GetProgramEnvParameterfvARB >= 0)
254096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetProgramEnvParameterfvARB] = (_glapi_proc)_mesa_marshal_GetProgramEnvParameterfvARB;
254196c5ddc4Srjs   if (_gloffset_GetProgramLocalParameterdvARB >= 0)
254296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetProgramLocalParameterdvARB] = (_glapi_proc)_mesa_marshal_GetProgramLocalParameterdvARB;
254396c5ddc4Srjs   if (_gloffset_GetProgramLocalParameterfvARB >= 0)
254496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetProgramLocalParameterfvARB] = (_glapi_proc)_mesa_marshal_GetProgramLocalParameterfvARB;
254596c5ddc4Srjs   if (_gloffset_GetProgramivARB >= 0)
254696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetProgramivARB] = (_glapi_proc)_mesa_marshal_GetProgramivARB;
254796c5ddc4Srjs   if (_gloffset_GetProgramStringARB >= 0)
254896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetProgramStringARB] = (_glapi_proc)_mesa_marshal_GetProgramStringARB;
254996c5ddc4Srjs   if (_gloffset_DeleteObjectARB >= 0)
255096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DeleteObjectARB] = (_glapi_proc)_mesa_marshal_DeleteObjectARB;
255196c5ddc4Srjs   if (_gloffset_GetHandleARB >= 0)
255296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetHandleARB] = (_glapi_proc)_mesa_marshal_GetHandleARB;
255396c5ddc4Srjs   if (_gloffset_DetachObjectARB >= 0)
255496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DetachObjectARB] = (_glapi_proc)_mesa_marshal_DetachObjectARB;
255596c5ddc4Srjs   if (_gloffset_CreateShaderObjectARB >= 0)
255696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CreateShaderObjectARB] = (_glapi_proc)_mesa_marshal_CreateShaderObjectARB;
255796c5ddc4Srjs   if (_gloffset_CreateProgramObjectARB >= 0)
255896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CreateProgramObjectARB] = (_glapi_proc)_mesa_marshal_CreateProgramObjectARB;
255996c5ddc4Srjs   if (_gloffset_AttachObjectARB >= 0)
256096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_AttachObjectARB] = (_glapi_proc)_mesa_marshal_AttachObjectARB;
256196c5ddc4Srjs   if (_gloffset_GetObjectParameterfvARB >= 0)
256296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetObjectParameterfvARB] = (_glapi_proc)_mesa_marshal_GetObjectParameterfvARB;
256396c5ddc4Srjs   if (_gloffset_GetObjectParameterivARB >= 0)
256496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetObjectParameterivARB] = (_glapi_proc)_mesa_marshal_GetObjectParameterivARB;
256596c5ddc4Srjs   if (_gloffset_GetInfoLogARB >= 0)
256696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetInfoLogARB] = (_glapi_proc)_mesa_marshal_GetInfoLogARB;
256796c5ddc4Srjs   if (_gloffset_GetAttachedObjectsARB >= 0)
256896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetAttachedObjectsARB] = (_glapi_proc)_mesa_marshal_GetAttachedObjectsARB;
256996c5ddc4Srjs   if (_gloffset_ClampColor >= 0)
257096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ClampColor] = (_glapi_proc)_mesa_marshal_ClampColor;
257196c5ddc4Srjs   if (_gloffset_DrawArraysInstancedARB >= 0)
257296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DrawArraysInstancedARB] = (_glapi_proc)_mesa_marshal_DrawArraysInstancedARB;
257396c5ddc4Srjs   if (_gloffset_DrawElementsInstancedARB >= 0)
257496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DrawElementsInstancedARB] = (_glapi_proc)_mesa_marshal_DrawElementsInstancedARB;
257596c5ddc4Srjs   if (_gloffset_IsRenderbuffer >= 0)
257696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_IsRenderbuffer] = (_glapi_proc)_mesa_marshal_IsRenderbuffer;
257796c5ddc4Srjs   if (_gloffset_BindRenderbuffer >= 0)
257896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BindRenderbuffer] = (_glapi_proc)_mesa_marshal_BindRenderbuffer;
257996c5ddc4Srjs   if (_gloffset_DeleteRenderbuffers >= 0)
258096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DeleteRenderbuffers] = (_glapi_proc)_mesa_marshal_DeleteRenderbuffers;
258196c5ddc4Srjs   if (_gloffset_GenRenderbuffers >= 0)
258296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GenRenderbuffers] = (_glapi_proc)_mesa_marshal_GenRenderbuffers;
258396c5ddc4Srjs   if (_gloffset_RenderbufferStorage >= 0)
258496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_RenderbufferStorage] = (_glapi_proc)_mesa_marshal_RenderbufferStorage;
258596c5ddc4Srjs   if (_gloffset_RenderbufferStorageMultisample >= 0)
258696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_RenderbufferStorageMultisample] = (_glapi_proc)_mesa_marshal_RenderbufferStorageMultisample;
258796c5ddc4Srjs   if (_gloffset_GetRenderbufferParameteriv >= 0)
258896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetRenderbufferParameteriv] = (_glapi_proc)_mesa_marshal_GetRenderbufferParameteriv;
258996c5ddc4Srjs   if (_gloffset_IsFramebuffer >= 0)
259096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_IsFramebuffer] = (_glapi_proc)_mesa_marshal_IsFramebuffer;
259196c5ddc4Srjs   if (_gloffset_BindFramebuffer >= 0)
259296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BindFramebuffer] = (_glapi_proc)_mesa_marshal_BindFramebuffer;
259396c5ddc4Srjs   if (_gloffset_DeleteFramebuffers >= 0)
259496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DeleteFramebuffers] = (_glapi_proc)_mesa_marshal_DeleteFramebuffers;
259596c5ddc4Srjs   if (_gloffset_GenFramebuffers >= 0)
259696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GenFramebuffers] = (_glapi_proc)_mesa_marshal_GenFramebuffers;
259796c5ddc4Srjs   if (_gloffset_CheckFramebufferStatus >= 0)
259896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CheckFramebufferStatus] = (_glapi_proc)_mesa_marshal_CheckFramebufferStatus;
259996c5ddc4Srjs   if (_gloffset_FramebufferTexture1D >= 0)
260096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_FramebufferTexture1D] = (_glapi_proc)_mesa_marshal_FramebufferTexture1D;
260196c5ddc4Srjs   if (_gloffset_FramebufferTexture2D >= 0)
260296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_FramebufferTexture2D] = (_glapi_proc)_mesa_marshal_FramebufferTexture2D;
260396c5ddc4Srjs   if (_gloffset_FramebufferTexture3D >= 0)
260496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_FramebufferTexture3D] = (_glapi_proc)_mesa_marshal_FramebufferTexture3D;
260596c5ddc4Srjs   if (_gloffset_FramebufferTextureLayer >= 0)
260696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_FramebufferTextureLayer] = (_glapi_proc)_mesa_marshal_FramebufferTextureLayer;
260796c5ddc4Srjs   if (_gloffset_FramebufferRenderbuffer >= 0)
260896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_FramebufferRenderbuffer] = (_glapi_proc)_mesa_marshal_FramebufferRenderbuffer;
260996c5ddc4Srjs   if (_gloffset_GetFramebufferAttachmentParameteriv >= 0)
261096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetFramebufferAttachmentParameteriv] = (_glapi_proc)_mesa_marshal_GetFramebufferAttachmentParameteriv;
261196c5ddc4Srjs   if (_gloffset_BlitFramebuffer >= 0)
261296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BlitFramebuffer] = (_glapi_proc)_mesa_marshal_BlitFramebuffer;
261396c5ddc4Srjs   if (_gloffset_GenerateMipmap >= 0)
261496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GenerateMipmap] = (_glapi_proc)_mesa_marshal_GenerateMipmap;
261596c5ddc4Srjs   if (_gloffset_VertexAttribDivisor >= 0)
261696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribDivisor] = (_glapi_proc)_mesa_marshal_VertexAttribDivisor;
261796c5ddc4Srjs   if (_gloffset_VertexArrayVertexAttribDivisorEXT >= 0)
261896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexArrayVertexAttribDivisorEXT] = (_glapi_proc)_mesa_marshal_VertexArrayVertexAttribDivisorEXT;
261996c5ddc4Srjs   if (_gloffset_MapBufferRange >= 0)
262096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MapBufferRange] = (_glapi_proc)_mesa_marshal_MapBufferRange;
262196c5ddc4Srjs   if (_gloffset_FlushMappedBufferRange >= 0)
262296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_FlushMappedBufferRange] = (_glapi_proc)_mesa_marshal_FlushMappedBufferRange;
262396c5ddc4Srjs   if (_gloffset_TexBuffer >= 0)
262496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexBuffer] = (_glapi_proc)_mesa_marshal_TexBuffer;
262596c5ddc4Srjs   if (_gloffset_BindVertexArray >= 0)
262696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BindVertexArray] = (_glapi_proc)_mesa_marshal_BindVertexArray;
262796c5ddc4Srjs   if (_gloffset_DeleteVertexArrays >= 0)
262896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DeleteVertexArrays] = (_glapi_proc)_mesa_marshal_DeleteVertexArrays;
262996c5ddc4Srjs   if (_gloffset_GenVertexArrays >= 0)
263096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GenVertexArrays] = (_glapi_proc)_mesa_marshal_GenVertexArrays;
263196c5ddc4Srjs   if (_gloffset_IsVertexArray >= 0)
263296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_IsVertexArray] = (_glapi_proc)_mesa_marshal_IsVertexArray;
263396c5ddc4Srjs   if (_gloffset_GetUniformIndices >= 0)
263496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetUniformIndices] = (_glapi_proc)_mesa_marshal_GetUniformIndices;
263596c5ddc4Srjs   if (_gloffset_GetActiveUniformsiv >= 0)
263696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetActiveUniformsiv] = (_glapi_proc)_mesa_marshal_GetActiveUniformsiv;
263796c5ddc4Srjs   if (_gloffset_GetActiveUniformName >= 0)
263896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetActiveUniformName] = (_glapi_proc)_mesa_marshal_GetActiveUniformName;
263996c5ddc4Srjs   if (_gloffset_GetUniformBlockIndex >= 0)
264096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetUniformBlockIndex] = (_glapi_proc)_mesa_marshal_GetUniformBlockIndex;
264196c5ddc4Srjs   if (_gloffset_GetActiveUniformBlockiv >= 0)
264296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetActiveUniformBlockiv] = (_glapi_proc)_mesa_marshal_GetActiveUniformBlockiv;
264396c5ddc4Srjs   if (_gloffset_GetActiveUniformBlockName >= 0)
264496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetActiveUniformBlockName] = (_glapi_proc)_mesa_marshal_GetActiveUniformBlockName;
264596c5ddc4Srjs   if (_gloffset_UniformBlockBinding >= 0)
264696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_UniformBlockBinding] = (_glapi_proc)_mesa_marshal_UniformBlockBinding;
264796c5ddc4Srjs   if (_gloffset_CopyBufferSubData >= 0)
264896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CopyBufferSubData] = (_glapi_proc)_mesa_marshal_CopyBufferSubData;
264996c5ddc4Srjs   if (_gloffset_DrawElementsBaseVertex >= 0)
265096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DrawElementsBaseVertex] = (_glapi_proc)_mesa_marshal_DrawElementsBaseVertex;
265196c5ddc4Srjs   if (_gloffset_DrawRangeElementsBaseVertex >= 0)
265296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DrawRangeElementsBaseVertex] = (_glapi_proc)_mesa_marshal_DrawRangeElementsBaseVertex;
265396c5ddc4Srjs   if (_gloffset_MultiDrawElementsBaseVertex >= 0)
265496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiDrawElementsBaseVertex] = (_glapi_proc)_mesa_marshal_MultiDrawElementsBaseVertex;
265596c5ddc4Srjs   if (_gloffset_DrawElementsInstancedBaseVertex >= 0)
265696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DrawElementsInstancedBaseVertex] = (_glapi_proc)_mesa_marshal_DrawElementsInstancedBaseVertex;
265796c5ddc4Srjs   if (_gloffset_FenceSync >= 0)
265896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_FenceSync] = (_glapi_proc)_mesa_marshal_FenceSync;
265996c5ddc4Srjs   if (_gloffset_IsSync >= 0)
266096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_IsSync] = (_glapi_proc)_mesa_marshal_IsSync;
266196c5ddc4Srjs   if (_gloffset_DeleteSync >= 0)
266296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DeleteSync] = (_glapi_proc)_mesa_marshal_DeleteSync;
266396c5ddc4Srjs   if (_gloffset_ClientWaitSync >= 0)
266496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ClientWaitSync] = (_glapi_proc)_mesa_marshal_ClientWaitSync;
266596c5ddc4Srjs   if (_gloffset_WaitSync >= 0)
266696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_WaitSync] = (_glapi_proc)_mesa_marshal_WaitSync;
266796c5ddc4Srjs   if (_gloffset_GetInteger64v >= 0)
266896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetInteger64v] = (_glapi_proc)_mesa_marshal_GetInteger64v;
266996c5ddc4Srjs   if (_gloffset_GetSynciv >= 0)
267096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetSynciv] = (_glapi_proc)_mesa_marshal_GetSynciv;
267196c5ddc4Srjs   if (_gloffset_TexImage2DMultisample >= 0)
267296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexImage2DMultisample] = (_glapi_proc)_mesa_marshal_TexImage2DMultisample;
267396c5ddc4Srjs   if (_gloffset_TexImage3DMultisample >= 0)
267496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexImage3DMultisample] = (_glapi_proc)_mesa_marshal_TexImage3DMultisample;
267596c5ddc4Srjs   if (_gloffset_GetMultisamplefv >= 0)
267696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetMultisamplefv] = (_glapi_proc)_mesa_marshal_GetMultisamplefv;
267796c5ddc4Srjs   if (_gloffset_SampleMaski >= 0)
267896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_SampleMaski] = (_glapi_proc)_mesa_marshal_SampleMaski;
267996c5ddc4Srjs   if (_gloffset_BlendEquationiARB >= 0)
268096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BlendEquationiARB] = (_glapi_proc)_mesa_marshal_BlendEquationiARB;
268196c5ddc4Srjs   if (_gloffset_BlendEquationSeparateiARB >= 0)
268296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BlendEquationSeparateiARB] = (_glapi_proc)_mesa_marshal_BlendEquationSeparateiARB;
268396c5ddc4Srjs   if (_gloffset_BlendFunciARB >= 0)
268496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BlendFunciARB] = (_glapi_proc)_mesa_marshal_BlendFunciARB;
268596c5ddc4Srjs   if (_gloffset_BlendFuncSeparateiARB >= 0)
268696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BlendFuncSeparateiARB] = (_glapi_proc)_mesa_marshal_BlendFuncSeparateiARB;
268796c5ddc4Srjs   if (_gloffset_MinSampleShading >= 0)
268896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MinSampleShading] = (_glapi_proc)_mesa_marshal_MinSampleShading;
268996c5ddc4Srjs   if (_gloffset_NamedStringARB >= 0)
269096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NamedStringARB] = (_glapi_proc)_mesa_marshal_NamedStringARB;
269196c5ddc4Srjs   if (_gloffset_DeleteNamedStringARB >= 0)
269296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DeleteNamedStringARB] = (_glapi_proc)_mesa_marshal_DeleteNamedStringARB;
269396c5ddc4Srjs   if (_gloffset_CompileShaderIncludeARB >= 0)
269496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CompileShaderIncludeARB] = (_glapi_proc)_mesa_marshal_CompileShaderIncludeARB;
269596c5ddc4Srjs   if (_gloffset_IsNamedStringARB >= 0)
269696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_IsNamedStringARB] = (_glapi_proc)_mesa_marshal_IsNamedStringARB;
269796c5ddc4Srjs   if (_gloffset_GetNamedStringARB >= 0)
269896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetNamedStringARB] = (_glapi_proc)_mesa_marshal_GetNamedStringARB;
269996c5ddc4Srjs   if (_gloffset_GetNamedStringivARB >= 0)
270096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetNamedStringivARB] = (_glapi_proc)_mesa_marshal_GetNamedStringivARB;
270196c5ddc4Srjs   if (_gloffset_BindFragDataLocationIndexed >= 0)
270296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BindFragDataLocationIndexed] = (_glapi_proc)_mesa_marshal_BindFragDataLocationIndexed;
270396c5ddc4Srjs   if (_gloffset_GetFragDataIndex >= 0)
270496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetFragDataIndex] = (_glapi_proc)_mesa_marshal_GetFragDataIndex;
270596c5ddc4Srjs   if (_gloffset_GenSamplers >= 0)
270696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GenSamplers] = (_glapi_proc)_mesa_marshal_GenSamplers;
270796c5ddc4Srjs   if (_gloffset_DeleteSamplers >= 0)
270896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DeleteSamplers] = (_glapi_proc)_mesa_marshal_DeleteSamplers;
270996c5ddc4Srjs   if (_gloffset_IsSampler >= 0)
271096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_IsSampler] = (_glapi_proc)_mesa_marshal_IsSampler;
271196c5ddc4Srjs   if (_gloffset_BindSampler >= 0)
271296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BindSampler] = (_glapi_proc)_mesa_marshal_BindSampler;
271396c5ddc4Srjs   if (_gloffset_SamplerParameteri >= 0)
271496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_SamplerParameteri] = (_glapi_proc)_mesa_marshal_SamplerParameteri;
271596c5ddc4Srjs   if (_gloffset_SamplerParameterf >= 0)
271696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_SamplerParameterf] = (_glapi_proc)_mesa_marshal_SamplerParameterf;
271796c5ddc4Srjs   if (_gloffset_SamplerParameteriv >= 0)
271896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_SamplerParameteriv] = (_glapi_proc)_mesa_marshal_SamplerParameteriv;
271996c5ddc4Srjs   if (_gloffset_SamplerParameterfv >= 0)
272096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_SamplerParameterfv] = (_glapi_proc)_mesa_marshal_SamplerParameterfv;
272196c5ddc4Srjs   if (_gloffset_SamplerParameterIiv >= 0)
272296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_SamplerParameterIiv] = (_glapi_proc)_mesa_marshal_SamplerParameterIiv;
272396c5ddc4Srjs   if (_gloffset_SamplerParameterIuiv >= 0)
272496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_SamplerParameterIuiv] = (_glapi_proc)_mesa_marshal_SamplerParameterIuiv;
272596c5ddc4Srjs   if (_gloffset_GetSamplerParameteriv >= 0)
272696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetSamplerParameteriv] = (_glapi_proc)_mesa_marshal_GetSamplerParameteriv;
272796c5ddc4Srjs   if (_gloffset_GetSamplerParameterfv >= 0)
272896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetSamplerParameterfv] = (_glapi_proc)_mesa_marshal_GetSamplerParameterfv;
272996c5ddc4Srjs   if (_gloffset_GetSamplerParameterIiv >= 0)
273096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetSamplerParameterIiv] = (_glapi_proc)_mesa_marshal_GetSamplerParameterIiv;
273196c5ddc4Srjs   if (_gloffset_GetSamplerParameterIuiv >= 0)
273296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetSamplerParameterIuiv] = (_glapi_proc)_mesa_marshal_GetSamplerParameterIuiv;
273396c5ddc4Srjs   if (_gloffset_GetQueryObjecti64v >= 0)
273496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetQueryObjecti64v] = (_glapi_proc)_mesa_marshal_GetQueryObjecti64v;
273596c5ddc4Srjs   if (_gloffset_GetQueryObjectui64v >= 0)
273696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetQueryObjectui64v] = (_glapi_proc)_mesa_marshal_GetQueryObjectui64v;
273796c5ddc4Srjs   if (_gloffset_QueryCounter >= 0)
273896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_QueryCounter] = (_glapi_proc)_mesa_marshal_QueryCounter;
273996c5ddc4Srjs   if (_gloffset_VertexP2ui >= 0)
274096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexP2ui] = (_glapi_proc)_mesa_marshal_VertexP2ui;
274196c5ddc4Srjs   if (_gloffset_VertexP3ui >= 0)
274296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexP3ui] = (_glapi_proc)_mesa_marshal_VertexP3ui;
274396c5ddc4Srjs   if (_gloffset_VertexP4ui >= 0)
274496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexP4ui] = (_glapi_proc)_mesa_marshal_VertexP4ui;
274596c5ddc4Srjs   if (_gloffset_VertexP2uiv >= 0)
274696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexP2uiv] = (_glapi_proc)_mesa_marshal_VertexP2uiv;
274796c5ddc4Srjs   if (_gloffset_VertexP3uiv >= 0)
274896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexP3uiv] = (_glapi_proc)_mesa_marshal_VertexP3uiv;
274996c5ddc4Srjs   if (_gloffset_VertexP4uiv >= 0)
275096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexP4uiv] = (_glapi_proc)_mesa_marshal_VertexP4uiv;
275196c5ddc4Srjs   if (_gloffset_TexCoordP1ui >= 0)
275296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoordP1ui] = (_glapi_proc)_mesa_marshal_TexCoordP1ui;
275396c5ddc4Srjs   if (_gloffset_TexCoordP2ui >= 0)
275496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoordP2ui] = (_glapi_proc)_mesa_marshal_TexCoordP2ui;
275596c5ddc4Srjs   if (_gloffset_TexCoordP3ui >= 0)
275696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoordP3ui] = (_glapi_proc)_mesa_marshal_TexCoordP3ui;
275796c5ddc4Srjs   if (_gloffset_TexCoordP4ui >= 0)
275896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoordP4ui] = (_glapi_proc)_mesa_marshal_TexCoordP4ui;
275996c5ddc4Srjs   if (_gloffset_TexCoordP1uiv >= 0)
276096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoordP1uiv] = (_glapi_proc)_mesa_marshal_TexCoordP1uiv;
276196c5ddc4Srjs   if (_gloffset_TexCoordP2uiv >= 0)
276296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoordP2uiv] = (_glapi_proc)_mesa_marshal_TexCoordP2uiv;
276396c5ddc4Srjs   if (_gloffset_TexCoordP3uiv >= 0)
276496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoordP3uiv] = (_glapi_proc)_mesa_marshal_TexCoordP3uiv;
276596c5ddc4Srjs   if (_gloffset_TexCoordP4uiv >= 0)
276696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoordP4uiv] = (_glapi_proc)_mesa_marshal_TexCoordP4uiv;
276796c5ddc4Srjs   if (_gloffset_MultiTexCoordP1ui >= 0)
276896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoordP1ui] = (_glapi_proc)_mesa_marshal_MultiTexCoordP1ui;
276996c5ddc4Srjs   if (_gloffset_MultiTexCoordP2ui >= 0)
277096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoordP2ui] = (_glapi_proc)_mesa_marshal_MultiTexCoordP2ui;
277196c5ddc4Srjs   if (_gloffset_MultiTexCoordP3ui >= 0)
277296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoordP3ui] = (_glapi_proc)_mesa_marshal_MultiTexCoordP3ui;
277396c5ddc4Srjs   if (_gloffset_MultiTexCoordP4ui >= 0)
277496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoordP4ui] = (_glapi_proc)_mesa_marshal_MultiTexCoordP4ui;
277596c5ddc4Srjs   if (_gloffset_MultiTexCoordP1uiv >= 0)
277696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoordP1uiv] = (_glapi_proc)_mesa_marshal_MultiTexCoordP1uiv;
277796c5ddc4Srjs   if (_gloffset_MultiTexCoordP2uiv >= 0)
277896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoordP2uiv] = (_glapi_proc)_mesa_marshal_MultiTexCoordP2uiv;
277996c5ddc4Srjs   if (_gloffset_MultiTexCoordP3uiv >= 0)
278096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoordP3uiv] = (_glapi_proc)_mesa_marshal_MultiTexCoordP3uiv;
278196c5ddc4Srjs   if (_gloffset_MultiTexCoordP4uiv >= 0)
278296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoordP4uiv] = (_glapi_proc)_mesa_marshal_MultiTexCoordP4uiv;
278396c5ddc4Srjs   if (_gloffset_NormalP3ui >= 0)
278496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NormalP3ui] = (_glapi_proc)_mesa_marshal_NormalP3ui;
278596c5ddc4Srjs   if (_gloffset_NormalP3uiv >= 0)
278696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NormalP3uiv] = (_glapi_proc)_mesa_marshal_NormalP3uiv;
278796c5ddc4Srjs   if (_gloffset_ColorP3ui >= 0)
278896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ColorP3ui] = (_glapi_proc)_mesa_marshal_ColorP3ui;
278996c5ddc4Srjs   if (_gloffset_ColorP4ui >= 0)
279096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ColorP4ui] = (_glapi_proc)_mesa_marshal_ColorP4ui;
279196c5ddc4Srjs   if (_gloffset_ColorP3uiv >= 0)
279296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ColorP3uiv] = (_glapi_proc)_mesa_marshal_ColorP3uiv;
279396c5ddc4Srjs   if (_gloffset_ColorP4uiv >= 0)
279496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ColorP4uiv] = (_glapi_proc)_mesa_marshal_ColorP4uiv;
279596c5ddc4Srjs   if (_gloffset_SecondaryColorP3ui >= 0)
279696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_SecondaryColorP3ui] = (_glapi_proc)_mesa_marshal_SecondaryColorP3ui;
279796c5ddc4Srjs   if (_gloffset_SecondaryColorP3uiv >= 0)
279896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_SecondaryColorP3uiv] = (_glapi_proc)_mesa_marshal_SecondaryColorP3uiv;
279996c5ddc4Srjs   if (_gloffset_VertexAttribP1ui >= 0)
280096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribP1ui] = (_glapi_proc)_mesa_marshal_VertexAttribP1ui;
280196c5ddc4Srjs   if (_gloffset_VertexAttribP2ui >= 0)
280296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribP2ui] = (_glapi_proc)_mesa_marshal_VertexAttribP2ui;
280396c5ddc4Srjs   if (_gloffset_VertexAttribP3ui >= 0)
280496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribP3ui] = (_glapi_proc)_mesa_marshal_VertexAttribP3ui;
280596c5ddc4Srjs   if (_gloffset_VertexAttribP4ui >= 0)
280696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribP4ui] = (_glapi_proc)_mesa_marshal_VertexAttribP4ui;
280796c5ddc4Srjs   if (_gloffset_VertexAttribP1uiv >= 0)
280896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribP1uiv] = (_glapi_proc)_mesa_marshal_VertexAttribP1uiv;
280996c5ddc4Srjs   if (_gloffset_VertexAttribP2uiv >= 0)
281096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribP2uiv] = (_glapi_proc)_mesa_marshal_VertexAttribP2uiv;
281196c5ddc4Srjs   if (_gloffset_VertexAttribP3uiv >= 0)
281296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribP3uiv] = (_glapi_proc)_mesa_marshal_VertexAttribP3uiv;
281396c5ddc4Srjs   if (_gloffset_VertexAttribP4uiv >= 0)
281496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribP4uiv] = (_glapi_proc)_mesa_marshal_VertexAttribP4uiv;
281596c5ddc4Srjs   if (_gloffset_GetSubroutineUniformLocation >= 0)
281696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetSubroutineUniformLocation] = (_glapi_proc)_mesa_marshal_GetSubroutineUniformLocation;
281796c5ddc4Srjs   if (_gloffset_GetSubroutineIndex >= 0)
281896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetSubroutineIndex] = (_glapi_proc)_mesa_marshal_GetSubroutineIndex;
281996c5ddc4Srjs   if (_gloffset_GetActiveSubroutineUniformiv >= 0)
282096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetActiveSubroutineUniformiv] = (_glapi_proc)_mesa_marshal_GetActiveSubroutineUniformiv;
282196c5ddc4Srjs   if (_gloffset_GetActiveSubroutineUniformName >= 0)
282296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetActiveSubroutineUniformName] = (_glapi_proc)_mesa_marshal_GetActiveSubroutineUniformName;
282396c5ddc4Srjs   if (_gloffset_GetActiveSubroutineName >= 0)
282496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetActiveSubroutineName] = (_glapi_proc)_mesa_marshal_GetActiveSubroutineName;
282596c5ddc4Srjs   if (_gloffset_UniformSubroutinesuiv >= 0)
282696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_UniformSubroutinesuiv] = (_glapi_proc)_mesa_marshal_UniformSubroutinesuiv;
282796c5ddc4Srjs   if (_gloffset_GetUniformSubroutineuiv >= 0)
282896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetUniformSubroutineuiv] = (_glapi_proc)_mesa_marshal_GetUniformSubroutineuiv;
282996c5ddc4Srjs   if (_gloffset_GetProgramStageiv >= 0)
283096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetProgramStageiv] = (_glapi_proc)_mesa_marshal_GetProgramStageiv;
283196c5ddc4Srjs   if (_gloffset_PatchParameteri >= 0)
283296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PatchParameteri] = (_glapi_proc)_mesa_marshal_PatchParameteri;
283396c5ddc4Srjs   if (_gloffset_PatchParameterfv >= 0)
283496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PatchParameterfv] = (_glapi_proc)_mesa_marshal_PatchParameterfv;
283596c5ddc4Srjs   if (_gloffset_DrawArraysIndirect >= 0)
283696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DrawArraysIndirect] = (_glapi_proc)_mesa_marshal_DrawArraysIndirect;
283796c5ddc4Srjs   if (_gloffset_DrawElementsIndirect >= 0)
283896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DrawElementsIndirect] = (_glapi_proc)_mesa_marshal_DrawElementsIndirect;
283996c5ddc4Srjs   if (_gloffset_MultiDrawArraysIndirect >= 0)
284096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiDrawArraysIndirect] = (_glapi_proc)_mesa_marshal_MultiDrawArraysIndirect;
284196c5ddc4Srjs   if (_gloffset_MultiDrawElementsIndirect >= 0)
284296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiDrawElementsIndirect] = (_glapi_proc)_mesa_marshal_MultiDrawElementsIndirect;
284396c5ddc4Srjs   if (_gloffset_Uniform1d >= 0)
284496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform1d] = (_glapi_proc)_mesa_marshal_Uniform1d;
284596c5ddc4Srjs   if (_gloffset_Uniform2d >= 0)
284696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform2d] = (_glapi_proc)_mesa_marshal_Uniform2d;
284796c5ddc4Srjs   if (_gloffset_Uniform3d >= 0)
284896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform3d] = (_glapi_proc)_mesa_marshal_Uniform3d;
284996c5ddc4Srjs   if (_gloffset_Uniform4d >= 0)
285096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform4d] = (_glapi_proc)_mesa_marshal_Uniform4d;
285196c5ddc4Srjs   if (_gloffset_Uniform1dv >= 0)
285296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform1dv] = (_glapi_proc)_mesa_marshal_Uniform1dv;
285396c5ddc4Srjs   if (_gloffset_Uniform2dv >= 0)
285496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform2dv] = (_glapi_proc)_mesa_marshal_Uniform2dv;
285596c5ddc4Srjs   if (_gloffset_Uniform3dv >= 0)
285696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform3dv] = (_glapi_proc)_mesa_marshal_Uniform3dv;
285796c5ddc4Srjs   if (_gloffset_Uniform4dv >= 0)
285896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform4dv] = (_glapi_proc)_mesa_marshal_Uniform4dv;
285996c5ddc4Srjs   if (_gloffset_UniformMatrix2dv >= 0)
286096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_UniformMatrix2dv] = (_glapi_proc)_mesa_marshal_UniformMatrix2dv;
286196c5ddc4Srjs   if (_gloffset_UniformMatrix3dv >= 0)
286296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_UniformMatrix3dv] = (_glapi_proc)_mesa_marshal_UniformMatrix3dv;
286396c5ddc4Srjs   if (_gloffset_UniformMatrix4dv >= 0)
286496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_UniformMatrix4dv] = (_glapi_proc)_mesa_marshal_UniformMatrix4dv;
286596c5ddc4Srjs   if (_gloffset_UniformMatrix2x3dv >= 0)
286696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_UniformMatrix2x3dv] = (_glapi_proc)_mesa_marshal_UniformMatrix2x3dv;
286796c5ddc4Srjs   if (_gloffset_UniformMatrix2x4dv >= 0)
286896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_UniformMatrix2x4dv] = (_glapi_proc)_mesa_marshal_UniformMatrix2x4dv;
286996c5ddc4Srjs   if (_gloffset_UniformMatrix3x2dv >= 0)
287096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_UniformMatrix3x2dv] = (_glapi_proc)_mesa_marshal_UniformMatrix3x2dv;
287196c5ddc4Srjs   if (_gloffset_UniformMatrix3x4dv >= 0)
287296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_UniformMatrix3x4dv] = (_glapi_proc)_mesa_marshal_UniformMatrix3x4dv;
287396c5ddc4Srjs   if (_gloffset_UniformMatrix4x2dv >= 0)
287496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_UniformMatrix4x2dv] = (_glapi_proc)_mesa_marshal_UniformMatrix4x2dv;
287596c5ddc4Srjs   if (_gloffset_UniformMatrix4x3dv >= 0)
287696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_UniformMatrix4x3dv] = (_glapi_proc)_mesa_marshal_UniformMatrix4x3dv;
287796c5ddc4Srjs   if (_gloffset_GetUniformdv >= 0)
287896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetUniformdv] = (_glapi_proc)_mesa_marshal_GetUniformdv;
287996c5ddc4Srjs   if (_gloffset_ProgramUniform1d >= 0)
288096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform1d] = (_glapi_proc)_mesa_marshal_ProgramUniform1d;
288196c5ddc4Srjs   if (_gloffset_ProgramUniform2d >= 0)
288296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform2d] = (_glapi_proc)_mesa_marshal_ProgramUniform2d;
288396c5ddc4Srjs   if (_gloffset_ProgramUniform3d >= 0)
288496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform3d] = (_glapi_proc)_mesa_marshal_ProgramUniform3d;
288596c5ddc4Srjs   if (_gloffset_ProgramUniform4d >= 0)
288696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform4d] = (_glapi_proc)_mesa_marshal_ProgramUniform4d;
288796c5ddc4Srjs   if (_gloffset_ProgramUniform1dv >= 0)
288896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform1dv] = (_glapi_proc)_mesa_marshal_ProgramUniform1dv;
288996c5ddc4Srjs   if (_gloffset_ProgramUniform2dv >= 0)
289096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform2dv] = (_glapi_proc)_mesa_marshal_ProgramUniform2dv;
289196c5ddc4Srjs   if (_gloffset_ProgramUniform3dv >= 0)
289296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform3dv] = (_glapi_proc)_mesa_marshal_ProgramUniform3dv;
289396c5ddc4Srjs   if (_gloffset_ProgramUniform4dv >= 0)
289496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform4dv] = (_glapi_proc)_mesa_marshal_ProgramUniform4dv;
289596c5ddc4Srjs   if (_gloffset_ProgramUniformMatrix2dv >= 0)
289696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniformMatrix2dv] = (_glapi_proc)_mesa_marshal_ProgramUniformMatrix2dv;
289796c5ddc4Srjs   if (_gloffset_ProgramUniformMatrix3dv >= 0)
289896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniformMatrix3dv] = (_glapi_proc)_mesa_marshal_ProgramUniformMatrix3dv;
289996c5ddc4Srjs   if (_gloffset_ProgramUniformMatrix4dv >= 0)
290096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniformMatrix4dv] = (_glapi_proc)_mesa_marshal_ProgramUniformMatrix4dv;
290196c5ddc4Srjs   if (_gloffset_ProgramUniformMatrix2x3dv >= 0)
290296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniformMatrix2x3dv] = (_glapi_proc)_mesa_marshal_ProgramUniformMatrix2x3dv;
290396c5ddc4Srjs   if (_gloffset_ProgramUniformMatrix2x4dv >= 0)
290496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniformMatrix2x4dv] = (_glapi_proc)_mesa_marshal_ProgramUniformMatrix2x4dv;
290596c5ddc4Srjs   if (_gloffset_ProgramUniformMatrix3x2dv >= 0)
290696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniformMatrix3x2dv] = (_glapi_proc)_mesa_marshal_ProgramUniformMatrix3x2dv;
290796c5ddc4Srjs   if (_gloffset_ProgramUniformMatrix3x4dv >= 0)
290896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniformMatrix3x4dv] = (_glapi_proc)_mesa_marshal_ProgramUniformMatrix3x4dv;
290996c5ddc4Srjs   if (_gloffset_ProgramUniformMatrix4x2dv >= 0)
291096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniformMatrix4x2dv] = (_glapi_proc)_mesa_marshal_ProgramUniformMatrix4x2dv;
291196c5ddc4Srjs   if (_gloffset_ProgramUniformMatrix4x3dv >= 0)
291296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniformMatrix4x3dv] = (_glapi_proc)_mesa_marshal_ProgramUniformMatrix4x3dv;
291396c5ddc4Srjs   if (_gloffset_DrawTransformFeedbackStream >= 0)
291496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DrawTransformFeedbackStream] = (_glapi_proc)_mesa_marshal_DrawTransformFeedbackStream;
291596c5ddc4Srjs   if (_gloffset_BeginQueryIndexed >= 0)
291696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BeginQueryIndexed] = (_glapi_proc)_mesa_marshal_BeginQueryIndexed;
291796c5ddc4Srjs   if (_gloffset_EndQueryIndexed >= 0)
291896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_EndQueryIndexed] = (_glapi_proc)_mesa_marshal_EndQueryIndexed;
291996c5ddc4Srjs   if (_gloffset_GetQueryIndexediv >= 0)
292096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetQueryIndexediv] = (_glapi_proc)_mesa_marshal_GetQueryIndexediv;
292196c5ddc4Srjs   if (_gloffset_UseProgramStages >= 0)
292296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_UseProgramStages] = (_glapi_proc)_mesa_marshal_UseProgramStages;
292396c5ddc4Srjs   if (_gloffset_ActiveShaderProgram >= 0)
292496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ActiveShaderProgram] = (_glapi_proc)_mesa_marshal_ActiveShaderProgram;
292596c5ddc4Srjs   if (_gloffset_CreateShaderProgramv >= 0)
292696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CreateShaderProgramv] = (_glapi_proc)_mesa_marshal_CreateShaderProgramv;
292796c5ddc4Srjs   if (_gloffset_BindProgramPipeline >= 0)
292896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BindProgramPipeline] = (_glapi_proc)_mesa_marshal_BindProgramPipeline;
292996c5ddc4Srjs   if (_gloffset_DeleteProgramPipelines >= 0)
293096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DeleteProgramPipelines] = (_glapi_proc)_mesa_marshal_DeleteProgramPipelines;
293196c5ddc4Srjs   if (_gloffset_GenProgramPipelines >= 0)
293296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GenProgramPipelines] = (_glapi_proc)_mesa_marshal_GenProgramPipelines;
293396c5ddc4Srjs   if (_gloffset_IsProgramPipeline >= 0)
293496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_IsProgramPipeline] = (_glapi_proc)_mesa_marshal_IsProgramPipeline;
293596c5ddc4Srjs   if (_gloffset_GetProgramPipelineiv >= 0)
293696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetProgramPipelineiv] = (_glapi_proc)_mesa_marshal_GetProgramPipelineiv;
293796c5ddc4Srjs   if (_gloffset_ProgramUniform1i >= 0)
293896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform1i] = (_glapi_proc)_mesa_marshal_ProgramUniform1i;
293996c5ddc4Srjs   if (_gloffset_ProgramUniform2i >= 0)
294096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform2i] = (_glapi_proc)_mesa_marshal_ProgramUniform2i;
294196c5ddc4Srjs   if (_gloffset_ProgramUniform3i >= 0)
294296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform3i] = (_glapi_proc)_mesa_marshal_ProgramUniform3i;
294396c5ddc4Srjs   if (_gloffset_ProgramUniform4i >= 0)
294496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform4i] = (_glapi_proc)_mesa_marshal_ProgramUniform4i;
294596c5ddc4Srjs   if (_gloffset_ProgramUniform1ui >= 0)
294696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform1ui] = (_glapi_proc)_mesa_marshal_ProgramUniform1ui;
294796c5ddc4Srjs   if (_gloffset_ProgramUniform2ui >= 0)
294896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform2ui] = (_glapi_proc)_mesa_marshal_ProgramUniform2ui;
294996c5ddc4Srjs   if (_gloffset_ProgramUniform3ui >= 0)
295096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform3ui] = (_glapi_proc)_mesa_marshal_ProgramUniform3ui;
295196c5ddc4Srjs   if (_gloffset_ProgramUniform4ui >= 0)
295296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform4ui] = (_glapi_proc)_mesa_marshal_ProgramUniform4ui;
295396c5ddc4Srjs   if (_gloffset_ProgramUniform1f >= 0)
295496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform1f] = (_glapi_proc)_mesa_marshal_ProgramUniform1f;
295596c5ddc4Srjs   if (_gloffset_ProgramUniform2f >= 0)
295696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform2f] = (_glapi_proc)_mesa_marshal_ProgramUniform2f;
295796c5ddc4Srjs   if (_gloffset_ProgramUniform3f >= 0)
295896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform3f] = (_glapi_proc)_mesa_marshal_ProgramUniform3f;
295996c5ddc4Srjs   if (_gloffset_ProgramUniform4f >= 0)
296096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform4f] = (_glapi_proc)_mesa_marshal_ProgramUniform4f;
296196c5ddc4Srjs   if (_gloffset_ProgramUniform1iv >= 0)
296296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform1iv] = (_glapi_proc)_mesa_marshal_ProgramUniform1iv;
296396c5ddc4Srjs   if (_gloffset_ProgramUniform2iv >= 0)
296496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform2iv] = (_glapi_proc)_mesa_marshal_ProgramUniform2iv;
296596c5ddc4Srjs   if (_gloffset_ProgramUniform3iv >= 0)
296696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform3iv] = (_glapi_proc)_mesa_marshal_ProgramUniform3iv;
296796c5ddc4Srjs   if (_gloffset_ProgramUniform4iv >= 0)
296896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform4iv] = (_glapi_proc)_mesa_marshal_ProgramUniform4iv;
296996c5ddc4Srjs   if (_gloffset_ProgramUniform1uiv >= 0)
297096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform1uiv] = (_glapi_proc)_mesa_marshal_ProgramUniform1uiv;
297196c5ddc4Srjs   if (_gloffset_ProgramUniform2uiv >= 0)
297296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform2uiv] = (_glapi_proc)_mesa_marshal_ProgramUniform2uiv;
297396c5ddc4Srjs   if (_gloffset_ProgramUniform3uiv >= 0)
297496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform3uiv] = (_glapi_proc)_mesa_marshal_ProgramUniform3uiv;
297596c5ddc4Srjs   if (_gloffset_ProgramUniform4uiv >= 0)
297696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform4uiv] = (_glapi_proc)_mesa_marshal_ProgramUniform4uiv;
297796c5ddc4Srjs   if (_gloffset_ProgramUniform1fv >= 0)
297896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform1fv] = (_glapi_proc)_mesa_marshal_ProgramUniform1fv;
297996c5ddc4Srjs   if (_gloffset_ProgramUniform2fv >= 0)
298096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform2fv] = (_glapi_proc)_mesa_marshal_ProgramUniform2fv;
298196c5ddc4Srjs   if (_gloffset_ProgramUniform3fv >= 0)
298296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform3fv] = (_glapi_proc)_mesa_marshal_ProgramUniform3fv;
298396c5ddc4Srjs   if (_gloffset_ProgramUniform4fv >= 0)
298496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform4fv] = (_glapi_proc)_mesa_marshal_ProgramUniform4fv;
298596c5ddc4Srjs   if (_gloffset_ProgramUniformMatrix2fv >= 0)
298696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniformMatrix2fv] = (_glapi_proc)_mesa_marshal_ProgramUniformMatrix2fv;
298796c5ddc4Srjs   if (_gloffset_ProgramUniformMatrix3fv >= 0)
298896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniformMatrix3fv] = (_glapi_proc)_mesa_marshal_ProgramUniformMatrix3fv;
298996c5ddc4Srjs   if (_gloffset_ProgramUniformMatrix4fv >= 0)
299096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniformMatrix4fv] = (_glapi_proc)_mesa_marshal_ProgramUniformMatrix4fv;
299196c5ddc4Srjs   if (_gloffset_ProgramUniformMatrix2x3fv >= 0)
299296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniformMatrix2x3fv] = (_glapi_proc)_mesa_marshal_ProgramUniformMatrix2x3fv;
299396c5ddc4Srjs   if (_gloffset_ProgramUniformMatrix3x2fv >= 0)
299496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniformMatrix3x2fv] = (_glapi_proc)_mesa_marshal_ProgramUniformMatrix3x2fv;
299596c5ddc4Srjs   if (_gloffset_ProgramUniformMatrix2x4fv >= 0)
299696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniformMatrix2x4fv] = (_glapi_proc)_mesa_marshal_ProgramUniformMatrix2x4fv;
299796c5ddc4Srjs   if (_gloffset_ProgramUniformMatrix4x2fv >= 0)
299896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniformMatrix4x2fv] = (_glapi_proc)_mesa_marshal_ProgramUniformMatrix4x2fv;
299996c5ddc4Srjs   if (_gloffset_ProgramUniformMatrix3x4fv >= 0)
300096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniformMatrix3x4fv] = (_glapi_proc)_mesa_marshal_ProgramUniformMatrix3x4fv;
300196c5ddc4Srjs   if (_gloffset_ProgramUniformMatrix4x3fv >= 0)
300296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniformMatrix4x3fv] = (_glapi_proc)_mesa_marshal_ProgramUniformMatrix4x3fv;
300396c5ddc4Srjs   if (_gloffset_ValidateProgramPipeline >= 0)
300496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ValidateProgramPipeline] = (_glapi_proc)_mesa_marshal_ValidateProgramPipeline;
300596c5ddc4Srjs   if (_gloffset_GetProgramPipelineInfoLog >= 0)
300696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetProgramPipelineInfoLog] = (_glapi_proc)_mesa_marshal_GetProgramPipelineInfoLog;
300796c5ddc4Srjs   if (_gloffset_VertexAttribL1d >= 0)
300896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribL1d] = (_glapi_proc)_mesa_marshal_VertexAttribL1d;
300996c5ddc4Srjs   if (_gloffset_VertexAttribL2d >= 0)
301096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribL2d] = (_glapi_proc)_mesa_marshal_VertexAttribL2d;
301196c5ddc4Srjs   if (_gloffset_VertexAttribL3d >= 0)
301296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribL3d] = (_glapi_proc)_mesa_marshal_VertexAttribL3d;
301396c5ddc4Srjs   if (_gloffset_VertexAttribL4d >= 0)
301496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribL4d] = (_glapi_proc)_mesa_marshal_VertexAttribL4d;
301596c5ddc4Srjs   if (_gloffset_VertexAttribL1dv >= 0)
301696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribL1dv] = (_glapi_proc)_mesa_marshal_VertexAttribL1dv;
301796c5ddc4Srjs   if (_gloffset_VertexAttribL2dv >= 0)
301896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribL2dv] = (_glapi_proc)_mesa_marshal_VertexAttribL2dv;
301996c5ddc4Srjs   if (_gloffset_VertexAttribL3dv >= 0)
302096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribL3dv] = (_glapi_proc)_mesa_marshal_VertexAttribL3dv;
302196c5ddc4Srjs   if (_gloffset_VertexAttribL4dv >= 0)
302296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribL4dv] = (_glapi_proc)_mesa_marshal_VertexAttribL4dv;
302396c5ddc4Srjs   if (_gloffset_VertexAttribLPointer >= 0)
302496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribLPointer] = (_glapi_proc)_mesa_marshal_VertexAttribLPointer;
302596c5ddc4Srjs   if (_gloffset_GetVertexAttribLdv >= 0)
302696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetVertexAttribLdv] = (_glapi_proc)_mesa_marshal_GetVertexAttribLdv;
302796c5ddc4Srjs   if (_gloffset_VertexArrayVertexAttribLOffsetEXT >= 0)
302896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexArrayVertexAttribLOffsetEXT] = (_glapi_proc)_mesa_marshal_VertexArrayVertexAttribLOffsetEXT;
302996c5ddc4Srjs   if (_gloffset_GetShaderPrecisionFormat >= 0)
303096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetShaderPrecisionFormat] = (_glapi_proc)_mesa_marshal_GetShaderPrecisionFormat;
303196c5ddc4Srjs   if (_gloffset_ReleaseShaderCompiler >= 0)
303296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ReleaseShaderCompiler] = (_glapi_proc)_mesa_marshal_ReleaseShaderCompiler;
303396c5ddc4Srjs   if (_gloffset_ShaderBinary >= 0)
303496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ShaderBinary] = (_glapi_proc)_mesa_marshal_ShaderBinary;
303596c5ddc4Srjs   if (_gloffset_ClearDepthf >= 0)
303696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ClearDepthf] = (_glapi_proc)_mesa_marshal_ClearDepthf;
303796c5ddc4Srjs   if (_gloffset_DepthRangef >= 0)
303896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DepthRangef] = (_glapi_proc)_mesa_marshal_DepthRangef;
303996c5ddc4Srjs   if (_gloffset_GetProgramBinary >= 0)
304096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetProgramBinary] = (_glapi_proc)_mesa_marshal_GetProgramBinary;
304196c5ddc4Srjs   if (_gloffset_ProgramBinary >= 0)
304296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramBinary] = (_glapi_proc)_mesa_marshal_ProgramBinary;
304396c5ddc4Srjs   if (_gloffset_ProgramParameteri >= 0)
304496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramParameteri] = (_glapi_proc)_mesa_marshal_ProgramParameteri;
304596c5ddc4Srjs   if (_gloffset_DebugMessageControl >= 0)
304696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DebugMessageControl] = (_glapi_proc)_mesa_marshal_DebugMessageControl;
304796c5ddc4Srjs   if (_gloffset_DebugMessageInsert >= 0)
304896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DebugMessageInsert] = (_glapi_proc)_mesa_marshal_DebugMessageInsert;
304996c5ddc4Srjs   if (_gloffset_DebugMessageCallback >= 0)
305096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DebugMessageCallback] = (_glapi_proc)_mesa_marshal_DebugMessageCallback;
305196c5ddc4Srjs   if (_gloffset_GetDebugMessageLog >= 0)
305296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetDebugMessageLog] = (_glapi_proc)_mesa_marshal_GetDebugMessageLog;
305396c5ddc4Srjs   if (_gloffset_GetGraphicsResetStatusARB >= 0)
305496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetGraphicsResetStatusARB] = (_glapi_proc)_mesa_marshal_GetGraphicsResetStatusARB;
305596c5ddc4Srjs   if (_gloffset_GetnMapdvARB >= 0)
305696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetnMapdvARB] = (_glapi_proc)_mesa_marshal_GetnMapdvARB;
305796c5ddc4Srjs   if (_gloffset_GetnMapfvARB >= 0)
305896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetnMapfvARB] = (_glapi_proc)_mesa_marshal_GetnMapfvARB;
305996c5ddc4Srjs   if (_gloffset_GetnMapivARB >= 0)
306096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetnMapivARB] = (_glapi_proc)_mesa_marshal_GetnMapivARB;
306196c5ddc4Srjs   if (_gloffset_GetnPixelMapfvARB >= 0)
306296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetnPixelMapfvARB] = (_glapi_proc)_mesa_marshal_GetnPixelMapfvARB;
306396c5ddc4Srjs   if (_gloffset_GetnPixelMapuivARB >= 0)
306496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetnPixelMapuivARB] = (_glapi_proc)_mesa_marshal_GetnPixelMapuivARB;
306596c5ddc4Srjs   if (_gloffset_GetnPixelMapusvARB >= 0)
306696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetnPixelMapusvARB] = (_glapi_proc)_mesa_marshal_GetnPixelMapusvARB;
306796c5ddc4Srjs   if (_gloffset_GetnPolygonStippleARB >= 0)
306896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetnPolygonStippleARB] = (_glapi_proc)_mesa_marshal_GetnPolygonStippleARB;
306996c5ddc4Srjs   if (_gloffset_GetnTexImageARB >= 0)
307096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetnTexImageARB] = (_glapi_proc)_mesa_marshal_GetnTexImageARB;
307196c5ddc4Srjs   if (_gloffset_ReadnPixelsARB >= 0)
307296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ReadnPixelsARB] = (_glapi_proc)_mesa_marshal_ReadnPixelsARB;
307396c5ddc4Srjs   if (_gloffset_GetnColorTableARB >= 0)
307496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetnColorTableARB] = (_glapi_proc)_mesa_marshal_GetnColorTableARB;
307596c5ddc4Srjs   if (_gloffset_GetnConvolutionFilterARB >= 0)
307696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetnConvolutionFilterARB] = (_glapi_proc)_mesa_marshal_GetnConvolutionFilterARB;
307796c5ddc4Srjs   if (_gloffset_GetnSeparableFilterARB >= 0)
307896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetnSeparableFilterARB] = (_glapi_proc)_mesa_marshal_GetnSeparableFilterARB;
307996c5ddc4Srjs   if (_gloffset_GetnHistogramARB >= 0)
308096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetnHistogramARB] = (_glapi_proc)_mesa_marshal_GetnHistogramARB;
308196c5ddc4Srjs   if (_gloffset_GetnMinmaxARB >= 0)
308296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetnMinmaxARB] = (_glapi_proc)_mesa_marshal_GetnMinmaxARB;
308396c5ddc4Srjs   if (_gloffset_GetnCompressedTexImageARB >= 0)
308496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetnCompressedTexImageARB] = (_glapi_proc)_mesa_marshal_GetnCompressedTexImageARB;
308596c5ddc4Srjs   if (_gloffset_GetnUniformfvARB >= 0)
308696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetnUniformfvARB] = (_glapi_proc)_mesa_marshal_GetnUniformfvARB;
308796c5ddc4Srjs   if (_gloffset_GetnUniformivARB >= 0)
308896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetnUniformivARB] = (_glapi_proc)_mesa_marshal_GetnUniformivARB;
308996c5ddc4Srjs   if (_gloffset_GetnUniformuivARB >= 0)
309096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetnUniformuivARB] = (_glapi_proc)_mesa_marshal_GetnUniformuivARB;
309196c5ddc4Srjs   if (_gloffset_GetnUniformdvARB >= 0)
309296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetnUniformdvARB] = (_glapi_proc)_mesa_marshal_GetnUniformdvARB;
309396c5ddc4Srjs   if (_gloffset_DrawArraysInstancedBaseInstance >= 0)
309496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DrawArraysInstancedBaseInstance] = (_glapi_proc)_mesa_marshal_DrawArraysInstancedBaseInstance;
309596c5ddc4Srjs   if (_gloffset_DrawElementsInstancedBaseInstance >= 0)
309696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DrawElementsInstancedBaseInstance] = (_glapi_proc)_mesa_marshal_DrawElementsInstancedBaseInstance;
309796c5ddc4Srjs   if (_gloffset_DrawElementsInstancedBaseVertexBaseInstance >= 0)
309896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DrawElementsInstancedBaseVertexBaseInstance] = (_glapi_proc)_mesa_marshal_DrawElementsInstancedBaseVertexBaseInstance;
309996c5ddc4Srjs   if (_gloffset_DrawTransformFeedbackInstanced >= 0)
310096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DrawTransformFeedbackInstanced] = (_glapi_proc)_mesa_marshal_DrawTransformFeedbackInstanced;
310196c5ddc4Srjs   if (_gloffset_DrawTransformFeedbackStreamInstanced >= 0)
310296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DrawTransformFeedbackStreamInstanced] = (_glapi_proc)_mesa_marshal_DrawTransformFeedbackStreamInstanced;
310396c5ddc4Srjs   if (_gloffset_GetInternalformativ >= 0)
310496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetInternalformativ] = (_glapi_proc)_mesa_marshal_GetInternalformativ;
310596c5ddc4Srjs   if (_gloffset_GetActiveAtomicCounterBufferiv >= 0)
310696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetActiveAtomicCounterBufferiv] = (_glapi_proc)_mesa_marshal_GetActiveAtomicCounterBufferiv;
310796c5ddc4Srjs   if (_gloffset_BindImageTexture >= 0)
310896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BindImageTexture] = (_glapi_proc)_mesa_marshal_BindImageTexture;
310996c5ddc4Srjs   if (_gloffset_MemoryBarrier >= 0)
311096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MemoryBarrier] = (_glapi_proc)_mesa_marshal_MemoryBarrier;
311196c5ddc4Srjs   if (_gloffset_TexStorage1D >= 0)
311296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexStorage1D] = (_glapi_proc)_mesa_marshal_TexStorage1D;
311396c5ddc4Srjs   if (_gloffset_TexStorage2D >= 0)
311496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexStorage2D] = (_glapi_proc)_mesa_marshal_TexStorage2D;
311596c5ddc4Srjs   if (_gloffset_TexStorage3D >= 0)
311696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexStorage3D] = (_glapi_proc)_mesa_marshal_TexStorage3D;
311796c5ddc4Srjs   if (_gloffset_TextureStorage1DEXT >= 0)
311896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureStorage1DEXT] = (_glapi_proc)_mesa_marshal_TextureStorage1DEXT;
311996c5ddc4Srjs   if (_gloffset_TextureStorage2DEXT >= 0)
312096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureStorage2DEXT] = (_glapi_proc)_mesa_marshal_TextureStorage2DEXT;
312196c5ddc4Srjs   if (_gloffset_TextureStorage3DEXT >= 0)
312296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureStorage3DEXT] = (_glapi_proc)_mesa_marshal_TextureStorage3DEXT;
312396c5ddc4Srjs   if (_gloffset_PushDebugGroup >= 0)
312496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PushDebugGroup] = (_glapi_proc)_mesa_marshal_PushDebugGroup;
312596c5ddc4Srjs   if (_gloffset_PopDebugGroup >= 0)
312696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PopDebugGroup] = (_glapi_proc)_mesa_marshal_PopDebugGroup;
312796c5ddc4Srjs   if (_gloffset_ObjectLabel >= 0)
312896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ObjectLabel] = (_glapi_proc)_mesa_marshal_ObjectLabel;
312996c5ddc4Srjs   if (_gloffset_GetObjectLabel >= 0)
313096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetObjectLabel] = (_glapi_proc)_mesa_marshal_GetObjectLabel;
313196c5ddc4Srjs   if (_gloffset_ObjectPtrLabel >= 0)
313296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ObjectPtrLabel] = (_glapi_proc)_mesa_marshal_ObjectPtrLabel;
313396c5ddc4Srjs   if (_gloffset_GetObjectPtrLabel >= 0)
313496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetObjectPtrLabel] = (_glapi_proc)_mesa_marshal_GetObjectPtrLabel;
313596c5ddc4Srjs   if (_gloffset_ClearBufferData >= 0)
313696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ClearBufferData] = (_glapi_proc)_mesa_marshal_ClearBufferData;
313796c5ddc4Srjs   if (_gloffset_ClearBufferSubData >= 0)
313896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ClearBufferSubData] = (_glapi_proc)_mesa_marshal_ClearBufferSubData;
313996c5ddc4Srjs   if (_gloffset_ClearNamedBufferDataEXT >= 0)
314096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ClearNamedBufferDataEXT] = (_glapi_proc)_mesa_marshal_ClearNamedBufferDataEXT;
314196c5ddc4Srjs   if (_gloffset_ClearNamedBufferSubDataEXT >= 0)
314296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ClearNamedBufferSubDataEXT] = (_glapi_proc)_mesa_marshal_ClearNamedBufferSubDataEXT;
314396c5ddc4Srjs   if (_gloffset_DispatchCompute >= 0)
314496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DispatchCompute] = (_glapi_proc)_mesa_marshal_DispatchCompute;
314596c5ddc4Srjs   if (_gloffset_DispatchComputeIndirect >= 0)
314696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DispatchComputeIndirect] = (_glapi_proc)_mesa_marshal_DispatchComputeIndirect;
314796c5ddc4Srjs   if (_gloffset_CopyImageSubData >= 0)
314896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CopyImageSubData] = (_glapi_proc)_mesa_marshal_CopyImageSubData;
314996c5ddc4Srjs   if (_gloffset_TextureView >= 0)
315096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureView] = (_glapi_proc)_mesa_marshal_TextureView;
315196c5ddc4Srjs   if (_gloffset_BindVertexBuffer >= 0)
315296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BindVertexBuffer] = (_glapi_proc)_mesa_marshal_BindVertexBuffer;
315396c5ddc4Srjs   if (_gloffset_VertexAttribFormat >= 0)
315496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribFormat] = (_glapi_proc)_mesa_marshal_VertexAttribFormat;
315596c5ddc4Srjs   if (_gloffset_VertexAttribIFormat >= 0)
315696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribIFormat] = (_glapi_proc)_mesa_marshal_VertexAttribIFormat;
315796c5ddc4Srjs   if (_gloffset_VertexAttribLFormat >= 0)
315896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribLFormat] = (_glapi_proc)_mesa_marshal_VertexAttribLFormat;
315996c5ddc4Srjs   if (_gloffset_VertexAttribBinding >= 0)
316096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribBinding] = (_glapi_proc)_mesa_marshal_VertexAttribBinding;
316196c5ddc4Srjs   if (_gloffset_VertexBindingDivisor >= 0)
316296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexBindingDivisor] = (_glapi_proc)_mesa_marshal_VertexBindingDivisor;
316396c5ddc4Srjs   if (_gloffset_VertexArrayBindVertexBufferEXT >= 0)
316496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexArrayBindVertexBufferEXT] = (_glapi_proc)_mesa_marshal_VertexArrayBindVertexBufferEXT;
316596c5ddc4Srjs   if (_gloffset_VertexArrayVertexAttribFormatEXT >= 0)
316696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexArrayVertexAttribFormatEXT] = (_glapi_proc)_mesa_marshal_VertexArrayVertexAttribFormatEXT;
316796c5ddc4Srjs   if (_gloffset_VertexArrayVertexAttribIFormatEXT >= 0)
316896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexArrayVertexAttribIFormatEXT] = (_glapi_proc)_mesa_marshal_VertexArrayVertexAttribIFormatEXT;
316996c5ddc4Srjs   if (_gloffset_VertexArrayVertexAttribLFormatEXT >= 0)
317096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexArrayVertexAttribLFormatEXT] = (_glapi_proc)_mesa_marshal_VertexArrayVertexAttribLFormatEXT;
317196c5ddc4Srjs   if (_gloffset_VertexArrayVertexAttribBindingEXT >= 0)
317296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexArrayVertexAttribBindingEXT] = (_glapi_proc)_mesa_marshal_VertexArrayVertexAttribBindingEXT;
317396c5ddc4Srjs   if (_gloffset_VertexArrayVertexBindingDivisorEXT >= 0)
317496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexArrayVertexBindingDivisorEXT] = (_glapi_proc)_mesa_marshal_VertexArrayVertexBindingDivisorEXT;
317596c5ddc4Srjs   if (_gloffset_FramebufferParameteri >= 0)
317696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_FramebufferParameteri] = (_glapi_proc)_mesa_marshal_FramebufferParameteri;
317796c5ddc4Srjs   if (_gloffset_GetFramebufferParameteriv >= 0)
317896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetFramebufferParameteriv] = (_glapi_proc)_mesa_marshal_GetFramebufferParameteriv;
317996c5ddc4Srjs   if (_gloffset_NamedFramebufferParameteriEXT >= 0)
318096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NamedFramebufferParameteriEXT] = (_glapi_proc)_mesa_marshal_NamedFramebufferParameteriEXT;
318196c5ddc4Srjs   if (_gloffset_GetNamedFramebufferParameterivEXT >= 0)
318296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetNamedFramebufferParameterivEXT] = (_glapi_proc)_mesa_marshal_GetNamedFramebufferParameterivEXT;
318396c5ddc4Srjs   if (_gloffset_GetInternalformati64v >= 0)
318496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetInternalformati64v] = (_glapi_proc)_mesa_marshal_GetInternalformati64v;
318596c5ddc4Srjs   if (_gloffset_InvalidateTexSubImage >= 0)
318696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_InvalidateTexSubImage] = (_glapi_proc)_mesa_marshal_InvalidateTexSubImage;
318796c5ddc4Srjs   if (_gloffset_InvalidateTexImage >= 0)
318896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_InvalidateTexImage] = (_glapi_proc)_mesa_marshal_InvalidateTexImage;
318996c5ddc4Srjs   if (_gloffset_InvalidateBufferSubData >= 0)
319096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_InvalidateBufferSubData] = (_glapi_proc)_mesa_marshal_InvalidateBufferSubData;
319196c5ddc4Srjs   if (_gloffset_InvalidateBufferData >= 0)
319296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_InvalidateBufferData] = (_glapi_proc)_mesa_marshal_InvalidateBufferData;
319396c5ddc4Srjs   if (_gloffset_InvalidateSubFramebuffer >= 0)
319496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_InvalidateSubFramebuffer] = (_glapi_proc)_mesa_marshal_InvalidateSubFramebuffer;
319596c5ddc4Srjs   if (_gloffset_InvalidateFramebuffer >= 0)
319696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_InvalidateFramebuffer] = (_glapi_proc)_mesa_marshal_InvalidateFramebuffer;
319796c5ddc4Srjs   if (_gloffset_GetProgramInterfaceiv >= 0)
319896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetProgramInterfaceiv] = (_glapi_proc)_mesa_marshal_GetProgramInterfaceiv;
319996c5ddc4Srjs   if (_gloffset_GetProgramResourceIndex >= 0)
320096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetProgramResourceIndex] = (_glapi_proc)_mesa_marshal_GetProgramResourceIndex;
320196c5ddc4Srjs   if (_gloffset_GetProgramResourceName >= 0)
320296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetProgramResourceName] = (_glapi_proc)_mesa_marshal_GetProgramResourceName;
320396c5ddc4Srjs   if (_gloffset_GetProgramResourceiv >= 0)
320496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetProgramResourceiv] = (_glapi_proc)_mesa_marshal_GetProgramResourceiv;
320596c5ddc4Srjs   if (_gloffset_GetProgramResourceLocation >= 0)
320696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetProgramResourceLocation] = (_glapi_proc)_mesa_marshal_GetProgramResourceLocation;
320796c5ddc4Srjs   if (_gloffset_GetProgramResourceLocationIndex >= 0)
320896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetProgramResourceLocationIndex] = (_glapi_proc)_mesa_marshal_GetProgramResourceLocationIndex;
320996c5ddc4Srjs   if (_gloffset_ShaderStorageBlockBinding >= 0)
321096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ShaderStorageBlockBinding] = (_glapi_proc)_mesa_marshal_ShaderStorageBlockBinding;
321196c5ddc4Srjs   if (_gloffset_TexBufferRange >= 0)
321296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexBufferRange] = (_glapi_proc)_mesa_marshal_TexBufferRange;
321396c5ddc4Srjs   if (_gloffset_TextureBufferRangeEXT >= 0)
321496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureBufferRangeEXT] = (_glapi_proc)_mesa_marshal_TextureBufferRangeEXT;
321596c5ddc4Srjs   if (_gloffset_TexStorage2DMultisample >= 0)
321696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexStorage2DMultisample] = (_glapi_proc)_mesa_marshal_TexStorage2DMultisample;
321796c5ddc4Srjs   if (_gloffset_TexStorage3DMultisample >= 0)
321896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexStorage3DMultisample] = (_glapi_proc)_mesa_marshal_TexStorage3DMultisample;
321996c5ddc4Srjs   if (_gloffset_TextureStorage2DMultisampleEXT >= 0)
322096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureStorage2DMultisampleEXT] = (_glapi_proc)_mesa_marshal_TextureStorage2DMultisampleEXT;
322196c5ddc4Srjs   if (_gloffset_TextureStorage3DMultisampleEXT >= 0)
322296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureStorage3DMultisampleEXT] = (_glapi_proc)_mesa_marshal_TextureStorage3DMultisampleEXT;
322396c5ddc4Srjs   if (_gloffset_BufferStorage >= 0)
322496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BufferStorage] = (_glapi_proc)_mesa_marshal_BufferStorage;
322596c5ddc4Srjs   if (_gloffset_NamedBufferStorageEXT >= 0)
322696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NamedBufferStorageEXT] = (_glapi_proc)_mesa_marshal_NamedBufferStorageEXT;
322796c5ddc4Srjs   if (_gloffset_ClearTexImage >= 0)
322896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ClearTexImage] = (_glapi_proc)_mesa_marshal_ClearTexImage;
322996c5ddc4Srjs   if (_gloffset_ClearTexSubImage >= 0)
323096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ClearTexSubImage] = (_glapi_proc)_mesa_marshal_ClearTexSubImage;
323196c5ddc4Srjs   if (_gloffset_BindBuffersBase >= 0)
323296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BindBuffersBase] = (_glapi_proc)_mesa_marshal_BindBuffersBase;
323396c5ddc4Srjs   if (_gloffset_BindBuffersRange >= 0)
323496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BindBuffersRange] = (_glapi_proc)_mesa_marshal_BindBuffersRange;
323596c5ddc4Srjs   if (_gloffset_BindTextures >= 0)
323696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BindTextures] = (_glapi_proc)_mesa_marshal_BindTextures;
323796c5ddc4Srjs   if (_gloffset_BindSamplers >= 0)
323896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BindSamplers] = (_glapi_proc)_mesa_marshal_BindSamplers;
323996c5ddc4Srjs   if (_gloffset_BindImageTextures >= 0)
324096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BindImageTextures] = (_glapi_proc)_mesa_marshal_BindImageTextures;
324196c5ddc4Srjs   if (_gloffset_BindVertexBuffers >= 0)
324296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BindVertexBuffers] = (_glapi_proc)_mesa_marshal_BindVertexBuffers;
324396c5ddc4Srjs   if (_gloffset_GetTextureHandleARB >= 0)
324496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetTextureHandleARB] = (_glapi_proc)_mesa_marshal_GetTextureHandleARB;
324596c5ddc4Srjs   if (_gloffset_GetTextureSamplerHandleARB >= 0)
324696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetTextureSamplerHandleARB] = (_glapi_proc)_mesa_marshal_GetTextureSamplerHandleARB;
324796c5ddc4Srjs   if (_gloffset_MakeTextureHandleResidentARB >= 0)
324896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MakeTextureHandleResidentARB] = (_glapi_proc)_mesa_marshal_MakeTextureHandleResidentARB;
324996c5ddc4Srjs   if (_gloffset_MakeTextureHandleNonResidentARB >= 0)
325096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MakeTextureHandleNonResidentARB] = (_glapi_proc)_mesa_marshal_MakeTextureHandleNonResidentARB;
325196c5ddc4Srjs   if (_gloffset_GetImageHandleARB >= 0)
325296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetImageHandleARB] = (_glapi_proc)_mesa_marshal_GetImageHandleARB;
325396c5ddc4Srjs   if (_gloffset_MakeImageHandleResidentARB >= 0)
325496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MakeImageHandleResidentARB] = (_glapi_proc)_mesa_marshal_MakeImageHandleResidentARB;
325596c5ddc4Srjs   if (_gloffset_MakeImageHandleNonResidentARB >= 0)
325696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MakeImageHandleNonResidentARB] = (_glapi_proc)_mesa_marshal_MakeImageHandleNonResidentARB;
325796c5ddc4Srjs   if (_gloffset_UniformHandleui64ARB >= 0)
325896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_UniformHandleui64ARB] = (_glapi_proc)_mesa_marshal_UniformHandleui64ARB;
325996c5ddc4Srjs   if (_gloffset_UniformHandleui64vARB >= 0)
326096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_UniformHandleui64vARB] = (_glapi_proc)_mesa_marshal_UniformHandleui64vARB;
326196c5ddc4Srjs   if (_gloffset_ProgramUniformHandleui64ARB >= 0)
326296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniformHandleui64ARB] = (_glapi_proc)_mesa_marshal_ProgramUniformHandleui64ARB;
326396c5ddc4Srjs   if (_gloffset_ProgramUniformHandleui64vARB >= 0)
326496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniformHandleui64vARB] = (_glapi_proc)_mesa_marshal_ProgramUniformHandleui64vARB;
326596c5ddc4Srjs   if (_gloffset_IsTextureHandleResidentARB >= 0)
326696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_IsTextureHandleResidentARB] = (_glapi_proc)_mesa_marshal_IsTextureHandleResidentARB;
326796c5ddc4Srjs   if (_gloffset_IsImageHandleResidentARB >= 0)
326896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_IsImageHandleResidentARB] = (_glapi_proc)_mesa_marshal_IsImageHandleResidentARB;
326996c5ddc4Srjs   if (_gloffset_VertexAttribL1ui64ARB >= 0)
327096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribL1ui64ARB] = (_glapi_proc)_mesa_marshal_VertexAttribL1ui64ARB;
327196c5ddc4Srjs   if (_gloffset_VertexAttribL1ui64vARB >= 0)
327296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribL1ui64vARB] = (_glapi_proc)_mesa_marshal_VertexAttribL1ui64vARB;
327396c5ddc4Srjs   if (_gloffset_GetVertexAttribLui64vARB >= 0)
327496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetVertexAttribLui64vARB] = (_glapi_proc)_mesa_marshal_GetVertexAttribLui64vARB;
327596c5ddc4Srjs   if (_gloffset_DispatchComputeGroupSizeARB >= 0)
327696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DispatchComputeGroupSizeARB] = (_glapi_proc)_mesa_marshal_DispatchComputeGroupSizeARB;
327796c5ddc4Srjs   if (_gloffset_MultiDrawArraysIndirectCountARB >= 0)
327896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiDrawArraysIndirectCountARB] = (_glapi_proc)_mesa_marshal_MultiDrawArraysIndirectCountARB;
327996c5ddc4Srjs   if (_gloffset_MultiDrawElementsIndirectCountARB >= 0)
328096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiDrawElementsIndirectCountARB] = (_glapi_proc)_mesa_marshal_MultiDrawElementsIndirectCountARB;
328196c5ddc4Srjs   if (_gloffset_ClipControl >= 0)
328296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ClipControl] = (_glapi_proc)_mesa_marshal_ClipControl;
328396c5ddc4Srjs   if (_gloffset_CreateTransformFeedbacks >= 0)
328496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CreateTransformFeedbacks] = (_glapi_proc)_mesa_marshal_CreateTransformFeedbacks;
328596c5ddc4Srjs   if (_gloffset_TransformFeedbackBufferBase >= 0)
328696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TransformFeedbackBufferBase] = (_glapi_proc)_mesa_marshal_TransformFeedbackBufferBase;
328796c5ddc4Srjs   if (_gloffset_TransformFeedbackBufferRange >= 0)
328896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TransformFeedbackBufferRange] = (_glapi_proc)_mesa_marshal_TransformFeedbackBufferRange;
328996c5ddc4Srjs   if (_gloffset_GetTransformFeedbackiv >= 0)
329096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetTransformFeedbackiv] = (_glapi_proc)_mesa_marshal_GetTransformFeedbackiv;
329196c5ddc4Srjs   if (_gloffset_GetTransformFeedbacki_v >= 0)
329296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetTransformFeedbacki_v] = (_glapi_proc)_mesa_marshal_GetTransformFeedbacki_v;
329396c5ddc4Srjs   if (_gloffset_GetTransformFeedbacki64_v >= 0)
329496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetTransformFeedbacki64_v] = (_glapi_proc)_mesa_marshal_GetTransformFeedbacki64_v;
329596c5ddc4Srjs   if (_gloffset_CreateBuffers >= 0)
329696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CreateBuffers] = (_glapi_proc)_mesa_marshal_CreateBuffers;
329796c5ddc4Srjs   if (_gloffset_NamedBufferStorage >= 0)
329896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NamedBufferStorage] = (_glapi_proc)_mesa_marshal_NamedBufferStorage;
329996c5ddc4Srjs   if (_gloffset_NamedBufferData >= 0)
330096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NamedBufferData] = (_glapi_proc)_mesa_marshal_NamedBufferData;
330196c5ddc4Srjs   if (_gloffset_NamedBufferSubData >= 0)
330296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NamedBufferSubData] = (_glapi_proc)_mesa_marshal_NamedBufferSubData;
330396c5ddc4Srjs   if (_gloffset_CopyNamedBufferSubData >= 0)
330496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CopyNamedBufferSubData] = (_glapi_proc)_mesa_marshal_CopyNamedBufferSubData;
330596c5ddc4Srjs   if (_gloffset_ClearNamedBufferData >= 0)
330696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ClearNamedBufferData] = (_glapi_proc)_mesa_marshal_ClearNamedBufferData;
330796c5ddc4Srjs   if (_gloffset_ClearNamedBufferSubData >= 0)
330896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ClearNamedBufferSubData] = (_glapi_proc)_mesa_marshal_ClearNamedBufferSubData;
330996c5ddc4Srjs   if (_gloffset_MapNamedBuffer >= 0)
331096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MapNamedBuffer] = (_glapi_proc)_mesa_marshal_MapNamedBuffer;
331196c5ddc4Srjs   if (_gloffset_MapNamedBufferRange >= 0)
331296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MapNamedBufferRange] = (_glapi_proc)_mesa_marshal_MapNamedBufferRange;
331396c5ddc4Srjs   if (_gloffset_UnmapNamedBufferEXT >= 0)
331496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_UnmapNamedBufferEXT] = (_glapi_proc)_mesa_marshal_UnmapNamedBufferEXT;
331596c5ddc4Srjs   if (_gloffset_FlushMappedNamedBufferRange >= 0)
331696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_FlushMappedNamedBufferRange] = (_glapi_proc)_mesa_marshal_FlushMappedNamedBufferRange;
331796c5ddc4Srjs   if (_gloffset_GetNamedBufferParameteriv >= 0)
331896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetNamedBufferParameteriv] = (_glapi_proc)_mesa_marshal_GetNamedBufferParameteriv;
331996c5ddc4Srjs   if (_gloffset_GetNamedBufferParameteri64v >= 0)
332096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetNamedBufferParameteri64v] = (_glapi_proc)_mesa_marshal_GetNamedBufferParameteri64v;
332196c5ddc4Srjs   if (_gloffset_GetNamedBufferPointerv >= 0)
332296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetNamedBufferPointerv] = (_glapi_proc)_mesa_marshal_GetNamedBufferPointerv;
332396c5ddc4Srjs   if (_gloffset_GetNamedBufferSubData >= 0)
332496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetNamedBufferSubData] = (_glapi_proc)_mesa_marshal_GetNamedBufferSubData;
332596c5ddc4Srjs   if (_gloffset_CreateFramebuffers >= 0)
332696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CreateFramebuffers] = (_glapi_proc)_mesa_marshal_CreateFramebuffers;
332796c5ddc4Srjs   if (_gloffset_NamedFramebufferRenderbuffer >= 0)
332896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NamedFramebufferRenderbuffer] = (_glapi_proc)_mesa_marshal_NamedFramebufferRenderbuffer;
332996c5ddc4Srjs   if (_gloffset_NamedFramebufferParameteri >= 0)
333096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NamedFramebufferParameteri] = (_glapi_proc)_mesa_marshal_NamedFramebufferParameteri;
333196c5ddc4Srjs   if (_gloffset_NamedFramebufferTexture >= 0)
333296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NamedFramebufferTexture] = (_glapi_proc)_mesa_marshal_NamedFramebufferTexture;
333396c5ddc4Srjs   if (_gloffset_NamedFramebufferTextureLayer >= 0)
333496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NamedFramebufferTextureLayer] = (_glapi_proc)_mesa_marshal_NamedFramebufferTextureLayer;
333596c5ddc4Srjs   if (_gloffset_NamedFramebufferDrawBuffer >= 0)
333696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NamedFramebufferDrawBuffer] = (_glapi_proc)_mesa_marshal_NamedFramebufferDrawBuffer;
333796c5ddc4Srjs   if (_gloffset_NamedFramebufferDrawBuffers >= 0)
333896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NamedFramebufferDrawBuffers] = (_glapi_proc)_mesa_marshal_NamedFramebufferDrawBuffers;
333996c5ddc4Srjs   if (_gloffset_NamedFramebufferReadBuffer >= 0)
334096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NamedFramebufferReadBuffer] = (_glapi_proc)_mesa_marshal_NamedFramebufferReadBuffer;
334196c5ddc4Srjs   if (_gloffset_InvalidateNamedFramebufferData >= 0)
334296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_InvalidateNamedFramebufferData] = (_glapi_proc)_mesa_marshal_InvalidateNamedFramebufferData;
334396c5ddc4Srjs   if (_gloffset_InvalidateNamedFramebufferSubData >= 0)
334496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_InvalidateNamedFramebufferSubData] = (_glapi_proc)_mesa_marshal_InvalidateNamedFramebufferSubData;
334596c5ddc4Srjs   if (_gloffset_ClearNamedFramebufferiv >= 0)
334696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ClearNamedFramebufferiv] = (_glapi_proc)_mesa_marshal_ClearNamedFramebufferiv;
334796c5ddc4Srjs   if (_gloffset_ClearNamedFramebufferuiv >= 0)
334896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ClearNamedFramebufferuiv] = (_glapi_proc)_mesa_marshal_ClearNamedFramebufferuiv;
334996c5ddc4Srjs   if (_gloffset_ClearNamedFramebufferfv >= 0)
335096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ClearNamedFramebufferfv] = (_glapi_proc)_mesa_marshal_ClearNamedFramebufferfv;
335196c5ddc4Srjs   if (_gloffset_ClearNamedFramebufferfi >= 0)
335296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ClearNamedFramebufferfi] = (_glapi_proc)_mesa_marshal_ClearNamedFramebufferfi;
335396c5ddc4Srjs   if (_gloffset_BlitNamedFramebuffer >= 0)
335496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BlitNamedFramebuffer] = (_glapi_proc)_mesa_marshal_BlitNamedFramebuffer;
335596c5ddc4Srjs   if (_gloffset_CheckNamedFramebufferStatus >= 0)
335696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CheckNamedFramebufferStatus] = (_glapi_proc)_mesa_marshal_CheckNamedFramebufferStatus;
335796c5ddc4Srjs   if (_gloffset_GetNamedFramebufferParameteriv >= 0)
335896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetNamedFramebufferParameteriv] = (_glapi_proc)_mesa_marshal_GetNamedFramebufferParameteriv;
335996c5ddc4Srjs   if (_gloffset_GetNamedFramebufferAttachmentParameteriv >= 0)
336096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetNamedFramebufferAttachmentParameteriv] = (_glapi_proc)_mesa_marshal_GetNamedFramebufferAttachmentParameteriv;
336196c5ddc4Srjs   if (_gloffset_CreateRenderbuffers >= 0)
336296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CreateRenderbuffers] = (_glapi_proc)_mesa_marshal_CreateRenderbuffers;
336396c5ddc4Srjs   if (_gloffset_NamedRenderbufferStorage >= 0)
336496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NamedRenderbufferStorage] = (_glapi_proc)_mesa_marshal_NamedRenderbufferStorage;
336596c5ddc4Srjs   if (_gloffset_NamedRenderbufferStorageMultisample >= 0)
336696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NamedRenderbufferStorageMultisample] = (_glapi_proc)_mesa_marshal_NamedRenderbufferStorageMultisample;
336796c5ddc4Srjs   if (_gloffset_GetNamedRenderbufferParameteriv >= 0)
336896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetNamedRenderbufferParameteriv] = (_glapi_proc)_mesa_marshal_GetNamedRenderbufferParameteriv;
336996c5ddc4Srjs   if (_gloffset_CreateTextures >= 0)
337096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CreateTextures] = (_glapi_proc)_mesa_marshal_CreateTextures;
337196c5ddc4Srjs   if (_gloffset_TextureBuffer >= 0)
337296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureBuffer] = (_glapi_proc)_mesa_marshal_TextureBuffer;
337396c5ddc4Srjs   if (_gloffset_TextureBufferRange >= 0)
337496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureBufferRange] = (_glapi_proc)_mesa_marshal_TextureBufferRange;
337596c5ddc4Srjs   if (_gloffset_TextureStorage1D >= 0)
337696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureStorage1D] = (_glapi_proc)_mesa_marshal_TextureStorage1D;
337796c5ddc4Srjs   if (_gloffset_TextureStorage2D >= 0)
337896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureStorage2D] = (_glapi_proc)_mesa_marshal_TextureStorage2D;
337996c5ddc4Srjs   if (_gloffset_TextureStorage3D >= 0)
338096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureStorage3D] = (_glapi_proc)_mesa_marshal_TextureStorage3D;
338196c5ddc4Srjs   if (_gloffset_TextureStorage2DMultisample >= 0)
338296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureStorage2DMultisample] = (_glapi_proc)_mesa_marshal_TextureStorage2DMultisample;
338396c5ddc4Srjs   if (_gloffset_TextureStorage3DMultisample >= 0)
338496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureStorage3DMultisample] = (_glapi_proc)_mesa_marshal_TextureStorage3DMultisample;
338596c5ddc4Srjs   if (_gloffset_TextureSubImage1D >= 0)
338696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureSubImage1D] = (_glapi_proc)_mesa_marshal_TextureSubImage1D;
338796c5ddc4Srjs   if (_gloffset_TextureSubImage2D >= 0)
338896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureSubImage2D] = (_glapi_proc)_mesa_marshal_TextureSubImage2D;
338996c5ddc4Srjs   if (_gloffset_TextureSubImage3D >= 0)
339096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureSubImage3D] = (_glapi_proc)_mesa_marshal_TextureSubImage3D;
339196c5ddc4Srjs   if (_gloffset_CompressedTextureSubImage1D >= 0)
339296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CompressedTextureSubImage1D] = (_glapi_proc)_mesa_marshal_CompressedTextureSubImage1D;
339396c5ddc4Srjs   if (_gloffset_CompressedTextureSubImage2D >= 0)
339496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CompressedTextureSubImage2D] = (_glapi_proc)_mesa_marshal_CompressedTextureSubImage2D;
339596c5ddc4Srjs   if (_gloffset_CompressedTextureSubImage3D >= 0)
339696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CompressedTextureSubImage3D] = (_glapi_proc)_mesa_marshal_CompressedTextureSubImage3D;
339796c5ddc4Srjs   if (_gloffset_CopyTextureSubImage1D >= 0)
339896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CopyTextureSubImage1D] = (_glapi_proc)_mesa_marshal_CopyTextureSubImage1D;
339996c5ddc4Srjs   if (_gloffset_CopyTextureSubImage2D >= 0)
340096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CopyTextureSubImage2D] = (_glapi_proc)_mesa_marshal_CopyTextureSubImage2D;
340196c5ddc4Srjs   if (_gloffset_CopyTextureSubImage3D >= 0)
340296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CopyTextureSubImage3D] = (_glapi_proc)_mesa_marshal_CopyTextureSubImage3D;
340396c5ddc4Srjs   if (_gloffset_TextureParameterf >= 0)
340496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureParameterf] = (_glapi_proc)_mesa_marshal_TextureParameterf;
340596c5ddc4Srjs   if (_gloffset_TextureParameterfv >= 0)
340696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureParameterfv] = (_glapi_proc)_mesa_marshal_TextureParameterfv;
340796c5ddc4Srjs   if (_gloffset_TextureParameteri >= 0)
340896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureParameteri] = (_glapi_proc)_mesa_marshal_TextureParameteri;
340996c5ddc4Srjs   if (_gloffset_TextureParameterIiv >= 0)
341096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureParameterIiv] = (_glapi_proc)_mesa_marshal_TextureParameterIiv;
341196c5ddc4Srjs   if (_gloffset_TextureParameterIuiv >= 0)
341296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureParameterIuiv] = (_glapi_proc)_mesa_marshal_TextureParameterIuiv;
341396c5ddc4Srjs   if (_gloffset_TextureParameteriv >= 0)
341496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureParameteriv] = (_glapi_proc)_mesa_marshal_TextureParameteriv;
341596c5ddc4Srjs   if (_gloffset_GenerateTextureMipmap >= 0)
341696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GenerateTextureMipmap] = (_glapi_proc)_mesa_marshal_GenerateTextureMipmap;
341796c5ddc4Srjs   if (_gloffset_BindTextureUnit >= 0)
341896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BindTextureUnit] = (_glapi_proc)_mesa_marshal_BindTextureUnit;
341996c5ddc4Srjs   if (_gloffset_GetTextureImage >= 0)
342096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetTextureImage] = (_glapi_proc)_mesa_marshal_GetTextureImage;
342196c5ddc4Srjs   if (_gloffset_GetCompressedTextureImage >= 0)
342296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetCompressedTextureImage] = (_glapi_proc)_mesa_marshal_GetCompressedTextureImage;
342396c5ddc4Srjs   if (_gloffset_GetTextureLevelParameterfv >= 0)
342496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetTextureLevelParameterfv] = (_glapi_proc)_mesa_marshal_GetTextureLevelParameterfv;
342596c5ddc4Srjs   if (_gloffset_GetTextureLevelParameteriv >= 0)
342696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetTextureLevelParameteriv] = (_glapi_proc)_mesa_marshal_GetTextureLevelParameteriv;
342796c5ddc4Srjs   if (_gloffset_GetTextureParameterfv >= 0)
342896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetTextureParameterfv] = (_glapi_proc)_mesa_marshal_GetTextureParameterfv;
342996c5ddc4Srjs   if (_gloffset_GetTextureParameterIiv >= 0)
343096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetTextureParameterIiv] = (_glapi_proc)_mesa_marshal_GetTextureParameterIiv;
343196c5ddc4Srjs   if (_gloffset_GetTextureParameterIuiv >= 0)
343296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetTextureParameterIuiv] = (_glapi_proc)_mesa_marshal_GetTextureParameterIuiv;
343396c5ddc4Srjs   if (_gloffset_GetTextureParameteriv >= 0)
343496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetTextureParameteriv] = (_glapi_proc)_mesa_marshal_GetTextureParameteriv;
343596c5ddc4Srjs   if (_gloffset_CreateVertexArrays >= 0)
343696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CreateVertexArrays] = (_glapi_proc)_mesa_marshal_CreateVertexArrays;
343796c5ddc4Srjs   if (_gloffset_DisableVertexArrayAttrib >= 0)
343896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DisableVertexArrayAttrib] = (_glapi_proc)_mesa_marshal_DisableVertexArrayAttrib;
343996c5ddc4Srjs   if (_gloffset_EnableVertexArrayAttrib >= 0)
344096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_EnableVertexArrayAttrib] = (_glapi_proc)_mesa_marshal_EnableVertexArrayAttrib;
344196c5ddc4Srjs   if (_gloffset_VertexArrayElementBuffer >= 0)
344296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexArrayElementBuffer] = (_glapi_proc)_mesa_marshal_VertexArrayElementBuffer;
344396c5ddc4Srjs   if (_gloffset_VertexArrayVertexBuffer >= 0)
344496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexArrayVertexBuffer] = (_glapi_proc)_mesa_marshal_VertexArrayVertexBuffer;
344596c5ddc4Srjs   if (_gloffset_VertexArrayVertexBuffers >= 0)
344696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexArrayVertexBuffers] = (_glapi_proc)_mesa_marshal_VertexArrayVertexBuffers;
344796c5ddc4Srjs   if (_gloffset_VertexArrayAttribFormat >= 0)
344896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexArrayAttribFormat] = (_glapi_proc)_mesa_marshal_VertexArrayAttribFormat;
344996c5ddc4Srjs   if (_gloffset_VertexArrayAttribIFormat >= 0)
345096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexArrayAttribIFormat] = (_glapi_proc)_mesa_marshal_VertexArrayAttribIFormat;
345196c5ddc4Srjs   if (_gloffset_VertexArrayAttribLFormat >= 0)
345296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexArrayAttribLFormat] = (_glapi_proc)_mesa_marshal_VertexArrayAttribLFormat;
345396c5ddc4Srjs   if (_gloffset_VertexArrayAttribBinding >= 0)
345496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexArrayAttribBinding] = (_glapi_proc)_mesa_marshal_VertexArrayAttribBinding;
345596c5ddc4Srjs   if (_gloffset_VertexArrayBindingDivisor >= 0)
345696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexArrayBindingDivisor] = (_glapi_proc)_mesa_marshal_VertexArrayBindingDivisor;
345796c5ddc4Srjs   if (_gloffset_GetVertexArrayiv >= 0)
345896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetVertexArrayiv] = (_glapi_proc)_mesa_marshal_GetVertexArrayiv;
345996c5ddc4Srjs   if (_gloffset_GetVertexArrayIndexediv >= 0)
346096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetVertexArrayIndexediv] = (_glapi_proc)_mesa_marshal_GetVertexArrayIndexediv;
346196c5ddc4Srjs   if (_gloffset_GetVertexArrayIndexed64iv >= 0)
346296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetVertexArrayIndexed64iv] = (_glapi_proc)_mesa_marshal_GetVertexArrayIndexed64iv;
346396c5ddc4Srjs   if (_gloffset_CreateSamplers >= 0)
346496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CreateSamplers] = (_glapi_proc)_mesa_marshal_CreateSamplers;
346596c5ddc4Srjs   if (_gloffset_CreateProgramPipelines >= 0)
346696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CreateProgramPipelines] = (_glapi_proc)_mesa_marshal_CreateProgramPipelines;
346796c5ddc4Srjs   if (_gloffset_CreateQueries >= 0)
346896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CreateQueries] = (_glapi_proc)_mesa_marshal_CreateQueries;
346996c5ddc4Srjs   if (_gloffset_GetQueryBufferObjectiv >= 0)
347096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetQueryBufferObjectiv] = (_glapi_proc)_mesa_marshal_GetQueryBufferObjectiv;
347196c5ddc4Srjs   if (_gloffset_GetQueryBufferObjectuiv >= 0)
347296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetQueryBufferObjectuiv] = (_glapi_proc)_mesa_marshal_GetQueryBufferObjectuiv;
347396c5ddc4Srjs   if (_gloffset_GetQueryBufferObjecti64v >= 0)
347496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetQueryBufferObjecti64v] = (_glapi_proc)_mesa_marshal_GetQueryBufferObjecti64v;
347596c5ddc4Srjs   if (_gloffset_GetQueryBufferObjectui64v >= 0)
347696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetQueryBufferObjectui64v] = (_glapi_proc)_mesa_marshal_GetQueryBufferObjectui64v;
347796c5ddc4Srjs   if (_gloffset_GetTextureSubImage >= 0)
347896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetTextureSubImage] = (_glapi_proc)_mesa_marshal_GetTextureSubImage;
347996c5ddc4Srjs   if (_gloffset_GetCompressedTextureSubImage >= 0)
348096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetCompressedTextureSubImage] = (_glapi_proc)_mesa_marshal_GetCompressedTextureSubImage;
348196c5ddc4Srjs   if (_gloffset_TextureBarrierNV >= 0)
348296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureBarrierNV] = (_glapi_proc)_mesa_marshal_TextureBarrierNV;
348396c5ddc4Srjs   if (_gloffset_BufferPageCommitmentARB >= 0)
348496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BufferPageCommitmentARB] = (_glapi_proc)_mesa_marshal_BufferPageCommitmentARB;
348596c5ddc4Srjs   if (_gloffset_NamedBufferPageCommitmentEXT >= 0)
348696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NamedBufferPageCommitmentEXT] = (_glapi_proc)_mesa_marshal_NamedBufferPageCommitmentEXT;
348796c5ddc4Srjs   if (_gloffset_NamedBufferPageCommitmentARB >= 0)
348896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NamedBufferPageCommitmentARB] = (_glapi_proc)_mesa_marshal_NamedBufferPageCommitmentARB;
348996c5ddc4Srjs   if (_gloffset_PrimitiveBoundingBox >= 0)
349096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PrimitiveBoundingBox] = (_glapi_proc)_mesa_marshal_PrimitiveBoundingBox;
349196c5ddc4Srjs   if (_gloffset_BlendBarrier >= 0)
349296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BlendBarrier] = (_glapi_proc)_mesa_marshal_BlendBarrier;
349396c5ddc4Srjs   if (_gloffset_Uniform1i64ARB >= 0)
349496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform1i64ARB] = (_glapi_proc)_mesa_marshal_Uniform1i64ARB;
349596c5ddc4Srjs   if (_gloffset_Uniform2i64ARB >= 0)
349696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform2i64ARB] = (_glapi_proc)_mesa_marshal_Uniform2i64ARB;
349796c5ddc4Srjs   if (_gloffset_Uniform3i64ARB >= 0)
349896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform3i64ARB] = (_glapi_proc)_mesa_marshal_Uniform3i64ARB;
349996c5ddc4Srjs   if (_gloffset_Uniform4i64ARB >= 0)
350096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform4i64ARB] = (_glapi_proc)_mesa_marshal_Uniform4i64ARB;
350196c5ddc4Srjs   if (_gloffset_Uniform1i64vARB >= 0)
350296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform1i64vARB] = (_glapi_proc)_mesa_marshal_Uniform1i64vARB;
350396c5ddc4Srjs   if (_gloffset_Uniform2i64vARB >= 0)
350496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform2i64vARB] = (_glapi_proc)_mesa_marshal_Uniform2i64vARB;
350596c5ddc4Srjs   if (_gloffset_Uniform3i64vARB >= 0)
350696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform3i64vARB] = (_glapi_proc)_mesa_marshal_Uniform3i64vARB;
350796c5ddc4Srjs   if (_gloffset_Uniform4i64vARB >= 0)
350896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform4i64vARB] = (_glapi_proc)_mesa_marshal_Uniform4i64vARB;
350996c5ddc4Srjs   if (_gloffset_Uniform1ui64ARB >= 0)
351096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform1ui64ARB] = (_glapi_proc)_mesa_marshal_Uniform1ui64ARB;
351196c5ddc4Srjs   if (_gloffset_Uniform2ui64ARB >= 0)
351296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform2ui64ARB] = (_glapi_proc)_mesa_marshal_Uniform2ui64ARB;
351396c5ddc4Srjs   if (_gloffset_Uniform3ui64ARB >= 0)
351496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform3ui64ARB] = (_glapi_proc)_mesa_marshal_Uniform3ui64ARB;
351596c5ddc4Srjs   if (_gloffset_Uniform4ui64ARB >= 0)
351696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform4ui64ARB] = (_glapi_proc)_mesa_marshal_Uniform4ui64ARB;
351796c5ddc4Srjs   if (_gloffset_Uniform1ui64vARB >= 0)
351896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform1ui64vARB] = (_glapi_proc)_mesa_marshal_Uniform1ui64vARB;
351996c5ddc4Srjs   if (_gloffset_Uniform2ui64vARB >= 0)
352096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform2ui64vARB] = (_glapi_proc)_mesa_marshal_Uniform2ui64vARB;
352196c5ddc4Srjs   if (_gloffset_Uniform3ui64vARB >= 0)
352296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform3ui64vARB] = (_glapi_proc)_mesa_marshal_Uniform3ui64vARB;
352396c5ddc4Srjs   if (_gloffset_Uniform4ui64vARB >= 0)
352496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform4ui64vARB] = (_glapi_proc)_mesa_marshal_Uniform4ui64vARB;
352596c5ddc4Srjs   if (_gloffset_GetUniformi64vARB >= 0)
352696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetUniformi64vARB] = (_glapi_proc)_mesa_marshal_GetUniformi64vARB;
352796c5ddc4Srjs   if (_gloffset_GetUniformui64vARB >= 0)
352896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetUniformui64vARB] = (_glapi_proc)_mesa_marshal_GetUniformui64vARB;
352996c5ddc4Srjs   if (_gloffset_GetnUniformi64vARB >= 0)
353096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetnUniformi64vARB] = (_glapi_proc)_mesa_marshal_GetnUniformi64vARB;
353196c5ddc4Srjs   if (_gloffset_GetnUniformui64vARB >= 0)
353296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetnUniformui64vARB] = (_glapi_proc)_mesa_marshal_GetnUniformui64vARB;
353396c5ddc4Srjs   if (_gloffset_ProgramUniform1i64ARB >= 0)
353496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform1i64ARB] = (_glapi_proc)_mesa_marshal_ProgramUniform1i64ARB;
353596c5ddc4Srjs   if (_gloffset_ProgramUniform2i64ARB >= 0)
353696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform2i64ARB] = (_glapi_proc)_mesa_marshal_ProgramUniform2i64ARB;
353796c5ddc4Srjs   if (_gloffset_ProgramUniform3i64ARB >= 0)
353896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform3i64ARB] = (_glapi_proc)_mesa_marshal_ProgramUniform3i64ARB;
353996c5ddc4Srjs   if (_gloffset_ProgramUniform4i64ARB >= 0)
354096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform4i64ARB] = (_glapi_proc)_mesa_marshal_ProgramUniform4i64ARB;
354196c5ddc4Srjs   if (_gloffset_ProgramUniform1i64vARB >= 0)
354296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform1i64vARB] = (_glapi_proc)_mesa_marshal_ProgramUniform1i64vARB;
354396c5ddc4Srjs   if (_gloffset_ProgramUniform2i64vARB >= 0)
354496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform2i64vARB] = (_glapi_proc)_mesa_marshal_ProgramUniform2i64vARB;
354596c5ddc4Srjs   if (_gloffset_ProgramUniform3i64vARB >= 0)
354696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform3i64vARB] = (_glapi_proc)_mesa_marshal_ProgramUniform3i64vARB;
354796c5ddc4Srjs   if (_gloffset_ProgramUniform4i64vARB >= 0)
354896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform4i64vARB] = (_glapi_proc)_mesa_marshal_ProgramUniform4i64vARB;
354996c5ddc4Srjs   if (_gloffset_ProgramUniform1ui64ARB >= 0)
355096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform1ui64ARB] = (_glapi_proc)_mesa_marshal_ProgramUniform1ui64ARB;
355196c5ddc4Srjs   if (_gloffset_ProgramUniform2ui64ARB >= 0)
355296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform2ui64ARB] = (_glapi_proc)_mesa_marshal_ProgramUniform2ui64ARB;
355396c5ddc4Srjs   if (_gloffset_ProgramUniform3ui64ARB >= 0)
355496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform3ui64ARB] = (_glapi_proc)_mesa_marshal_ProgramUniform3ui64ARB;
355596c5ddc4Srjs   if (_gloffset_ProgramUniform4ui64ARB >= 0)
355696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform4ui64ARB] = (_glapi_proc)_mesa_marshal_ProgramUniform4ui64ARB;
355796c5ddc4Srjs   if (_gloffset_ProgramUniform1ui64vARB >= 0)
355896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform1ui64vARB] = (_glapi_proc)_mesa_marshal_ProgramUniform1ui64vARB;
355996c5ddc4Srjs   if (_gloffset_ProgramUniform2ui64vARB >= 0)
356096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform2ui64vARB] = (_glapi_proc)_mesa_marshal_ProgramUniform2ui64vARB;
356196c5ddc4Srjs   if (_gloffset_ProgramUniform3ui64vARB >= 0)
356296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform3ui64vARB] = (_glapi_proc)_mesa_marshal_ProgramUniform3ui64vARB;
356396c5ddc4Srjs   if (_gloffset_ProgramUniform4ui64vARB >= 0)
356496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramUniform4ui64vARB] = (_glapi_proc)_mesa_marshal_ProgramUniform4ui64vARB;
356596c5ddc4Srjs   if (_gloffset_MaxShaderCompilerThreadsKHR >= 0)
356696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MaxShaderCompilerThreadsKHR] = (_glapi_proc)_mesa_marshal_MaxShaderCompilerThreadsKHR;
356796c5ddc4Srjs   if (_gloffset_SpecializeShaderARB >= 0)
356896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_SpecializeShaderARB] = (_glapi_proc)_mesa_marshal_SpecializeShaderARB;
356996c5ddc4Srjs   if (_gloffset_ColorPointerEXT >= 0)
357096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ColorPointerEXT] = (_glapi_proc)_mesa_marshal_ColorPointerEXT;
357196c5ddc4Srjs   if (_gloffset_EdgeFlagPointerEXT >= 0)
357296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_EdgeFlagPointerEXT] = (_glapi_proc)_mesa_marshal_EdgeFlagPointerEXT;
357396c5ddc4Srjs   if (_gloffset_IndexPointerEXT >= 0)
357496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_IndexPointerEXT] = (_glapi_proc)_mesa_marshal_IndexPointerEXT;
357596c5ddc4Srjs   if (_gloffset_NormalPointerEXT >= 0)
357696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NormalPointerEXT] = (_glapi_proc)_mesa_marshal_NormalPointerEXT;
357796c5ddc4Srjs   if (_gloffset_TexCoordPointerEXT >= 0)
357896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoordPointerEXT] = (_glapi_proc)_mesa_marshal_TexCoordPointerEXT;
357996c5ddc4Srjs   if (_gloffset_VertexPointerEXT >= 0)
358096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexPointerEXT] = (_glapi_proc)_mesa_marshal_VertexPointerEXT;
358196c5ddc4Srjs   if (_gloffset_LockArraysEXT >= 0)
358296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_LockArraysEXT] = (_glapi_proc)_mesa_marshal_LockArraysEXT;
358396c5ddc4Srjs   if (_gloffset_UnlockArraysEXT >= 0)
358496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_UnlockArraysEXT] = (_glapi_proc)_mesa_marshal_UnlockArraysEXT;
358596c5ddc4Srjs   if (_gloffset_ViewportArrayv >= 0)
358696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ViewportArrayv] = (_glapi_proc)_mesa_marshal_ViewportArrayv;
358796c5ddc4Srjs   if (_gloffset_ViewportIndexedf >= 0)
358896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ViewportIndexedf] = (_glapi_proc)_mesa_marshal_ViewportIndexedf;
358996c5ddc4Srjs   if (_gloffset_ViewportIndexedfv >= 0)
359096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ViewportIndexedfv] = (_glapi_proc)_mesa_marshal_ViewportIndexedfv;
359196c5ddc4Srjs   if (_gloffset_ScissorArrayv >= 0)
359296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ScissorArrayv] = (_glapi_proc)_mesa_marshal_ScissorArrayv;
359396c5ddc4Srjs   if (_gloffset_ScissorIndexed >= 0)
359496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ScissorIndexed] = (_glapi_proc)_mesa_marshal_ScissorIndexed;
359596c5ddc4Srjs   if (_gloffset_ScissorIndexedv >= 0)
359696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ScissorIndexedv] = (_glapi_proc)_mesa_marshal_ScissorIndexedv;
359796c5ddc4Srjs   if (_gloffset_DepthRangeArrayv >= 0)
359896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DepthRangeArrayv] = (_glapi_proc)_mesa_marshal_DepthRangeArrayv;
359996c5ddc4Srjs   if (_gloffset_DepthRangeIndexed >= 0)
360096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DepthRangeIndexed] = (_glapi_proc)_mesa_marshal_DepthRangeIndexed;
360196c5ddc4Srjs   if (_gloffset_GetFloati_v >= 0)
360296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetFloati_v] = (_glapi_proc)_mesa_marshal_GetFloati_v;
360396c5ddc4Srjs   if (_gloffset_GetDoublei_v >= 0)
360496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetDoublei_v] = (_glapi_proc)_mesa_marshal_GetDoublei_v;
360596c5ddc4Srjs   if (_gloffset_FramebufferSampleLocationsfvARB >= 0)
360696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_FramebufferSampleLocationsfvARB] = (_glapi_proc)_mesa_marshal_FramebufferSampleLocationsfvARB;
360796c5ddc4Srjs   if (_gloffset_NamedFramebufferSampleLocationsfvARB >= 0)
360896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NamedFramebufferSampleLocationsfvARB] = (_glapi_proc)_mesa_marshal_NamedFramebufferSampleLocationsfvARB;
360996c5ddc4Srjs   if (_gloffset_EvaluateDepthValuesARB >= 0)
361096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_EvaluateDepthValuesARB] = (_glapi_proc)_mesa_marshal_EvaluateDepthValuesARB;
361196c5ddc4Srjs   if (_gloffset_WindowPos4dMESA >= 0)
361296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_WindowPos4dMESA] = (_glapi_proc)_mesa_marshal_WindowPos4dMESA;
361396c5ddc4Srjs   if (_gloffset_WindowPos4dvMESA >= 0)
361496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_WindowPos4dvMESA] = (_glapi_proc)_mesa_marshal_WindowPos4dvMESA;
361596c5ddc4Srjs   if (_gloffset_WindowPos4fMESA >= 0)
361696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_WindowPos4fMESA] = (_glapi_proc)_mesa_marshal_WindowPos4fMESA;
361796c5ddc4Srjs   if (_gloffset_WindowPos4fvMESA >= 0)
361896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_WindowPos4fvMESA] = (_glapi_proc)_mesa_marshal_WindowPos4fvMESA;
361996c5ddc4Srjs   if (_gloffset_WindowPos4iMESA >= 0)
362096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_WindowPos4iMESA] = (_glapi_proc)_mesa_marshal_WindowPos4iMESA;
362196c5ddc4Srjs   if (_gloffset_WindowPos4ivMESA >= 0)
362296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_WindowPos4ivMESA] = (_glapi_proc)_mesa_marshal_WindowPos4ivMESA;
362396c5ddc4Srjs   if (_gloffset_WindowPos4sMESA >= 0)
362496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_WindowPos4sMESA] = (_glapi_proc)_mesa_marshal_WindowPos4sMESA;
362596c5ddc4Srjs   if (_gloffset_WindowPos4svMESA >= 0)
362696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_WindowPos4svMESA] = (_glapi_proc)_mesa_marshal_WindowPos4svMESA;
362796c5ddc4Srjs   if (_gloffset_MultiModeDrawArraysIBM >= 0)
362896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiModeDrawArraysIBM] = (_glapi_proc)_mesa_marshal_MultiModeDrawArraysIBM;
362996c5ddc4Srjs   if (_gloffset_MultiModeDrawElementsIBM >= 0)
363096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiModeDrawElementsIBM] = (_glapi_proc)_mesa_marshal_MultiModeDrawElementsIBM;
363196c5ddc4Srjs   if (_gloffset_VertexAttrib1sNV >= 0)
363296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib1sNV] = (_glapi_proc)_mesa_marshal_VertexAttrib1sNV;
363396c5ddc4Srjs   if (_gloffset_VertexAttrib1svNV >= 0)
363496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib1svNV] = (_glapi_proc)_mesa_marshal_VertexAttrib1svNV;
363596c5ddc4Srjs   if (_gloffset_VertexAttrib2sNV >= 0)
363696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib2sNV] = (_glapi_proc)_mesa_marshal_VertexAttrib2sNV;
363796c5ddc4Srjs   if (_gloffset_VertexAttrib2svNV >= 0)
363896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib2svNV] = (_glapi_proc)_mesa_marshal_VertexAttrib2svNV;
363996c5ddc4Srjs   if (_gloffset_VertexAttrib3sNV >= 0)
364096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib3sNV] = (_glapi_proc)_mesa_marshal_VertexAttrib3sNV;
364196c5ddc4Srjs   if (_gloffset_VertexAttrib3svNV >= 0)
364296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib3svNV] = (_glapi_proc)_mesa_marshal_VertexAttrib3svNV;
364396c5ddc4Srjs   if (_gloffset_VertexAttrib4sNV >= 0)
364496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib4sNV] = (_glapi_proc)_mesa_marshal_VertexAttrib4sNV;
364596c5ddc4Srjs   if (_gloffset_VertexAttrib4svNV >= 0)
364696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib4svNV] = (_glapi_proc)_mesa_marshal_VertexAttrib4svNV;
364796c5ddc4Srjs   if (_gloffset_VertexAttrib1fNV >= 0)
364896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib1fNV] = (_glapi_proc)_mesa_marshal_VertexAttrib1fNV;
364996c5ddc4Srjs   if (_gloffset_VertexAttrib1fvNV >= 0)
365096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib1fvNV] = (_glapi_proc)_mesa_marshal_VertexAttrib1fvNV;
365196c5ddc4Srjs   if (_gloffset_VertexAttrib2fNV >= 0)
365296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib2fNV] = (_glapi_proc)_mesa_marshal_VertexAttrib2fNV;
365396c5ddc4Srjs   if (_gloffset_VertexAttrib2fvNV >= 0)
365496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib2fvNV] = (_glapi_proc)_mesa_marshal_VertexAttrib2fvNV;
365596c5ddc4Srjs   if (_gloffset_VertexAttrib3fNV >= 0)
365696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib3fNV] = (_glapi_proc)_mesa_marshal_VertexAttrib3fNV;
365796c5ddc4Srjs   if (_gloffset_VertexAttrib3fvNV >= 0)
365896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib3fvNV] = (_glapi_proc)_mesa_marshal_VertexAttrib3fvNV;
365996c5ddc4Srjs   if (_gloffset_VertexAttrib4fNV >= 0)
366096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib4fNV] = (_glapi_proc)_mesa_marshal_VertexAttrib4fNV;
366196c5ddc4Srjs   if (_gloffset_VertexAttrib4fvNV >= 0)
366296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib4fvNV] = (_glapi_proc)_mesa_marshal_VertexAttrib4fvNV;
366396c5ddc4Srjs   if (_gloffset_VertexAttrib1dNV >= 0)
366496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib1dNV] = (_glapi_proc)_mesa_marshal_VertexAttrib1dNV;
366596c5ddc4Srjs   if (_gloffset_VertexAttrib1dvNV >= 0)
366696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib1dvNV] = (_glapi_proc)_mesa_marshal_VertexAttrib1dvNV;
366796c5ddc4Srjs   if (_gloffset_VertexAttrib2dNV >= 0)
366896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib2dNV] = (_glapi_proc)_mesa_marshal_VertexAttrib2dNV;
366996c5ddc4Srjs   if (_gloffset_VertexAttrib2dvNV >= 0)
367096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib2dvNV] = (_glapi_proc)_mesa_marshal_VertexAttrib2dvNV;
367196c5ddc4Srjs   if (_gloffset_VertexAttrib3dNV >= 0)
367296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib3dNV] = (_glapi_proc)_mesa_marshal_VertexAttrib3dNV;
367396c5ddc4Srjs   if (_gloffset_VertexAttrib3dvNV >= 0)
367496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib3dvNV] = (_glapi_proc)_mesa_marshal_VertexAttrib3dvNV;
367596c5ddc4Srjs   if (_gloffset_VertexAttrib4dNV >= 0)
367696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib4dNV] = (_glapi_proc)_mesa_marshal_VertexAttrib4dNV;
367796c5ddc4Srjs   if (_gloffset_VertexAttrib4dvNV >= 0)
367896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib4dvNV] = (_glapi_proc)_mesa_marshal_VertexAttrib4dvNV;
367996c5ddc4Srjs   if (_gloffset_VertexAttrib4ubNV >= 0)
368096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib4ubNV] = (_glapi_proc)_mesa_marshal_VertexAttrib4ubNV;
368196c5ddc4Srjs   if (_gloffset_VertexAttrib4ubvNV >= 0)
368296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib4ubvNV] = (_glapi_proc)_mesa_marshal_VertexAttrib4ubvNV;
368396c5ddc4Srjs   if (_gloffset_VertexAttribs1svNV >= 0)
368496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribs1svNV] = (_glapi_proc)_mesa_marshal_VertexAttribs1svNV;
368596c5ddc4Srjs   if (_gloffset_VertexAttribs2svNV >= 0)
368696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribs2svNV] = (_glapi_proc)_mesa_marshal_VertexAttribs2svNV;
368796c5ddc4Srjs   if (_gloffset_VertexAttribs3svNV >= 0)
368896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribs3svNV] = (_glapi_proc)_mesa_marshal_VertexAttribs3svNV;
368996c5ddc4Srjs   if (_gloffset_VertexAttribs4svNV >= 0)
369096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribs4svNV] = (_glapi_proc)_mesa_marshal_VertexAttribs4svNV;
369196c5ddc4Srjs   if (_gloffset_VertexAttribs1fvNV >= 0)
369296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribs1fvNV] = (_glapi_proc)_mesa_marshal_VertexAttribs1fvNV;
369396c5ddc4Srjs   if (_gloffset_VertexAttribs2fvNV >= 0)
369496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribs2fvNV] = (_glapi_proc)_mesa_marshal_VertexAttribs2fvNV;
369596c5ddc4Srjs   if (_gloffset_VertexAttribs3fvNV >= 0)
369696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribs3fvNV] = (_glapi_proc)_mesa_marshal_VertexAttribs3fvNV;
369796c5ddc4Srjs   if (_gloffset_VertexAttribs4fvNV >= 0)
369896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribs4fvNV] = (_glapi_proc)_mesa_marshal_VertexAttribs4fvNV;
369996c5ddc4Srjs   if (_gloffset_VertexAttribs1dvNV >= 0)
370096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribs1dvNV] = (_glapi_proc)_mesa_marshal_VertexAttribs1dvNV;
370196c5ddc4Srjs   if (_gloffset_VertexAttribs2dvNV >= 0)
370296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribs2dvNV] = (_glapi_proc)_mesa_marshal_VertexAttribs2dvNV;
370396c5ddc4Srjs   if (_gloffset_VertexAttribs3dvNV >= 0)
370496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribs3dvNV] = (_glapi_proc)_mesa_marshal_VertexAttribs3dvNV;
370596c5ddc4Srjs   if (_gloffset_VertexAttribs4dvNV >= 0)
370696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribs4dvNV] = (_glapi_proc)_mesa_marshal_VertexAttribs4dvNV;
370796c5ddc4Srjs   if (_gloffset_VertexAttribs4ubvNV >= 0)
370896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribs4ubvNV] = (_glapi_proc)_mesa_marshal_VertexAttribs4ubvNV;
370996c5ddc4Srjs   if (_gloffset_GenFragmentShadersATI >= 0)
371096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GenFragmentShadersATI] = (_glapi_proc)_mesa_marshal_GenFragmentShadersATI;
371196c5ddc4Srjs   if (_gloffset_BindFragmentShaderATI >= 0)
371296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BindFragmentShaderATI] = (_glapi_proc)_mesa_marshal_BindFragmentShaderATI;
371396c5ddc4Srjs   if (_gloffset_DeleteFragmentShaderATI >= 0)
371496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DeleteFragmentShaderATI] = (_glapi_proc)_mesa_marshal_DeleteFragmentShaderATI;
371596c5ddc4Srjs   if (_gloffset_BeginFragmentShaderATI >= 0)
371696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BeginFragmentShaderATI] = (_glapi_proc)_mesa_marshal_BeginFragmentShaderATI;
371796c5ddc4Srjs   if (_gloffset_EndFragmentShaderATI >= 0)
371896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_EndFragmentShaderATI] = (_glapi_proc)_mesa_marshal_EndFragmentShaderATI;
371996c5ddc4Srjs   if (_gloffset_PassTexCoordATI >= 0)
372096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PassTexCoordATI] = (_glapi_proc)_mesa_marshal_PassTexCoordATI;
372196c5ddc4Srjs   if (_gloffset_SampleMapATI >= 0)
372296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_SampleMapATI] = (_glapi_proc)_mesa_marshal_SampleMapATI;
372396c5ddc4Srjs   if (_gloffset_ColorFragmentOp1ATI >= 0)
372496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ColorFragmentOp1ATI] = (_glapi_proc)_mesa_marshal_ColorFragmentOp1ATI;
372596c5ddc4Srjs   if (_gloffset_ColorFragmentOp2ATI >= 0)
372696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ColorFragmentOp2ATI] = (_glapi_proc)_mesa_marshal_ColorFragmentOp2ATI;
372796c5ddc4Srjs   if (_gloffset_ColorFragmentOp3ATI >= 0)
372896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ColorFragmentOp3ATI] = (_glapi_proc)_mesa_marshal_ColorFragmentOp3ATI;
372996c5ddc4Srjs   if (_gloffset_AlphaFragmentOp1ATI >= 0)
373096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_AlphaFragmentOp1ATI] = (_glapi_proc)_mesa_marshal_AlphaFragmentOp1ATI;
373196c5ddc4Srjs   if (_gloffset_AlphaFragmentOp2ATI >= 0)
373296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_AlphaFragmentOp2ATI] = (_glapi_proc)_mesa_marshal_AlphaFragmentOp2ATI;
373396c5ddc4Srjs   if (_gloffset_AlphaFragmentOp3ATI >= 0)
373496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_AlphaFragmentOp3ATI] = (_glapi_proc)_mesa_marshal_AlphaFragmentOp3ATI;
373596c5ddc4Srjs   if (_gloffset_SetFragmentShaderConstantATI >= 0)
373696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_SetFragmentShaderConstantATI] = (_glapi_proc)_mesa_marshal_SetFragmentShaderConstantATI;
373796c5ddc4Srjs   if (_gloffset_ActiveStencilFaceEXT >= 0)
373896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ActiveStencilFaceEXT] = (_glapi_proc)_mesa_marshal_ActiveStencilFaceEXT;
373996c5ddc4Srjs   if (_gloffset_ObjectPurgeableAPPLE >= 0)
374096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ObjectPurgeableAPPLE] = (_glapi_proc)_mesa_marshal_ObjectPurgeableAPPLE;
374196c5ddc4Srjs   if (_gloffset_ObjectUnpurgeableAPPLE >= 0)
374296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ObjectUnpurgeableAPPLE] = (_glapi_proc)_mesa_marshal_ObjectUnpurgeableAPPLE;
374396c5ddc4Srjs   if (_gloffset_GetObjectParameterivAPPLE >= 0)
374496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetObjectParameterivAPPLE] = (_glapi_proc)_mesa_marshal_GetObjectParameterivAPPLE;
374596c5ddc4Srjs   if (_gloffset_DepthBoundsEXT >= 0)
374696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DepthBoundsEXT] = (_glapi_proc)_mesa_marshal_DepthBoundsEXT;
374796c5ddc4Srjs   if (_gloffset_BindRenderbufferEXT >= 0)
374896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BindRenderbufferEXT] = (_glapi_proc)_mesa_marshal_BindRenderbufferEXT;
374996c5ddc4Srjs   if (_gloffset_BindFramebufferEXT >= 0)
375096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BindFramebufferEXT] = (_glapi_proc)_mesa_marshal_BindFramebufferEXT;
375196c5ddc4Srjs   if (_gloffset_StringMarkerGREMEDY >= 0)
375296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_StringMarkerGREMEDY] = (_glapi_proc)_mesa_marshal_StringMarkerGREMEDY;
375396c5ddc4Srjs   if (_gloffset_ProvokingVertex >= 0)
375496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProvokingVertex] = (_glapi_proc)_mesa_marshal_ProvokingVertex;
375596c5ddc4Srjs   if (_gloffset_ColorMaski >= 0)
375696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ColorMaski] = (_glapi_proc)_mesa_marshal_ColorMaski;
375796c5ddc4Srjs   if (_gloffset_GetBooleani_v >= 0)
375896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetBooleani_v] = (_glapi_proc)_mesa_marshal_GetBooleani_v;
375996c5ddc4Srjs   if (_gloffset_GetIntegeri_v >= 0)
376096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetIntegeri_v] = (_glapi_proc)_mesa_marshal_GetIntegeri_v;
376196c5ddc4Srjs   if (_gloffset_Enablei >= 0)
376296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Enablei] = (_glapi_proc)_mesa_marshal_Enablei;
376396c5ddc4Srjs   if (_gloffset_Disablei >= 0)
376496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Disablei] = (_glapi_proc)_mesa_marshal_Disablei;
376596c5ddc4Srjs   if (_gloffset_IsEnabledi >= 0)
376696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_IsEnabledi] = (_glapi_proc)_mesa_marshal_IsEnabledi;
376796c5ddc4Srjs   if (_gloffset_GetPerfMonitorGroupsAMD >= 0)
376896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetPerfMonitorGroupsAMD] = (_glapi_proc)_mesa_marshal_GetPerfMonitorGroupsAMD;
376996c5ddc4Srjs   if (_gloffset_GetPerfMonitorCountersAMD >= 0)
377096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetPerfMonitorCountersAMD] = (_glapi_proc)_mesa_marshal_GetPerfMonitorCountersAMD;
377196c5ddc4Srjs   if (_gloffset_GetPerfMonitorGroupStringAMD >= 0)
377296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetPerfMonitorGroupStringAMD] = (_glapi_proc)_mesa_marshal_GetPerfMonitorGroupStringAMD;
377396c5ddc4Srjs   if (_gloffset_GetPerfMonitorCounterStringAMD >= 0)
377496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetPerfMonitorCounterStringAMD] = (_glapi_proc)_mesa_marshal_GetPerfMonitorCounterStringAMD;
377596c5ddc4Srjs   if (_gloffset_GetPerfMonitorCounterInfoAMD >= 0)
377696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetPerfMonitorCounterInfoAMD] = (_glapi_proc)_mesa_marshal_GetPerfMonitorCounterInfoAMD;
377796c5ddc4Srjs   if (_gloffset_GenPerfMonitorsAMD >= 0)
377896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GenPerfMonitorsAMD] = (_glapi_proc)_mesa_marshal_GenPerfMonitorsAMD;
377996c5ddc4Srjs   if (_gloffset_DeletePerfMonitorsAMD >= 0)
378096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DeletePerfMonitorsAMD] = (_glapi_proc)_mesa_marshal_DeletePerfMonitorsAMD;
378196c5ddc4Srjs   if (_gloffset_SelectPerfMonitorCountersAMD >= 0)
378296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_SelectPerfMonitorCountersAMD] = (_glapi_proc)_mesa_marshal_SelectPerfMonitorCountersAMD;
378396c5ddc4Srjs   if (_gloffset_BeginPerfMonitorAMD >= 0)
378496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BeginPerfMonitorAMD] = (_glapi_proc)_mesa_marshal_BeginPerfMonitorAMD;
378596c5ddc4Srjs   if (_gloffset_EndPerfMonitorAMD >= 0)
378696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_EndPerfMonitorAMD] = (_glapi_proc)_mesa_marshal_EndPerfMonitorAMD;
378796c5ddc4Srjs   if (_gloffset_GetPerfMonitorCounterDataAMD >= 0)
378896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetPerfMonitorCounterDataAMD] = (_glapi_proc)_mesa_marshal_GetPerfMonitorCounterDataAMD;
378996c5ddc4Srjs   if (_gloffset_CopyImageSubDataNV >= 0)
379096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CopyImageSubDataNV] = (_glapi_proc)_mesa_marshal_CopyImageSubDataNV;
379196c5ddc4Srjs   if (_gloffset_MatrixLoadfEXT >= 0)
379296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MatrixLoadfEXT] = (_glapi_proc)_mesa_marshal_MatrixLoadfEXT;
379396c5ddc4Srjs   if (_gloffset_MatrixLoaddEXT >= 0)
379496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MatrixLoaddEXT] = (_glapi_proc)_mesa_marshal_MatrixLoaddEXT;
379596c5ddc4Srjs   if (_gloffset_MatrixMultfEXT >= 0)
379696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MatrixMultfEXT] = (_glapi_proc)_mesa_marshal_MatrixMultfEXT;
379796c5ddc4Srjs   if (_gloffset_MatrixMultdEXT >= 0)
379896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MatrixMultdEXT] = (_glapi_proc)_mesa_marshal_MatrixMultdEXT;
379996c5ddc4Srjs   if (_gloffset_MatrixLoadIdentityEXT >= 0)
380096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MatrixLoadIdentityEXT] = (_glapi_proc)_mesa_marshal_MatrixLoadIdentityEXT;
380196c5ddc4Srjs   if (_gloffset_MatrixRotatefEXT >= 0)
380296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MatrixRotatefEXT] = (_glapi_proc)_mesa_marshal_MatrixRotatefEXT;
380396c5ddc4Srjs   if (_gloffset_MatrixRotatedEXT >= 0)
380496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MatrixRotatedEXT] = (_glapi_proc)_mesa_marshal_MatrixRotatedEXT;
380596c5ddc4Srjs   if (_gloffset_MatrixScalefEXT >= 0)
380696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MatrixScalefEXT] = (_glapi_proc)_mesa_marshal_MatrixScalefEXT;
380796c5ddc4Srjs   if (_gloffset_MatrixScaledEXT >= 0)
380896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MatrixScaledEXT] = (_glapi_proc)_mesa_marshal_MatrixScaledEXT;
380996c5ddc4Srjs   if (_gloffset_MatrixTranslatefEXT >= 0)
381096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MatrixTranslatefEXT] = (_glapi_proc)_mesa_marshal_MatrixTranslatefEXT;
381196c5ddc4Srjs   if (_gloffset_MatrixTranslatedEXT >= 0)
381296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MatrixTranslatedEXT] = (_glapi_proc)_mesa_marshal_MatrixTranslatedEXT;
381396c5ddc4Srjs   if (_gloffset_MatrixOrthoEXT >= 0)
381496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MatrixOrthoEXT] = (_glapi_proc)_mesa_marshal_MatrixOrthoEXT;
381596c5ddc4Srjs   if (_gloffset_MatrixFrustumEXT >= 0)
381696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MatrixFrustumEXT] = (_glapi_proc)_mesa_marshal_MatrixFrustumEXT;
381796c5ddc4Srjs   if (_gloffset_MatrixPushEXT >= 0)
381896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MatrixPushEXT] = (_glapi_proc)_mesa_marshal_MatrixPushEXT;
381996c5ddc4Srjs   if (_gloffset_MatrixPopEXT >= 0)
382096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MatrixPopEXT] = (_glapi_proc)_mesa_marshal_MatrixPopEXT;
382196c5ddc4Srjs   if (_gloffset_ClientAttribDefaultEXT >= 0)
382296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ClientAttribDefaultEXT] = (_glapi_proc)_mesa_marshal_ClientAttribDefaultEXT;
382396c5ddc4Srjs   if (_gloffset_PushClientAttribDefaultEXT >= 0)
382496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PushClientAttribDefaultEXT] = (_glapi_proc)_mesa_marshal_PushClientAttribDefaultEXT;
382596c5ddc4Srjs   if (_gloffset_GetTextureParameterivEXT >= 0)
382696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetTextureParameterivEXT] = (_glapi_proc)_mesa_marshal_GetTextureParameterivEXT;
382796c5ddc4Srjs   if (_gloffset_GetTextureParameterfvEXT >= 0)
382896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetTextureParameterfvEXT] = (_glapi_proc)_mesa_marshal_GetTextureParameterfvEXT;
382996c5ddc4Srjs   if (_gloffset_GetTextureLevelParameterivEXT >= 0)
383096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetTextureLevelParameterivEXT] = (_glapi_proc)_mesa_marshal_GetTextureLevelParameterivEXT;
383196c5ddc4Srjs   if (_gloffset_GetTextureLevelParameterfvEXT >= 0)
383296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetTextureLevelParameterfvEXT] = (_glapi_proc)_mesa_marshal_GetTextureLevelParameterfvEXT;
383396c5ddc4Srjs   if (_gloffset_TextureParameteriEXT >= 0)
383496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureParameteriEXT] = (_glapi_proc)_mesa_marshal_TextureParameteriEXT;
383596c5ddc4Srjs   if (_gloffset_TextureParameterivEXT >= 0)
383696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureParameterivEXT] = (_glapi_proc)_mesa_marshal_TextureParameterivEXT;
383796c5ddc4Srjs   if (_gloffset_TextureParameterfEXT >= 0)
383896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureParameterfEXT] = (_glapi_proc)_mesa_marshal_TextureParameterfEXT;
383996c5ddc4Srjs   if (_gloffset_TextureParameterfvEXT >= 0)
384096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureParameterfvEXT] = (_glapi_proc)_mesa_marshal_TextureParameterfvEXT;
384196c5ddc4Srjs   if (_gloffset_TextureImage1DEXT >= 0)
384296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureImage1DEXT] = (_glapi_proc)_mesa_marshal_TextureImage1DEXT;
384396c5ddc4Srjs   if (_gloffset_TextureImage2DEXT >= 0)
384496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureImage2DEXT] = (_glapi_proc)_mesa_marshal_TextureImage2DEXT;
384596c5ddc4Srjs   if (_gloffset_TextureImage3DEXT >= 0)
384696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureImage3DEXT] = (_glapi_proc)_mesa_marshal_TextureImage3DEXT;
384796c5ddc4Srjs   if (_gloffset_TextureSubImage1DEXT >= 0)
384896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureSubImage1DEXT] = (_glapi_proc)_mesa_marshal_TextureSubImage1DEXT;
384996c5ddc4Srjs   if (_gloffset_TextureSubImage2DEXT >= 0)
385096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureSubImage2DEXT] = (_glapi_proc)_mesa_marshal_TextureSubImage2DEXT;
385196c5ddc4Srjs   if (_gloffset_TextureSubImage3DEXT >= 0)
385296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureSubImage3DEXT] = (_glapi_proc)_mesa_marshal_TextureSubImage3DEXT;
385396c5ddc4Srjs   if (_gloffset_CopyTextureImage1DEXT >= 0)
385496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CopyTextureImage1DEXT] = (_glapi_proc)_mesa_marshal_CopyTextureImage1DEXT;
385596c5ddc4Srjs   if (_gloffset_CopyTextureImage2DEXT >= 0)
385696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CopyTextureImage2DEXT] = (_glapi_proc)_mesa_marshal_CopyTextureImage2DEXT;
385796c5ddc4Srjs   if (_gloffset_CopyTextureSubImage1DEXT >= 0)
385896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CopyTextureSubImage1DEXT] = (_glapi_proc)_mesa_marshal_CopyTextureSubImage1DEXT;
385996c5ddc4Srjs   if (_gloffset_CopyTextureSubImage2DEXT >= 0)
386096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CopyTextureSubImage2DEXT] = (_glapi_proc)_mesa_marshal_CopyTextureSubImage2DEXT;
386196c5ddc4Srjs   if (_gloffset_CopyTextureSubImage3DEXT >= 0)
386296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CopyTextureSubImage3DEXT] = (_glapi_proc)_mesa_marshal_CopyTextureSubImage3DEXT;
386396c5ddc4Srjs   if (_gloffset_GetTextureImageEXT >= 0)
386496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetTextureImageEXT] = (_glapi_proc)_mesa_marshal_GetTextureImageEXT;
386596c5ddc4Srjs   if (_gloffset_BindMultiTextureEXT >= 0)
386696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BindMultiTextureEXT] = (_glapi_proc)_mesa_marshal_BindMultiTextureEXT;
386796c5ddc4Srjs   if (_gloffset_EnableClientStateiEXT >= 0)
386896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_EnableClientStateiEXT] = (_glapi_proc)_mesa_marshal_EnableClientStateiEXT;
386996c5ddc4Srjs   if (_gloffset_DisableClientStateiEXT >= 0)
387096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DisableClientStateiEXT] = (_glapi_proc)_mesa_marshal_DisableClientStateiEXT;
387196c5ddc4Srjs   if (_gloffset_GetPointerIndexedvEXT >= 0)
387296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetPointerIndexedvEXT] = (_glapi_proc)_mesa_marshal_GetPointerIndexedvEXT;
387396c5ddc4Srjs   if (_gloffset_MultiTexEnviEXT >= 0)
387496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexEnviEXT] = (_glapi_proc)_mesa_marshal_MultiTexEnviEXT;
387596c5ddc4Srjs   if (_gloffset_MultiTexEnvivEXT >= 0)
387696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexEnvivEXT] = (_glapi_proc)_mesa_marshal_MultiTexEnvivEXT;
387796c5ddc4Srjs   if (_gloffset_MultiTexEnvfEXT >= 0)
387896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexEnvfEXT] = (_glapi_proc)_mesa_marshal_MultiTexEnvfEXT;
387996c5ddc4Srjs   if (_gloffset_MultiTexEnvfvEXT >= 0)
388096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexEnvfvEXT] = (_glapi_proc)_mesa_marshal_MultiTexEnvfvEXT;
388196c5ddc4Srjs   if (_gloffset_GetMultiTexEnvivEXT >= 0)
388296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetMultiTexEnvivEXT] = (_glapi_proc)_mesa_marshal_GetMultiTexEnvivEXT;
388396c5ddc4Srjs   if (_gloffset_GetMultiTexEnvfvEXT >= 0)
388496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetMultiTexEnvfvEXT] = (_glapi_proc)_mesa_marshal_GetMultiTexEnvfvEXT;
388596c5ddc4Srjs   if (_gloffset_MultiTexParameteriEXT >= 0)
388696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexParameteriEXT] = (_glapi_proc)_mesa_marshal_MultiTexParameteriEXT;
388796c5ddc4Srjs   if (_gloffset_MultiTexParameterivEXT >= 0)
388896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexParameterivEXT] = (_glapi_proc)_mesa_marshal_MultiTexParameterivEXT;
388996c5ddc4Srjs   if (_gloffset_MultiTexParameterfEXT >= 0)
389096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexParameterfEXT] = (_glapi_proc)_mesa_marshal_MultiTexParameterfEXT;
389196c5ddc4Srjs   if (_gloffset_MultiTexParameterfvEXT >= 0)
389296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexParameterfvEXT] = (_glapi_proc)_mesa_marshal_MultiTexParameterfvEXT;
389396c5ddc4Srjs   if (_gloffset_GetMultiTexParameterivEXT >= 0)
389496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetMultiTexParameterivEXT] = (_glapi_proc)_mesa_marshal_GetMultiTexParameterivEXT;
389596c5ddc4Srjs   if (_gloffset_GetMultiTexParameterfvEXT >= 0)
389696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetMultiTexParameterfvEXT] = (_glapi_proc)_mesa_marshal_GetMultiTexParameterfvEXT;
389796c5ddc4Srjs   if (_gloffset_GetMultiTexImageEXT >= 0)
389896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetMultiTexImageEXT] = (_glapi_proc)_mesa_marshal_GetMultiTexImageEXT;
389996c5ddc4Srjs   if (_gloffset_GetMultiTexLevelParameterivEXT >= 0)
390096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetMultiTexLevelParameterivEXT] = (_glapi_proc)_mesa_marshal_GetMultiTexLevelParameterivEXT;
390196c5ddc4Srjs   if (_gloffset_GetMultiTexLevelParameterfvEXT >= 0)
390296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetMultiTexLevelParameterfvEXT] = (_glapi_proc)_mesa_marshal_GetMultiTexLevelParameterfvEXT;
390396c5ddc4Srjs   if (_gloffset_MultiTexImage1DEXT >= 0)
390496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexImage1DEXT] = (_glapi_proc)_mesa_marshal_MultiTexImage1DEXT;
390596c5ddc4Srjs   if (_gloffset_MultiTexImage2DEXT >= 0)
390696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexImage2DEXT] = (_glapi_proc)_mesa_marshal_MultiTexImage2DEXT;
390796c5ddc4Srjs   if (_gloffset_MultiTexImage3DEXT >= 0)
390896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexImage3DEXT] = (_glapi_proc)_mesa_marshal_MultiTexImage3DEXT;
390996c5ddc4Srjs   if (_gloffset_MultiTexSubImage1DEXT >= 0)
391096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexSubImage1DEXT] = (_glapi_proc)_mesa_marshal_MultiTexSubImage1DEXT;
391196c5ddc4Srjs   if (_gloffset_MultiTexSubImage2DEXT >= 0)
391296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexSubImage2DEXT] = (_glapi_proc)_mesa_marshal_MultiTexSubImage2DEXT;
391396c5ddc4Srjs   if (_gloffset_MultiTexSubImage3DEXT >= 0)
391496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexSubImage3DEXT] = (_glapi_proc)_mesa_marshal_MultiTexSubImage3DEXT;
391596c5ddc4Srjs   if (_gloffset_CopyMultiTexImage1DEXT >= 0)
391696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CopyMultiTexImage1DEXT] = (_glapi_proc)_mesa_marshal_CopyMultiTexImage1DEXT;
391796c5ddc4Srjs   if (_gloffset_CopyMultiTexImage2DEXT >= 0)
391896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CopyMultiTexImage2DEXT] = (_glapi_proc)_mesa_marshal_CopyMultiTexImage2DEXT;
391996c5ddc4Srjs   if (_gloffset_CopyMultiTexSubImage1DEXT >= 0)
392096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CopyMultiTexSubImage1DEXT] = (_glapi_proc)_mesa_marshal_CopyMultiTexSubImage1DEXT;
392196c5ddc4Srjs   if (_gloffset_CopyMultiTexSubImage2DEXT >= 0)
392296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CopyMultiTexSubImage2DEXT] = (_glapi_proc)_mesa_marshal_CopyMultiTexSubImage2DEXT;
392396c5ddc4Srjs   if (_gloffset_CopyMultiTexSubImage3DEXT >= 0)
392496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CopyMultiTexSubImage3DEXT] = (_glapi_proc)_mesa_marshal_CopyMultiTexSubImage3DEXT;
392596c5ddc4Srjs   if (_gloffset_MultiTexGendEXT >= 0)
392696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexGendEXT] = (_glapi_proc)_mesa_marshal_MultiTexGendEXT;
392796c5ddc4Srjs   if (_gloffset_MultiTexGendvEXT >= 0)
392896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexGendvEXT] = (_glapi_proc)_mesa_marshal_MultiTexGendvEXT;
392996c5ddc4Srjs   if (_gloffset_MultiTexGenfEXT >= 0)
393096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexGenfEXT] = (_glapi_proc)_mesa_marshal_MultiTexGenfEXT;
393196c5ddc4Srjs   if (_gloffset_MultiTexGenfvEXT >= 0)
393296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexGenfvEXT] = (_glapi_proc)_mesa_marshal_MultiTexGenfvEXT;
393396c5ddc4Srjs   if (_gloffset_MultiTexGeniEXT >= 0)
393496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexGeniEXT] = (_glapi_proc)_mesa_marshal_MultiTexGeniEXT;
393596c5ddc4Srjs   if (_gloffset_MultiTexGenivEXT >= 0)
393696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexGenivEXT] = (_glapi_proc)_mesa_marshal_MultiTexGenivEXT;
393796c5ddc4Srjs   if (_gloffset_GetMultiTexGendvEXT >= 0)
393896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetMultiTexGendvEXT] = (_glapi_proc)_mesa_marshal_GetMultiTexGendvEXT;
393996c5ddc4Srjs   if (_gloffset_GetMultiTexGenfvEXT >= 0)
394096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetMultiTexGenfvEXT] = (_glapi_proc)_mesa_marshal_GetMultiTexGenfvEXT;
394196c5ddc4Srjs   if (_gloffset_GetMultiTexGenivEXT >= 0)
394296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetMultiTexGenivEXT] = (_glapi_proc)_mesa_marshal_GetMultiTexGenivEXT;
394396c5ddc4Srjs   if (_gloffset_MultiTexCoordPointerEXT >= 0)
394496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoordPointerEXT] = (_glapi_proc)_mesa_marshal_MultiTexCoordPointerEXT;
394596c5ddc4Srjs   if (_gloffset_MatrixLoadTransposefEXT >= 0)
394696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MatrixLoadTransposefEXT] = (_glapi_proc)_mesa_marshal_MatrixLoadTransposefEXT;
394796c5ddc4Srjs   if (_gloffset_MatrixLoadTransposedEXT >= 0)
394896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MatrixLoadTransposedEXT] = (_glapi_proc)_mesa_marshal_MatrixLoadTransposedEXT;
394996c5ddc4Srjs   if (_gloffset_MatrixMultTransposefEXT >= 0)
395096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MatrixMultTransposefEXT] = (_glapi_proc)_mesa_marshal_MatrixMultTransposefEXT;
395196c5ddc4Srjs   if (_gloffset_MatrixMultTransposedEXT >= 0)
395296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MatrixMultTransposedEXT] = (_glapi_proc)_mesa_marshal_MatrixMultTransposedEXT;
395396c5ddc4Srjs   if (_gloffset_CompressedTextureImage1DEXT >= 0)
395496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CompressedTextureImage1DEXT] = (_glapi_proc)_mesa_marshal_CompressedTextureImage1DEXT;
395596c5ddc4Srjs   if (_gloffset_CompressedTextureImage2DEXT >= 0)
395696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CompressedTextureImage2DEXT] = (_glapi_proc)_mesa_marshal_CompressedTextureImage2DEXT;
395796c5ddc4Srjs   if (_gloffset_CompressedTextureImage3DEXT >= 0)
395896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CompressedTextureImage3DEXT] = (_glapi_proc)_mesa_marshal_CompressedTextureImage3DEXT;
395996c5ddc4Srjs   if (_gloffset_CompressedTextureSubImage1DEXT >= 0)
396096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CompressedTextureSubImage1DEXT] = (_glapi_proc)_mesa_marshal_CompressedTextureSubImage1DEXT;
396196c5ddc4Srjs   if (_gloffset_CompressedTextureSubImage2DEXT >= 0)
396296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CompressedTextureSubImage2DEXT] = (_glapi_proc)_mesa_marshal_CompressedTextureSubImage2DEXT;
396396c5ddc4Srjs   if (_gloffset_CompressedTextureSubImage3DEXT >= 0)
396496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CompressedTextureSubImage3DEXT] = (_glapi_proc)_mesa_marshal_CompressedTextureSubImage3DEXT;
396596c5ddc4Srjs   if (_gloffset_GetCompressedTextureImageEXT >= 0)
396696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetCompressedTextureImageEXT] = (_glapi_proc)_mesa_marshal_GetCompressedTextureImageEXT;
396796c5ddc4Srjs   if (_gloffset_CompressedMultiTexImage1DEXT >= 0)
396896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CompressedMultiTexImage1DEXT] = (_glapi_proc)_mesa_marshal_CompressedMultiTexImage1DEXT;
396996c5ddc4Srjs   if (_gloffset_CompressedMultiTexImage2DEXT >= 0)
397096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CompressedMultiTexImage2DEXT] = (_glapi_proc)_mesa_marshal_CompressedMultiTexImage2DEXT;
397196c5ddc4Srjs   if (_gloffset_CompressedMultiTexImage3DEXT >= 0)
397296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CompressedMultiTexImage3DEXT] = (_glapi_proc)_mesa_marshal_CompressedMultiTexImage3DEXT;
397396c5ddc4Srjs   if (_gloffset_CompressedMultiTexSubImage1DEXT >= 0)
397496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CompressedMultiTexSubImage1DEXT] = (_glapi_proc)_mesa_marshal_CompressedMultiTexSubImage1DEXT;
397596c5ddc4Srjs   if (_gloffset_CompressedMultiTexSubImage2DEXT >= 0)
397696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CompressedMultiTexSubImage2DEXT] = (_glapi_proc)_mesa_marshal_CompressedMultiTexSubImage2DEXT;
397796c5ddc4Srjs   if (_gloffset_CompressedMultiTexSubImage3DEXT >= 0)
397896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CompressedMultiTexSubImage3DEXT] = (_glapi_proc)_mesa_marshal_CompressedMultiTexSubImage3DEXT;
397996c5ddc4Srjs   if (_gloffset_GetCompressedMultiTexImageEXT >= 0)
398096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetCompressedMultiTexImageEXT] = (_glapi_proc)_mesa_marshal_GetCompressedMultiTexImageEXT;
398196c5ddc4Srjs   if (_gloffset_NamedBufferDataEXT >= 0)
398296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NamedBufferDataEXT] = (_glapi_proc)_mesa_marshal_NamedBufferDataEXT;
398396c5ddc4Srjs   if (_gloffset_NamedBufferSubDataEXT >= 0)
398496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NamedBufferSubDataEXT] = (_glapi_proc)_mesa_marshal_NamedBufferSubDataEXT;
398596c5ddc4Srjs   if (_gloffset_MapNamedBufferEXT >= 0)
398696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MapNamedBufferEXT] = (_glapi_proc)_mesa_marshal_MapNamedBufferEXT;
398796c5ddc4Srjs   if (_gloffset_GetNamedBufferSubDataEXT >= 0)
398896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetNamedBufferSubDataEXT] = (_glapi_proc)_mesa_marshal_GetNamedBufferSubDataEXT;
398996c5ddc4Srjs   if (_gloffset_GetNamedBufferPointervEXT >= 0)
399096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetNamedBufferPointervEXT] = (_glapi_proc)_mesa_marshal_GetNamedBufferPointervEXT;
399196c5ddc4Srjs   if (_gloffset_GetNamedBufferParameterivEXT >= 0)
399296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetNamedBufferParameterivEXT] = (_glapi_proc)_mesa_marshal_GetNamedBufferParameterivEXT;
399396c5ddc4Srjs   if (_gloffset_FlushMappedNamedBufferRangeEXT >= 0)
399496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_FlushMappedNamedBufferRangeEXT] = (_glapi_proc)_mesa_marshal_FlushMappedNamedBufferRangeEXT;
399596c5ddc4Srjs   if (_gloffset_MapNamedBufferRangeEXT >= 0)
399696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MapNamedBufferRangeEXT] = (_glapi_proc)_mesa_marshal_MapNamedBufferRangeEXT;
399796c5ddc4Srjs   if (_gloffset_FramebufferDrawBufferEXT >= 0)
399896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_FramebufferDrawBufferEXT] = (_glapi_proc)_mesa_marshal_FramebufferDrawBufferEXT;
399996c5ddc4Srjs   if (_gloffset_FramebufferDrawBuffersEXT >= 0)
400096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_FramebufferDrawBuffersEXT] = (_glapi_proc)_mesa_marshal_FramebufferDrawBuffersEXT;
400196c5ddc4Srjs   if (_gloffset_FramebufferReadBufferEXT >= 0)
400296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_FramebufferReadBufferEXT] = (_glapi_proc)_mesa_marshal_FramebufferReadBufferEXT;
400396c5ddc4Srjs   if (_gloffset_GetFramebufferParameterivEXT >= 0)
400496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetFramebufferParameterivEXT] = (_glapi_proc)_mesa_marshal_GetFramebufferParameterivEXT;
400596c5ddc4Srjs   if (_gloffset_CheckNamedFramebufferStatusEXT >= 0)
400696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CheckNamedFramebufferStatusEXT] = (_glapi_proc)_mesa_marshal_CheckNamedFramebufferStatusEXT;
400796c5ddc4Srjs   if (_gloffset_NamedFramebufferTexture1DEXT >= 0)
400896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NamedFramebufferTexture1DEXT] = (_glapi_proc)_mesa_marshal_NamedFramebufferTexture1DEXT;
400996c5ddc4Srjs   if (_gloffset_NamedFramebufferTexture2DEXT >= 0)
401096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NamedFramebufferTexture2DEXT] = (_glapi_proc)_mesa_marshal_NamedFramebufferTexture2DEXT;
401196c5ddc4Srjs   if (_gloffset_NamedFramebufferTexture3DEXT >= 0)
401296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NamedFramebufferTexture3DEXT] = (_glapi_proc)_mesa_marshal_NamedFramebufferTexture3DEXT;
401396c5ddc4Srjs   if (_gloffset_NamedFramebufferRenderbufferEXT >= 0)
401496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NamedFramebufferRenderbufferEXT] = (_glapi_proc)_mesa_marshal_NamedFramebufferRenderbufferEXT;
401596c5ddc4Srjs   if (_gloffset_GetNamedFramebufferAttachmentParameterivEXT >= 0)
401696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetNamedFramebufferAttachmentParameterivEXT] = (_glapi_proc)_mesa_marshal_GetNamedFramebufferAttachmentParameterivEXT;
401796c5ddc4Srjs   if (_gloffset_NamedRenderbufferStorageEXT >= 0)
401896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NamedRenderbufferStorageEXT] = (_glapi_proc)_mesa_marshal_NamedRenderbufferStorageEXT;
401996c5ddc4Srjs   if (_gloffset_GetNamedRenderbufferParameterivEXT >= 0)
402096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetNamedRenderbufferParameterivEXT] = (_glapi_proc)_mesa_marshal_GetNamedRenderbufferParameterivEXT;
402196c5ddc4Srjs   if (_gloffset_GenerateTextureMipmapEXT >= 0)
402296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GenerateTextureMipmapEXT] = (_glapi_proc)_mesa_marshal_GenerateTextureMipmapEXT;
402396c5ddc4Srjs   if (_gloffset_GenerateMultiTexMipmapEXT >= 0)
402496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GenerateMultiTexMipmapEXT] = (_glapi_proc)_mesa_marshal_GenerateMultiTexMipmapEXT;
402596c5ddc4Srjs   if (_gloffset_NamedRenderbufferStorageMultisampleEXT >= 0)
402696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NamedRenderbufferStorageMultisampleEXT] = (_glapi_proc)_mesa_marshal_NamedRenderbufferStorageMultisampleEXT;
402796c5ddc4Srjs   if (_gloffset_NamedCopyBufferSubDataEXT >= 0)
402896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NamedCopyBufferSubDataEXT] = (_glapi_proc)_mesa_marshal_NamedCopyBufferSubDataEXT;
402996c5ddc4Srjs   if (_gloffset_VertexArrayVertexOffsetEXT >= 0)
403096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexArrayVertexOffsetEXT] = (_glapi_proc)_mesa_marshal_VertexArrayVertexOffsetEXT;
403196c5ddc4Srjs   if (_gloffset_VertexArrayColorOffsetEXT >= 0)
403296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexArrayColorOffsetEXT] = (_glapi_proc)_mesa_marshal_VertexArrayColorOffsetEXT;
403396c5ddc4Srjs   if (_gloffset_VertexArrayEdgeFlagOffsetEXT >= 0)
403496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexArrayEdgeFlagOffsetEXT] = (_glapi_proc)_mesa_marshal_VertexArrayEdgeFlagOffsetEXT;
403596c5ddc4Srjs   if (_gloffset_VertexArrayIndexOffsetEXT >= 0)
403696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexArrayIndexOffsetEXT] = (_glapi_proc)_mesa_marshal_VertexArrayIndexOffsetEXT;
403796c5ddc4Srjs   if (_gloffset_VertexArrayNormalOffsetEXT >= 0)
403896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexArrayNormalOffsetEXT] = (_glapi_proc)_mesa_marshal_VertexArrayNormalOffsetEXT;
403996c5ddc4Srjs   if (_gloffset_VertexArrayTexCoordOffsetEXT >= 0)
404096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexArrayTexCoordOffsetEXT] = (_glapi_proc)_mesa_marshal_VertexArrayTexCoordOffsetEXT;
404196c5ddc4Srjs   if (_gloffset_VertexArrayMultiTexCoordOffsetEXT >= 0)
404296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexArrayMultiTexCoordOffsetEXT] = (_glapi_proc)_mesa_marshal_VertexArrayMultiTexCoordOffsetEXT;
404396c5ddc4Srjs   if (_gloffset_VertexArrayFogCoordOffsetEXT >= 0)
404496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexArrayFogCoordOffsetEXT] = (_glapi_proc)_mesa_marshal_VertexArrayFogCoordOffsetEXT;
404596c5ddc4Srjs   if (_gloffset_VertexArraySecondaryColorOffsetEXT >= 0)
404696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexArraySecondaryColorOffsetEXT] = (_glapi_proc)_mesa_marshal_VertexArraySecondaryColorOffsetEXT;
404796c5ddc4Srjs   if (_gloffset_VertexArrayVertexAttribOffsetEXT >= 0)
404896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexArrayVertexAttribOffsetEXT] = (_glapi_proc)_mesa_marshal_VertexArrayVertexAttribOffsetEXT;
404996c5ddc4Srjs   if (_gloffset_VertexArrayVertexAttribIOffsetEXT >= 0)
405096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexArrayVertexAttribIOffsetEXT] = (_glapi_proc)_mesa_marshal_VertexArrayVertexAttribIOffsetEXT;
405196c5ddc4Srjs   if (_gloffset_EnableVertexArrayEXT >= 0)
405296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_EnableVertexArrayEXT] = (_glapi_proc)_mesa_marshal_EnableVertexArrayEXT;
405396c5ddc4Srjs   if (_gloffset_DisableVertexArrayEXT >= 0)
405496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DisableVertexArrayEXT] = (_glapi_proc)_mesa_marshal_DisableVertexArrayEXT;
405596c5ddc4Srjs   if (_gloffset_EnableVertexArrayAttribEXT >= 0)
405696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_EnableVertexArrayAttribEXT] = (_glapi_proc)_mesa_marshal_EnableVertexArrayAttribEXT;
405796c5ddc4Srjs   if (_gloffset_DisableVertexArrayAttribEXT >= 0)
405896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DisableVertexArrayAttribEXT] = (_glapi_proc)_mesa_marshal_DisableVertexArrayAttribEXT;
405996c5ddc4Srjs   if (_gloffset_GetVertexArrayIntegervEXT >= 0)
406096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetVertexArrayIntegervEXT] = (_glapi_proc)_mesa_marshal_GetVertexArrayIntegervEXT;
406196c5ddc4Srjs   if (_gloffset_GetVertexArrayPointervEXT >= 0)
406296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetVertexArrayPointervEXT] = (_glapi_proc)_mesa_marshal_GetVertexArrayPointervEXT;
406396c5ddc4Srjs   if (_gloffset_GetVertexArrayIntegeri_vEXT >= 0)
406496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetVertexArrayIntegeri_vEXT] = (_glapi_proc)_mesa_marshal_GetVertexArrayIntegeri_vEXT;
406596c5ddc4Srjs   if (_gloffset_GetVertexArrayPointeri_vEXT >= 0)
406696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetVertexArrayPointeri_vEXT] = (_glapi_proc)_mesa_marshal_GetVertexArrayPointeri_vEXT;
406796c5ddc4Srjs   if (_gloffset_NamedProgramStringEXT >= 0)
406896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NamedProgramStringEXT] = (_glapi_proc)_mesa_marshal_NamedProgramStringEXT;
406996c5ddc4Srjs   if (_gloffset_GetNamedProgramStringEXT >= 0)
407096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetNamedProgramStringEXT] = (_glapi_proc)_mesa_marshal_GetNamedProgramStringEXT;
407196c5ddc4Srjs   if (_gloffset_NamedProgramLocalParameter4fEXT >= 0)
407296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NamedProgramLocalParameter4fEXT] = (_glapi_proc)_mesa_marshal_NamedProgramLocalParameter4fEXT;
407396c5ddc4Srjs   if (_gloffset_NamedProgramLocalParameter4fvEXT >= 0)
407496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NamedProgramLocalParameter4fvEXT] = (_glapi_proc)_mesa_marshal_NamedProgramLocalParameter4fvEXT;
407596c5ddc4Srjs   if (_gloffset_GetNamedProgramLocalParameterfvEXT >= 0)
407696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetNamedProgramLocalParameterfvEXT] = (_glapi_proc)_mesa_marshal_GetNamedProgramLocalParameterfvEXT;
407796c5ddc4Srjs   if (_gloffset_NamedProgramLocalParameter4dEXT >= 0)
407896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NamedProgramLocalParameter4dEXT] = (_glapi_proc)_mesa_marshal_NamedProgramLocalParameter4dEXT;
407996c5ddc4Srjs   if (_gloffset_NamedProgramLocalParameter4dvEXT >= 0)
408096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NamedProgramLocalParameter4dvEXT] = (_glapi_proc)_mesa_marshal_NamedProgramLocalParameter4dvEXT;
408196c5ddc4Srjs   if (_gloffset_GetNamedProgramLocalParameterdvEXT >= 0)
408296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetNamedProgramLocalParameterdvEXT] = (_glapi_proc)_mesa_marshal_GetNamedProgramLocalParameterdvEXT;
408396c5ddc4Srjs   if (_gloffset_GetNamedProgramivEXT >= 0)
408496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetNamedProgramivEXT] = (_glapi_proc)_mesa_marshal_GetNamedProgramivEXT;
408596c5ddc4Srjs   if (_gloffset_TextureBufferEXT >= 0)
408696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureBufferEXT] = (_glapi_proc)_mesa_marshal_TextureBufferEXT;
408796c5ddc4Srjs   if (_gloffset_MultiTexBufferEXT >= 0)
408896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexBufferEXT] = (_glapi_proc)_mesa_marshal_MultiTexBufferEXT;
408996c5ddc4Srjs   if (_gloffset_TextureParameterIivEXT >= 0)
409096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureParameterIivEXT] = (_glapi_proc)_mesa_marshal_TextureParameterIivEXT;
409196c5ddc4Srjs   if (_gloffset_TextureParameterIuivEXT >= 0)
409296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureParameterIuivEXT] = (_glapi_proc)_mesa_marshal_TextureParameterIuivEXT;
409396c5ddc4Srjs   if (_gloffset_GetTextureParameterIivEXT >= 0)
409496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetTextureParameterIivEXT] = (_glapi_proc)_mesa_marshal_GetTextureParameterIivEXT;
409596c5ddc4Srjs   if (_gloffset_GetTextureParameterIuivEXT >= 0)
409696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetTextureParameterIuivEXT] = (_glapi_proc)_mesa_marshal_GetTextureParameterIuivEXT;
409796c5ddc4Srjs   if (_gloffset_MultiTexParameterIivEXT >= 0)
409896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexParameterIivEXT] = (_glapi_proc)_mesa_marshal_MultiTexParameterIivEXT;
409996c5ddc4Srjs   if (_gloffset_MultiTexParameterIuivEXT >= 0)
410096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexParameterIuivEXT] = (_glapi_proc)_mesa_marshal_MultiTexParameterIuivEXT;
410196c5ddc4Srjs   if (_gloffset_GetMultiTexParameterIivEXT >= 0)
410296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetMultiTexParameterIivEXT] = (_glapi_proc)_mesa_marshal_GetMultiTexParameterIivEXT;
410396c5ddc4Srjs   if (_gloffset_GetMultiTexParameterIuivEXT >= 0)
410496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetMultiTexParameterIuivEXT] = (_glapi_proc)_mesa_marshal_GetMultiTexParameterIuivEXT;
410596c5ddc4Srjs   if (_gloffset_NamedProgramLocalParameters4fvEXT >= 0)
410696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NamedProgramLocalParameters4fvEXT] = (_glapi_proc)_mesa_marshal_NamedProgramLocalParameters4fvEXT;
410796c5ddc4Srjs   if (_gloffset_BindImageTextureEXT >= 0)
410896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BindImageTextureEXT] = (_glapi_proc)_mesa_marshal_BindImageTextureEXT;
410996c5ddc4Srjs   if (_gloffset_SubpixelPrecisionBiasNV >= 0)
411096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_SubpixelPrecisionBiasNV] = (_glapi_proc)_mesa_marshal_SubpixelPrecisionBiasNV;
411196c5ddc4Srjs   if (_gloffset_ConservativeRasterParameterfNV >= 0)
411296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ConservativeRasterParameterfNV] = (_glapi_proc)_mesa_marshal_ConservativeRasterParameterfNV;
411396c5ddc4Srjs   if (_gloffset_ConservativeRasterParameteriNV >= 0)
411496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ConservativeRasterParameteriNV] = (_glapi_proc)_mesa_marshal_ConservativeRasterParameteriNV;
411596c5ddc4Srjs   if (_gloffset_GetFirstPerfQueryIdINTEL >= 0)
411696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetFirstPerfQueryIdINTEL] = (_glapi_proc)_mesa_marshal_GetFirstPerfQueryIdINTEL;
411796c5ddc4Srjs   if (_gloffset_GetNextPerfQueryIdINTEL >= 0)
411896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetNextPerfQueryIdINTEL] = (_glapi_proc)_mesa_marshal_GetNextPerfQueryIdINTEL;
411996c5ddc4Srjs   if (_gloffset_GetPerfQueryIdByNameINTEL >= 0)
412096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetPerfQueryIdByNameINTEL] = (_glapi_proc)_mesa_marshal_GetPerfQueryIdByNameINTEL;
412196c5ddc4Srjs   if (_gloffset_GetPerfQueryInfoINTEL >= 0)
412296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetPerfQueryInfoINTEL] = (_glapi_proc)_mesa_marshal_GetPerfQueryInfoINTEL;
412396c5ddc4Srjs   if (_gloffset_GetPerfCounterInfoINTEL >= 0)
412496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetPerfCounterInfoINTEL] = (_glapi_proc)_mesa_marshal_GetPerfCounterInfoINTEL;
412596c5ddc4Srjs   if (_gloffset_CreatePerfQueryINTEL >= 0)
412696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CreatePerfQueryINTEL] = (_glapi_proc)_mesa_marshal_CreatePerfQueryINTEL;
412796c5ddc4Srjs   if (_gloffset_DeletePerfQueryINTEL >= 0)
412896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DeletePerfQueryINTEL] = (_glapi_proc)_mesa_marshal_DeletePerfQueryINTEL;
412996c5ddc4Srjs   if (_gloffset_BeginPerfQueryINTEL >= 0)
413096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BeginPerfQueryINTEL] = (_glapi_proc)_mesa_marshal_BeginPerfQueryINTEL;
413196c5ddc4Srjs   if (_gloffset_EndPerfQueryINTEL >= 0)
413296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_EndPerfQueryINTEL] = (_glapi_proc)_mesa_marshal_EndPerfQueryINTEL;
413396c5ddc4Srjs   if (_gloffset_GetPerfQueryDataINTEL >= 0)
413496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetPerfQueryDataINTEL] = (_glapi_proc)_mesa_marshal_GetPerfQueryDataINTEL;
413596c5ddc4Srjs   if (_gloffset_AlphaToCoverageDitherControlNV >= 0)
413696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_AlphaToCoverageDitherControlNV] = (_glapi_proc)_mesa_marshal_AlphaToCoverageDitherControlNV;
413796c5ddc4Srjs   if (_gloffset_PolygonOffsetClampEXT >= 0)
413896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PolygonOffsetClampEXT] = (_glapi_proc)_mesa_marshal_PolygonOffsetClampEXT;
413996c5ddc4Srjs   if (_gloffset_WindowRectanglesEXT >= 0)
414096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_WindowRectanglesEXT] = (_glapi_proc)_mesa_marshal_WindowRectanglesEXT;
414196c5ddc4Srjs   if (_gloffset_FramebufferFetchBarrierEXT >= 0)
414296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_FramebufferFetchBarrierEXT] = (_glapi_proc)_mesa_marshal_FramebufferFetchBarrierEXT;
414396c5ddc4Srjs   if (_gloffset_RenderbufferStorageMultisampleAdvancedAMD >= 0)
414496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_RenderbufferStorageMultisampleAdvancedAMD] = (_glapi_proc)_mesa_marshal_RenderbufferStorageMultisampleAdvancedAMD;
414596c5ddc4Srjs   if (_gloffset_NamedRenderbufferStorageMultisampleAdvancedAMD >= 0)
414696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NamedRenderbufferStorageMultisampleAdvancedAMD] = (_glapi_proc)_mesa_marshal_NamedRenderbufferStorageMultisampleAdvancedAMD;
414796c5ddc4Srjs   if (_gloffset_StencilFuncSeparateATI >= 0)
414896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_StencilFuncSeparateATI] = (_glapi_proc)_mesa_marshal_StencilFuncSeparateATI;
414996c5ddc4Srjs   if (_gloffset_ProgramEnvParameters4fvEXT >= 0)
415096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramEnvParameters4fvEXT] = (_glapi_proc)_mesa_marshal_ProgramEnvParameters4fvEXT;
415196c5ddc4Srjs   if (_gloffset_ProgramLocalParameters4fvEXT >= 0)
415296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ProgramLocalParameters4fvEXT] = (_glapi_proc)_mesa_marshal_ProgramLocalParameters4fvEXT;
415396c5ddc4Srjs   if (_gloffset_InternalBufferSubDataCopyMESA >= 0)
415496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_InternalBufferSubDataCopyMESA] = (_glapi_proc)_mesa_marshal_InternalBufferSubDataCopyMESA;
415596c5ddc4Srjs   if (_gloffset_InternalSetError >= 0)
415696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_InternalSetError] = (_glapi_proc)_mesa_marshal_InternalSetError;
415796c5ddc4Srjs   if (_gloffset_EGLImageTargetTexture2DOES >= 0)
415896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_EGLImageTargetTexture2DOES] = (_glapi_proc)_mesa_marshal_EGLImageTargetTexture2DOES;
415996c5ddc4Srjs   if (_gloffset_EGLImageTargetRenderbufferStorageOES >= 0)
416096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_EGLImageTargetRenderbufferStorageOES] = (_glapi_proc)_mesa_marshal_EGLImageTargetRenderbufferStorageOES;
416196c5ddc4Srjs   if (_gloffset_EGLImageTargetTexStorageEXT >= 0)
416296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_EGLImageTargetTexStorageEXT] = (_glapi_proc)_mesa_marshal_EGLImageTargetTexStorageEXT;
416396c5ddc4Srjs   if (_gloffset_EGLImageTargetTextureStorageEXT >= 0)
416496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_EGLImageTargetTextureStorageEXT] = (_glapi_proc)_mesa_marshal_EGLImageTargetTextureStorageEXT;
416596c5ddc4Srjs   if (_gloffset_ClearColorIiEXT >= 0)
416696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ClearColorIiEXT] = (_glapi_proc)_mesa_marshal_ClearColorIiEXT;
416796c5ddc4Srjs   if (_gloffset_ClearColorIuiEXT >= 0)
416896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ClearColorIuiEXT] = (_glapi_proc)_mesa_marshal_ClearColorIuiEXT;
416996c5ddc4Srjs   if (_gloffset_TexParameterIiv >= 0)
417096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexParameterIiv] = (_glapi_proc)_mesa_marshal_TexParameterIiv;
417196c5ddc4Srjs   if (_gloffset_TexParameterIuiv >= 0)
417296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexParameterIuiv] = (_glapi_proc)_mesa_marshal_TexParameterIuiv;
417396c5ddc4Srjs   if (_gloffset_GetTexParameterIiv >= 0)
417496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetTexParameterIiv] = (_glapi_proc)_mesa_marshal_GetTexParameterIiv;
417596c5ddc4Srjs   if (_gloffset_GetTexParameterIuiv >= 0)
417696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetTexParameterIuiv] = (_glapi_proc)_mesa_marshal_GetTexParameterIuiv;
417796c5ddc4Srjs   if (_gloffset_VertexAttribI1iEXT >= 0)
417896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribI1iEXT] = (_glapi_proc)_mesa_marshal_VertexAttribI1iEXT;
417996c5ddc4Srjs   if (_gloffset_VertexAttribI2iEXT >= 0)
418096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribI2iEXT] = (_glapi_proc)_mesa_marshal_VertexAttribI2iEXT;
418196c5ddc4Srjs   if (_gloffset_VertexAttribI3iEXT >= 0)
418296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribI3iEXT] = (_glapi_proc)_mesa_marshal_VertexAttribI3iEXT;
418396c5ddc4Srjs   if (_gloffset_VertexAttribI4iEXT >= 0)
418496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribI4iEXT] = (_glapi_proc)_mesa_marshal_VertexAttribI4iEXT;
418596c5ddc4Srjs   if (_gloffset_VertexAttribI1uiEXT >= 0)
418696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribI1uiEXT] = (_glapi_proc)_mesa_marshal_VertexAttribI1uiEXT;
418796c5ddc4Srjs   if (_gloffset_VertexAttribI2uiEXT >= 0)
418896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribI2uiEXT] = (_glapi_proc)_mesa_marshal_VertexAttribI2uiEXT;
418996c5ddc4Srjs   if (_gloffset_VertexAttribI3uiEXT >= 0)
419096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribI3uiEXT] = (_glapi_proc)_mesa_marshal_VertexAttribI3uiEXT;
419196c5ddc4Srjs   if (_gloffset_VertexAttribI4uiEXT >= 0)
419296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribI4uiEXT] = (_glapi_proc)_mesa_marshal_VertexAttribI4uiEXT;
419396c5ddc4Srjs   if (_gloffset_VertexAttribI1iv >= 0)
419496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribI1iv] = (_glapi_proc)_mesa_marshal_VertexAttribI1iv;
419596c5ddc4Srjs   if (_gloffset_VertexAttribI2ivEXT >= 0)
419696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribI2ivEXT] = (_glapi_proc)_mesa_marshal_VertexAttribI2ivEXT;
419796c5ddc4Srjs   if (_gloffset_VertexAttribI3ivEXT >= 0)
419896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribI3ivEXT] = (_glapi_proc)_mesa_marshal_VertexAttribI3ivEXT;
419996c5ddc4Srjs   if (_gloffset_VertexAttribI4ivEXT >= 0)
420096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribI4ivEXT] = (_glapi_proc)_mesa_marshal_VertexAttribI4ivEXT;
420196c5ddc4Srjs   if (_gloffset_VertexAttribI1uiv >= 0)
420296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribI1uiv] = (_glapi_proc)_mesa_marshal_VertexAttribI1uiv;
420396c5ddc4Srjs   if (_gloffset_VertexAttribI2uivEXT >= 0)
420496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribI2uivEXT] = (_glapi_proc)_mesa_marshal_VertexAttribI2uivEXT;
420596c5ddc4Srjs   if (_gloffset_VertexAttribI3uivEXT >= 0)
420696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribI3uivEXT] = (_glapi_proc)_mesa_marshal_VertexAttribI3uivEXT;
420796c5ddc4Srjs   if (_gloffset_VertexAttribI4uivEXT >= 0)
420896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribI4uivEXT] = (_glapi_proc)_mesa_marshal_VertexAttribI4uivEXT;
420996c5ddc4Srjs   if (_gloffset_VertexAttribI4bv >= 0)
421096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribI4bv] = (_glapi_proc)_mesa_marshal_VertexAttribI4bv;
421196c5ddc4Srjs   if (_gloffset_VertexAttribI4sv >= 0)
421296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribI4sv] = (_glapi_proc)_mesa_marshal_VertexAttribI4sv;
421396c5ddc4Srjs   if (_gloffset_VertexAttribI4ubv >= 0)
421496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribI4ubv] = (_glapi_proc)_mesa_marshal_VertexAttribI4ubv;
421596c5ddc4Srjs   if (_gloffset_VertexAttribI4usv >= 0)
421696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribI4usv] = (_glapi_proc)_mesa_marshal_VertexAttribI4usv;
421796c5ddc4Srjs   if (_gloffset_VertexAttribIPointer >= 0)
421896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribIPointer] = (_glapi_proc)_mesa_marshal_VertexAttribIPointer;
421996c5ddc4Srjs   if (_gloffset_GetVertexAttribIiv >= 0)
422096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetVertexAttribIiv] = (_glapi_proc)_mesa_marshal_GetVertexAttribIiv;
422196c5ddc4Srjs   if (_gloffset_GetVertexAttribIuiv >= 0)
422296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetVertexAttribIuiv] = (_glapi_proc)_mesa_marshal_GetVertexAttribIuiv;
422396c5ddc4Srjs   if (_gloffset_Uniform1ui >= 0)
422496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform1ui] = (_glapi_proc)_mesa_marshal_Uniform1ui;
422596c5ddc4Srjs   if (_gloffset_Uniform2ui >= 0)
422696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform2ui] = (_glapi_proc)_mesa_marshal_Uniform2ui;
422796c5ddc4Srjs   if (_gloffset_Uniform3ui >= 0)
422896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform3ui] = (_glapi_proc)_mesa_marshal_Uniform3ui;
422996c5ddc4Srjs   if (_gloffset_Uniform4ui >= 0)
423096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform4ui] = (_glapi_proc)_mesa_marshal_Uniform4ui;
423196c5ddc4Srjs   if (_gloffset_Uniform1uiv >= 0)
423296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform1uiv] = (_glapi_proc)_mesa_marshal_Uniform1uiv;
423396c5ddc4Srjs   if (_gloffset_Uniform2uiv >= 0)
423496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform2uiv] = (_glapi_proc)_mesa_marshal_Uniform2uiv;
423596c5ddc4Srjs   if (_gloffset_Uniform3uiv >= 0)
423696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform3uiv] = (_glapi_proc)_mesa_marshal_Uniform3uiv;
423796c5ddc4Srjs   if (_gloffset_Uniform4uiv >= 0)
423896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Uniform4uiv] = (_glapi_proc)_mesa_marshal_Uniform4uiv;
423996c5ddc4Srjs   if (_gloffset_GetUniformuiv >= 0)
424096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetUniformuiv] = (_glapi_proc)_mesa_marshal_GetUniformuiv;
424196c5ddc4Srjs   if (_gloffset_BindFragDataLocation >= 0)
424296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BindFragDataLocation] = (_glapi_proc)_mesa_marshal_BindFragDataLocation;
424396c5ddc4Srjs   if (_gloffset_GetFragDataLocation >= 0)
424496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetFragDataLocation] = (_glapi_proc)_mesa_marshal_GetFragDataLocation;
424596c5ddc4Srjs   if (_gloffset_ClearBufferiv >= 0)
424696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ClearBufferiv] = (_glapi_proc)_mesa_marshal_ClearBufferiv;
424796c5ddc4Srjs   if (_gloffset_ClearBufferuiv >= 0)
424896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ClearBufferuiv] = (_glapi_proc)_mesa_marshal_ClearBufferuiv;
424996c5ddc4Srjs   if (_gloffset_ClearBufferfv >= 0)
425096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ClearBufferfv] = (_glapi_proc)_mesa_marshal_ClearBufferfv;
425196c5ddc4Srjs   if (_gloffset_ClearBufferfi >= 0)
425296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ClearBufferfi] = (_glapi_proc)_mesa_marshal_ClearBufferfi;
425396c5ddc4Srjs   if (_gloffset_GetStringi >= 0)
425496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetStringi] = (_glapi_proc)_mesa_marshal_GetStringi;
425596c5ddc4Srjs   if (_gloffset_BeginTransformFeedback >= 0)
425696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BeginTransformFeedback] = (_glapi_proc)_mesa_marshal_BeginTransformFeedback;
425796c5ddc4Srjs   if (_gloffset_EndTransformFeedback >= 0)
425896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_EndTransformFeedback] = (_glapi_proc)_mesa_marshal_EndTransformFeedback;
425996c5ddc4Srjs   if (_gloffset_BindBufferRange >= 0)
426096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BindBufferRange] = (_glapi_proc)_mesa_marshal_BindBufferRange;
426196c5ddc4Srjs   if (_gloffset_BindBufferBase >= 0)
426296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BindBufferBase] = (_glapi_proc)_mesa_marshal_BindBufferBase;
426396c5ddc4Srjs   if (_gloffset_TransformFeedbackVaryings >= 0)
426496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TransformFeedbackVaryings] = (_glapi_proc)_mesa_marshal_TransformFeedbackVaryings;
426596c5ddc4Srjs   if (_gloffset_GetTransformFeedbackVarying >= 0)
426696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetTransformFeedbackVarying] = (_glapi_proc)_mesa_marshal_GetTransformFeedbackVarying;
426796c5ddc4Srjs   if (_gloffset_BeginConditionalRender >= 0)
426896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BeginConditionalRender] = (_glapi_proc)_mesa_marshal_BeginConditionalRender;
426996c5ddc4Srjs   if (_gloffset_EndConditionalRender >= 0)
427096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_EndConditionalRender] = (_glapi_proc)_mesa_marshal_EndConditionalRender;
427196c5ddc4Srjs   if (_gloffset_PrimitiveRestartIndex >= 0)
427296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PrimitiveRestartIndex] = (_glapi_proc)_mesa_marshal_PrimitiveRestartIndex;
427396c5ddc4Srjs   if (_gloffset_GetInteger64i_v >= 0)
427496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetInteger64i_v] = (_glapi_proc)_mesa_marshal_GetInteger64i_v;
427596c5ddc4Srjs   if (_gloffset_GetBufferParameteri64v >= 0)
427696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetBufferParameteri64v] = (_glapi_proc)_mesa_marshal_GetBufferParameteri64v;
427796c5ddc4Srjs   if (_gloffset_FramebufferTexture >= 0)
427896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_FramebufferTexture] = (_glapi_proc)_mesa_marshal_FramebufferTexture;
427996c5ddc4Srjs   if (_gloffset_PrimitiveRestartNV >= 0)
428096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PrimitiveRestartNV] = (_glapi_proc)_mesa_marshal_PrimitiveRestartNV;
428196c5ddc4Srjs   if (_gloffset_BindBufferOffsetEXT >= 0)
428296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BindBufferOffsetEXT] = (_glapi_proc)_mesa_marshal_BindBufferOffsetEXT;
428396c5ddc4Srjs   if (_gloffset_BindTransformFeedback >= 0)
428496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BindTransformFeedback] = (_glapi_proc)_mesa_marshal_BindTransformFeedback;
428596c5ddc4Srjs   if (_gloffset_DeleteTransformFeedbacks >= 0)
428696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DeleteTransformFeedbacks] = (_glapi_proc)_mesa_marshal_DeleteTransformFeedbacks;
428796c5ddc4Srjs   if (_gloffset_GenTransformFeedbacks >= 0)
428896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GenTransformFeedbacks] = (_glapi_proc)_mesa_marshal_GenTransformFeedbacks;
428996c5ddc4Srjs   if (_gloffset_IsTransformFeedback >= 0)
429096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_IsTransformFeedback] = (_glapi_proc)_mesa_marshal_IsTransformFeedback;
429196c5ddc4Srjs   if (_gloffset_PauseTransformFeedback >= 0)
429296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PauseTransformFeedback] = (_glapi_proc)_mesa_marshal_PauseTransformFeedback;
429396c5ddc4Srjs   if (_gloffset_ResumeTransformFeedback >= 0)
429496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ResumeTransformFeedback] = (_glapi_proc)_mesa_marshal_ResumeTransformFeedback;
429596c5ddc4Srjs   if (_gloffset_DrawTransformFeedback >= 0)
429696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DrawTransformFeedback] = (_glapi_proc)_mesa_marshal_DrawTransformFeedback;
429796c5ddc4Srjs   if (_gloffset_VDPAUInitNV >= 0)
429896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VDPAUInitNV] = (_glapi_proc)_mesa_marshal_VDPAUInitNV;
429996c5ddc4Srjs   if (_gloffset_VDPAUFiniNV >= 0)
430096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VDPAUFiniNV] = (_glapi_proc)_mesa_marshal_VDPAUFiniNV;
430196c5ddc4Srjs   if (_gloffset_VDPAURegisterVideoSurfaceNV >= 0)
430296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VDPAURegisterVideoSurfaceNV] = (_glapi_proc)_mesa_marshal_VDPAURegisterVideoSurfaceNV;
430396c5ddc4Srjs   if (_gloffset_VDPAURegisterOutputSurfaceNV >= 0)
430496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VDPAURegisterOutputSurfaceNV] = (_glapi_proc)_mesa_marshal_VDPAURegisterOutputSurfaceNV;
430596c5ddc4Srjs   if (_gloffset_VDPAUIsSurfaceNV >= 0)
430696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VDPAUIsSurfaceNV] = (_glapi_proc)_mesa_marshal_VDPAUIsSurfaceNV;
430796c5ddc4Srjs   if (_gloffset_VDPAUUnregisterSurfaceNV >= 0)
430896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VDPAUUnregisterSurfaceNV] = (_glapi_proc)_mesa_marshal_VDPAUUnregisterSurfaceNV;
430996c5ddc4Srjs   if (_gloffset_VDPAUGetSurfaceivNV >= 0)
431096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VDPAUGetSurfaceivNV] = (_glapi_proc)_mesa_marshal_VDPAUGetSurfaceivNV;
431196c5ddc4Srjs   if (_gloffset_VDPAUSurfaceAccessNV >= 0)
431296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VDPAUSurfaceAccessNV] = (_glapi_proc)_mesa_marshal_VDPAUSurfaceAccessNV;
431396c5ddc4Srjs   if (_gloffset_VDPAUMapSurfacesNV >= 0)
431496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VDPAUMapSurfacesNV] = (_glapi_proc)_mesa_marshal_VDPAUMapSurfacesNV;
431596c5ddc4Srjs   if (_gloffset_VDPAUUnmapSurfacesNV >= 0)
431696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VDPAUUnmapSurfacesNV] = (_glapi_proc)_mesa_marshal_VDPAUUnmapSurfacesNV;
431796c5ddc4Srjs   if (_gloffset_GetUnsignedBytevEXT >= 0)
431896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetUnsignedBytevEXT] = (_glapi_proc)_mesa_marshal_GetUnsignedBytevEXT;
431996c5ddc4Srjs   if (_gloffset_GetUnsignedBytei_vEXT >= 0)
432096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetUnsignedBytei_vEXT] = (_glapi_proc)_mesa_marshal_GetUnsignedBytei_vEXT;
432196c5ddc4Srjs   if (_gloffset_DeleteMemoryObjectsEXT >= 0)
432296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DeleteMemoryObjectsEXT] = (_glapi_proc)_mesa_marshal_DeleteMemoryObjectsEXT;
432396c5ddc4Srjs   if (_gloffset_IsMemoryObjectEXT >= 0)
432496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_IsMemoryObjectEXT] = (_glapi_proc)_mesa_marshal_IsMemoryObjectEXT;
432596c5ddc4Srjs   if (_gloffset_CreateMemoryObjectsEXT >= 0)
432696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_CreateMemoryObjectsEXT] = (_glapi_proc)_mesa_marshal_CreateMemoryObjectsEXT;
432796c5ddc4Srjs   if (_gloffset_MemoryObjectParameterivEXT >= 0)
432896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MemoryObjectParameterivEXT] = (_glapi_proc)_mesa_marshal_MemoryObjectParameterivEXT;
432996c5ddc4Srjs   if (_gloffset_GetMemoryObjectParameterivEXT >= 0)
433096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetMemoryObjectParameterivEXT] = (_glapi_proc)_mesa_marshal_GetMemoryObjectParameterivEXT;
433196c5ddc4Srjs   if (_gloffset_TexStorageMem2DEXT >= 0)
433296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexStorageMem2DEXT] = (_glapi_proc)_mesa_marshal_TexStorageMem2DEXT;
433396c5ddc4Srjs   if (_gloffset_TexStorageMem2DMultisampleEXT >= 0)
433496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexStorageMem2DMultisampleEXT] = (_glapi_proc)_mesa_marshal_TexStorageMem2DMultisampleEXT;
433596c5ddc4Srjs   if (_gloffset_TexStorageMem3DEXT >= 0)
433696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexStorageMem3DEXT] = (_glapi_proc)_mesa_marshal_TexStorageMem3DEXT;
433796c5ddc4Srjs   if (_gloffset_TexStorageMem3DMultisampleEXT >= 0)
433896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexStorageMem3DMultisampleEXT] = (_glapi_proc)_mesa_marshal_TexStorageMem3DMultisampleEXT;
433996c5ddc4Srjs   if (_gloffset_BufferStorageMemEXT >= 0)
434096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_BufferStorageMemEXT] = (_glapi_proc)_mesa_marshal_BufferStorageMemEXT;
434196c5ddc4Srjs   if (_gloffset_TextureStorageMem2DEXT >= 0)
434296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureStorageMem2DEXT] = (_glapi_proc)_mesa_marshal_TextureStorageMem2DEXT;
434396c5ddc4Srjs   if (_gloffset_TextureStorageMem2DMultisampleEXT >= 0)
434496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureStorageMem2DMultisampleEXT] = (_glapi_proc)_mesa_marshal_TextureStorageMem2DMultisampleEXT;
434596c5ddc4Srjs   if (_gloffset_TextureStorageMem3DEXT >= 0)
434696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureStorageMem3DEXT] = (_glapi_proc)_mesa_marshal_TextureStorageMem3DEXT;
434796c5ddc4Srjs   if (_gloffset_TextureStorageMem3DMultisampleEXT >= 0)
434896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureStorageMem3DMultisampleEXT] = (_glapi_proc)_mesa_marshal_TextureStorageMem3DMultisampleEXT;
434996c5ddc4Srjs   if (_gloffset_NamedBufferStorageMemEXT >= 0)
435096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_NamedBufferStorageMemEXT] = (_glapi_proc)_mesa_marshal_NamedBufferStorageMemEXT;
435196c5ddc4Srjs   if (_gloffset_TexStorageMem1DEXT >= 0)
435296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexStorageMem1DEXT] = (_glapi_proc)_mesa_marshal_TexStorageMem1DEXT;
435396c5ddc4Srjs   if (_gloffset_TextureStorageMem1DEXT >= 0)
435496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TextureStorageMem1DEXT] = (_glapi_proc)_mesa_marshal_TextureStorageMem1DEXT;
435596c5ddc4Srjs   if (_gloffset_GenSemaphoresEXT >= 0)
435696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GenSemaphoresEXT] = (_glapi_proc)_mesa_marshal_GenSemaphoresEXT;
435796c5ddc4Srjs   if (_gloffset_DeleteSemaphoresEXT >= 0)
435896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DeleteSemaphoresEXT] = (_glapi_proc)_mesa_marshal_DeleteSemaphoresEXT;
435996c5ddc4Srjs   if (_gloffset_IsSemaphoreEXT >= 0)
436096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_IsSemaphoreEXT] = (_glapi_proc)_mesa_marshal_IsSemaphoreEXT;
436196c5ddc4Srjs   if (_gloffset_SemaphoreParameterui64vEXT >= 0)
436296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_SemaphoreParameterui64vEXT] = (_glapi_proc)_mesa_marshal_SemaphoreParameterui64vEXT;
436396c5ddc4Srjs   if (_gloffset_GetSemaphoreParameterui64vEXT >= 0)
436496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetSemaphoreParameterui64vEXT] = (_glapi_proc)_mesa_marshal_GetSemaphoreParameterui64vEXT;
436596c5ddc4Srjs   if (_gloffset_WaitSemaphoreEXT >= 0)
436696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_WaitSemaphoreEXT] = (_glapi_proc)_mesa_marshal_WaitSemaphoreEXT;
436796c5ddc4Srjs   if (_gloffset_SignalSemaphoreEXT >= 0)
436896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_SignalSemaphoreEXT] = (_glapi_proc)_mesa_marshal_SignalSemaphoreEXT;
436996c5ddc4Srjs   if (_gloffset_ImportMemoryFdEXT >= 0)
437096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ImportMemoryFdEXT] = (_glapi_proc)_mesa_marshal_ImportMemoryFdEXT;
437196c5ddc4Srjs   if (_gloffset_ImportSemaphoreFdEXT >= 0)
437296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ImportSemaphoreFdEXT] = (_glapi_proc)_mesa_marshal_ImportSemaphoreFdEXT;
437396c5ddc4Srjs   if (_gloffset_ViewportSwizzleNV >= 0)
437496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ViewportSwizzleNV] = (_glapi_proc)_mesa_marshal_ViewportSwizzleNV;
437596c5ddc4Srjs   if (_gloffset_Vertex2hNV >= 0)
437696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Vertex2hNV] = (_glapi_proc)_mesa_marshal_Vertex2hNV;
437796c5ddc4Srjs   if (_gloffset_Vertex2hvNV >= 0)
437896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Vertex2hvNV] = (_glapi_proc)_mesa_marshal_Vertex2hvNV;
437996c5ddc4Srjs   if (_gloffset_Vertex3hNV >= 0)
438096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Vertex3hNV] = (_glapi_proc)_mesa_marshal_Vertex3hNV;
438196c5ddc4Srjs   if (_gloffset_Vertex3hvNV >= 0)
438296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Vertex3hvNV] = (_glapi_proc)_mesa_marshal_Vertex3hvNV;
438396c5ddc4Srjs   if (_gloffset_Vertex4hNV >= 0)
438496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Vertex4hNV] = (_glapi_proc)_mesa_marshal_Vertex4hNV;
438596c5ddc4Srjs   if (_gloffset_Vertex4hvNV >= 0)
438696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Vertex4hvNV] = (_glapi_proc)_mesa_marshal_Vertex4hvNV;
438796c5ddc4Srjs   if (_gloffset_Normal3hNV >= 0)
438896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Normal3hNV] = (_glapi_proc)_mesa_marshal_Normal3hNV;
438996c5ddc4Srjs   if (_gloffset_Normal3hvNV >= 0)
439096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Normal3hvNV] = (_glapi_proc)_mesa_marshal_Normal3hvNV;
439196c5ddc4Srjs   if (_gloffset_Color3hNV >= 0)
439296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Color3hNV] = (_glapi_proc)_mesa_marshal_Color3hNV;
439396c5ddc4Srjs   if (_gloffset_Color3hvNV >= 0)
439496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Color3hvNV] = (_glapi_proc)_mesa_marshal_Color3hvNV;
439596c5ddc4Srjs   if (_gloffset_Color4hNV >= 0)
439696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Color4hNV] = (_glapi_proc)_mesa_marshal_Color4hNV;
439796c5ddc4Srjs   if (_gloffset_Color4hvNV >= 0)
439896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Color4hvNV] = (_glapi_proc)_mesa_marshal_Color4hvNV;
439996c5ddc4Srjs   if (_gloffset_TexCoord1hNV >= 0)
440096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord1hNV] = (_glapi_proc)_mesa_marshal_TexCoord1hNV;
440196c5ddc4Srjs   if (_gloffset_TexCoord1hvNV >= 0)
440296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord1hvNV] = (_glapi_proc)_mesa_marshal_TexCoord1hvNV;
440396c5ddc4Srjs   if (_gloffset_TexCoord2hNV >= 0)
440496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord2hNV] = (_glapi_proc)_mesa_marshal_TexCoord2hNV;
440596c5ddc4Srjs   if (_gloffset_TexCoord2hvNV >= 0)
440696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord2hvNV] = (_glapi_proc)_mesa_marshal_TexCoord2hvNV;
440796c5ddc4Srjs   if (_gloffset_TexCoord3hNV >= 0)
440896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord3hNV] = (_glapi_proc)_mesa_marshal_TexCoord3hNV;
440996c5ddc4Srjs   if (_gloffset_TexCoord3hvNV >= 0)
441096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord3hvNV] = (_glapi_proc)_mesa_marshal_TexCoord3hvNV;
441196c5ddc4Srjs   if (_gloffset_TexCoord4hNV >= 0)
441296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord4hNV] = (_glapi_proc)_mesa_marshal_TexCoord4hNV;
441396c5ddc4Srjs   if (_gloffset_TexCoord4hvNV >= 0)
441496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexCoord4hvNV] = (_glapi_proc)_mesa_marshal_TexCoord4hvNV;
441596c5ddc4Srjs   if (_gloffset_MultiTexCoord1hNV >= 0)
441696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord1hNV] = (_glapi_proc)_mesa_marshal_MultiTexCoord1hNV;
441796c5ddc4Srjs   if (_gloffset_MultiTexCoord1hvNV >= 0)
441896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord1hvNV] = (_glapi_proc)_mesa_marshal_MultiTexCoord1hvNV;
441996c5ddc4Srjs   if (_gloffset_MultiTexCoord2hNV >= 0)
442096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord2hNV] = (_glapi_proc)_mesa_marshal_MultiTexCoord2hNV;
442196c5ddc4Srjs   if (_gloffset_MultiTexCoord2hvNV >= 0)
442296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord2hvNV] = (_glapi_proc)_mesa_marshal_MultiTexCoord2hvNV;
442396c5ddc4Srjs   if (_gloffset_MultiTexCoord3hNV >= 0)
442496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord3hNV] = (_glapi_proc)_mesa_marshal_MultiTexCoord3hNV;
442596c5ddc4Srjs   if (_gloffset_MultiTexCoord3hvNV >= 0)
442696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord3hvNV] = (_glapi_proc)_mesa_marshal_MultiTexCoord3hvNV;
442796c5ddc4Srjs   if (_gloffset_MultiTexCoord4hNV >= 0)
442896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord4hNV] = (_glapi_proc)_mesa_marshal_MultiTexCoord4hNV;
442996c5ddc4Srjs   if (_gloffset_MultiTexCoord4hvNV >= 0)
443096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord4hvNV] = (_glapi_proc)_mesa_marshal_MultiTexCoord4hvNV;
443196c5ddc4Srjs   if (_gloffset_VertexAttrib1hNV >= 0)
443296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib1hNV] = (_glapi_proc)_mesa_marshal_VertexAttrib1hNV;
443396c5ddc4Srjs   if (_gloffset_VertexAttrib1hvNV >= 0)
443496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib1hvNV] = (_glapi_proc)_mesa_marshal_VertexAttrib1hvNV;
443596c5ddc4Srjs   if (_gloffset_VertexAttrib2hNV >= 0)
443696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib2hNV] = (_glapi_proc)_mesa_marshal_VertexAttrib2hNV;
443796c5ddc4Srjs   if (_gloffset_VertexAttrib2hvNV >= 0)
443896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib2hvNV] = (_glapi_proc)_mesa_marshal_VertexAttrib2hvNV;
443996c5ddc4Srjs   if (_gloffset_VertexAttrib3hNV >= 0)
444096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib3hNV] = (_glapi_proc)_mesa_marshal_VertexAttrib3hNV;
444196c5ddc4Srjs   if (_gloffset_VertexAttrib3hvNV >= 0)
444296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib3hvNV] = (_glapi_proc)_mesa_marshal_VertexAttrib3hvNV;
444396c5ddc4Srjs   if (_gloffset_VertexAttrib4hNV >= 0)
444496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib4hNV] = (_glapi_proc)_mesa_marshal_VertexAttrib4hNV;
444596c5ddc4Srjs   if (_gloffset_VertexAttrib4hvNV >= 0)
444696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttrib4hvNV] = (_glapi_proc)_mesa_marshal_VertexAttrib4hvNV;
444796c5ddc4Srjs   if (_gloffset_VertexAttribs1hvNV >= 0)
444896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribs1hvNV] = (_glapi_proc)_mesa_marshal_VertexAttribs1hvNV;
444996c5ddc4Srjs   if (_gloffset_VertexAttribs2hvNV >= 0)
445096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribs2hvNV] = (_glapi_proc)_mesa_marshal_VertexAttribs2hvNV;
445196c5ddc4Srjs   if (_gloffset_VertexAttribs3hvNV >= 0)
445296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribs3hvNV] = (_glapi_proc)_mesa_marshal_VertexAttribs3hvNV;
445396c5ddc4Srjs   if (_gloffset_VertexAttribs4hvNV >= 0)
445496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_VertexAttribs4hvNV] = (_glapi_proc)_mesa_marshal_VertexAttribs4hvNV;
445596c5ddc4Srjs   if (_gloffset_FogCoordhNV >= 0)
445696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_FogCoordhNV] = (_glapi_proc)_mesa_marshal_FogCoordhNV;
445796c5ddc4Srjs   if (_gloffset_FogCoordhvNV >= 0)
445896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_FogCoordhvNV] = (_glapi_proc)_mesa_marshal_FogCoordhvNV;
445996c5ddc4Srjs   if (_gloffset_SecondaryColor3hNV >= 0)
446096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_SecondaryColor3hNV] = (_glapi_proc)_mesa_marshal_SecondaryColor3hNV;
446196c5ddc4Srjs   if (_gloffset_SecondaryColor3hvNV >= 0)
446296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_SecondaryColor3hvNV] = (_glapi_proc)_mesa_marshal_SecondaryColor3hvNV;
446396c5ddc4Srjs   if (_gloffset_MemoryBarrierByRegion >= 0)
446496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MemoryBarrierByRegion] = (_glapi_proc)_mesa_marshal_MemoryBarrierByRegion;
446596c5ddc4Srjs   if (_gloffset_AlphaFuncx >= 0)
446696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_AlphaFuncx] = (_glapi_proc)_mesa_marshal_AlphaFuncx;
446796c5ddc4Srjs   if (_gloffset_ClearColorx >= 0)
446896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ClearColorx] = (_glapi_proc)_mesa_marshal_ClearColorx;
446996c5ddc4Srjs   if (_gloffset_ClearDepthx >= 0)
447096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ClearDepthx] = (_glapi_proc)_mesa_marshal_ClearDepthx;
447196c5ddc4Srjs   if (_gloffset_Color4x >= 0)
447296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Color4x] = (_glapi_proc)_mesa_marshal_Color4x;
447396c5ddc4Srjs   if (_gloffset_DepthRangex >= 0)
447496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DepthRangex] = (_glapi_proc)_mesa_marshal_DepthRangex;
447596c5ddc4Srjs   if (_gloffset_Fogx >= 0)
447696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Fogx] = (_glapi_proc)_mesa_marshal_Fogx;
447796c5ddc4Srjs   if (_gloffset_Fogxv >= 0)
447896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Fogxv] = (_glapi_proc)_mesa_marshal_Fogxv;
447996c5ddc4Srjs   if (_gloffset_Frustumx >= 0)
448096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Frustumx] = (_glapi_proc)_mesa_marshal_Frustumx;
448196c5ddc4Srjs   if (_gloffset_LightModelx >= 0)
448296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_LightModelx] = (_glapi_proc)_mesa_marshal_LightModelx;
448396c5ddc4Srjs   if (_gloffset_LightModelxv >= 0)
448496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_LightModelxv] = (_glapi_proc)_mesa_marshal_LightModelxv;
448596c5ddc4Srjs   if (_gloffset_Lightx >= 0)
448696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Lightx] = (_glapi_proc)_mesa_marshal_Lightx;
448796c5ddc4Srjs   if (_gloffset_Lightxv >= 0)
448896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Lightxv] = (_glapi_proc)_mesa_marshal_Lightxv;
448996c5ddc4Srjs   if (_gloffset_LineWidthx >= 0)
449096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_LineWidthx] = (_glapi_proc)_mesa_marshal_LineWidthx;
449196c5ddc4Srjs   if (_gloffset_LoadMatrixx >= 0)
449296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_LoadMatrixx] = (_glapi_proc)_mesa_marshal_LoadMatrixx;
449396c5ddc4Srjs   if (_gloffset_Materialx >= 0)
449496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Materialx] = (_glapi_proc)_mesa_marshal_Materialx;
449596c5ddc4Srjs   if (_gloffset_Materialxv >= 0)
449696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Materialxv] = (_glapi_proc)_mesa_marshal_Materialxv;
449796c5ddc4Srjs   if (_gloffset_MultMatrixx >= 0)
449896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultMatrixx] = (_glapi_proc)_mesa_marshal_MultMatrixx;
449996c5ddc4Srjs   if (_gloffset_MultiTexCoord4x >= 0)
450096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_MultiTexCoord4x] = (_glapi_proc)_mesa_marshal_MultiTexCoord4x;
450196c5ddc4Srjs   if (_gloffset_Normal3x >= 0)
450296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Normal3x] = (_glapi_proc)_mesa_marshal_Normal3x;
450396c5ddc4Srjs   if (_gloffset_Orthox >= 0)
450496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Orthox] = (_glapi_proc)_mesa_marshal_Orthox;
450596c5ddc4Srjs   if (_gloffset_PointSizex >= 0)
450696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PointSizex] = (_glapi_proc)_mesa_marshal_PointSizex;
450796c5ddc4Srjs   if (_gloffset_PolygonOffsetx >= 0)
450896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PolygonOffsetx] = (_glapi_proc)_mesa_marshal_PolygonOffsetx;
450996c5ddc4Srjs   if (_gloffset_Rotatex >= 0)
451096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Rotatex] = (_glapi_proc)_mesa_marshal_Rotatex;
451196c5ddc4Srjs   if (_gloffset_SampleCoveragex >= 0)
451296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_SampleCoveragex] = (_glapi_proc)_mesa_marshal_SampleCoveragex;
451396c5ddc4Srjs   if (_gloffset_Scalex >= 0)
451496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Scalex] = (_glapi_proc)_mesa_marshal_Scalex;
451596c5ddc4Srjs   if (_gloffset_TexEnvx >= 0)
451696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexEnvx] = (_glapi_proc)_mesa_marshal_TexEnvx;
451796c5ddc4Srjs   if (_gloffset_TexEnvxv >= 0)
451896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexEnvxv] = (_glapi_proc)_mesa_marshal_TexEnvxv;
451996c5ddc4Srjs   if (_gloffset_TexParameterx >= 0)
452096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexParameterx] = (_glapi_proc)_mesa_marshal_TexParameterx;
452196c5ddc4Srjs   if (_gloffset_Translatex >= 0)
452296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Translatex] = (_glapi_proc)_mesa_marshal_Translatex;
452396c5ddc4Srjs   if (_gloffset_ClipPlanex >= 0)
452496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ClipPlanex] = (_glapi_proc)_mesa_marshal_ClipPlanex;
452596c5ddc4Srjs   if (_gloffset_GetClipPlanex >= 0)
452696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetClipPlanex] = (_glapi_proc)_mesa_marshal_GetClipPlanex;
452796c5ddc4Srjs   if (_gloffset_GetFixedv >= 0)
452896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetFixedv] = (_glapi_proc)_mesa_marshal_GetFixedv;
452996c5ddc4Srjs   if (_gloffset_GetLightxv >= 0)
453096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetLightxv] = (_glapi_proc)_mesa_marshal_GetLightxv;
453196c5ddc4Srjs   if (_gloffset_GetMaterialxv >= 0)
453296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetMaterialxv] = (_glapi_proc)_mesa_marshal_GetMaterialxv;
453396c5ddc4Srjs   if (_gloffset_GetTexEnvxv >= 0)
453496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetTexEnvxv] = (_glapi_proc)_mesa_marshal_GetTexEnvxv;
453596c5ddc4Srjs   if (_gloffset_GetTexParameterxv >= 0)
453696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetTexParameterxv] = (_glapi_proc)_mesa_marshal_GetTexParameterxv;
453796c5ddc4Srjs   if (_gloffset_PointParameterx >= 0)
453896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PointParameterx] = (_glapi_proc)_mesa_marshal_PointParameterx;
453996c5ddc4Srjs   if (_gloffset_PointParameterxv >= 0)
454096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PointParameterxv] = (_glapi_proc)_mesa_marshal_PointParameterxv;
454196c5ddc4Srjs   if (_gloffset_TexParameterxv >= 0)
454296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexParameterxv] = (_glapi_proc)_mesa_marshal_TexParameterxv;
454396c5ddc4Srjs   if (_gloffset_GetTexGenxvOES >= 0)
454496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetTexGenxvOES] = (_glapi_proc)_mesa_marshal_GetTexGenxvOES;
454596c5ddc4Srjs   if (_gloffset_TexGenxOES >= 0)
454696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexGenxOES] = (_glapi_proc)_mesa_marshal_TexGenxOES;
454796c5ddc4Srjs   if (_gloffset_TexGenxvOES >= 0)
454896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_TexGenxvOES] = (_glapi_proc)_mesa_marshal_TexGenxvOES;
454996c5ddc4Srjs   if (_gloffset_ClipPlanef >= 0)
455096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_ClipPlanef] = (_glapi_proc)_mesa_marshal_ClipPlanef;
455196c5ddc4Srjs   if (_gloffset_GetClipPlanef >= 0)
455296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetClipPlanef] = (_glapi_proc)_mesa_marshal_GetClipPlanef;
455396c5ddc4Srjs   if (_gloffset_Frustumf >= 0)
455496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Frustumf] = (_glapi_proc)_mesa_marshal_Frustumf;
455596c5ddc4Srjs   if (_gloffset_Orthof >= 0)
455696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_Orthof] = (_glapi_proc)_mesa_marshal_Orthof;
455796c5ddc4Srjs   if (_gloffset_DrawTexiOES >= 0)
455896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DrawTexiOES] = (_glapi_proc)_mesa_marshal_DrawTexiOES;
455996c5ddc4Srjs   if (_gloffset_DrawTexivOES >= 0)
456096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DrawTexivOES] = (_glapi_proc)_mesa_marshal_DrawTexivOES;
456196c5ddc4Srjs   if (_gloffset_DrawTexfOES >= 0)
456296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DrawTexfOES] = (_glapi_proc)_mesa_marshal_DrawTexfOES;
456396c5ddc4Srjs   if (_gloffset_DrawTexfvOES >= 0)
456496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DrawTexfvOES] = (_glapi_proc)_mesa_marshal_DrawTexfvOES;
456596c5ddc4Srjs   if (_gloffset_DrawTexsOES >= 0)
456696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DrawTexsOES] = (_glapi_proc)_mesa_marshal_DrawTexsOES;
456796c5ddc4Srjs   if (_gloffset_DrawTexsvOES >= 0)
456896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DrawTexsvOES] = (_glapi_proc)_mesa_marshal_DrawTexsvOES;
456996c5ddc4Srjs   if (_gloffset_DrawTexxOES >= 0)
457096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DrawTexxOES] = (_glapi_proc)_mesa_marshal_DrawTexxOES;
457196c5ddc4Srjs   if (_gloffset_DrawTexxvOES >= 0)
457296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DrawTexxvOES] = (_glapi_proc)_mesa_marshal_DrawTexxvOES;
457396c5ddc4Srjs   if (_gloffset_PointSizePointerOES >= 0)
457496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_PointSizePointerOES] = (_glapi_proc)_mesa_marshal_PointSizePointerOES;
457596c5ddc4Srjs   if (_gloffset_QueryMatrixxOES >= 0)
457696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_QueryMatrixxOES] = (_glapi_proc)_mesa_marshal_QueryMatrixxOES;
457796c5ddc4Srjs   if (_gloffset_DiscardFramebufferEXT >= 0)
457896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DiscardFramebufferEXT] = (_glapi_proc)_mesa_marshal_DiscardFramebufferEXT;
457996c5ddc4Srjs   if (_gloffset_FramebufferTexture2DMultisampleEXT >= 0)
458096c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_FramebufferTexture2DMultisampleEXT] = (_glapi_proc)_mesa_marshal_FramebufferTexture2DMultisampleEXT;
458196c5ddc4Srjs   if (_gloffset_DepthRangeArrayfvOES >= 0)
458296c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DepthRangeArrayfvOES] = (_glapi_proc)_mesa_marshal_DepthRangeArrayfvOES;
458396c5ddc4Srjs   if (_gloffset_DepthRangeIndexedfOES >= 0)
458496c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_DepthRangeIndexedfOES] = (_glapi_proc)_mesa_marshal_DepthRangeIndexedfOES;
458596c5ddc4Srjs   if (_gloffset_FramebufferParameteriMESA >= 0)
458696c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_FramebufferParameteriMESA] = (_glapi_proc)_mesa_marshal_FramebufferParameteriMESA;
458796c5ddc4Srjs   if (_gloffset_GetFramebufferParameterivMESA >= 0)
458896c5ddc4Srjs      ((_glapi_proc *)(table))[_gloffset_GetFramebufferParameterivMESA] = (_glapi_proc)_mesa_marshal_GetFramebufferParameterivMESA;
458996c5ddc4Srjs
459096c5ddc4Srjs   return table;
459196c5ddc4Srjs}
459296c5ddc4Srjs
459396c5ddc4Srjs
4594