From 0744766a976fda10ac5bd9ce28a4ae2c6c80ddb2 Mon Sep 17 00:00:00 2001 From: Cass Everitt Date: Sun, 5 Jan 2014 01:14:18 -0600 Subject: [PATCH] most everything I normally use seems to be working now --- scripts/regal/RegalContext.py | 46 +- scripts/regal/RegalDispatchError.py | 10 +- scripts/regal/RegalDispatchHttp.py | 21 +- scripts/regal/RegalDispatchLog.py | 2 +- src/regal/RegalBaseVertex.h | 10 +- src/regal/RegalBin.h | 2 +- src/regal/RegalContext.cpp | 35 +- src/regal/RegalDispatchError.cpp | 6 + src/regal/RegalDispatchHttp.cpp | 6171 ++++++++++++++------------- src/regal/RegalDispatchHttp.h | 1 + src/regal/RegalDispatchLog.cpp | 2 +- src/regal/RegalDsa.h | 46 +- src/regal/RegalHttp.cpp | 7 +- src/regal/RegalIff.cpp | 66 +- src/regal/RegalObj.h | 18 +- src/regal/RegalPpa.h | 62 +- src/regal/RegalPpca.h | 14 +- src/regal/RegalQuads.cpp | 4 +- src/regal/RegalRect.h | 2 +- src/regal/RegalSo.cpp | 8 +- src/regal/RegalState.h | 8 +- src/regal/RegalTexSto.h | 8 +- src/regal/RegalVao.h | 10 +- src/regal/RegalXfer.cpp | 8 +- 24 files changed, 3298 insertions(+), 3269 deletions(-) diff --git a/scripts/regal/RegalContext.py b/scripts/regal/RegalContext.py index a594dc8..5225a3f 100755 --- a/scripts/regal/RegalContext.py +++ b/scripts/regal/RegalContext.py @@ -370,9 +370,26 @@ ${MEMBER_INIT} log.Init( this ); #endif -#if REGAL_EMULATION - emu.Init( this ); + +#if REGAL_STATISTICS // todo +#endif + +#if REGAL_CODE // todo +#endif + +#if REGAL_CACHE // todo +#endif + +#if REGAL_ERROR_POST_EMU +#if REGAL_ERROR + if( Config::enableError ) { + err.Init( this ); + } +#endif +#endif + +#if REGAL_EMULATION ${EMULATION_ENABLED} @@ -380,30 +397,19 @@ ${EMULATION_ENABLED} if (Config::enableEmulation || Config::forceEmulation) #endif { + emu.Init( this ); + ${EMU_MEMBER_INIT} } #endif -#if REGAL_CODE - if (Config::enableCode && !codeSource && !codeHeader) - { - if (Config::codeSourceFile.length()) - { - codeSource = fopen(Config::codeSourceFile.c_str(),"wt"); - if (!codeSource) - Warning("Failed to open file ",Config::codeSourceFile," for writing code source."); - } - if (Config::codeHeaderFile.length()) - { - if (Config::codeHeaderFile==Config::codeSourceFile) - codeHeader = codeSource; - else - codeHeader = fopen(Config::codeHeaderFile.c_str(),"wt"); - if (!codeHeader) - Warning("Failed to open file ",Config::codeHeaderFile," for writing code header."); - } +#if ! REGAL_ERROR_POST_EMU +#if REGAL_ERROR + if( Config::enableError ) { + err.Init( this ); } #endif +#endif #if REGAL_HTTP http.Init( this ); diff --git a/scripts/regal/RegalDispatchError.py b/scripts/regal/RegalDispatchError.py index 769c0cb..49a41e4 100755 --- a/scripts/regal/RegalDispatchError.py +++ b/scripts/regal/RegalDispatchError.py @@ -105,15 +105,11 @@ localInclude = ''' ''' localCode = ''' -static Dispatch::Global nextGlobal; void Err::Init( RegalContext * ctx ) { - void InitDispatchGLError( Dispatch::GL & tbl ); + void InitDispatchError( Dispatch::GL & tbl ); next = ctx->dispatchGL; - InitDispatchGLError( ctx->dispatchGL ); - nextGlobal = dispatchGlobal; - void InitDispatchGlobal( Dispatch::Global & tbl ); - InitDispatchGlobal( dispatchGlobal ); + InitDispatchError( ctx->dispatchGL ); } ''' @@ -129,7 +125,7 @@ def generateErrorSource(apis, args): substitute['COPYRIGHT'] = args.copyright substitute['DISPATCH_NAME'] = 'Error' substitute['LOCAL_INCLUDE'] = '' - substitute['LOCAL_CODE'] = '' + substitute['LOCAL_CODE'] = localCode substitute['API_DISPATCH_FUNC_DEFINE'] = funcDefine substitute['API_DISPATCH_FUNC_INIT'] = funcInit substitute['API_DISPATCH_GLOBAL_FUNC_INIT'] = '' diff --git a/scripts/regal/RegalDispatchHttp.py b/scripts/regal/RegalDispatchHttp.py index 9b98715..8f3a0ec 100755 --- a/scripts/regal/RegalDispatchHttp.py +++ b/scripts/regal/RegalDispatchHttp.py @@ -232,9 +232,24 @@ REGAL_GLOBAL_END REGAL_NAMESPACE_BEGIN +static Dispatch::Global nextGlobal; + +void Http::Init( RegalContext * ctx ) { + + ctx->http.next = ctx->dispatchGL; + void InitDispatchHttp( Dispatch::GL & ); + InitDispatchHttp( ctx->dispatchGL ); + + gl.Initialize( & ctx->http.next ); + + nextGlobal = dispatchGlobal; + void InitDispatchHttp( Dispatch::Global & ); + InitDispatchHttp( dispatchGlobal ); +} + ${API_FUNC_DEFINE} -void InitDispatchTableHttp(Dispatch::GL &tbl) +void InitDispatchHttp(Dispatch::GL &tbl) { ${API_GL_DISPATCH_INIT} } @@ -323,9 +338,9 @@ def generateDispatchHttp(apis, args): if function.needsContext: - code += ' Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL;\n' + code += ' Dispatch::GL *_next = _context ? &_context->http.next : NULL;\n' else: - code += ' Dispatch::Global *_next = &dispatchGlobal;\n' + code += ' Dispatch::Global *_next = &nextGlobal;\n' code += ' RegalAssert(_next);\n' diff --git a/scripts/regal/RegalDispatchLog.py b/scripts/regal/RegalDispatchLog.py index 82ee21d..3d85bff 100755 --- a/scripts/regal/RegalDispatchLog.py +++ b/scripts/regal/RegalDispatchLog.py @@ -41,7 +41,7 @@ REGAL_GLOBAL_END REGAL_NAMESPACE_BEGIN -Dispatch::Global nextGlobal; +static Dispatch::Global nextGlobal; void Log::Init( RegalContext * ctx ) { ctx->log.next = ctx->dispatchGL; diff --git a/src/regal/RegalBaseVertex.h b/src/regal/RegalBaseVertex.h index df1a50a..1ec2964 100644 --- a/src/regal/RegalBaseVertex.h +++ b/src/regal/RegalBaseVertex.h @@ -164,7 +164,7 @@ struct BaseVertex : public ClientState::VertexArray bool glDrawElementsBaseVertex(RegalContext &ctx, GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLint basevertex) { - Dispatch::GL &dt = ctx.dispatchGL; + Dispatch::GL &dt = ctx.emu.curr; if (basevertex) adjust(ctx, dt, basevertex); dt.glDrawElements(mode, count, type, indices); @@ -175,7 +175,7 @@ struct BaseVertex : public ClientState::VertexArray bool glDrawRangeElementsBaseVertex(RegalContext &ctx, GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices, GLint basevertex) { - Dispatch::GL &dt = ctx.dispatchGL; + Dispatch::GL &dt = ctx.emu.curr; if (basevertex) adjust(ctx, dt, basevertex); dt.glDrawRangeElements(mode, start, end, count, type, indices); @@ -186,7 +186,7 @@ struct BaseVertex : public ClientState::VertexArray bool glDrawElementsInstancedBaseVertex(RegalContext &ctx, GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei primcount, GLint basevertex) { - Dispatch::GL &dt = ctx.dispatchGL; + Dispatch::GL &dt = ctx.emu.curr; if (basevertex) adjust(ctx, dt, basevertex); dt.glDrawElementsInstanced(mode, count, type, indices, primcount); @@ -197,7 +197,7 @@ struct BaseVertex : public ClientState::VertexArray bool glDrawElementsInstancedBaseVertexBaseInstance(RegalContext &ctx, GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei primcount, GLint basevertex, GLuint baseinstance) { - Dispatch::GL &dt = ctx.dispatchGL; + Dispatch::GL &dt = ctx.emu.curr; if (basevertex) adjust(ctx, dt, basevertex); dt.glDrawElementsInstancedBaseInstance(mode, count, type, indices, primcount, baseinstance); @@ -208,7 +208,7 @@ struct BaseVertex : public ClientState::VertexArray bool glMultiDrawElementsBaseVertex(RegalContext &ctx, GLenum mode, const GLsizei *count, GLenum type, const GLvoid * const* indices, GLsizei primcount, const GLint *basevertex) { - Dispatch::GL &dt = ctx.dispatchGL; + Dispatch::GL &dt = ctx.emu.curr; for (GLsizei ii=0; iidispatchGL; + Dispatch::GL &tbl = ctx->emu.curr; tbl.glShaderBinary( count, shaders, binaryFormat, binary, length ); } }; diff --git a/src/regal/RegalContext.cpp b/src/regal/RegalContext.cpp index 38b7151..e1d2041 100644 --- a/src/regal/RegalContext.cpp +++ b/src/regal/RegalContext.cpp @@ -194,14 +194,22 @@ RegalContext::Init() log.Init( this ); #endif -#if REGAL_EMULATION +#if REGAL_ERROR_POST_EMU +#if REGAL_ERROR + if( Config::enableError ) { + err.Init( this ); + } +#endif +#endif - emu.Init( this ); +#if REGAL_EMULATION #if !REGAL_FORCE_EMULATION if (Config::enableEmulation || Config::forceEmulation) #endif { + emu.Init( this ); + // emu emuLevel = 16; { @@ -481,26 +489,13 @@ RegalContext::Init() } #endif -#if REGAL_CODE - if (Config::enableCode && !codeSource && !codeHeader) - { - if (Config::codeSourceFile.length()) - { - codeSource = fopen(Config::codeSourceFile.c_str(),"wt"); - if (!codeSource) - Warning("Failed to open file ",Config::codeSourceFile," for writing code source."); - } - if (Config::codeHeaderFile.length()) - { - if (Config::codeHeaderFile==Config::codeSourceFile) - codeHeader = codeSource; - else - codeHeader = fopen(Config::codeHeaderFile.c_str(),"wt"); - if (!codeHeader) - Warning("Failed to open file ",Config::codeHeaderFile," for writing code header."); - } +#if ! REGAL_ERROR_POST_EMU +#if REGAL_ERROR + if( Config::enableError ) { + err.Init( this ); } #endif +#endif #if REGAL_HTTP http.Init( this ); diff --git a/src/regal/RegalDispatchError.cpp b/src/regal/RegalDispatchError.cpp index 9283776..067fa89 100644 --- a/src/regal/RegalDispatchError.cpp +++ b/src/regal/RegalDispatchError.cpp @@ -64,6 +64,12 @@ REGAL_NAMESPACE_BEGIN using namespace ::REGAL_NAMESPACE_INTERNAL::Logging; using namespace ::REGAL_NAMESPACE_INTERNAL::Token; +void Err::Init( RegalContext * ctx ) { + void InitDispatchError( Dispatch::GL & tbl ); + next = ctx->dispatchGL; + InitDispatchError( ctx->dispatchGL ); +} + // GL_VERSION_1_0 static void REGAL_CALL error_glAccum(GLenum op, GLfloat value) diff --git a/src/regal/RegalDispatchHttp.cpp b/src/regal/RegalDispatchHttp.cpp index fcede71..b94c31b 100644 --- a/src/regal/RegalDispatchHttp.cpp +++ b/src/regal/RegalDispatchHttp.cpp @@ -63,6 +63,21 @@ REGAL_GLOBAL_END REGAL_NAMESPACE_BEGIN +static Dispatch::Global nextGlobal; + +void Http::Init( RegalContext * ctx ) { + + ctx->http.next = ctx->dispatchGL; + void InitDispatchHttp( Dispatch::GL & ); + InitDispatchHttp( ctx->dispatchGL ); + + gl.Initialize( & ctx->http.next ); + + nextGlobal = dispatchGlobal; + void InitDispatchHttp( Dispatch::Global & ); + InitDispatchHttp( dispatchGlobal ); +} + // GL_VERSION_1_0 static void REGAL_CALL http_glAccum(GLenum op, GLfloat value) @@ -75,7 +90,7 @@ static void REGAL_CALL http_glAccum(GLenum op, GLfloat value) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glAccum(op, value); } @@ -90,7 +105,7 @@ static void REGAL_CALL http_glAlphaFunc(GLenum func, GLclampf ref) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glAlphaFunc(func, ref); } @@ -110,7 +125,7 @@ static void REGAL_CALL http_glBegin(GLenum mode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBegin(mode); if( _context ) { @@ -128,7 +143,7 @@ static void REGAL_CALL http_glBitmap(GLsizei width, GLsizei height, GLfloat xori } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBitmap(width, height, xorig, yorig, xmove, ymove, bitmap); } @@ -143,7 +158,7 @@ static void REGAL_CALL http_glBlendFunc(GLenum sfactor, GLenum dfactor) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBlendFunc(sfactor, dfactor); } @@ -158,7 +173,7 @@ static void REGAL_CALL http_glCallList(GLuint list) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCallList(list); } @@ -173,7 +188,7 @@ static void REGAL_CALL http_glCallLists(GLsizei n, GLenum type, const GLvoid *li } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCallLists(n, type, lists); } @@ -188,7 +203,7 @@ static void REGAL_CALL http_glClear(GLbitfield mask) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glClear(mask); } @@ -203,7 +218,7 @@ static void REGAL_CALL http_glClearAccum(GLfloat red, GLfloat green, GLfloat blu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glClearAccum(red, green, blue, alpha); } @@ -218,7 +233,7 @@ static void REGAL_CALL http_glClearColor(GLclampf red, GLclampf green, GLclampf } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glClearColor(red, green, blue, alpha); } @@ -233,7 +248,7 @@ static void REGAL_CALL http_glClearDepth(GLclampd depth) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glClearDepth(depth); } @@ -248,7 +263,7 @@ static void REGAL_CALL http_glClearIndex(GLfloat c) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glClearIndex(c); } @@ -263,7 +278,7 @@ static void REGAL_CALL http_glClearStencil(GLint s) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glClearStencil(s); } @@ -278,7 +293,7 @@ static void REGAL_CALL http_glClipPlane(GLenum plane, const GLdouble *equation) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glClipPlane(plane, equation); } @@ -293,7 +308,7 @@ static void REGAL_CALL http_glColor3b(GLbyte red, GLbyte green, GLbyte blue) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor3b(red, green, blue); } @@ -308,7 +323,7 @@ static void REGAL_CALL http_glColor3bv(const GLbyte *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor3bv(v); } @@ -323,7 +338,7 @@ static void REGAL_CALL http_glColor3d(GLdouble red, GLdouble green, GLdouble blu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor3d(red, green, blue); } @@ -338,7 +353,7 @@ static void REGAL_CALL http_glColor3dv(const GLdouble *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor3dv(v); } @@ -353,7 +368,7 @@ static void REGAL_CALL http_glColor3f(GLfloat red, GLfloat green, GLfloat blue) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor3f(red, green, blue); } @@ -368,7 +383,7 @@ static void REGAL_CALL http_glColor3fv(const GLfloat *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor3fv(v); } @@ -383,7 +398,7 @@ static void REGAL_CALL http_glColor3i(GLint red, GLint green, GLint blue) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor3i(red, green, blue); } @@ -398,7 +413,7 @@ static void REGAL_CALL http_glColor3iv(const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor3iv(v); } @@ -413,7 +428,7 @@ static void REGAL_CALL http_glColor3s(GLshort red, GLshort green, GLshort blue) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor3s(red, green, blue); } @@ -428,7 +443,7 @@ static void REGAL_CALL http_glColor3sv(const GLshort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor3sv(v); } @@ -443,7 +458,7 @@ static void REGAL_CALL http_glColor3ub(GLubyte red, GLubyte green, GLubyte blue) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor3ub(red, green, blue); } @@ -458,7 +473,7 @@ static void REGAL_CALL http_glColor3ubv(const GLubyte *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor3ubv(v); } @@ -473,7 +488,7 @@ static void REGAL_CALL http_glColor3ui(GLuint red, GLuint green, GLuint blue) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor3ui(red, green, blue); } @@ -488,7 +503,7 @@ static void REGAL_CALL http_glColor3uiv(const GLuint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor3uiv(v); } @@ -503,7 +518,7 @@ static void REGAL_CALL http_glColor3us(GLushort red, GLushort green, GLushort bl } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor3us(red, green, blue); } @@ -518,7 +533,7 @@ static void REGAL_CALL http_glColor3usv(const GLushort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor3usv(v); } @@ -533,7 +548,7 @@ static void REGAL_CALL http_glColor4b(GLbyte red, GLbyte green, GLbyte blue, GLb } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor4b(red, green, blue, alpha); } @@ -548,7 +563,7 @@ static void REGAL_CALL http_glColor4bv(const GLbyte *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor4bv(v); } @@ -563,7 +578,7 @@ static void REGAL_CALL http_glColor4d(GLdouble red, GLdouble green, GLdouble blu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor4d(red, green, blue, alpha); } @@ -578,7 +593,7 @@ static void REGAL_CALL http_glColor4dv(const GLdouble *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor4dv(v); } @@ -593,7 +608,7 @@ static void REGAL_CALL http_glColor4f(GLfloat red, GLfloat green, GLfloat blue, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor4f(red, green, blue, alpha); } @@ -608,7 +623,7 @@ static void REGAL_CALL http_glColor4fv(const GLfloat *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor4fv(v); } @@ -623,7 +638,7 @@ static void REGAL_CALL http_glColor4i(GLint red, GLint green, GLint blue, GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor4i(red, green, blue, alpha); } @@ -638,7 +653,7 @@ static void REGAL_CALL http_glColor4iv(const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor4iv(v); } @@ -653,7 +668,7 @@ static void REGAL_CALL http_glColor4s(GLshort red, GLshort green, GLshort blue, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor4s(red, green, blue, alpha); } @@ -668,7 +683,7 @@ static void REGAL_CALL http_glColor4sv(const GLshort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor4sv(v); } @@ -683,7 +698,7 @@ static void REGAL_CALL http_glColor4ub(GLubyte red, GLubyte green, GLubyte blue, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor4ub(red, green, blue, alpha); } @@ -698,7 +713,7 @@ static void REGAL_CALL http_glColor4ubv(const GLubyte *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor4ubv(v); } @@ -713,7 +728,7 @@ static void REGAL_CALL http_glColor4ui(GLuint red, GLuint green, GLuint blue, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor4ui(red, green, blue, alpha); } @@ -728,7 +743,7 @@ static void REGAL_CALL http_glColor4uiv(const GLuint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor4uiv(v); } @@ -743,7 +758,7 @@ static void REGAL_CALL http_glColor4us(GLushort red, GLushort green, GLushort bl } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor4us(red, green, blue, alpha); } @@ -758,7 +773,7 @@ static void REGAL_CALL http_glColor4usv(const GLushort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor4usv(v); } @@ -773,7 +788,7 @@ static void REGAL_CALL http_glColorMask(GLboolean red, GLboolean green, GLboolea } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColorMask(red, green, blue, alpha); } @@ -788,7 +803,7 @@ static void REGAL_CALL http_glColorMaterial(GLenum face, GLenum mode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColorMaterial(face, mode); } @@ -803,7 +818,7 @@ static void REGAL_CALL http_glCopyPixels(GLint x, GLint y, GLsizei width, GLsize } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCopyPixels(x, y, width, height, type); } @@ -818,7 +833,7 @@ static void REGAL_CALL http_glCullFace(GLenum mode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCullFace(mode); } @@ -833,7 +848,7 @@ static void REGAL_CALL http_glDeleteLists(GLuint list, GLsizei range) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeleteLists(list, range); } @@ -848,7 +863,7 @@ static void REGAL_CALL http_glDepthFunc(GLenum func) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDepthFunc(func); } @@ -863,7 +878,7 @@ static void REGAL_CALL http_glDepthMask(GLboolean flag) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDepthMask(flag); } @@ -878,7 +893,7 @@ static void REGAL_CALL http_glDepthRange(GLclampd zNear, GLclampd zFar) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDepthRange(zNear, zFar); } @@ -893,7 +908,7 @@ static void REGAL_CALL http_glDisable(GLenum cap) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDisable(cap); } @@ -908,7 +923,7 @@ static void REGAL_CALL http_glDrawBuffer(GLenum mode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawBuffer(mode); } @@ -923,7 +938,7 @@ static void REGAL_CALL http_glDrawPixels(GLsizei width, GLsizei height, GLenum f } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawPixels(width, height, format, type, pixels); } @@ -938,7 +953,7 @@ static void REGAL_CALL http_glEdgeFlag(GLboolean flag) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEdgeFlag(flag); } @@ -953,7 +968,7 @@ static void REGAL_CALL http_glEdgeFlagv(const GLboolean *flag) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEdgeFlagv(flag); } @@ -968,7 +983,7 @@ static void REGAL_CALL http_glEnable(GLenum cap) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEnable(cap); } @@ -983,7 +998,7 @@ static void REGAL_CALL http_glEnd(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEnd(); if( _context ) { @@ -1002,7 +1017,7 @@ static void REGAL_CALL http_glEndList(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEndList(); } @@ -1017,7 +1032,7 @@ static void REGAL_CALL http_glEvalCoord1d(GLdouble u) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEvalCoord1d(u); } @@ -1032,7 +1047,7 @@ static void REGAL_CALL http_glEvalCoord1dv(const GLdouble *u) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEvalCoord1dv(u); } @@ -1047,7 +1062,7 @@ static void REGAL_CALL http_glEvalCoord1f(GLfloat u) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEvalCoord1f(u); } @@ -1062,7 +1077,7 @@ static void REGAL_CALL http_glEvalCoord1fv(const GLfloat *u) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEvalCoord1fv(u); } @@ -1077,7 +1092,7 @@ static void REGAL_CALL http_glEvalCoord2d(GLdouble u, GLdouble v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEvalCoord2d(u, v); } @@ -1092,7 +1107,7 @@ static void REGAL_CALL http_glEvalCoord2dv(const GLdouble *u) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEvalCoord2dv(u); } @@ -1107,7 +1122,7 @@ static void REGAL_CALL http_glEvalCoord2f(GLfloat u, GLfloat v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEvalCoord2f(u, v); } @@ -1122,7 +1137,7 @@ static void REGAL_CALL http_glEvalCoord2fv(const GLfloat *u) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEvalCoord2fv(u); } @@ -1137,7 +1152,7 @@ static void REGAL_CALL http_glEvalMesh1(GLenum mode, GLint i1, GLint i2) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEvalMesh1(mode, i1, i2); } @@ -1152,7 +1167,7 @@ static void REGAL_CALL http_glEvalMesh2(GLenum mode, GLint i1, GLint i2, GLint j } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEvalMesh2(mode, i1, i2, j1, j2); } @@ -1167,7 +1182,7 @@ static void REGAL_CALL http_glEvalPoint1(GLint i) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEvalPoint1(i); } @@ -1182,7 +1197,7 @@ static void REGAL_CALL http_glEvalPoint2(GLint i, GLint j) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEvalPoint2(i, j); } @@ -1197,7 +1212,7 @@ static void REGAL_CALL http_glFeedbackBuffer(GLsizei size, GLenum type, GLfloat } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFeedbackBuffer(size, type, buffer); } @@ -1212,7 +1227,7 @@ static void REGAL_CALL http_glFinish(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFinish(); } @@ -1227,7 +1242,7 @@ static void REGAL_CALL http_glFlush(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFlush(); } @@ -1242,7 +1257,7 @@ static void REGAL_CALL http_glFogf(GLenum pname, GLfloat param) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFogf(pname, param); } @@ -1257,7 +1272,7 @@ static void REGAL_CALL http_glFogfv(GLenum pname, const GLfloat *params) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFogfv(pname, params); } @@ -1272,7 +1287,7 @@ static void REGAL_CALL http_glFogi(GLenum pname, GLint param) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFogi(pname, param); } @@ -1287,7 +1302,7 @@ static void REGAL_CALL http_glFogiv(GLenum pname, const GLint *params) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFogiv(pname, params); } @@ -1302,7 +1317,7 @@ static void REGAL_CALL http_glFrontFace(GLenum mode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFrontFace(mode); } @@ -1317,7 +1332,7 @@ static void REGAL_CALL http_glFrustum(GLdouble left, GLdouble right, GLdouble bo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFrustum(left, right, bottom, top, zNear, zFar); } @@ -1333,7 +1348,7 @@ static GLuint REGAL_CALL http_glGenLists(GLsizei range) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glGenLists(range); return ret; @@ -1349,7 +1364,7 @@ static void REGAL_CALL http_glGetBooleanv(GLenum pname, GLboolean *params) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetBooleanv(pname, params); } @@ -1364,7 +1379,7 @@ static void REGAL_CALL http_glGetClipPlane(GLenum plane, GLdouble *equation) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetClipPlane(plane, equation); } @@ -1379,7 +1394,7 @@ static void REGAL_CALL http_glGetDoublev(GLenum pname, GLdouble *params) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetDoublev(pname, params); } @@ -1395,7 +1410,7 @@ static GLenum REGAL_CALL http_glGetError(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glGetError(); return ret; @@ -1411,7 +1426,7 @@ static void REGAL_CALL http_glGetFloatv(GLenum pname, GLfloat *params) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetFloatv(pname, params); } @@ -1426,7 +1441,7 @@ static void REGAL_CALL http_glGetIntegerv(GLenum pname, GLint *params) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetIntegerv(pname, params); } @@ -1441,7 +1456,7 @@ static void REGAL_CALL http_glGetLightfv(GLenum light, GLenum pname, GLfloat *pa } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetLightfv(light, pname, params); } @@ -1456,7 +1471,7 @@ static void REGAL_CALL http_glGetLightiv(GLenum light, GLenum pname, GLint *para } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetLightiv(light, pname, params); } @@ -1471,7 +1486,7 @@ static void REGAL_CALL http_glGetMapdv(GLenum target, GLenum query, GLdouble *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetMapdv(target, query, v); } @@ -1486,7 +1501,7 @@ static void REGAL_CALL http_glGetMapfv(GLenum target, GLenum query, GLfloat *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetMapfv(target, query, v); } @@ -1501,7 +1516,7 @@ static void REGAL_CALL http_glGetMapiv(GLenum target, GLenum query, GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetMapiv(target, query, v); } @@ -1516,7 +1531,7 @@ static void REGAL_CALL http_glGetMaterialfv(GLenum face, GLenum pname, GLfloat * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetMaterialfv(face, pname, params); } @@ -1531,7 +1546,7 @@ static void REGAL_CALL http_glGetMaterialiv(GLenum face, GLenum pname, GLint *pa } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetMaterialiv(face, pname, params); } @@ -1546,7 +1561,7 @@ static void REGAL_CALL http_glGetPixelMapfv(GLenum map, GLfloat *values) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetPixelMapfv(map, values); } @@ -1561,7 +1576,7 @@ static void REGAL_CALL http_glGetPixelMapuiv(GLenum map, GLuint *values) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetPixelMapuiv(map, values); } @@ -1576,7 +1591,7 @@ static void REGAL_CALL http_glGetPixelMapusv(GLenum map, GLushort *values) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetPixelMapusv(map, values); } @@ -1591,7 +1606,7 @@ static void REGAL_CALL http_glGetPolygonStipple(GLubyte *mask) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetPolygonStipple(mask); } @@ -1607,7 +1622,7 @@ static const GLubyte *REGAL_CALL http_glGetString(GLenum name) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glGetString(name); return ret; @@ -1623,7 +1638,7 @@ static void REGAL_CALL http_glGetTexEnvfv(GLenum target, GLenum pname, GLfloat * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetTexEnvfv(target, pname, params); } @@ -1638,7 +1653,7 @@ static void REGAL_CALL http_glGetTexEnviv(GLenum target, GLenum pname, GLint *pa } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetTexEnviv(target, pname, params); } @@ -1653,7 +1668,7 @@ static void REGAL_CALL http_glGetTexGendv(GLenum coord, GLenum pname, GLdouble * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetTexGendv(coord, pname, params); } @@ -1668,7 +1683,7 @@ static void REGAL_CALL http_glGetTexGenfv(GLenum coord, GLenum pname, GLfloat *p } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetTexGenfv(coord, pname, params); } @@ -1683,7 +1698,7 @@ static void REGAL_CALL http_glGetTexGeniv(GLenum coord, GLenum pname, GLint *par } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetTexGeniv(coord, pname, params); } @@ -1698,7 +1713,7 @@ static void REGAL_CALL http_glGetTexImage(GLenum target, GLint level, GLenum for } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetTexImage(target, level, format, type, pixels); } @@ -1713,7 +1728,7 @@ static void REGAL_CALL http_glGetTexLevelParameterfv(GLenum target, GLint level, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetTexLevelParameterfv(target, level, pname, params); } @@ -1728,7 +1743,7 @@ static void REGAL_CALL http_glGetTexLevelParameteriv(GLenum target, GLint level, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetTexLevelParameteriv(target, level, pname, params); } @@ -1743,7 +1758,7 @@ static void REGAL_CALL http_glGetTexParameterfv(GLenum target, GLenum pname, GLf } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetTexParameterfv(target, pname, params); } @@ -1758,7 +1773,7 @@ static void REGAL_CALL http_glGetTexParameteriv(GLenum target, GLenum pname, GLi } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetTexParameteriv(target, pname, params); } @@ -1773,7 +1788,7 @@ static void REGAL_CALL http_glHint(GLenum target, GLenum mode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glHint(target, mode); } @@ -1788,7 +1803,7 @@ static void REGAL_CALL http_glIndexMask(GLuint mask) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glIndexMask(mask); } @@ -1803,7 +1818,7 @@ static void REGAL_CALL http_glIndexd(GLdouble c) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glIndexd(c); } @@ -1818,7 +1833,7 @@ static void REGAL_CALL http_glIndexdv(const GLdouble *c) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glIndexdv(c); } @@ -1833,7 +1848,7 @@ static void REGAL_CALL http_glIndexf(GLfloat c) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glIndexf(c); } @@ -1848,7 +1863,7 @@ static void REGAL_CALL http_glIndexfv(const GLfloat *c) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glIndexfv(c); } @@ -1863,7 +1878,7 @@ static void REGAL_CALL http_glIndexi(GLint c) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glIndexi(c); } @@ -1878,7 +1893,7 @@ static void REGAL_CALL http_glIndexiv(const GLint *c) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glIndexiv(c); } @@ -1893,7 +1908,7 @@ static void REGAL_CALL http_glIndexs(GLshort c) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glIndexs(c); } @@ -1908,7 +1923,7 @@ static void REGAL_CALL http_glIndexsv(const GLshort *c) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glIndexsv(c); } @@ -1923,7 +1938,7 @@ static void REGAL_CALL http_glInitNames(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glInitNames(); } @@ -1939,7 +1954,7 @@ static GLboolean REGAL_CALL http_glIsEnabled(GLenum cap) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsEnabled(cap); return ret; @@ -1956,7 +1971,7 @@ static GLboolean REGAL_CALL http_glIsList(GLuint list) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsList(list); return ret; @@ -1972,7 +1987,7 @@ static void REGAL_CALL http_glLightModelf(GLenum pname, GLfloat param) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glLightModelf(pname, param); } @@ -1987,7 +2002,7 @@ static void REGAL_CALL http_glLightModelfv(GLenum pname, const GLfloat *params) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glLightModelfv(pname, params); } @@ -2002,7 +2017,7 @@ static void REGAL_CALL http_glLightModeli(GLenum pname, GLint param) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glLightModeli(pname, param); } @@ -2017,7 +2032,7 @@ static void REGAL_CALL http_glLightModeliv(GLenum pname, const GLint *params) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glLightModeliv(pname, params); } @@ -2032,7 +2047,7 @@ static void REGAL_CALL http_glLightf(GLenum light, GLenum pname, GLfloat param) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glLightf(light, pname, param); } @@ -2047,7 +2062,7 @@ static void REGAL_CALL http_glLightfv(GLenum light, GLenum pname, const GLfloat } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glLightfv(light, pname, params); } @@ -2062,7 +2077,7 @@ static void REGAL_CALL http_glLighti(GLenum light, GLenum pname, GLint param) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glLighti(light, pname, param); } @@ -2077,7 +2092,7 @@ static void REGAL_CALL http_glLightiv(GLenum light, GLenum pname, const GLint *p } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glLightiv(light, pname, params); } @@ -2092,7 +2107,7 @@ static void REGAL_CALL http_glLineStipple(GLint factor, GLushort pattern) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glLineStipple(factor, pattern); } @@ -2107,7 +2122,7 @@ static void REGAL_CALL http_glLineWidth(GLfloat width) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glLineWidth(width); } @@ -2122,7 +2137,7 @@ static void REGAL_CALL http_glListBase(GLuint base) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glListBase(base); } @@ -2137,7 +2152,7 @@ static void REGAL_CALL http_glLoadIdentity(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glLoadIdentity(); } @@ -2152,7 +2167,7 @@ static void REGAL_CALL http_glLoadMatrixd(const GLdouble *m) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glLoadMatrixd(m); } @@ -2167,7 +2182,7 @@ static void REGAL_CALL http_glLoadMatrixf(const GLfloat *m) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glLoadMatrixf(m); } @@ -2182,7 +2197,7 @@ static void REGAL_CALL http_glLoadName(GLuint name) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glLoadName(name); } @@ -2197,7 +2212,7 @@ static void REGAL_CALL http_glLogicOp(GLenum opcode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glLogicOp(opcode); } @@ -2212,7 +2227,7 @@ static void REGAL_CALL http_glMap1d(GLenum target, GLdouble u1, GLdouble u2, GLi } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMap1d(target, u1, u2, stride, order, points); } @@ -2227,7 +2242,7 @@ static void REGAL_CALL http_glMap1f(GLenum target, GLfloat u1, GLfloat u2, GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMap1f(target, u1, u2, stride, order, points); } @@ -2242,7 +2257,7 @@ static void REGAL_CALL http_glMap2d(GLenum target, GLdouble u1, GLdouble u2, GLi } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMap2d(target, u1, u2, ustride, uorder, v1, v2, vstride, vorder, points); } @@ -2257,7 +2272,7 @@ static void REGAL_CALL http_glMap2f(GLenum target, GLfloat u1, GLfloat u2, GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMap2f(target, u1, u2, ustride, uorder, v1, v2, vstride, vorder, points); } @@ -2272,7 +2287,7 @@ static void REGAL_CALL http_glMapGrid1d(GLint un, GLdouble u1, GLdouble u2) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMapGrid1d(un, u1, u2); } @@ -2287,7 +2302,7 @@ static void REGAL_CALL http_glMapGrid1f(GLint un, GLfloat u1, GLfloat u2) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMapGrid1f(un, u1, u2); } @@ -2302,7 +2317,7 @@ static void REGAL_CALL http_glMapGrid2d(GLint un, GLdouble u1, GLdouble u2, GLin } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMapGrid2d(un, u1, u2, vn, v1, v2); } @@ -2317,7 +2332,7 @@ static void REGAL_CALL http_glMapGrid2f(GLint un, GLfloat u1, GLfloat u2, GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMapGrid2f(un, u1, u2, vn, v1, v2); } @@ -2332,7 +2347,7 @@ static void REGAL_CALL http_glMaterialf(GLenum face, GLenum pname, GLfloat param } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMaterialf(face, pname, param); } @@ -2347,7 +2362,7 @@ static void REGAL_CALL http_glMaterialfv(GLenum face, GLenum pname, const GLfloa } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMaterialfv(face, pname, params); } @@ -2362,7 +2377,7 @@ static void REGAL_CALL http_glMateriali(GLenum face, GLenum pname, GLint param) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMateriali(face, pname, param); } @@ -2377,7 +2392,7 @@ static void REGAL_CALL http_glMaterialiv(GLenum face, GLenum pname, const GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMaterialiv(face, pname, params); } @@ -2392,7 +2407,7 @@ static void REGAL_CALL http_glMatrixMode(GLenum mode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMatrixMode(mode); } @@ -2407,7 +2422,7 @@ static void REGAL_CALL http_glMultMatrixd(const GLdouble *m) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultMatrixd(m); } @@ -2422,7 +2437,7 @@ static void REGAL_CALL http_glMultMatrixf(const GLfloat *m) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultMatrixf(m); } @@ -2437,7 +2452,7 @@ static void REGAL_CALL http_glNewList(GLuint list, GLenum mode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNewList(list, mode); } @@ -2452,7 +2467,7 @@ static void REGAL_CALL http_glNormal3b(GLbyte nx, GLbyte ny, GLbyte nz) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNormal3b(nx, ny, nz); } @@ -2467,7 +2482,7 @@ static void REGAL_CALL http_glNormal3bv(const GLbyte *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNormal3bv(v); } @@ -2482,7 +2497,7 @@ static void REGAL_CALL http_glNormal3d(GLdouble nx, GLdouble ny, GLdouble nz) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNormal3d(nx, ny, nz); } @@ -2497,7 +2512,7 @@ static void REGAL_CALL http_glNormal3dv(const GLdouble *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNormal3dv(v); } @@ -2512,7 +2527,7 @@ static void REGAL_CALL http_glNormal3f(GLfloat nx, GLfloat ny, GLfloat nz) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNormal3f(nx, ny, nz); } @@ -2527,7 +2542,7 @@ static void REGAL_CALL http_glNormal3fv(const GLfloat *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNormal3fv(v); } @@ -2542,7 +2557,7 @@ static void REGAL_CALL http_glNormal3i(GLint nx, GLint ny, GLint nz) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNormal3i(nx, ny, nz); } @@ -2557,7 +2572,7 @@ static void REGAL_CALL http_glNormal3iv(const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNormal3iv(v); } @@ -2572,7 +2587,7 @@ static void REGAL_CALL http_glNormal3s(GLshort nx, GLshort ny, GLshort nz) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNormal3s(nx, ny, nz); } @@ -2587,7 +2602,7 @@ static void REGAL_CALL http_glNormal3sv(const GLshort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNormal3sv(v); } @@ -2602,7 +2617,7 @@ static void REGAL_CALL http_glOrtho(GLdouble left, GLdouble right, GLdouble bott } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glOrtho(left, right, bottom, top, zNear, zFar); } @@ -2617,7 +2632,7 @@ static void REGAL_CALL http_glPassThrough(GLfloat token) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPassThrough(token); } @@ -2632,7 +2647,7 @@ static void REGAL_CALL http_glPixelMapfv(GLenum map, GLsizei mapsize, const GLfl } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPixelMapfv(map, mapsize, values); } @@ -2647,7 +2662,7 @@ static void REGAL_CALL http_glPixelMapuiv(GLenum map, GLsizei mapsize, const GLu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPixelMapuiv(map, mapsize, values); } @@ -2662,7 +2677,7 @@ static void REGAL_CALL http_glPixelMapusv(GLenum map, GLsizei mapsize, const GLu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPixelMapusv(map, mapsize, values); } @@ -2677,7 +2692,7 @@ static void REGAL_CALL http_glPixelStoref(GLenum pname, GLfloat param) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPixelStoref(pname, param); } @@ -2692,7 +2707,7 @@ static void REGAL_CALL http_glPixelStorei(GLenum pname, GLint param) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPixelStorei(pname, param); } @@ -2707,7 +2722,7 @@ static void REGAL_CALL http_glPixelTransferf(GLenum pname, GLfloat param) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPixelTransferf(pname, param); } @@ -2722,7 +2737,7 @@ static void REGAL_CALL http_glPixelTransferi(GLenum pname, GLint param) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPixelTransferi(pname, param); } @@ -2737,7 +2752,7 @@ static void REGAL_CALL http_glPixelZoom(GLfloat xfactor, GLfloat yfactor) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPixelZoom(xfactor, yfactor); } @@ -2752,7 +2767,7 @@ static void REGAL_CALL http_glPointSize(GLfloat size) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPointSize(size); } @@ -2767,7 +2782,7 @@ static void REGAL_CALL http_glPolygonMode(GLenum face, GLenum mode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPolygonMode(face, mode); } @@ -2782,7 +2797,7 @@ static void REGAL_CALL http_glPolygonStipple(const GLubyte *mask) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPolygonStipple(mask); } @@ -2797,7 +2812,7 @@ static void REGAL_CALL http_glPopAttrib(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPopAttrib(); } @@ -2812,7 +2827,7 @@ static void REGAL_CALL http_glPopMatrix(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPopMatrix(); } @@ -2827,7 +2842,7 @@ static void REGAL_CALL http_glPopName(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPopName(); } @@ -2842,7 +2857,7 @@ static void REGAL_CALL http_glPushAttrib(GLbitfield mask) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPushAttrib(mask); } @@ -2857,7 +2872,7 @@ static void REGAL_CALL http_glPushMatrix(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPushMatrix(); } @@ -2872,7 +2887,7 @@ static void REGAL_CALL http_glPushName(GLuint name) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPushName(name); } @@ -2887,7 +2902,7 @@ static void REGAL_CALL http_glRasterPos2d(GLdouble x, GLdouble y) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRasterPos2d(x, y); } @@ -2902,7 +2917,7 @@ static void REGAL_CALL http_glRasterPos2dv(const GLdouble *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRasterPos2dv(v); } @@ -2917,7 +2932,7 @@ static void REGAL_CALL http_glRasterPos2f(GLfloat x, GLfloat y) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRasterPos2f(x, y); } @@ -2932,7 +2947,7 @@ static void REGAL_CALL http_glRasterPos2fv(const GLfloat *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRasterPos2fv(v); } @@ -2947,7 +2962,7 @@ static void REGAL_CALL http_glRasterPos2i(GLint x, GLint y) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRasterPos2i(x, y); } @@ -2962,7 +2977,7 @@ static void REGAL_CALL http_glRasterPos2iv(const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRasterPos2iv(v); } @@ -2977,7 +2992,7 @@ static void REGAL_CALL http_glRasterPos2s(GLshort x, GLshort y) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRasterPos2s(x, y); } @@ -2992,7 +3007,7 @@ static void REGAL_CALL http_glRasterPos2sv(const GLshort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRasterPos2sv(v); } @@ -3007,7 +3022,7 @@ static void REGAL_CALL http_glRasterPos3d(GLdouble x, GLdouble y, GLdouble z) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRasterPos3d(x, y, z); } @@ -3022,7 +3037,7 @@ static void REGAL_CALL http_glRasterPos3dv(const GLdouble *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRasterPos3dv(v); } @@ -3037,7 +3052,7 @@ static void REGAL_CALL http_glRasterPos3f(GLfloat x, GLfloat y, GLfloat z) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRasterPos3f(x, y, z); } @@ -3052,7 +3067,7 @@ static void REGAL_CALL http_glRasterPos3fv(const GLfloat *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRasterPos3fv(v); } @@ -3067,7 +3082,7 @@ static void REGAL_CALL http_glRasterPos3i(GLint x, GLint y, GLint z) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRasterPos3i(x, y, z); } @@ -3082,7 +3097,7 @@ static void REGAL_CALL http_glRasterPos3iv(const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRasterPos3iv(v); } @@ -3097,7 +3112,7 @@ static void REGAL_CALL http_glRasterPos3s(GLshort x, GLshort y, GLshort z) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRasterPos3s(x, y, z); } @@ -3112,7 +3127,7 @@ static void REGAL_CALL http_glRasterPos3sv(const GLshort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRasterPos3sv(v); } @@ -3127,7 +3142,7 @@ static void REGAL_CALL http_glRasterPos4d(GLdouble x, GLdouble y, GLdouble z, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRasterPos4d(x, y, z, w); } @@ -3142,7 +3157,7 @@ static void REGAL_CALL http_glRasterPos4dv(const GLdouble *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRasterPos4dv(v); } @@ -3157,7 +3172,7 @@ static void REGAL_CALL http_glRasterPos4f(GLfloat x, GLfloat y, GLfloat z, GLflo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRasterPos4f(x, y, z, w); } @@ -3172,7 +3187,7 @@ static void REGAL_CALL http_glRasterPos4fv(const GLfloat *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRasterPos4fv(v); } @@ -3187,7 +3202,7 @@ static void REGAL_CALL http_glRasterPos4i(GLint x, GLint y, GLint z, GLint w) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRasterPos4i(x, y, z, w); } @@ -3202,7 +3217,7 @@ static void REGAL_CALL http_glRasterPos4iv(const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRasterPos4iv(v); } @@ -3217,7 +3232,7 @@ static void REGAL_CALL http_glRasterPos4s(GLshort x, GLshort y, GLshort z, GLsho } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRasterPos4s(x, y, z, w); } @@ -3232,7 +3247,7 @@ static void REGAL_CALL http_glRasterPos4sv(const GLshort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRasterPos4sv(v); } @@ -3247,7 +3262,7 @@ static void REGAL_CALL http_glReadBuffer(GLenum mode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glReadBuffer(mode); } @@ -3262,7 +3277,7 @@ static void REGAL_CALL http_glReadPixels(GLint x, GLint y, GLsizei width, GLsize } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glReadPixels(x, y, width, height, format, type, pixels); } @@ -3277,7 +3292,7 @@ static void REGAL_CALL http_glRectd(GLdouble x1, GLdouble y1, GLdouble x2, GLdou } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRectd(x1, y1, x2, y2); } @@ -3292,7 +3307,7 @@ static void REGAL_CALL http_glRectdv(const GLdouble *v1, const GLdouble *v2) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRectdv(v1, v2); } @@ -3307,7 +3322,7 @@ static void REGAL_CALL http_glRectf(GLfloat x1, GLfloat y1, GLfloat x2, GLfloat } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRectf(x1, y1, x2, y2); } @@ -3322,7 +3337,7 @@ static void REGAL_CALL http_glRectfv(const GLfloat *v1, const GLfloat *v2) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRectfv(v1, v2); } @@ -3337,7 +3352,7 @@ static void REGAL_CALL http_glRecti(GLint x1, GLint y1, GLint x2, GLint y2) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRecti(x1, y1, x2, y2); } @@ -3352,7 +3367,7 @@ static void REGAL_CALL http_glRectiv(const GLint *v1, const GLint *v2) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRectiv(v1, v2); } @@ -3367,7 +3382,7 @@ static void REGAL_CALL http_glRects(GLshort x1, GLshort y1, GLshort x2, GLshort } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRects(x1, y1, x2, y2); } @@ -3382,7 +3397,7 @@ static void REGAL_CALL http_glRectsv(const GLshort *v1, const GLshort *v2) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRectsv(v1, v2); } @@ -3398,7 +3413,7 @@ static GLint REGAL_CALL http_glRenderMode(GLenum mode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glRenderMode(mode); return ret; @@ -3414,7 +3429,7 @@ static void REGAL_CALL http_glRotated(GLdouble angle, GLdouble x, GLdouble y, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRotated(angle, x, y, z); } @@ -3429,7 +3444,7 @@ static void REGAL_CALL http_glRotatef(GLfloat angle, GLfloat x, GLfloat y, GLflo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRotatef(angle, x, y, z); } @@ -3444,7 +3459,7 @@ static void REGAL_CALL http_glScaled(GLdouble x, GLdouble y, GLdouble z) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glScaled(x, y, z); } @@ -3459,7 +3474,7 @@ static void REGAL_CALL http_glScalef(GLfloat x, GLfloat y, GLfloat z) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glScalef(x, y, z); } @@ -3474,7 +3489,7 @@ static void REGAL_CALL http_glScissor(GLint x, GLint y, GLsizei width, GLsizei h } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glScissor(x, y, width, height); } @@ -3489,7 +3504,7 @@ static void REGAL_CALL http_glSelectBuffer(GLsizei size, GLuint *buffer) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSelectBuffer(size, buffer); } @@ -3504,7 +3519,7 @@ static void REGAL_CALL http_glShadeModel(GLenum mode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glShadeModel(mode); } @@ -3519,7 +3534,7 @@ static void REGAL_CALL http_glStencilFunc(GLenum func, GLint ref, GLuint mask) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glStencilFunc(func, ref, mask); } @@ -3534,7 +3549,7 @@ static void REGAL_CALL http_glStencilMask(GLuint mask) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glStencilMask(mask); } @@ -3549,7 +3564,7 @@ static void REGAL_CALL http_glStencilOp(GLenum fail, GLenum zfail, GLenum zpass) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glStencilOp(fail, zfail, zpass); } @@ -3564,7 +3579,7 @@ static void REGAL_CALL http_glTexCoord1d(GLdouble s) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord1d(s); } @@ -3579,7 +3594,7 @@ static void REGAL_CALL http_glTexCoord1dv(const GLdouble *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord1dv(v); } @@ -3594,7 +3609,7 @@ static void REGAL_CALL http_glTexCoord1f(GLfloat s) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord1f(s); } @@ -3609,7 +3624,7 @@ static void REGAL_CALL http_glTexCoord1fv(const GLfloat *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord1fv(v); } @@ -3624,7 +3639,7 @@ static void REGAL_CALL http_glTexCoord1i(GLint s) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord1i(s); } @@ -3639,7 +3654,7 @@ static void REGAL_CALL http_glTexCoord1iv(const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord1iv(v); } @@ -3654,7 +3669,7 @@ static void REGAL_CALL http_glTexCoord1s(GLshort s) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord1s(s); } @@ -3669,7 +3684,7 @@ static void REGAL_CALL http_glTexCoord1sv(const GLshort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord1sv(v); } @@ -3684,7 +3699,7 @@ static void REGAL_CALL http_glTexCoord2d(GLdouble s, GLdouble t) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord2d(s, t); } @@ -3699,7 +3714,7 @@ static void REGAL_CALL http_glTexCoord2dv(const GLdouble *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord2dv(v); } @@ -3714,7 +3729,7 @@ static void REGAL_CALL http_glTexCoord2f(GLfloat s, GLfloat t) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord2f(s, t); } @@ -3729,7 +3744,7 @@ static void REGAL_CALL http_glTexCoord2fv(const GLfloat *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord2fv(v); } @@ -3744,7 +3759,7 @@ static void REGAL_CALL http_glTexCoord2i(GLint s, GLint t) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord2i(s, t); } @@ -3759,7 +3774,7 @@ static void REGAL_CALL http_glTexCoord2iv(const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord2iv(v); } @@ -3774,7 +3789,7 @@ static void REGAL_CALL http_glTexCoord2s(GLshort s, GLshort t) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord2s(s, t); } @@ -3789,7 +3804,7 @@ static void REGAL_CALL http_glTexCoord2sv(const GLshort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord2sv(v); } @@ -3804,7 +3819,7 @@ static void REGAL_CALL http_glTexCoord3d(GLdouble s, GLdouble t, GLdouble r) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord3d(s, t, r); } @@ -3819,7 +3834,7 @@ static void REGAL_CALL http_glTexCoord3dv(const GLdouble *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord3dv(v); } @@ -3834,7 +3849,7 @@ static void REGAL_CALL http_glTexCoord3f(GLfloat s, GLfloat t, GLfloat r) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord3f(s, t, r); } @@ -3849,7 +3864,7 @@ static void REGAL_CALL http_glTexCoord3fv(const GLfloat *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord3fv(v); } @@ -3864,7 +3879,7 @@ static void REGAL_CALL http_glTexCoord3i(GLint s, GLint t, GLint r) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord3i(s, t, r); } @@ -3879,7 +3894,7 @@ static void REGAL_CALL http_glTexCoord3iv(const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord3iv(v); } @@ -3894,7 +3909,7 @@ static void REGAL_CALL http_glTexCoord3s(GLshort s, GLshort t, GLshort r) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord3s(s, t, r); } @@ -3909,7 +3924,7 @@ static void REGAL_CALL http_glTexCoord3sv(const GLshort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord3sv(v); } @@ -3924,7 +3939,7 @@ static void REGAL_CALL http_glTexCoord4d(GLdouble s, GLdouble t, GLdouble r, GLd } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord4d(s, t, r, q); } @@ -3939,7 +3954,7 @@ static void REGAL_CALL http_glTexCoord4dv(const GLdouble *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord4dv(v); } @@ -3954,7 +3969,7 @@ static void REGAL_CALL http_glTexCoord4f(GLfloat s, GLfloat t, GLfloat r, GLfloa } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord4f(s, t, r, q); } @@ -3969,7 +3984,7 @@ static void REGAL_CALL http_glTexCoord4fv(const GLfloat *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord4fv(v); } @@ -3984,7 +3999,7 @@ static void REGAL_CALL http_glTexCoord4i(GLint s, GLint t, GLint r, GLint q) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord4i(s, t, r, q); } @@ -3999,7 +4014,7 @@ static void REGAL_CALL http_glTexCoord4iv(const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord4iv(v); } @@ -4014,7 +4029,7 @@ static void REGAL_CALL http_glTexCoord4s(GLshort s, GLshort t, GLshort r, GLshor } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord4s(s, t, r, q); } @@ -4029,7 +4044,7 @@ static void REGAL_CALL http_glTexCoord4sv(const GLshort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord4sv(v); } @@ -4044,7 +4059,7 @@ static void REGAL_CALL http_glTexEnvf(GLenum target, GLenum pname, GLfloat param } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexEnvf(target, pname, param); } @@ -4059,7 +4074,7 @@ static void REGAL_CALL http_glTexEnvfv(GLenum target, GLenum pname, const GLfloa } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexEnvfv(target, pname, params); } @@ -4074,7 +4089,7 @@ static void REGAL_CALL http_glTexEnvi(GLenum target, GLenum pname, GLint param) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexEnvi(target, pname, param); } @@ -4089,7 +4104,7 @@ static void REGAL_CALL http_glTexEnviv(GLenum target, GLenum pname, const GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexEnviv(target, pname, params); } @@ -4104,7 +4119,7 @@ static void REGAL_CALL http_glTexGend(GLenum coord, GLenum pname, GLdouble param } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexGend(coord, pname, param); } @@ -4119,7 +4134,7 @@ static void REGAL_CALL http_glTexGendv(GLenum coord, GLenum pname, const GLdoubl } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexGendv(coord, pname, params); } @@ -4134,7 +4149,7 @@ static void REGAL_CALL http_glTexGenf(GLenum coord, GLenum pname, GLfloat param) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexGenf(coord, pname, param); } @@ -4149,7 +4164,7 @@ static void REGAL_CALL http_glTexGenfv(GLenum coord, GLenum pname, const GLfloat } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexGenfv(coord, pname, params); } @@ -4164,7 +4179,7 @@ static void REGAL_CALL http_glTexGeni(GLenum coord, GLenum pname, GLint param) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexGeni(coord, pname, param); } @@ -4179,7 +4194,7 @@ static void REGAL_CALL http_glTexGeniv(GLenum coord, GLenum pname, const GLint * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexGeniv(coord, pname, params); } @@ -4194,7 +4209,7 @@ static void REGAL_CALL http_glTexImage1D(GLenum target, GLint level, GLint inter } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexImage1D(target, level, internalformat, width, border, format, type, pixels); } @@ -4209,7 +4224,7 @@ static void REGAL_CALL http_glTexImage2D(GLenum target, GLint level, GLint inter } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexImage2D(target, level, internalformat, width, height, border, format, type, pixels); } @@ -4224,7 +4239,7 @@ static void REGAL_CALL http_glTexParameterf(GLenum target, GLenum pname, GLfloat } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexParameterf(target, pname, param); } @@ -4239,7 +4254,7 @@ static void REGAL_CALL http_glTexParameterfv(GLenum target, GLenum pname, const } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexParameterfv(target, pname, params); } @@ -4254,7 +4269,7 @@ static void REGAL_CALL http_glTexParameteri(GLenum target, GLenum pname, GLint p } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexParameteri(target, pname, param); } @@ -4269,7 +4284,7 @@ static void REGAL_CALL http_glTexParameteriv(GLenum target, GLenum pname, const } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexParameteriv(target, pname, params); } @@ -4284,7 +4299,7 @@ static void REGAL_CALL http_glTranslated(GLdouble x, GLdouble y, GLdouble z) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTranslated(x, y, z); } @@ -4299,7 +4314,7 @@ static void REGAL_CALL http_glTranslatef(GLfloat x, GLfloat y, GLfloat z) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTranslatef(x, y, z); } @@ -4314,7 +4329,7 @@ static void REGAL_CALL http_glVertex2d(GLdouble x, GLdouble y) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertex2d(x, y); } @@ -4329,7 +4344,7 @@ static void REGAL_CALL http_glVertex2dv(const GLdouble *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertex2dv(v); } @@ -4344,7 +4359,7 @@ static void REGAL_CALL http_glVertex2f(GLfloat x, GLfloat y) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertex2f(x, y); } @@ -4359,7 +4374,7 @@ static void REGAL_CALL http_glVertex2fv(const GLfloat *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertex2fv(v); } @@ -4374,7 +4389,7 @@ static void REGAL_CALL http_glVertex2i(GLint x, GLint y) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertex2i(x, y); } @@ -4389,7 +4404,7 @@ static void REGAL_CALL http_glVertex2iv(const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertex2iv(v); } @@ -4404,7 +4419,7 @@ static void REGAL_CALL http_glVertex2s(GLshort x, GLshort y) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertex2s(x, y); } @@ -4419,7 +4434,7 @@ static void REGAL_CALL http_glVertex2sv(const GLshort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertex2sv(v); } @@ -4434,7 +4449,7 @@ static void REGAL_CALL http_glVertex3d(GLdouble x, GLdouble y, GLdouble z) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertex3d(x, y, z); } @@ -4449,7 +4464,7 @@ static void REGAL_CALL http_glVertex3dv(const GLdouble *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertex3dv(v); } @@ -4464,7 +4479,7 @@ static void REGAL_CALL http_glVertex3f(GLfloat x, GLfloat y, GLfloat z) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertex3f(x, y, z); } @@ -4479,7 +4494,7 @@ static void REGAL_CALL http_glVertex3fv(const GLfloat *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertex3fv(v); } @@ -4494,7 +4509,7 @@ static void REGAL_CALL http_glVertex3i(GLint x, GLint y, GLint z) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertex3i(x, y, z); } @@ -4509,7 +4524,7 @@ static void REGAL_CALL http_glVertex3iv(const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertex3iv(v); } @@ -4524,7 +4539,7 @@ static void REGAL_CALL http_glVertex3s(GLshort x, GLshort y, GLshort z) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertex3s(x, y, z); } @@ -4539,7 +4554,7 @@ static void REGAL_CALL http_glVertex3sv(const GLshort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertex3sv(v); } @@ -4554,7 +4569,7 @@ static void REGAL_CALL http_glVertex4d(GLdouble x, GLdouble y, GLdouble z, GLdou } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertex4d(x, y, z, w); } @@ -4569,7 +4584,7 @@ static void REGAL_CALL http_glVertex4dv(const GLdouble *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertex4dv(v); } @@ -4584,7 +4599,7 @@ static void REGAL_CALL http_glVertex4f(GLfloat x, GLfloat y, GLfloat z, GLfloat } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertex4f(x, y, z, w); } @@ -4599,7 +4614,7 @@ static void REGAL_CALL http_glVertex4fv(const GLfloat *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertex4fv(v); } @@ -4614,7 +4629,7 @@ static void REGAL_CALL http_glVertex4i(GLint x, GLint y, GLint z, GLint w) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertex4i(x, y, z, w); } @@ -4629,7 +4644,7 @@ static void REGAL_CALL http_glVertex4iv(const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertex4iv(v); } @@ -4644,7 +4659,7 @@ static void REGAL_CALL http_glVertex4s(GLshort x, GLshort y, GLshort z, GLshort } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertex4s(x, y, z, w); } @@ -4659,7 +4674,7 @@ static void REGAL_CALL http_glVertex4sv(const GLshort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertex4sv(v); } @@ -4674,7 +4689,7 @@ static void REGAL_CALL http_glViewport(GLint x, GLint y, GLsizei width, GLsizei } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glViewport(x, y, width, height); } @@ -4692,7 +4707,7 @@ static GLboolean REGAL_CALL http_glAreTexturesResident(GLsizei n, const GLuint * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glAreTexturesResident(n, textures, residences); return ret; @@ -4708,7 +4723,7 @@ static void REGAL_CALL http_glArrayElement(GLint index) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glArrayElement(index); } @@ -4731,7 +4746,7 @@ static void REGAL_CALL http_glBindTexture(GLenum target, GLuint texture) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindTexture(target, texture); } @@ -4746,7 +4761,7 @@ static void REGAL_CALL http_glColorPointer(GLint size, GLenum type, GLsizei stri } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColorPointer(size, type, stride, pointer); } @@ -4761,7 +4776,7 @@ static void REGAL_CALL http_glCopyTexImage1D(GLenum target, GLint level, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCopyTexImage1D(target, level, internalformat, x, y, width, border); } @@ -4776,7 +4791,7 @@ static void REGAL_CALL http_glCopyTexImage2D(GLenum target, GLint level, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCopyTexImage2D(target, level, internalformat, x, y, width, height, border); } @@ -4791,7 +4806,7 @@ static void REGAL_CALL http_glCopyTexSubImage1D(GLenum target, GLint level, GLin } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCopyTexSubImage1D(target, level, xoffset, x, y, width); } @@ -4806,7 +4821,7 @@ static void REGAL_CALL http_glCopyTexSubImage2D(GLenum target, GLint level, GLin } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCopyTexSubImage2D(target, level, xoffset, yoffset, x, y, width, height); } @@ -4824,7 +4839,7 @@ static void REGAL_CALL http_glDeleteTextures(GLsizei n, const GLuint *textures) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeleteTextures(n, textures); } @@ -4839,7 +4854,7 @@ static void REGAL_CALL http_glDisableClientState(GLenum cap) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDisableClientState(cap); } @@ -4858,7 +4873,7 @@ static void REGAL_CALL http_glDrawArrays(GLenum mode, GLint first, GLsizei count } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawArrays(mode, first, count); if( _context ) { @@ -4880,7 +4895,7 @@ static void REGAL_CALL http_glDrawElements(GLenum mode, GLsizei count, GLenum ty } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawElements(mode, count, type, indices); if( _context ) { @@ -4898,7 +4913,7 @@ static void REGAL_CALL http_glEdgeFlagPointer(GLsizei stride, const GLvoid *poin } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEdgeFlagPointer(stride, pointer); } @@ -4913,7 +4928,7 @@ static void REGAL_CALL http_glEnableClientState(GLenum cap) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEnableClientState(cap); } @@ -4928,7 +4943,7 @@ static void REGAL_CALL http_glGenTextures(GLsizei n, GLuint *textures) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGenTextures(n, textures); } @@ -4943,7 +4958,7 @@ static void REGAL_CALL http_glGetPointerv(GLenum pname, GLvoid **params) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetPointerv(pname, params); } @@ -4958,7 +4973,7 @@ static void REGAL_CALL http_glIndexPointer(GLenum type, GLsizei stride, const GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glIndexPointer(type, stride, pointer); } @@ -4973,7 +4988,7 @@ static void REGAL_CALL http_glIndexub(GLubyte c) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glIndexub(c); } @@ -4988,7 +5003,7 @@ static void REGAL_CALL http_glIndexubv(const GLubyte *c) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glIndexubv(c); } @@ -5003,7 +5018,7 @@ static void REGAL_CALL http_glInterleavedArrays(GLenum format, GLsizei stride, c } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glInterleavedArrays(format, stride, pointer); } @@ -5019,7 +5034,7 @@ static GLboolean REGAL_CALL http_glIsTexture(GLuint texture) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsTexture(texture); return ret; @@ -5035,7 +5050,7 @@ static void REGAL_CALL http_glNormalPointer(GLenum type, GLsizei stride, const G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNormalPointer(type, stride, pointer); } @@ -5050,7 +5065,7 @@ static void REGAL_CALL http_glPolygonOffset(GLfloat factor, GLfloat units) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPolygonOffset(factor, units); } @@ -5065,7 +5080,7 @@ static void REGAL_CALL http_glPopClientAttrib(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPopClientAttrib(); } @@ -5080,7 +5095,7 @@ static void REGAL_CALL http_glPrioritizeTextures(GLsizei n, const GLuint *textur } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPrioritizeTextures(n, textures, priorities); } @@ -5095,7 +5110,7 @@ static void REGAL_CALL http_glPushClientAttrib(GLbitfield mask) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPushClientAttrib(mask); } @@ -5110,7 +5125,7 @@ static void REGAL_CALL http_glTexCoordPointer(GLint size, GLenum type, GLsizei s } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoordPointer(size, type, stride, pointer); } @@ -5125,7 +5140,7 @@ static void REGAL_CALL http_glTexSubImage1D(GLenum target, GLint level, GLint xo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexSubImage1D(target, level, xoffset, width, format, type, pixels); } @@ -5140,7 +5155,7 @@ static void REGAL_CALL http_glTexSubImage2D(GLenum target, GLint level, GLint xo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexSubImage2D(target, level, xoffset, yoffset, width, height, format, type, pixels); } @@ -5155,7 +5170,7 @@ static void REGAL_CALL http_glVertexPointer(GLint size, GLenum type, GLsizei str } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexPointer(size, type, stride, pointer); } @@ -5172,7 +5187,7 @@ static void REGAL_CALL http_glBlendColor(GLclampf red, GLclampf green, GLclampf } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBlendColor(red, green, blue, alpha); } @@ -5187,7 +5202,7 @@ static void REGAL_CALL http_glBlendEquation(GLenum mode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBlendEquation(mode); } @@ -5202,7 +5217,7 @@ static void REGAL_CALL http_glCopyTexSubImage3D(GLenum target, GLint level, GLin } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCopyTexSubImage3D(target, level, xoffset, yoffset, zoffset, x, y, width, height); } @@ -5217,7 +5232,7 @@ static void REGAL_CALL http_glDrawRangeElements(GLenum mode, GLuint start, GLuin } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawRangeElements(mode, start, end, count, type, indices); } @@ -5232,7 +5247,7 @@ static void REGAL_CALL http_glTexImage3D(GLenum target, GLint level, GLint inter } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexImage3D(target, level, internalformat, width, height, depth, border, format, type, pixels); } @@ -5247,7 +5262,7 @@ static void REGAL_CALL http_glTexSubImage3D(GLenum target, GLint level, GLint xo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexSubImage3D(target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, pixels); } @@ -5264,7 +5279,7 @@ static void REGAL_CALL http_glActiveTexture(GLenum texture) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glActiveTexture(texture); } @@ -5279,7 +5294,7 @@ static void REGAL_CALL http_glClientActiveTexture(GLenum texture) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glClientActiveTexture(texture); } @@ -5294,7 +5309,7 @@ static void REGAL_CALL http_glCompressedTexImage1D(GLenum target, GLint level, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCompressedTexImage1D(target, level, internalformat, width, border, imageSize, data); } @@ -5309,7 +5324,7 @@ static void REGAL_CALL http_glCompressedTexImage2D(GLenum target, GLint level, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCompressedTexImage2D(target, level, internalformat, width, height, border, imageSize, data); } @@ -5324,7 +5339,7 @@ static void REGAL_CALL http_glCompressedTexImage3D(GLenum target, GLint level, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCompressedTexImage3D(target, level, internalformat, width, height, depth, border, imageSize, data); } @@ -5339,7 +5354,7 @@ static void REGAL_CALL http_glCompressedTexSubImage1D(GLenum target, GLint level } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCompressedTexSubImage1D(target, level, xoffset, width, format, imageSize, data); } @@ -5354,7 +5369,7 @@ static void REGAL_CALL http_glCompressedTexSubImage2D(GLenum target, GLint level } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCompressedTexSubImage2D(target, level, xoffset, yoffset, width, height, format, imageSize, data); } @@ -5369,7 +5384,7 @@ static void REGAL_CALL http_glCompressedTexSubImage3D(GLenum target, GLint level } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCompressedTexSubImage3D(target, level, xoffset, yoffset, zoffset, width, height, depth, format, imageSize, data); } @@ -5384,7 +5399,7 @@ static void REGAL_CALL http_glGetCompressedTexImage(GLenum target, GLint lod, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetCompressedTexImage(target, lod, img); } @@ -5399,7 +5414,7 @@ static void REGAL_CALL http_glLoadTransposeMatrixd(const GLdouble *m) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glLoadTransposeMatrixd(m); } @@ -5414,7 +5429,7 @@ static void REGAL_CALL http_glLoadTransposeMatrixf(const GLfloat *m) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glLoadTransposeMatrixf(m); } @@ -5429,7 +5444,7 @@ static void REGAL_CALL http_glMultTransposeMatrixd(const GLdouble *m) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultTransposeMatrixd(m); } @@ -5444,7 +5459,7 @@ static void REGAL_CALL http_glMultTransposeMatrixf(const GLfloat *m) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultTransposeMatrixf(m); } @@ -5459,7 +5474,7 @@ static void REGAL_CALL http_glMultiTexCoord1d(GLenum target, GLdouble s) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord1d(target, s); } @@ -5474,7 +5489,7 @@ static void REGAL_CALL http_glMultiTexCoord1dv(GLenum target, const GLdouble *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord1dv(target, v); } @@ -5489,7 +5504,7 @@ static void REGAL_CALL http_glMultiTexCoord1f(GLenum target, GLfloat s) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord1f(target, s); } @@ -5504,7 +5519,7 @@ static void REGAL_CALL http_glMultiTexCoord1fv(GLenum target, const GLfloat *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord1fv(target, v); } @@ -5519,7 +5534,7 @@ static void REGAL_CALL http_glMultiTexCoord1i(GLenum target, GLint s) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord1i(target, s); } @@ -5534,7 +5549,7 @@ static void REGAL_CALL http_glMultiTexCoord1iv(GLenum target, const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord1iv(target, v); } @@ -5549,7 +5564,7 @@ static void REGAL_CALL http_glMultiTexCoord1s(GLenum target, GLshort s) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord1s(target, s); } @@ -5564,7 +5579,7 @@ static void REGAL_CALL http_glMultiTexCoord1sv(GLenum target, const GLshort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord1sv(target, v); } @@ -5579,7 +5594,7 @@ static void REGAL_CALL http_glMultiTexCoord2d(GLenum target, GLdouble s, GLdoubl } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord2d(target, s, t); } @@ -5594,7 +5609,7 @@ static void REGAL_CALL http_glMultiTexCoord2dv(GLenum target, const GLdouble *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord2dv(target, v); } @@ -5609,7 +5624,7 @@ static void REGAL_CALL http_glMultiTexCoord2f(GLenum target, GLfloat s, GLfloat } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord2f(target, s, t); } @@ -5624,7 +5639,7 @@ static void REGAL_CALL http_glMultiTexCoord2fv(GLenum target, const GLfloat *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord2fv(target, v); } @@ -5639,7 +5654,7 @@ static void REGAL_CALL http_glMultiTexCoord2i(GLenum target, GLint s, GLint t) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord2i(target, s, t); } @@ -5654,7 +5669,7 @@ static void REGAL_CALL http_glMultiTexCoord2iv(GLenum target, const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord2iv(target, v); } @@ -5669,7 +5684,7 @@ static void REGAL_CALL http_glMultiTexCoord2s(GLenum target, GLshort s, GLshort } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord2s(target, s, t); } @@ -5684,7 +5699,7 @@ static void REGAL_CALL http_glMultiTexCoord2sv(GLenum target, const GLshort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord2sv(target, v); } @@ -5699,7 +5714,7 @@ static void REGAL_CALL http_glMultiTexCoord3d(GLenum target, GLdouble s, GLdoubl } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord3d(target, s, t, r); } @@ -5714,7 +5729,7 @@ static void REGAL_CALL http_glMultiTexCoord3dv(GLenum target, const GLdouble *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord3dv(target, v); } @@ -5729,7 +5744,7 @@ static void REGAL_CALL http_glMultiTexCoord3f(GLenum target, GLfloat s, GLfloat } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord3f(target, s, t, r); } @@ -5744,7 +5759,7 @@ static void REGAL_CALL http_glMultiTexCoord3fv(GLenum target, const GLfloat *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord3fv(target, v); } @@ -5759,7 +5774,7 @@ static void REGAL_CALL http_glMultiTexCoord3i(GLenum target, GLint s, GLint t, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord3i(target, s, t, r); } @@ -5774,7 +5789,7 @@ static void REGAL_CALL http_glMultiTexCoord3iv(GLenum target, const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord3iv(target, v); } @@ -5789,7 +5804,7 @@ static void REGAL_CALL http_glMultiTexCoord3s(GLenum target, GLshort s, GLshort } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord3s(target, s, t, r); } @@ -5804,7 +5819,7 @@ static void REGAL_CALL http_glMultiTexCoord3sv(GLenum target, const GLshort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord3sv(target, v); } @@ -5819,7 +5834,7 @@ static void REGAL_CALL http_glMultiTexCoord4d(GLenum target, GLdouble s, GLdoubl } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord4d(target, s, t, r, q); } @@ -5834,7 +5849,7 @@ static void REGAL_CALL http_glMultiTexCoord4dv(GLenum target, const GLdouble *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord4dv(target, v); } @@ -5849,7 +5864,7 @@ static void REGAL_CALL http_glMultiTexCoord4f(GLenum target, GLfloat s, GLfloat } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord4f(target, s, t, r, q); } @@ -5864,7 +5879,7 @@ static void REGAL_CALL http_glMultiTexCoord4fv(GLenum target, const GLfloat *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord4fv(target, v); } @@ -5879,7 +5894,7 @@ static void REGAL_CALL http_glMultiTexCoord4i(GLenum target, GLint s, GLint t, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord4i(target, s, t, r, q); } @@ -5894,7 +5909,7 @@ static void REGAL_CALL http_glMultiTexCoord4iv(GLenum target, const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord4iv(target, v); } @@ -5909,7 +5924,7 @@ static void REGAL_CALL http_glMultiTexCoord4s(GLenum target, GLshort s, GLshort } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord4s(target, s, t, r, q); } @@ -5924,7 +5939,7 @@ static void REGAL_CALL http_glMultiTexCoord4sv(GLenum target, const GLshort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord4sv(target, v); } @@ -5939,7 +5954,7 @@ static void REGAL_CALL http_glSampleCoverage(GLclampf value, GLboolean invert) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSampleCoverage(value, invert); } @@ -5956,7 +5971,7 @@ static void REGAL_CALL http_glBlendFuncSeparate(GLenum sfactorRGB, GLenum dfacto } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBlendFuncSeparate(sfactorRGB, dfactorRGB, sfactorAlpha, dfactorAlpha); } @@ -5971,7 +5986,7 @@ static void REGAL_CALL http_glFogCoordPointer(GLenum type, GLsizei stride, const } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFogCoordPointer(type, stride, pointer); } @@ -5986,7 +6001,7 @@ static void REGAL_CALL http_glFogCoordd(GLdouble coord) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFogCoordd(coord); } @@ -6001,7 +6016,7 @@ static void REGAL_CALL http_glFogCoorddv(const GLdouble *coord) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFogCoorddv(coord); } @@ -6016,7 +6031,7 @@ static void REGAL_CALL http_glFogCoordf(GLfloat coord) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFogCoordf(coord); } @@ -6031,7 +6046,7 @@ static void REGAL_CALL http_glFogCoordfv(const GLfloat *coord) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFogCoordfv(coord); } @@ -6050,7 +6065,7 @@ static void REGAL_CALL http_glMultiDrawArrays(GLenum mode, const GLint *first, c } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiDrawArrays(mode, first, count, primcount); if( _context ) { @@ -6072,7 +6087,7 @@ static void REGAL_CALL http_glMultiDrawElements(GLenum mode, const GLsizei *coun } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiDrawElements(mode, count, type, indices, primcount); if( _context ) { @@ -6090,7 +6105,7 @@ static void REGAL_CALL http_glPointParameterf(GLenum pname, GLfloat param) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPointParameterf(pname, param); } @@ -6105,7 +6120,7 @@ static void REGAL_CALL http_glPointParameterfv(GLenum pname, const GLfloat *para } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPointParameterfv(pname, params); } @@ -6120,7 +6135,7 @@ static void REGAL_CALL http_glPointParameteri(GLenum pname, GLint param) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPointParameteri(pname, param); } @@ -6135,7 +6150,7 @@ static void REGAL_CALL http_glPointParameteriv(GLenum pname, const GLint *params } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPointParameteriv(pname, params); } @@ -6150,7 +6165,7 @@ static void REGAL_CALL http_glSecondaryColor3b(GLbyte red, GLbyte green, GLbyte } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColor3b(red, green, blue); } @@ -6165,7 +6180,7 @@ static void REGAL_CALL http_glSecondaryColor3bv(const GLbyte *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColor3bv(v); } @@ -6180,7 +6195,7 @@ static void REGAL_CALL http_glSecondaryColor3d(GLdouble red, GLdouble green, GLd } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColor3d(red, green, blue); } @@ -6195,7 +6210,7 @@ static void REGAL_CALL http_glSecondaryColor3dv(const GLdouble *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColor3dv(v); } @@ -6210,7 +6225,7 @@ static void REGAL_CALL http_glSecondaryColor3f(GLfloat red, GLfloat green, GLflo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColor3f(red, green, blue); } @@ -6225,7 +6240,7 @@ static void REGAL_CALL http_glSecondaryColor3fv(const GLfloat *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColor3fv(v); } @@ -6240,7 +6255,7 @@ static void REGAL_CALL http_glSecondaryColor3i(GLint red, GLint green, GLint blu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColor3i(red, green, blue); } @@ -6255,7 +6270,7 @@ static void REGAL_CALL http_glSecondaryColor3iv(const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColor3iv(v); } @@ -6270,7 +6285,7 @@ static void REGAL_CALL http_glSecondaryColor3s(GLshort red, GLshort green, GLsho } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColor3s(red, green, blue); } @@ -6285,7 +6300,7 @@ static void REGAL_CALL http_glSecondaryColor3sv(const GLshort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColor3sv(v); } @@ -6300,7 +6315,7 @@ static void REGAL_CALL http_glSecondaryColor3ub(GLubyte red, GLubyte green, GLub } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColor3ub(red, green, blue); } @@ -6315,7 +6330,7 @@ static void REGAL_CALL http_glSecondaryColor3ubv(const GLubyte *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColor3ubv(v); } @@ -6330,7 +6345,7 @@ static void REGAL_CALL http_glSecondaryColor3ui(GLuint red, GLuint green, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColor3ui(red, green, blue); } @@ -6345,7 +6360,7 @@ static void REGAL_CALL http_glSecondaryColor3uiv(const GLuint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColor3uiv(v); } @@ -6360,7 +6375,7 @@ static void REGAL_CALL http_glSecondaryColor3us(GLushort red, GLushort green, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColor3us(red, green, blue); } @@ -6375,7 +6390,7 @@ static void REGAL_CALL http_glSecondaryColor3usv(const GLushort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColor3usv(v); } @@ -6390,7 +6405,7 @@ static void REGAL_CALL http_glSecondaryColorPointer(GLint size, GLenum type, GLs } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColorPointer(size, type, stride, pointer); } @@ -6405,7 +6420,7 @@ static void REGAL_CALL http_glWindowPos2d(GLdouble x, GLdouble y) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos2d(x, y); } @@ -6420,7 +6435,7 @@ static void REGAL_CALL http_glWindowPos2dv(const GLdouble *p) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos2dv(p); } @@ -6435,7 +6450,7 @@ static void REGAL_CALL http_glWindowPos2f(GLfloat x, GLfloat y) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos2f(x, y); } @@ -6450,7 +6465,7 @@ static void REGAL_CALL http_glWindowPos2fv(const GLfloat *p) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos2fv(p); } @@ -6465,7 +6480,7 @@ static void REGAL_CALL http_glWindowPos2i(GLint x, GLint y) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos2i(x, y); } @@ -6480,7 +6495,7 @@ static void REGAL_CALL http_glWindowPos2iv(const GLint *p) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos2iv(p); } @@ -6495,7 +6510,7 @@ static void REGAL_CALL http_glWindowPos2s(GLshort x, GLshort y) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos2s(x, y); } @@ -6510,7 +6525,7 @@ static void REGAL_CALL http_glWindowPos2sv(const GLshort *p) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos2sv(p); } @@ -6525,7 +6540,7 @@ static void REGAL_CALL http_glWindowPos3d(GLdouble x, GLdouble y, GLdouble z) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos3d(x, y, z); } @@ -6540,7 +6555,7 @@ static void REGAL_CALL http_glWindowPos3dv(const GLdouble *p) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos3dv(p); } @@ -6555,7 +6570,7 @@ static void REGAL_CALL http_glWindowPos3f(GLfloat x, GLfloat y, GLfloat z) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos3f(x, y, z); } @@ -6570,7 +6585,7 @@ static void REGAL_CALL http_glWindowPos3fv(const GLfloat *p) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos3fv(p); } @@ -6585,7 +6600,7 @@ static void REGAL_CALL http_glWindowPos3i(GLint x, GLint y, GLint z) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos3i(x, y, z); } @@ -6600,7 +6615,7 @@ static void REGAL_CALL http_glWindowPos3iv(const GLint *p) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos3iv(p); } @@ -6615,7 +6630,7 @@ static void REGAL_CALL http_glWindowPos3s(GLshort x, GLshort y, GLshort z) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos3s(x, y, z); } @@ -6630,7 +6645,7 @@ static void REGAL_CALL http_glWindowPos3sv(const GLshort *p) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos3sv(p); } @@ -6647,7 +6662,7 @@ static void REGAL_CALL http_glBeginQuery(GLenum target, GLuint id) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBeginQuery(target, id); } @@ -6662,7 +6677,7 @@ static void REGAL_CALL http_glBindBuffer(GLenum target, GLuint buffer) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindBuffer(target, buffer); } @@ -6677,7 +6692,7 @@ static void REGAL_CALL http_glBufferData(GLenum target, GLsizeiptr size, const G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBufferData(target, size, data, usage); } @@ -6692,7 +6707,7 @@ static void REGAL_CALL http_glBufferSubData(GLenum target, GLintptr offset, GLsi } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBufferSubData(target, offset, size, data); } @@ -6707,7 +6722,7 @@ static void REGAL_CALL http_glDeleteBuffers(GLsizei n, const GLuint *buffers) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeleteBuffers(n, buffers); } @@ -6722,7 +6737,7 @@ static void REGAL_CALL http_glDeleteQueries(GLsizei n, const GLuint *ids) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeleteQueries(n, ids); } @@ -6737,7 +6752,7 @@ static void REGAL_CALL http_glEndQuery(GLenum target) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEndQuery(target); } @@ -6752,7 +6767,7 @@ static void REGAL_CALL http_glGenBuffers(GLsizei n, GLuint *buffers) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGenBuffers(n, buffers); } @@ -6767,7 +6782,7 @@ static void REGAL_CALL http_glGenQueries(GLsizei n, GLuint *ids) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGenQueries(n, ids); } @@ -6782,7 +6797,7 @@ static void REGAL_CALL http_glGetBufferParameteriv(GLenum target, GLenum pname, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetBufferParameteriv(target, pname, params); } @@ -6797,7 +6812,7 @@ static void REGAL_CALL http_glGetBufferPointerv(GLenum target, GLenum pname, GLv } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetBufferPointerv(target, pname, params); } @@ -6812,7 +6827,7 @@ static void REGAL_CALL http_glGetBufferSubData(GLenum target, GLintptr offset, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetBufferSubData(target, offset, size, data); } @@ -6827,7 +6842,7 @@ static void REGAL_CALL http_glGetQueryObjectiv(GLuint id, GLenum pname, GLint *p } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetQueryObjectiv(id, pname, params); } @@ -6842,7 +6857,7 @@ static void REGAL_CALL http_glGetQueryObjectuiv(GLuint id, GLenum pname, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetQueryObjectuiv(id, pname, params); } @@ -6857,7 +6872,7 @@ static void REGAL_CALL http_glGetQueryiv(GLenum target, GLenum pname, GLint *par } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetQueryiv(target, pname, params); } @@ -6873,7 +6888,7 @@ static GLboolean REGAL_CALL http_glIsBuffer(GLuint buffer) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsBuffer(buffer); return ret; @@ -6890,7 +6905,7 @@ static GLboolean REGAL_CALL http_glIsQuery(GLuint id) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsQuery(id); return ret; @@ -6907,7 +6922,7 @@ static GLvoid *REGAL_CALL http_glMapBuffer(GLenum target, GLenum access) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glMapBuffer(target, access); return ret; @@ -6924,7 +6939,7 @@ static GLboolean REGAL_CALL http_glUnmapBuffer(GLenum target) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glUnmapBuffer(target); return ret; @@ -6942,7 +6957,7 @@ static void REGAL_CALL http_glAttachShader(GLuint program, GLuint shader) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glAttachShader(program, shader); } @@ -6957,7 +6972,7 @@ static void REGAL_CALL http_glBindAttribLocation(GLuint program, GLuint index, c } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindAttribLocation(program, index, name); } @@ -6972,7 +6987,7 @@ static void REGAL_CALL http_glBlendEquationSeparate(GLenum modeRGB, GLenum modeA } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBlendEquationSeparate(modeRGB, modeAlpha); } @@ -6987,7 +7002,7 @@ static void REGAL_CALL http_glCompileShader(GLuint shader) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCompileShader(shader); } @@ -7003,7 +7018,7 @@ static GLuint REGAL_CALL http_glCreateProgram(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glCreateProgram(); if( _context ) { @@ -7023,7 +7038,7 @@ static GLuint REGAL_CALL http_glCreateShader(GLenum type) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glCreateShader(type); if( _context ) { @@ -7042,7 +7057,7 @@ static void REGAL_CALL http_glDeleteProgram(GLuint program) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeleteProgram(program); if( _context ) { @@ -7060,7 +7075,7 @@ static void REGAL_CALL http_glDeleteShader(GLuint shader) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeleteShader(shader); if( _context ) { @@ -7078,7 +7093,7 @@ static void REGAL_CALL http_glDetachShader(GLuint program, GLuint shader) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDetachShader(program, shader); } @@ -7093,7 +7108,7 @@ static void REGAL_CALL http_glDisableVertexAttribArray(GLuint index) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDisableVertexAttribArray(index); } @@ -7108,7 +7123,7 @@ static void REGAL_CALL http_glDrawBuffers(GLsizei n, const GLenum *bufs) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawBuffers(n, bufs); } @@ -7123,7 +7138,7 @@ static void REGAL_CALL http_glEnableVertexAttribArray(GLuint index) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEnableVertexAttribArray(index); } @@ -7138,7 +7153,7 @@ static void REGAL_CALL http_glGetActiveAttrib(GLuint program, GLuint index, GLsi } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetActiveAttrib(program, index, bufSize, length, size, type, name); } @@ -7153,7 +7168,7 @@ static void REGAL_CALL http_glGetActiveUniform(GLuint program, GLuint index, GLs } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetActiveUniform(program, index, bufSize, length, size, type, name); } @@ -7168,7 +7183,7 @@ static void REGAL_CALL http_glGetAttachedShaders(GLuint program, GLsizei maxCoun } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetAttachedShaders(program, maxCount, count, shaders); } @@ -7184,7 +7199,7 @@ static GLint REGAL_CALL http_glGetAttribLocation(GLuint program, const GLchar *n } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glGetAttribLocation(program, name); return ret; @@ -7200,7 +7215,7 @@ static void REGAL_CALL http_glGetProgramInfoLog(GLuint program, GLsizei bufSize, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetProgramInfoLog(program, bufSize, length, infoLog); } @@ -7215,7 +7230,7 @@ static void REGAL_CALL http_glGetProgramiv(GLuint program, GLenum pname, GLint * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetProgramiv(program, pname, params); } @@ -7230,7 +7245,7 @@ static void REGAL_CALL http_glGetShaderInfoLog(GLuint shader, GLsizei bufSize, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetShaderInfoLog(shader, bufSize, length, infoLog); } @@ -7245,7 +7260,7 @@ static void REGAL_CALL http_glGetShaderSource(GLuint shader, GLsizei bufSize, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetShaderSource(shader, bufSize, length, source); } @@ -7260,7 +7275,7 @@ static void REGAL_CALL http_glGetShaderiv(GLuint shader, GLenum pname, GLint *pa } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetShaderiv(shader, pname, params); } @@ -7276,7 +7291,7 @@ static GLint REGAL_CALL http_glGetUniformLocation(GLuint program, const GLchar * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glGetUniformLocation(program, name); return ret; @@ -7292,7 +7307,7 @@ static void REGAL_CALL http_glGetUniformfv(GLuint program, GLint location, GLflo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetUniformfv(program, location, params); } @@ -7307,7 +7322,7 @@ static void REGAL_CALL http_glGetUniformiv(GLuint program, GLint location, GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetUniformiv(program, location, params); } @@ -7322,7 +7337,7 @@ static void REGAL_CALL http_glGetVertexAttribPointerv(GLuint index, GLenum pname } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVertexAttribPointerv(index, pname, pointer); } @@ -7337,7 +7352,7 @@ static void REGAL_CALL http_glGetVertexAttribdv(GLuint index, GLenum pname, GLdo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVertexAttribdv(index, pname, params); } @@ -7352,7 +7367,7 @@ static void REGAL_CALL http_glGetVertexAttribfv(GLuint index, GLenum pname, GLfl } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVertexAttribfv(index, pname, params); } @@ -7367,7 +7382,7 @@ static void REGAL_CALL http_glGetVertexAttribiv(GLuint index, GLenum pname, GLin } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVertexAttribiv(index, pname, params); } @@ -7383,7 +7398,7 @@ static GLboolean REGAL_CALL http_glIsProgram(GLuint program) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsProgram(program); return ret; @@ -7400,7 +7415,7 @@ static GLboolean REGAL_CALL http_glIsShader(GLuint shader) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsShader(shader); return ret; @@ -7416,7 +7431,7 @@ static void REGAL_CALL http_glLinkProgram(GLuint program) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glLinkProgram(program); } @@ -7431,7 +7446,7 @@ static void REGAL_CALL http_glShaderSource(GLuint shader, GLsizei count, const G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glShaderSource(shader, count, string, length); } @@ -7446,7 +7461,7 @@ static void REGAL_CALL http_glStencilFuncSeparate(GLenum face, GLenum func, GLin } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glStencilFuncSeparate(face, func, ref, mask); } @@ -7461,7 +7476,7 @@ static void REGAL_CALL http_glStencilMaskSeparate(GLenum face, GLuint mask) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glStencilMaskSeparate(face, mask); } @@ -7476,7 +7491,7 @@ static void REGAL_CALL http_glStencilOpSeparate(GLenum face, GLenum fail, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glStencilOpSeparate(face, fail, zfail, zpass); } @@ -7491,7 +7506,7 @@ static void REGAL_CALL http_glUniform1f(GLint location, GLfloat v0) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform1f(location, v0); } @@ -7506,7 +7521,7 @@ static void REGAL_CALL http_glUniform1fv(GLint location, GLsizei count, const GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform1fv(location, count, value); } @@ -7521,7 +7536,7 @@ static void REGAL_CALL http_glUniform1i(GLint location, GLint v0) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform1i(location, v0); } @@ -7536,7 +7551,7 @@ static void REGAL_CALL http_glUniform1iv(GLint location, GLsizei count, const GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform1iv(location, count, value); } @@ -7551,7 +7566,7 @@ static void REGAL_CALL http_glUniform2f(GLint location, GLfloat v0, GLfloat v1) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform2f(location, v0, v1); } @@ -7566,7 +7581,7 @@ static void REGAL_CALL http_glUniform2fv(GLint location, GLsizei count, const GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform2fv(location, count, value); } @@ -7581,7 +7596,7 @@ static void REGAL_CALL http_glUniform2i(GLint location, GLint v0, GLint v1) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform2i(location, v0, v1); } @@ -7596,7 +7611,7 @@ static void REGAL_CALL http_glUniform2iv(GLint location, GLsizei count, const GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform2iv(location, count, value); } @@ -7611,7 +7626,7 @@ static void REGAL_CALL http_glUniform3f(GLint location, GLfloat v0, GLfloat v1, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform3f(location, v0, v1, v2); } @@ -7626,7 +7641,7 @@ static void REGAL_CALL http_glUniform3fv(GLint location, GLsizei count, const GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform3fv(location, count, value); } @@ -7641,7 +7656,7 @@ static void REGAL_CALL http_glUniform3i(GLint location, GLint v0, GLint v1, GLin } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform3i(location, v0, v1, v2); } @@ -7656,7 +7671,7 @@ static void REGAL_CALL http_glUniform3iv(GLint location, GLsizei count, const GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform3iv(location, count, value); } @@ -7671,7 +7686,7 @@ static void REGAL_CALL http_glUniform4f(GLint location, GLfloat v0, GLfloat v1, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform4f(location, v0, v1, v2, v3); } @@ -7686,7 +7701,7 @@ static void REGAL_CALL http_glUniform4fv(GLint location, GLsizei count, const GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform4fv(location, count, value); } @@ -7701,7 +7716,7 @@ static void REGAL_CALL http_glUniform4i(GLint location, GLint v0, GLint v1, GLin } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform4i(location, v0, v1, v2, v3); } @@ -7716,7 +7731,7 @@ static void REGAL_CALL http_glUniform4iv(GLint location, GLsizei count, const GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform4iv(location, count, value); } @@ -7731,7 +7746,7 @@ static void REGAL_CALL http_glUniformMatrix2fv(GLint location, GLsizei count, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniformMatrix2fv(location, count, transpose, value); } @@ -7746,7 +7761,7 @@ static void REGAL_CALL http_glUniformMatrix3fv(GLint location, GLsizei count, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniformMatrix3fv(location, count, transpose, value); } @@ -7761,7 +7776,7 @@ static void REGAL_CALL http_glUniformMatrix4fv(GLint location, GLsizei count, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniformMatrix4fv(location, count, transpose, value); } @@ -7776,7 +7791,7 @@ static void REGAL_CALL http_glUseProgram(GLuint program) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUseProgram(program); } @@ -7791,7 +7806,7 @@ static void REGAL_CALL http_glValidateProgram(GLuint program) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glValidateProgram(program); } @@ -7806,7 +7821,7 @@ static void REGAL_CALL http_glVertexAttrib1d(GLuint index, GLdouble x) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib1d(index, x); } @@ -7821,7 +7836,7 @@ static void REGAL_CALL http_glVertexAttrib1dv(GLuint index, const GLdouble *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib1dv(index, v); } @@ -7836,7 +7851,7 @@ static void REGAL_CALL http_glVertexAttrib1f(GLuint index, GLfloat x) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib1f(index, x); } @@ -7851,7 +7866,7 @@ static void REGAL_CALL http_glVertexAttrib1fv(GLuint index, const GLfloat *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib1fv(index, v); } @@ -7866,7 +7881,7 @@ static void REGAL_CALL http_glVertexAttrib1s(GLuint index, GLshort x) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib1s(index, x); } @@ -7881,7 +7896,7 @@ static void REGAL_CALL http_glVertexAttrib1sv(GLuint index, const GLshort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib1sv(index, v); } @@ -7896,7 +7911,7 @@ static void REGAL_CALL http_glVertexAttrib2d(GLuint index, GLdouble x, GLdouble } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib2d(index, x, y); } @@ -7911,7 +7926,7 @@ static void REGAL_CALL http_glVertexAttrib2dv(GLuint index, const GLdouble *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib2dv(index, v); } @@ -7926,7 +7941,7 @@ static void REGAL_CALL http_glVertexAttrib2f(GLuint index, GLfloat x, GLfloat y) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib2f(index, x, y); } @@ -7941,7 +7956,7 @@ static void REGAL_CALL http_glVertexAttrib2fv(GLuint index, const GLfloat *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib2fv(index, v); } @@ -7956,7 +7971,7 @@ static void REGAL_CALL http_glVertexAttrib2s(GLuint index, GLshort x, GLshort y) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib2s(index, x, y); } @@ -7971,7 +7986,7 @@ static void REGAL_CALL http_glVertexAttrib2sv(GLuint index, const GLshort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib2sv(index, v); } @@ -7986,7 +8001,7 @@ static void REGAL_CALL http_glVertexAttrib3d(GLuint index, GLdouble x, GLdouble } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib3d(index, x, y, z); } @@ -8001,7 +8016,7 @@ static void REGAL_CALL http_glVertexAttrib3dv(GLuint index, const GLdouble *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib3dv(index, v); } @@ -8016,7 +8031,7 @@ static void REGAL_CALL http_glVertexAttrib3f(GLuint index, GLfloat x, GLfloat y, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib3f(index, x, y, z); } @@ -8031,7 +8046,7 @@ static void REGAL_CALL http_glVertexAttrib3fv(GLuint index, const GLfloat *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib3fv(index, v); } @@ -8046,7 +8061,7 @@ static void REGAL_CALL http_glVertexAttrib3s(GLuint index, GLshort x, GLshort y, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib3s(index, x, y, z); } @@ -8061,7 +8076,7 @@ static void REGAL_CALL http_glVertexAttrib3sv(GLuint index, const GLshort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib3sv(index, v); } @@ -8076,7 +8091,7 @@ static void REGAL_CALL http_glVertexAttrib4Nbv(GLuint index, const GLbyte *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4Nbv(index, v); } @@ -8091,7 +8106,7 @@ static void REGAL_CALL http_glVertexAttrib4Niv(GLuint index, const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4Niv(index, v); } @@ -8106,7 +8121,7 @@ static void REGAL_CALL http_glVertexAttrib4Nsv(GLuint index, const GLshort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4Nsv(index, v); } @@ -8121,7 +8136,7 @@ static void REGAL_CALL http_glVertexAttrib4Nub(GLuint index, GLubyte x, GLubyte } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4Nub(index, x, y, z, w); } @@ -8136,7 +8151,7 @@ static void REGAL_CALL http_glVertexAttrib4Nubv(GLuint index, const GLubyte *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4Nubv(index, v); } @@ -8151,7 +8166,7 @@ static void REGAL_CALL http_glVertexAttrib4Nuiv(GLuint index, const GLuint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4Nuiv(index, v); } @@ -8166,7 +8181,7 @@ static void REGAL_CALL http_glVertexAttrib4Nusv(GLuint index, const GLushort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4Nusv(index, v); } @@ -8181,7 +8196,7 @@ static void REGAL_CALL http_glVertexAttrib4bv(GLuint index, const GLbyte *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4bv(index, v); } @@ -8196,7 +8211,7 @@ static void REGAL_CALL http_glVertexAttrib4d(GLuint index, GLdouble x, GLdouble } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4d(index, x, y, z, w); } @@ -8211,7 +8226,7 @@ static void REGAL_CALL http_glVertexAttrib4dv(GLuint index, const GLdouble *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4dv(index, v); } @@ -8226,7 +8241,7 @@ static void REGAL_CALL http_glVertexAttrib4f(GLuint index, GLfloat x, GLfloat y, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4f(index, x, y, z, w); } @@ -8241,7 +8256,7 @@ static void REGAL_CALL http_glVertexAttrib4fv(GLuint index, const GLfloat *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4fv(index, v); } @@ -8256,7 +8271,7 @@ static void REGAL_CALL http_glVertexAttrib4iv(GLuint index, const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4iv(index, v); } @@ -8271,7 +8286,7 @@ static void REGAL_CALL http_glVertexAttrib4s(GLuint index, GLshort x, GLshort y, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4s(index, x, y, z, w); } @@ -8286,7 +8301,7 @@ static void REGAL_CALL http_glVertexAttrib4sv(GLuint index, const GLshort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4sv(index, v); } @@ -8301,7 +8316,7 @@ static void REGAL_CALL http_glVertexAttrib4ubv(GLuint index, const GLubyte *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4ubv(index, v); } @@ -8316,7 +8331,7 @@ static void REGAL_CALL http_glVertexAttrib4uiv(GLuint index, const GLuint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4uiv(index, v); } @@ -8331,7 +8346,7 @@ static void REGAL_CALL http_glVertexAttrib4usv(GLuint index, const GLushort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4usv(index, v); } @@ -8346,7 +8361,7 @@ static void REGAL_CALL http_glVertexAttribPointer(GLuint index, GLint size, GLen } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribPointer(index, size, type, normalized, stride, pointer); } @@ -8363,7 +8378,7 @@ static void REGAL_CALL http_glUniformMatrix2x3fv(GLint location, GLsizei count, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniformMatrix2x3fv(location, count, transpose, value); } @@ -8378,7 +8393,7 @@ static void REGAL_CALL http_glUniformMatrix2x4fv(GLint location, GLsizei count, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniformMatrix2x4fv(location, count, transpose, value); } @@ -8393,7 +8408,7 @@ static void REGAL_CALL http_glUniformMatrix3x2fv(GLint location, GLsizei count, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniformMatrix3x2fv(location, count, transpose, value); } @@ -8408,7 +8423,7 @@ static void REGAL_CALL http_glUniformMatrix3x4fv(GLint location, GLsizei count, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniformMatrix3x4fv(location, count, transpose, value); } @@ -8423,7 +8438,7 @@ static void REGAL_CALL http_glUniformMatrix4x2fv(GLint location, GLsizei count, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniformMatrix4x2fv(location, count, transpose, value); } @@ -8438,7 +8453,7 @@ static void REGAL_CALL http_glUniformMatrix4x3fv(GLint location, GLsizei count, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniformMatrix4x3fv(location, count, transpose, value); } @@ -8455,7 +8470,7 @@ static void REGAL_CALL http_glBeginConditionalRender(GLuint id, GLenum mode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBeginConditionalRender(id, mode); } @@ -8470,7 +8485,7 @@ static void REGAL_CALL http_glBeginTransformFeedback(GLenum primitiveMode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBeginTransformFeedback(primitiveMode); } @@ -8485,7 +8500,7 @@ static void REGAL_CALL http_glBindFragDataLocation(GLuint program, GLuint color, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindFragDataLocation(program, color, name); } @@ -8500,7 +8515,7 @@ static void REGAL_CALL http_glClampColor(GLenum target, GLenum clamp) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glClampColor(target, clamp); } @@ -8515,7 +8530,7 @@ static void REGAL_CALL http_glClearBufferfi(GLenum buffer, GLint drawbuffer, GLf } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glClearBufferfi(buffer, drawbuffer, depth, stencil); } @@ -8530,7 +8545,7 @@ static void REGAL_CALL http_glClearBufferfv(GLenum buffer, GLint drawbuffer, con } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glClearBufferfv(buffer, drawbuffer, value); } @@ -8545,7 +8560,7 @@ static void REGAL_CALL http_glClearBufferiv(GLenum buffer, GLint drawbuffer, con } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glClearBufferiv(buffer, drawbuffer, value); } @@ -8560,7 +8575,7 @@ static void REGAL_CALL http_glClearBufferuiv(GLenum buffer, GLint drawbuffer, co } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glClearBufferuiv(buffer, drawbuffer, value); } @@ -8575,7 +8590,7 @@ static void REGAL_CALL http_glColorMaski(GLuint index, GLboolean r, GLboolean g, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColorMaski(index, r, g, b, a); } @@ -8590,7 +8605,7 @@ static void REGAL_CALL http_glDisablei(GLenum cap, GLuint index) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDisablei(cap, index); } @@ -8605,7 +8620,7 @@ static void REGAL_CALL http_glEnablei(GLenum cap, GLuint index) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEnablei(cap, index); } @@ -8620,7 +8635,7 @@ static void REGAL_CALL http_glEndConditionalRender(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEndConditionalRender(); } @@ -8635,7 +8650,7 @@ static void REGAL_CALL http_glEndTransformFeedback(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEndTransformFeedback(); } @@ -8650,7 +8665,7 @@ static void REGAL_CALL http_glGetBooleani_v(GLenum target, GLuint index, GLboole } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetBooleani_v(target, index, data); } @@ -8666,7 +8681,7 @@ static GLint REGAL_CALL http_glGetFragDataLocation(GLuint program, const GLchar } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glGetFragDataLocation(program, name); return ret; @@ -8683,7 +8698,7 @@ static const GLubyte *REGAL_CALL http_glGetStringi(GLenum name, GLuint index) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glGetStringi(name, index); return ret; @@ -8699,7 +8714,7 @@ static void REGAL_CALL http_glGetTexParameterIiv(GLenum target, GLenum pname, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetTexParameterIiv(target, pname, params); } @@ -8714,7 +8729,7 @@ static void REGAL_CALL http_glGetTexParameterIuiv(GLenum target, GLenum pname, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetTexParameterIuiv(target, pname, params); } @@ -8729,7 +8744,7 @@ static void REGAL_CALL http_glGetTransformFeedbackVarying(GLuint program, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetTransformFeedbackVarying(program, index, bufSize, length, size, type, name); } @@ -8744,7 +8759,7 @@ static void REGAL_CALL http_glGetUniformuiv(GLuint program, GLint location, GLui } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetUniformuiv(program, location, params); } @@ -8759,7 +8774,7 @@ static void REGAL_CALL http_glGetVertexAttribIiv(GLuint index, GLenum pname, GLi } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVertexAttribIiv(index, pname, params); } @@ -8774,7 +8789,7 @@ static void REGAL_CALL http_glGetVertexAttribIuiv(GLuint index, GLenum pname, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVertexAttribIuiv(index, pname, params); } @@ -8790,7 +8805,7 @@ static GLboolean REGAL_CALL http_glIsEnabledi(GLenum target, GLuint index) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsEnabledi(target, index); return ret; @@ -8806,7 +8821,7 @@ static void REGAL_CALL http_glTexParameterIiv(GLenum target, GLenum pname, const } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexParameterIiv(target, pname, params); } @@ -8821,7 +8836,7 @@ static void REGAL_CALL http_glTexParameterIuiv(GLenum target, GLenum pname, cons } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexParameterIuiv(target, pname, params); } @@ -8836,7 +8851,7 @@ static void REGAL_CALL http_glTransformFeedbackVaryings(GLuint program, GLsizei } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTransformFeedbackVaryings(program, count, varyings, bufferMode); } @@ -8851,7 +8866,7 @@ static void REGAL_CALL http_glUniform1ui(GLint location, GLuint v0) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform1ui(location, v0); } @@ -8866,7 +8881,7 @@ static void REGAL_CALL http_glUniform1uiv(GLint location, GLsizei count, const G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform1uiv(location, count, value); } @@ -8881,7 +8896,7 @@ static void REGAL_CALL http_glUniform2ui(GLint location, GLuint v0, GLuint v1) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform2ui(location, v0, v1); } @@ -8896,7 +8911,7 @@ static void REGAL_CALL http_glUniform2uiv(GLint location, GLsizei count, const G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform2uiv(location, count, value); } @@ -8911,7 +8926,7 @@ static void REGAL_CALL http_glUniform3ui(GLint location, GLuint v0, GLuint v1, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform3ui(location, v0, v1, v2); } @@ -8926,7 +8941,7 @@ static void REGAL_CALL http_glUniform3uiv(GLint location, GLsizei count, const G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform3uiv(location, count, value); } @@ -8941,7 +8956,7 @@ static void REGAL_CALL http_glUniform4ui(GLint location, GLuint v0, GLuint v1, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform4ui(location, v0, v1, v2, v3); } @@ -8956,7 +8971,7 @@ static void REGAL_CALL http_glUniform4uiv(GLint location, GLsizei count, const G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform4uiv(location, count, value); } @@ -8971,7 +8986,7 @@ static void REGAL_CALL http_glVertexAttribI1i(GLuint index, GLint x) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI1i(index, x); } @@ -8986,7 +9001,7 @@ static void REGAL_CALL http_glVertexAttribI1iv(GLuint index, const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI1iv(index, v); } @@ -9001,7 +9016,7 @@ static void REGAL_CALL http_glVertexAttribI1ui(GLuint index, GLuint x) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI1ui(index, x); } @@ -9016,7 +9031,7 @@ static void REGAL_CALL http_glVertexAttribI1uiv(GLuint index, const GLuint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI1uiv(index, v); } @@ -9031,7 +9046,7 @@ static void REGAL_CALL http_glVertexAttribI2i(GLuint index, GLint x, GLint y) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI2i(index, x, y); } @@ -9046,7 +9061,7 @@ static void REGAL_CALL http_glVertexAttribI2iv(GLuint index, const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI2iv(index, v); } @@ -9061,7 +9076,7 @@ static void REGAL_CALL http_glVertexAttribI2ui(GLuint index, GLuint x, GLuint y) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI2ui(index, x, y); } @@ -9076,7 +9091,7 @@ static void REGAL_CALL http_glVertexAttribI2uiv(GLuint index, const GLuint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI2uiv(index, v); } @@ -9091,7 +9106,7 @@ static void REGAL_CALL http_glVertexAttribI3i(GLuint index, GLint x, GLint y, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI3i(index, x, y, z); } @@ -9106,7 +9121,7 @@ static void REGAL_CALL http_glVertexAttribI3iv(GLuint index, const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI3iv(index, v); } @@ -9121,7 +9136,7 @@ static void REGAL_CALL http_glVertexAttribI3ui(GLuint index, GLuint x, GLuint y, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI3ui(index, x, y, z); } @@ -9136,7 +9151,7 @@ static void REGAL_CALL http_glVertexAttribI3uiv(GLuint index, const GLuint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI3uiv(index, v); } @@ -9151,7 +9166,7 @@ static void REGAL_CALL http_glVertexAttribI4bv(GLuint index, const GLbyte *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI4bv(index, v); } @@ -9166,7 +9181,7 @@ static void REGAL_CALL http_glVertexAttribI4i(GLuint index, GLint x, GLint y, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI4i(index, x, y, z, w); } @@ -9181,7 +9196,7 @@ static void REGAL_CALL http_glVertexAttribI4iv(GLuint index, const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI4iv(index, v); } @@ -9196,7 +9211,7 @@ static void REGAL_CALL http_glVertexAttribI4sv(GLuint index, const GLshort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI4sv(index, v); } @@ -9211,7 +9226,7 @@ static void REGAL_CALL http_glVertexAttribI4ubv(GLuint index, const GLubyte *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI4ubv(index, v); } @@ -9226,7 +9241,7 @@ static void REGAL_CALL http_glVertexAttribI4ui(GLuint index, GLuint x, GLuint y, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI4ui(index, x, y, z, w); } @@ -9241,7 +9256,7 @@ static void REGAL_CALL http_glVertexAttribI4uiv(GLuint index, const GLuint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI4uiv(index, v); } @@ -9256,7 +9271,7 @@ static void REGAL_CALL http_glVertexAttribI4usv(GLuint index, const GLushort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI4usv(index, v); } @@ -9271,7 +9286,7 @@ static void REGAL_CALL http_glVertexAttribIPointer(GLuint index, GLint size, GLe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribIPointer(index, size, type, stride, pointer); } @@ -9292,7 +9307,7 @@ static void REGAL_CALL http_glDrawArraysInstanced(GLenum mode, GLint start, GLsi } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawArraysInstanced(mode, start, count, primcount); if( _context ) { @@ -9314,7 +9329,7 @@ static void REGAL_CALL http_glDrawElementsInstanced(GLenum mode, GLsizei count, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawElementsInstanced(mode, count, type, indices, primcount); if( _context ) { @@ -9332,7 +9347,7 @@ static void REGAL_CALL http_glPrimitiveRestartIndex(GLuint index) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPrimitiveRestartIndex(index); } @@ -9347,7 +9362,7 @@ static void REGAL_CALL http_glTexBuffer(GLenum target, GLenum internalformat, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexBuffer(target, internalformat, buffer); } @@ -9364,7 +9379,7 @@ static void REGAL_CALL http_glFramebufferTexture(GLenum target, GLenum attachmen } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFramebufferTexture(target, attachment, texture, level); } @@ -9379,7 +9394,7 @@ static void REGAL_CALL http_glFramebufferTextureFace(GLenum target, GLenum attac } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFramebufferTextureFace(target, attachment, texture, level, face); } @@ -9394,7 +9409,7 @@ static void REGAL_CALL http_glGetBufferParameteri64v(GLenum target, GLenum pname } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetBufferParameteri64v(target, pname, params); } @@ -9409,7 +9424,7 @@ static void REGAL_CALL http_glGetInteger64i_v(GLenum target, GLuint index, GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetInteger64i_v(target, index, data); } @@ -9426,7 +9441,7 @@ static void REGAL_CALL http_glVertexAttribDivisor(GLuint index, GLuint divisor) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribDivisor(index, divisor); } @@ -9443,7 +9458,7 @@ static void REGAL_CALL http_glBlendEquationSeparatei(GLuint buf, GLenum modeRGB, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBlendEquationSeparatei(buf, modeRGB, modeAlpha); } @@ -9458,7 +9473,7 @@ static void REGAL_CALL http_glBlendEquationi(GLuint buf, GLenum mode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBlendEquationi(buf, mode); } @@ -9473,7 +9488,7 @@ static void REGAL_CALL http_glBlendFuncSeparatei(GLuint buf, GLenum srcRGB, GLen } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBlendFuncSeparatei(buf, srcRGB, dstRGB, srcAlpha, dstAlpha); } @@ -9488,7 +9503,7 @@ static void REGAL_CALL http_glBlendFunci(GLuint buf, GLenum src, GLenum dst) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBlendFunci(buf, src, dst); } @@ -9505,7 +9520,7 @@ static void REGAL_CALL http_glTbufferMask3DFX(GLuint mask) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTbufferMask3DFX(mask); } @@ -9522,7 +9537,7 @@ static void REGAL_CALL http_glDebugMessageCallbackAMD(GLDEBUGPROCAMD callback, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDebugMessageCallbackAMD(callback, userParam); } @@ -9537,7 +9552,7 @@ static void REGAL_CALL http_glDebugMessageEnableAMD(GLenum category, GLenum seve } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDebugMessageEnableAMD(category, severity, count, ids, enabled); } @@ -9552,7 +9567,7 @@ static void REGAL_CALL http_glDebugMessageInsertAMD(GLenum category, GLenum seve } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDebugMessageInsertAMD(category, severity, id, length, buf); } @@ -9568,7 +9583,7 @@ static GLuint REGAL_CALL http_glGetDebugMessageLogAMD(GLuint count, GLsizei bufs } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glGetDebugMessageLogAMD(count, bufsize, categories, severities, ids, lengths, message); return ret; @@ -9586,7 +9601,7 @@ static void REGAL_CALL http_glBlendEquationIndexedAMD(GLuint buf, GLenum mode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBlendEquationIndexedAMD(buf, mode); } @@ -9601,7 +9616,7 @@ static void REGAL_CALL http_glBlendEquationSeparateIndexedAMD(GLuint buf, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBlendEquationSeparateIndexedAMD(buf, modeRGB, modeAlpha); } @@ -9616,7 +9631,7 @@ static void REGAL_CALL http_glBlendFuncIndexedAMD(GLuint buf, GLenum src, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBlendFuncIndexedAMD(buf, src, dst); } @@ -9631,7 +9646,7 @@ static void REGAL_CALL http_glBlendFuncSeparateIndexedAMD(GLuint buf, GLenum src } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBlendFuncSeparateIndexedAMD(buf, srcRGB, dstRGB, srcAlpha, dstAlpha); } @@ -9648,7 +9663,7 @@ static void REGAL_CALL http_glVertexAttribParameteriAMD(GLuint index, GLenum pna } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribParameteriAMD(index, pname, param); } @@ -9669,7 +9684,7 @@ static void REGAL_CALL http_glMultiDrawArraysIndirectAMD(GLenum mode, const GLvo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiDrawArraysIndirectAMD(mode, indirect, primcount, stride); if( _context ) { @@ -9691,7 +9706,7 @@ static void REGAL_CALL http_glMultiDrawElementsIndirectAMD(GLenum mode, GLenum t } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiDrawElementsIndirectAMD(mode, type, indirect, primcount, stride); if( _context ) { @@ -9711,7 +9726,7 @@ static void REGAL_CALL http_glDeleteNamesAMD(GLenum identifier, GLuint num, cons } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeleteNamesAMD(identifier, num, names); } @@ -9726,7 +9741,7 @@ static void REGAL_CALL http_glGenNamesAMD(GLenum identifier, GLuint num, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGenNamesAMD(identifier, num, names); } @@ -9742,7 +9757,7 @@ static GLboolean REGAL_CALL http_glIsNameAMD(GLenum identifier, GLuint name) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsNameAMD(identifier, name); return ret; @@ -9760,7 +9775,7 @@ static void REGAL_CALL http_glBeginPerfMonitorAMD(GLuint monitor) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBeginPerfMonitorAMD(monitor); } @@ -9775,7 +9790,7 @@ static void REGAL_CALL http_glDeletePerfMonitorsAMD(GLsizei n, GLuint *monitors) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeletePerfMonitorsAMD(n, monitors); } @@ -9790,7 +9805,7 @@ static void REGAL_CALL http_glEndPerfMonitorAMD(GLuint monitor) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEndPerfMonitorAMD(monitor); } @@ -9805,7 +9820,7 @@ static void REGAL_CALL http_glGenPerfMonitorsAMD(GLsizei n, GLuint *monitors) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGenPerfMonitorsAMD(n, monitors); } @@ -9820,7 +9835,7 @@ static void REGAL_CALL http_glGetPerfMonitorCounterDataAMD(GLuint monitor, GLenu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetPerfMonitorCounterDataAMD(monitor, pname, dataSize, data, bytesWritten); } @@ -9835,7 +9850,7 @@ static void REGAL_CALL http_glGetPerfMonitorCounterInfoAMD(GLuint group, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetPerfMonitorCounterInfoAMD(group, counter, pname, data); } @@ -9850,7 +9865,7 @@ static void REGAL_CALL http_glGetPerfMonitorCounterStringAMD(GLuint group, GLuin } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetPerfMonitorCounterStringAMD(group, counter, bufSize, length, counterString); } @@ -9865,7 +9880,7 @@ static void REGAL_CALL http_glGetPerfMonitorCountersAMD(GLuint group, GLint *num } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetPerfMonitorCountersAMD(group, numCounters, maxActiveCounters, countersSize, counters); } @@ -9880,7 +9895,7 @@ static void REGAL_CALL http_glGetPerfMonitorGroupStringAMD(GLuint group, GLsizei } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetPerfMonitorGroupStringAMD(group, bufSize, length, groupString); } @@ -9895,7 +9910,7 @@ static void REGAL_CALL http_glGetPerfMonitorGroupsAMD(GLint *numGroups, GLsizei } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetPerfMonitorGroupsAMD(numGroups, groupsSize, groups); } @@ -9910,7 +9925,7 @@ static void REGAL_CALL http_glSelectPerfMonitorCountersAMD(GLuint monitor, GLboo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSelectPerfMonitorCountersAMD(monitor, enable, group, numCounters, counterList); } @@ -9927,7 +9942,7 @@ static void REGAL_CALL http_glSetMultisamplefvAMD(GLenum pname, GLuint index, co } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSetMultisamplefvAMD(pname, index, val); } @@ -9944,7 +9959,7 @@ static void REGAL_CALL http_glTexStorageSparseAMD(GLenum target, GLenum internal } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexStorageSparseAMD(target, internalFormat, width, height, depth, layers, flags); } @@ -9959,7 +9974,7 @@ static void REGAL_CALL http_glTextureStorageSparseAMD(GLuint texture, GLenum tar } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTextureStorageSparseAMD(texture, target, internalFormat, width, height, depth, layers, flags); } @@ -9976,7 +9991,7 @@ static void REGAL_CALL http_glStencilOpValueAMD(GLenum face, GLuint value) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glStencilOpValueAMD(face, value); } @@ -9993,7 +10008,7 @@ static void REGAL_CALL http_glTessellationFactorAMD(GLfloat factor) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTessellationFactorAMD(factor); } @@ -10008,7 +10023,7 @@ static void REGAL_CALL http_glTessellationModeAMD(GLenum mode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTessellationModeAMD(mode); } @@ -10025,7 +10040,7 @@ static void REGAL_CALL http_glBlitFramebufferANGLE(GLint srcX0, GLint srcY0, GLi } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBlitFramebufferANGLE(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter); } @@ -10042,7 +10057,7 @@ static void REGAL_CALL http_glRenderbufferStorageMultisampleANGLE(GLenum target, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRenderbufferStorageMultisampleANGLE(target, samples, internalformat, width, height); } @@ -10063,7 +10078,7 @@ static void REGAL_CALL http_glDrawArraysInstancedANGLE(GLenum mode, GLint first, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawArraysInstancedANGLE(mode, first, count, primcount); if( _context ) { @@ -10085,7 +10100,7 @@ static void REGAL_CALL http_glDrawElementsInstancedANGLE(GLenum mode, GLsizei co } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawElementsInstancedANGLE(mode, count, type, indices, primcount); if( _context ) { @@ -10103,7 +10118,7 @@ static void REGAL_CALL http_glVertexAttribDivisorANGLE(GLuint index, GLuint divi } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribDivisorANGLE(index, divisor); } @@ -10120,7 +10135,7 @@ static void REGAL_CALL http_glBeginQueryANGLE(GLenum target, GLuint id) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBeginQueryANGLE(target, id); } @@ -10135,7 +10150,7 @@ static void REGAL_CALL http_glDeleteQueriesANGLE(GLsizei n, const GLuint *ids) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeleteQueriesANGLE(n, ids); } @@ -10150,7 +10165,7 @@ static void REGAL_CALL http_glEndQueryANGLE(GLenum target) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEndQueryANGLE(target); } @@ -10165,7 +10180,7 @@ static void REGAL_CALL http_glGenQueriesANGLE(GLsizei n, GLuint *ids) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGenQueriesANGLE(n, ids); } @@ -10180,7 +10195,7 @@ static void REGAL_CALL http_glGetQueryObjecti64vANGLE(GLuint id, GLenum pname, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetQueryObjecti64vANGLE(id, pname, params); } @@ -10195,7 +10210,7 @@ static void REGAL_CALL http_glGetQueryObjectivANGLE(GLuint id, GLenum pname, GLi } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetQueryObjectivANGLE(id, pname, params); } @@ -10210,7 +10225,7 @@ static void REGAL_CALL http_glGetQueryObjectui64vANGLE(GLuint id, GLenum pname, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetQueryObjectui64vANGLE(id, pname, params); } @@ -10225,7 +10240,7 @@ static void REGAL_CALL http_glGetQueryObjectuivANGLE(GLuint id, GLenum pname, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetQueryObjectuivANGLE(id, pname, params); } @@ -10240,7 +10255,7 @@ static void REGAL_CALL http_glGetQueryivANGLE(GLenum target, GLenum pname, GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetQueryivANGLE(target, pname, params); } @@ -10256,7 +10271,7 @@ static GLboolean REGAL_CALL http_glIsQueryANGLE(GLuint id) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsQueryANGLE(id); return ret; @@ -10272,7 +10287,7 @@ static void REGAL_CALL http_glQueryCounterANGLE(GLuint id, GLenum target) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glQueryCounterANGLE(id, target); } @@ -10289,7 +10304,7 @@ static void REGAL_CALL http_glGetTranslatedShaderSourceANGLE(GLuint shader, GLsi } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetTranslatedShaderSourceANGLE(shader, bufsize, length, source); } @@ -10306,7 +10321,7 @@ static void REGAL_CALL http_glCopyTextureLevelsAPPLE(GLuint destinationTexture, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCopyTextureLevelsAPPLE(destinationTexture, sourceTexture, sourceBaseLevel, sourceLevelCount); } @@ -10323,7 +10338,7 @@ static void REGAL_CALL http_glDrawElementArrayAPPLE(GLenum mode, GLint first, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawElementArrayAPPLE(mode, first, count); } @@ -10338,7 +10353,7 @@ static void REGAL_CALL http_glDrawRangeElementArrayAPPLE(GLenum mode, GLuint sta } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawRangeElementArrayAPPLE(mode, start, end, first, count); } @@ -10353,7 +10368,7 @@ static void REGAL_CALL http_glElementPointerAPPLE(GLenum type, const GLvoid *poi } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glElementPointerAPPLE(type, pointer); } @@ -10368,7 +10383,7 @@ static void REGAL_CALL http_glMultiDrawElementArrayAPPLE(GLenum mode, const GLin } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiDrawElementArrayAPPLE(mode, first, count, primcount); } @@ -10383,7 +10398,7 @@ static void REGAL_CALL http_glMultiDrawRangeElementArrayAPPLE(GLenum mode, GLuin } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiDrawRangeElementArrayAPPLE(mode, start, end, first, count, primcount); } @@ -10400,7 +10415,7 @@ static void REGAL_CALL http_glDeleteFencesAPPLE(GLsizei n, const GLuint *fences) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeleteFencesAPPLE(n, fences); } @@ -10415,7 +10430,7 @@ static void REGAL_CALL http_glFinishFenceAPPLE(GLuint fence) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFinishFenceAPPLE(fence); } @@ -10430,7 +10445,7 @@ static void REGAL_CALL http_glFinishObjectAPPLE(GLenum object, GLint name) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFinishObjectAPPLE(object, name); } @@ -10445,7 +10460,7 @@ static void REGAL_CALL http_glGenFencesAPPLE(GLsizei n, GLuint *fences) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGenFencesAPPLE(n, fences); } @@ -10461,7 +10476,7 @@ static GLboolean REGAL_CALL http_glIsFenceAPPLE(GLuint fence) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsFenceAPPLE(fence); return ret; @@ -10477,7 +10492,7 @@ static void REGAL_CALL http_glSetFenceAPPLE(GLuint fence) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSetFenceAPPLE(fence); } @@ -10493,7 +10508,7 @@ static GLboolean REGAL_CALL http_glTestFenceAPPLE(GLuint fence) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glTestFenceAPPLE(fence); return ret; @@ -10510,7 +10525,7 @@ static GLboolean REGAL_CALL http_glTestObjectAPPLE(GLenum object, GLuint name) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glTestObjectAPPLE(object, name); return ret; @@ -10528,7 +10543,7 @@ static void REGAL_CALL http_glBufferParameteriAPPLE(GLenum target, GLenum pname, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBufferParameteriAPPLE(target, pname, param); } @@ -10543,7 +10558,7 @@ static void REGAL_CALL http_glFlushMappedBufferRangeAPPLE(GLenum target, GLintpt } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFlushMappedBufferRangeAPPLE(target, offset, size); } @@ -10560,7 +10575,7 @@ static void REGAL_CALL http_glFinishRenderAPPLE(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFinishRenderAPPLE(); } @@ -10575,7 +10590,7 @@ static void REGAL_CALL http_glFlushRenderAPPLE(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFlushRenderAPPLE(); } @@ -10590,7 +10605,7 @@ static void REGAL_CALL http_glSwapAPPLE(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSwapAPPLE(); } @@ -10607,7 +10622,7 @@ static void REGAL_CALL http_glRenderbufferStorageMultisampleAPPLE(GLenum target, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRenderbufferStorageMultisampleAPPLE(target, samples, internalformat, width, height); } @@ -10622,7 +10637,7 @@ static void REGAL_CALL http_glResolveMultisampleFramebufferAPPLE(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glResolveMultisampleFramebufferAPPLE(); } @@ -10639,7 +10654,7 @@ static void REGAL_CALL http_glGetObjectParameterivAPPLE(GLenum objectType, GLuin } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetObjectParameterivAPPLE(objectType, name, pname, params); } @@ -10655,7 +10670,7 @@ static GLenum REGAL_CALL http_glObjectPurgeableAPPLE(GLenum objectType, GLuint n } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glObjectPurgeableAPPLE(objectType, name, option); return ret; @@ -10672,7 +10687,7 @@ static GLenum REGAL_CALL http_glObjectUnpurgeableAPPLE(GLenum objectType, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glObjectUnpurgeableAPPLE(objectType, name, option); return ret; @@ -10691,7 +10706,7 @@ static GLenum REGAL_CALL http_glClientWaitSyncAPPLE(GLsync sync, GLbitfield flag } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glClientWaitSyncAPPLE(sync, flags, timeout); return ret; @@ -10707,7 +10722,7 @@ static void REGAL_CALL http_glDeleteSyncAPPLE(GLsync sync) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeleteSyncAPPLE(sync); } @@ -10723,7 +10738,7 @@ static GLsync REGAL_CALL http_glFenceSyncAPPLE(GLenum condition, GLbitfield flag } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glFenceSyncAPPLE(condition, flags); return ret; @@ -10739,7 +10754,7 @@ static void REGAL_CALL http_glGetInteger64vAPPLE(GLenum pname, GLint64 *params) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetInteger64vAPPLE(pname, params); } @@ -10754,7 +10769,7 @@ static void REGAL_CALL http_glGetSyncivAPPLE(GLsync sync, GLenum pname, GLsizei } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetSyncivAPPLE(sync, pname, bufSize, length, values); } @@ -10770,7 +10785,7 @@ static GLboolean REGAL_CALL http_glIsSyncAPPLE(GLsync sync) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsSyncAPPLE(sync); return ret; @@ -10786,7 +10801,7 @@ static void REGAL_CALL http_glWaitSyncAPPLE(GLsync sync, GLbitfield flags, GLuin } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWaitSyncAPPLE(sync, flags, timeout); } @@ -10803,7 +10818,7 @@ static void REGAL_CALL http_glGetTexParameterPointervAPPLE(GLenum target, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetTexParameterPointervAPPLE(target, pname, params); } @@ -10818,7 +10833,7 @@ static void REGAL_CALL http_glTextureRangeAPPLE(GLenum target, GLsizei length, c } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTextureRangeAPPLE(target, length, pointer); } @@ -10835,7 +10850,7 @@ static void REGAL_CALL http_glBindVertexArrayAPPLE(GLuint array) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindVertexArrayAPPLE(array); } @@ -10850,7 +10865,7 @@ static void REGAL_CALL http_glDeleteVertexArraysAPPLE(GLsizei n, const GLuint *a } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeleteVertexArraysAPPLE(n, arrays); } @@ -10865,7 +10880,7 @@ static void REGAL_CALL http_glGenVertexArraysAPPLE(GLsizei n, GLuint *arrays) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGenVertexArraysAPPLE(n, arrays); } @@ -10881,7 +10896,7 @@ static GLboolean REGAL_CALL http_glIsVertexArrayAPPLE(GLuint array) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsVertexArrayAPPLE(array); return ret; @@ -10899,7 +10914,7 @@ static void REGAL_CALL http_glFlushVertexArrayRangeAPPLE(GLsizei length, GLvoid } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFlushVertexArrayRangeAPPLE(length, pointer); } @@ -10914,7 +10929,7 @@ static void REGAL_CALL http_glVertexArrayParameteriAPPLE(GLenum pname, GLint par } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexArrayParameteriAPPLE(pname, param); } @@ -10929,7 +10944,7 @@ static void REGAL_CALL http_glVertexArrayRangeAPPLE(GLsizei length, GLvoid *poin } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexArrayRangeAPPLE(length, pointer); } @@ -10946,7 +10961,7 @@ static void REGAL_CALL http_glDisableVertexAttribAPPLE(GLuint index, GLenum pnam } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDisableVertexAttribAPPLE(index, pname); } @@ -10961,7 +10976,7 @@ static void REGAL_CALL http_glEnableVertexAttribAPPLE(GLuint index, GLenum pname } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEnableVertexAttribAPPLE(index, pname); } @@ -10977,7 +10992,7 @@ static GLboolean REGAL_CALL http_glIsVertexAttribEnabledAPPLE(GLuint index, GLen } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsVertexAttribEnabledAPPLE(index, pname); return ret; @@ -10993,7 +11008,7 @@ static void REGAL_CALL http_glMapVertexAttrib1dAPPLE(GLuint index, GLuint size, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMapVertexAttrib1dAPPLE(index, size, u1, u2, stride, order, points); } @@ -11008,7 +11023,7 @@ static void REGAL_CALL http_glMapVertexAttrib1fAPPLE(GLuint index, GLuint size, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMapVertexAttrib1fAPPLE(index, size, u1, u2, stride, order, points); } @@ -11023,7 +11038,7 @@ static void REGAL_CALL http_glMapVertexAttrib2dAPPLE(GLuint index, GLuint size, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMapVertexAttrib2dAPPLE(index, size, u1, u2, ustride, uorder, v1, v2, vstride, vorder, points); } @@ -11038,7 +11053,7 @@ static void REGAL_CALL http_glMapVertexAttrib2fAPPLE(GLuint index, GLuint size, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMapVertexAttrib2fAPPLE(index, size, u1, u2, ustride, uorder, v1, v2, vstride, vorder, points); } @@ -11055,7 +11070,7 @@ static void REGAL_CALL http_glClearDepthf(GLclampf d) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glClearDepthf(d); } @@ -11070,7 +11085,7 @@ static void REGAL_CALL http_glDepthRangef(GLclampf n, GLclampf f) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDepthRangef(n, f); } @@ -11085,7 +11100,7 @@ static void REGAL_CALL http_glGetShaderPrecisionFormat(GLenum shadertype, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetShaderPrecisionFormat(shadertype, precisiontype, range, precision); } @@ -11100,7 +11115,7 @@ static void REGAL_CALL http_glReleaseShaderCompiler(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glReleaseShaderCompiler(); } @@ -11115,7 +11130,7 @@ static void REGAL_CALL http_glShaderBinary(GLsizei count, const GLuint *shaders, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glShaderBinary(count, shaders, binaryformat, binary, length); } @@ -11136,7 +11151,7 @@ static void REGAL_CALL http_glDrawArraysInstancedBaseInstance(GLenum mode, GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawArraysInstancedBaseInstance(mode, first, count, primcount, baseinstance); if( _context ) { @@ -11158,7 +11173,7 @@ static void REGAL_CALL http_glDrawElementsInstancedBaseInstance(GLenum mode, GLs } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawElementsInstancedBaseInstance(mode, count, type, indices, primcount, baseinstance); if( _context ) { @@ -11180,7 +11195,7 @@ static void REGAL_CALL http_glDrawElementsInstancedBaseVertexBaseInstance(GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawElementsInstancedBaseVertexBaseInstance(mode, count, type, indices, primcount, basevertex, baseinstance); if( _context ) { @@ -11201,7 +11216,7 @@ static GLuint64 REGAL_CALL http_glGetImageHandleARB(GLuint texture, GLint level, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glGetImageHandleARB(texture, level, layered, layer, format); return ret; @@ -11218,7 +11233,7 @@ static GLuint64 REGAL_CALL http_glGetTextureHandleARB(GLuint texture) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glGetTextureHandleARB(texture); return ret; @@ -11235,7 +11250,7 @@ static GLuint64 REGAL_CALL http_glGetTextureSamplerHandleARB(GLuint texture, GLu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glGetTextureSamplerHandleARB(texture, sampler); return ret; @@ -11251,7 +11266,7 @@ static void REGAL_CALL http_glGetVertexAttribLui64vARB(GLuint index, GLenum pnam } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVertexAttribLui64vARB(index, pname, params); } @@ -11267,7 +11282,7 @@ static GLboolean REGAL_CALL http_glIsImageHandleResidentARB(GLuint64 handle) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsImageHandleResidentARB(handle); return ret; @@ -11284,7 +11299,7 @@ static GLboolean REGAL_CALL http_glIsTextureHandleResidentARB(GLuint64 handle) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsTextureHandleResidentARB(handle); return ret; @@ -11300,7 +11315,7 @@ static void REGAL_CALL http_glMakeImageHandleNonResidentARB(GLuint64 handle) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMakeImageHandleNonResidentARB(handle); } @@ -11315,7 +11330,7 @@ static void REGAL_CALL http_glMakeImageHandleResidentARB(GLuint64 handle, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMakeImageHandleResidentARB(handle, access); } @@ -11330,7 +11345,7 @@ static void REGAL_CALL http_glMakeTextureHandleNonResidentARB(GLuint64 handle) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMakeTextureHandleNonResidentARB(handle); } @@ -11345,7 +11360,7 @@ static void REGAL_CALL http_glMakeTextureHandleResidentARB(GLuint64 handle) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMakeTextureHandleResidentARB(handle); } @@ -11360,7 +11375,7 @@ static void REGAL_CALL http_glProgramUniformHandleui64ARB(GLuint program, GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformHandleui64ARB(program, location, value); } @@ -11375,7 +11390,7 @@ static void REGAL_CALL http_glProgramUniformHandleui64vARB(GLuint program, GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformHandleui64vARB(program, location, count, values); } @@ -11390,7 +11405,7 @@ static void REGAL_CALL http_glUniformHandleui64ARB(GLint location, GLuint64 valu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniformHandleui64ARB(location, value); } @@ -11405,7 +11420,7 @@ static void REGAL_CALL http_glUniformHandleui64vARB(GLint location, GLsizei coun } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniformHandleui64vARB(location, count, value); } @@ -11420,7 +11435,7 @@ static void REGAL_CALL http_glVertexAttribL1ui64ARB(GLuint index, GLuint64EXT x) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribL1ui64ARB(index, x); } @@ -11435,7 +11450,7 @@ static void REGAL_CALL http_glVertexAttribL1ui64vARB(GLuint index, const GLuint6 } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribL1ui64vARB(index, v); } @@ -11452,7 +11467,7 @@ static void REGAL_CALL http_glBindFragDataLocationIndexed(GLuint program, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindFragDataLocationIndexed(program, colorNumber, index, name); } @@ -11468,7 +11483,7 @@ static GLint REGAL_CALL http_glGetFragDataIndex(GLuint program, const GLchar *na } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glGetFragDataIndex(program, name); return ret; @@ -11486,7 +11501,7 @@ static void REGAL_CALL http_glBufferStorage(GLenum target, GLsizeiptr size, cons } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBufferStorage(target, size, data, flags); } @@ -11501,7 +11516,7 @@ static void REGAL_CALL http_glNamedBufferStorageEXT(GLuint buffer, GLsizeiptr si } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNamedBufferStorageEXT(buffer, size, data, flags); } @@ -11519,7 +11534,7 @@ static GLsync REGAL_CALL http_glCreateSyncFromCLeventARB(cl_context context, cl_ } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glCreateSyncFromCLeventARB(context, event, flags); return ret; @@ -11537,7 +11552,7 @@ static void REGAL_CALL http_glClearBufferData(GLenum target, GLenum internalform } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glClearBufferData(target, internalformat, format, type, data); } @@ -11552,7 +11567,7 @@ static void REGAL_CALL http_glClearBufferSubData(GLenum target, GLenum internalf } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glClearBufferSubData(target, internalformat, offset, size, format, type, data); } @@ -11567,7 +11582,7 @@ static void REGAL_CALL http_glClearNamedBufferDataEXT(GLuint buffer, GLenum inte } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glClearNamedBufferDataEXT(buffer, internalformat, format, type, data); } @@ -11582,7 +11597,7 @@ static void REGAL_CALL http_glClearNamedBufferSubDataEXT(GLuint buffer, GLenum i } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glClearNamedBufferSubDataEXT(buffer, internalformat, offset, size, format, type, data); } @@ -11599,7 +11614,7 @@ static void REGAL_CALL http_glClearTexImage(GLuint texture, GLint level, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glClearTexImage(texture, level, format, type, data); } @@ -11614,7 +11629,7 @@ static void REGAL_CALL http_glClearTexSubImage(GLuint texture, GLint level, GLin } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glClearTexSubImage(texture, level, xoffset, yoffset, zoffset, width, height, depth, format, type, data); } @@ -11631,7 +11646,7 @@ static void REGAL_CALL http_glClampColorARB(GLenum target, GLenum clamp) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glClampColorARB(target, clamp); } @@ -11648,7 +11663,7 @@ static void REGAL_CALL http_glDispatchCompute(GLuint num_groups_x, GLuint num_gr } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDispatchCompute(num_groups_x, num_groups_y, num_groups_z); } @@ -11663,7 +11678,7 @@ static void REGAL_CALL http_glDispatchComputeIndirect(GLintptr indirect) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDispatchComputeIndirect(indirect); } @@ -11680,7 +11695,7 @@ static void REGAL_CALL http_glDispatchComputeGroupSizeARB(GLuint num_groups_x, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDispatchComputeGroupSizeARB(num_groups_x, num_groups_y, num_groups_z, group_size_x, group_size_y, group_size_z); } @@ -11697,7 +11712,7 @@ static void REGAL_CALL http_glCopyBufferSubData(GLenum readtarget, GLenum writet } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCopyBufferSubData(readtarget, writetarget, readoffset, writeoffset, size); } @@ -11714,7 +11729,7 @@ static void REGAL_CALL http_glCopyImageSubData(GLuint srcName, GLenum srcTarget, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCopyImageSubData(srcName, srcTarget, srcLevel, srcX, srcY, srcZ, dstName, dstTarget, dstLevel, dstX, dstY, dstZ, srcWidth, srcHeight, srcDepth); } @@ -11731,7 +11746,7 @@ static void REGAL_CALL http_glDebugMessageCallbackARB(GLDEBUGPROCARB callback, c } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDebugMessageCallbackARB(callback, userParam); } @@ -11746,7 +11761,7 @@ static void REGAL_CALL http_glDebugMessageControlARB(GLenum source, GLenum type, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDebugMessageControlARB(source, type, severity, count, ids, enabled); } @@ -11761,7 +11776,7 @@ static void REGAL_CALL http_glDebugMessageInsertARB(GLenum source, GLenum type, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDebugMessageInsertARB(source, type, id, severity, length, buf); } @@ -11777,7 +11792,7 @@ static GLuint REGAL_CALL http_glGetDebugMessageLogARB(GLuint count, GLsizei bufs } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glGetDebugMessageLogARB(count, bufsize, sources, types, ids, severities, lengths, messageLog); return ret; @@ -11795,7 +11810,7 @@ static void REGAL_CALL http_glDrawBuffersARB(GLsizei n, const GLenum *bufs) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawBuffersARB(n, bufs); } @@ -11812,7 +11827,7 @@ static void REGAL_CALL http_glBlendEquationSeparateiARB(GLuint buf, GLenum modeR } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBlendEquationSeparateiARB(buf, modeRGB, modeAlpha); } @@ -11827,7 +11842,7 @@ static void REGAL_CALL http_glBlendEquationiARB(GLuint buf, GLenum mode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBlendEquationiARB(buf, mode); } @@ -11842,7 +11857,7 @@ static void REGAL_CALL http_glBlendFuncSeparateiARB(GLuint buf, GLenum srcRGB, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBlendFuncSeparateiARB(buf, srcRGB, dstRGB, srcAlpha, dstAlpha); } @@ -11857,7 +11872,7 @@ static void REGAL_CALL http_glBlendFunciARB(GLuint buf, GLenum src, GLenum dst) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBlendFunciARB(buf, src, dst); } @@ -11878,7 +11893,7 @@ static void REGAL_CALL http_glDrawElementsBaseVertex(GLenum mode, GLsizei count, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawElementsBaseVertex(mode, count, type, indices, basevertex); if( _context ) { @@ -11900,7 +11915,7 @@ static void REGAL_CALL http_glDrawElementsInstancedBaseVertex(GLenum mode, GLsiz } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawElementsInstancedBaseVertex(mode, count, type, indices, primcount, basevertex); if( _context ) { @@ -11918,7 +11933,7 @@ static void REGAL_CALL http_glDrawRangeElementsBaseVertex(GLenum mode, GLuint st } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawRangeElementsBaseVertex(mode, start, end, count, type, indices, basevertex); } @@ -11937,7 +11952,7 @@ static void REGAL_CALL http_glMultiDrawElementsBaseVertex(GLenum mode, const GLs } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiDrawElementsBaseVertex(mode, count, type, indices, primcount, basevertex); if( _context ) { @@ -11961,7 +11976,7 @@ static void REGAL_CALL http_glDrawArraysIndirect(GLenum mode, const GLvoid *indi } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawArraysIndirect(mode, indirect); if( _context ) { @@ -11983,7 +11998,7 @@ static void REGAL_CALL http_glDrawElementsIndirect(GLenum mode, GLenum type, con } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawElementsIndirect(mode, type, indirect); if( _context ) { @@ -12007,7 +12022,7 @@ static void REGAL_CALL http_glDrawArraysInstancedARB(GLenum mode, GLint start, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawArraysInstancedARB(mode, start, count, primcount); if( _context ) { @@ -12029,7 +12044,7 @@ static void REGAL_CALL http_glDrawElementsInstancedARB(GLenum mode, GLsizei coun } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawElementsInstancedARB(mode, count, type, indices, primcount); if( _context ) { @@ -12049,7 +12064,7 @@ static void REGAL_CALL http_glFramebufferParameteri(GLenum target, GLenum pname, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFramebufferParameteri(target, pname, param); } @@ -12064,7 +12079,7 @@ static void REGAL_CALL http_glGetFramebufferParameteriv(GLenum target, GLenum pn } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetFramebufferParameteriv(target, pname, params); } @@ -12079,7 +12094,7 @@ static void REGAL_CALL http_glGetNamedFramebufferParameterivEXT(GLuint framebuff } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetNamedFramebufferParameterivEXT(framebuffer, pname, params); } @@ -12094,7 +12109,7 @@ static void REGAL_CALL http_glNamedFramebufferParameteriEXT(GLuint framebuffer, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNamedFramebufferParameteriEXT(framebuffer, pname, param); } @@ -12116,7 +12131,7 @@ static void REGAL_CALL http_glBindFramebuffer(GLenum target, GLuint framebuffer) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindFramebuffer(target, framebuffer); if( _context ) { @@ -12134,7 +12149,7 @@ static void REGAL_CALL http_glBindRenderbuffer(GLenum target, GLuint renderbuffe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindRenderbuffer(target, renderbuffer); } @@ -12149,7 +12164,7 @@ static void REGAL_CALL http_glBlitFramebuffer(GLint srcX0, GLint srcY0, GLint sr } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBlitFramebuffer(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter); } @@ -12165,7 +12180,7 @@ static GLenum REGAL_CALL http_glCheckFramebufferStatus(GLenum target) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glCheckFramebufferStatus(target); return ret; @@ -12181,7 +12196,7 @@ static void REGAL_CALL http_glDeleteFramebuffers(GLsizei n, const GLuint *frameb } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeleteFramebuffers(n, framebuffers); } @@ -12196,7 +12211,7 @@ static void REGAL_CALL http_glDeleteRenderbuffers(GLsizei n, const GLuint *rende } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeleteRenderbuffers(n, renderbuffers); } @@ -12211,7 +12226,7 @@ static void REGAL_CALL http_glFramebufferRenderbuffer(GLenum target, GLenum atta } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFramebufferRenderbuffer(target, attachment, renderbuffertarget, renderbuffer); } @@ -12226,7 +12241,7 @@ static void REGAL_CALL http_glFramebufferTexture1D(GLenum target, GLenum attachm } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFramebufferTexture1D(target, attachment, textarget, texture, level); } @@ -12241,7 +12256,7 @@ static void REGAL_CALL http_glFramebufferTexture2D(GLenum target, GLenum attachm } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFramebufferTexture2D(target, attachment, textarget, texture, level); } @@ -12256,7 +12271,7 @@ static void REGAL_CALL http_glFramebufferTexture3D(GLenum target, GLenum attachm } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFramebufferTexture3D(target, attachment, textarget, texture, level, layer); } @@ -12271,7 +12286,7 @@ static void REGAL_CALL http_glFramebufferTextureLayer(GLenum target, GLenum atta } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFramebufferTextureLayer(target, attachment, texture, level, layer); } @@ -12286,7 +12301,7 @@ static void REGAL_CALL http_glGenFramebuffers(GLsizei n, GLuint *framebuffers) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGenFramebuffers(n, framebuffers); } @@ -12301,7 +12316,7 @@ static void REGAL_CALL http_glGenRenderbuffers(GLsizei n, GLuint *renderbuffers) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGenRenderbuffers(n, renderbuffers); } @@ -12316,7 +12331,7 @@ static void REGAL_CALL http_glGenerateMipmap(GLenum target) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGenerateMipmap(target); } @@ -12331,7 +12346,7 @@ static void REGAL_CALL http_glGetFramebufferAttachmentParameteriv(GLenum target, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetFramebufferAttachmentParameteriv(target, attachment, pname, params); } @@ -12346,7 +12361,7 @@ static void REGAL_CALL http_glGetRenderbufferParameteriv(GLenum target, GLenum p } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetRenderbufferParameteriv(target, pname, params); } @@ -12362,7 +12377,7 @@ static GLboolean REGAL_CALL http_glIsFramebuffer(GLuint framebuffer) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsFramebuffer(framebuffer); return ret; @@ -12379,7 +12394,7 @@ static GLboolean REGAL_CALL http_glIsRenderbuffer(GLuint renderbuffer) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsRenderbuffer(renderbuffer); return ret; @@ -12395,7 +12410,7 @@ static void REGAL_CALL http_glRenderbufferStorage(GLenum target, GLenum internal } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRenderbufferStorage(target, internalformat, width, height); } @@ -12410,7 +12425,7 @@ static void REGAL_CALL http_glRenderbufferStorageMultisample(GLenum target, GLsi } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRenderbufferStorageMultisample(target, samples, internalformat, width, height); } @@ -12427,7 +12442,7 @@ static void REGAL_CALL http_glFramebufferTextureARB(GLenum target, GLenum attach } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFramebufferTextureARB(target, attachment, texture, level); } @@ -12442,7 +12457,7 @@ static void REGAL_CALL http_glFramebufferTextureFaceARB(GLenum target, GLenum at } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFramebufferTextureFaceARB(target, attachment, texture, level, face); } @@ -12457,7 +12472,7 @@ static void REGAL_CALL http_glFramebufferTextureLayerARB(GLenum target, GLenum a } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFramebufferTextureLayerARB(target, attachment, texture, level, layer); } @@ -12472,7 +12487,7 @@ static void REGAL_CALL http_glProgramParameteriARB(GLuint program, GLenum pname, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramParameteriARB(program, pname, value); } @@ -12489,7 +12504,7 @@ static void REGAL_CALL http_glGetProgramBinary(GLuint program, GLsizei bufSize, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetProgramBinary(program, bufSize, length, binaryFormat, binary); } @@ -12504,7 +12519,7 @@ static void REGAL_CALL http_glProgramBinary(GLuint program, GLenum binaryFormat, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramBinary(program, binaryFormat, binary, length); } @@ -12519,7 +12534,7 @@ static void REGAL_CALL http_glProgramParameteri(GLuint program, GLenum pname, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramParameteri(program, pname, value); } @@ -12536,7 +12551,7 @@ static void REGAL_CALL http_glGetUniformdv(GLuint program, GLint location, GLdou } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetUniformdv(program, location, params); } @@ -12551,7 +12566,7 @@ static void REGAL_CALL http_glUniform1d(GLint location, GLdouble x) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform1d(location, x); } @@ -12566,7 +12581,7 @@ static void REGAL_CALL http_glUniform1dv(GLint location, GLsizei count, const GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform1dv(location, count, value); } @@ -12581,7 +12596,7 @@ static void REGAL_CALL http_glUniform2d(GLint location, GLdouble x, GLdouble y) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform2d(location, x, y); } @@ -12596,7 +12611,7 @@ static void REGAL_CALL http_glUniform2dv(GLint location, GLsizei count, const GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform2dv(location, count, value); } @@ -12611,7 +12626,7 @@ static void REGAL_CALL http_glUniform3d(GLint location, GLdouble x, GLdouble y, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform3d(location, x, y, z); } @@ -12626,7 +12641,7 @@ static void REGAL_CALL http_glUniform3dv(GLint location, GLsizei count, const GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform3dv(location, count, value); } @@ -12641,7 +12656,7 @@ static void REGAL_CALL http_glUniform4d(GLint location, GLdouble x, GLdouble y, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform4d(location, x, y, z, w); } @@ -12656,7 +12671,7 @@ static void REGAL_CALL http_glUniform4dv(GLint location, GLsizei count, const GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform4dv(location, count, value); } @@ -12671,7 +12686,7 @@ static void REGAL_CALL http_glUniformMatrix2dv(GLint location, GLsizei count, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniformMatrix2dv(location, count, transpose, value); } @@ -12686,7 +12701,7 @@ static void REGAL_CALL http_glUniformMatrix2x3dv(GLint location, GLsizei count, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniformMatrix2x3dv(location, count, transpose, value); } @@ -12701,7 +12716,7 @@ static void REGAL_CALL http_glUniformMatrix2x4dv(GLint location, GLsizei count, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniformMatrix2x4dv(location, count, transpose, value); } @@ -12716,7 +12731,7 @@ static void REGAL_CALL http_glUniformMatrix3dv(GLint location, GLsizei count, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniformMatrix3dv(location, count, transpose, value); } @@ -12731,7 +12746,7 @@ static void REGAL_CALL http_glUniformMatrix3x2dv(GLint location, GLsizei count, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniformMatrix3x2dv(location, count, transpose, value); } @@ -12746,7 +12761,7 @@ static void REGAL_CALL http_glUniformMatrix3x4dv(GLint location, GLsizei count, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniformMatrix3x4dv(location, count, transpose, value); } @@ -12761,7 +12776,7 @@ static void REGAL_CALL http_glUniformMatrix4dv(GLint location, GLsizei count, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniformMatrix4dv(location, count, transpose, value); } @@ -12776,7 +12791,7 @@ static void REGAL_CALL http_glUniformMatrix4x2dv(GLint location, GLsizei count, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniformMatrix4x2dv(location, count, transpose, value); } @@ -12791,7 +12806,7 @@ static void REGAL_CALL http_glUniformMatrix4x3dv(GLint location, GLsizei count, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniformMatrix4x3dv(location, count, transpose, value); } @@ -12808,7 +12823,7 @@ static void REGAL_CALL http_glColorSubTable(GLenum target, GLsizei start, GLsize } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColorSubTable(target, start, count, format, type, data); } @@ -12823,7 +12838,7 @@ static void REGAL_CALL http_glColorTable(GLenum target, GLenum internalformat, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColorTable(target, internalformat, width, format, type, table); } @@ -12838,7 +12853,7 @@ static void REGAL_CALL http_glColorTableParameterfv(GLenum target, GLenum pname, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColorTableParameterfv(target, pname, params); } @@ -12853,7 +12868,7 @@ static void REGAL_CALL http_glColorTableParameteriv(GLenum target, GLenum pname, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColorTableParameteriv(target, pname, params); } @@ -12868,7 +12883,7 @@ static void REGAL_CALL http_glConvolutionFilter1D(GLenum target, GLenum internal } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glConvolutionFilter1D(target, internalformat, width, format, type, image); } @@ -12883,7 +12898,7 @@ static void REGAL_CALL http_glConvolutionFilter2D(GLenum target, GLenum internal } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glConvolutionFilter2D(target, internalformat, width, height, format, type, image); } @@ -12898,7 +12913,7 @@ static void REGAL_CALL http_glConvolutionParameterf(GLenum target, GLenum pname, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glConvolutionParameterf(target, pname, params); } @@ -12913,7 +12928,7 @@ static void REGAL_CALL http_glConvolutionParameterfv(GLenum target, GLenum pname } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glConvolutionParameterfv(target, pname, params); } @@ -12928,7 +12943,7 @@ static void REGAL_CALL http_glConvolutionParameteri(GLenum target, GLenum pname, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glConvolutionParameteri(target, pname, params); } @@ -12943,7 +12958,7 @@ static void REGAL_CALL http_glConvolutionParameteriv(GLenum target, GLenum pname } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glConvolutionParameteriv(target, pname, params); } @@ -12958,7 +12973,7 @@ static void REGAL_CALL http_glCopyColorSubTable(GLenum target, GLsizei start, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCopyColorSubTable(target, start, x, y, width); } @@ -12973,7 +12988,7 @@ static void REGAL_CALL http_glCopyColorTable(GLenum target, GLenum internalforma } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCopyColorTable(target, internalformat, x, y, width); } @@ -12988,7 +13003,7 @@ static void REGAL_CALL http_glCopyConvolutionFilter1D(GLenum target, GLenum inte } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCopyConvolutionFilter1D(target, internalformat, x, y, width); } @@ -13003,7 +13018,7 @@ static void REGAL_CALL http_glCopyConvolutionFilter2D(GLenum target, GLenum inte } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCopyConvolutionFilter2D(target, internalformat, x, y, width, height); } @@ -13018,7 +13033,7 @@ static void REGAL_CALL http_glGetColorTable(GLenum target, GLenum format, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetColorTable(target, format, type, table); } @@ -13033,7 +13048,7 @@ static void REGAL_CALL http_glGetColorTableParameterfv(GLenum target, GLenum pna } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetColorTableParameterfv(target, pname, params); } @@ -13048,7 +13063,7 @@ static void REGAL_CALL http_glGetColorTableParameteriv(GLenum target, GLenum pna } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetColorTableParameteriv(target, pname, params); } @@ -13063,7 +13078,7 @@ static void REGAL_CALL http_glGetConvolutionFilter(GLenum target, GLenum format, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetConvolutionFilter(target, format, type, image); } @@ -13078,7 +13093,7 @@ static void REGAL_CALL http_glGetConvolutionParameterfv(GLenum target, GLenum pn } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetConvolutionParameterfv(target, pname, params); } @@ -13093,7 +13108,7 @@ static void REGAL_CALL http_glGetConvolutionParameteriv(GLenum target, GLenum pn } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetConvolutionParameteriv(target, pname, params); } @@ -13108,7 +13123,7 @@ static void REGAL_CALL http_glGetHistogram(GLenum target, GLboolean reset, GLenu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetHistogram(target, reset, format, type, values); } @@ -13123,7 +13138,7 @@ static void REGAL_CALL http_glGetHistogramParameterfv(GLenum target, GLenum pnam } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetHistogramParameterfv(target, pname, params); } @@ -13138,7 +13153,7 @@ static void REGAL_CALL http_glGetHistogramParameteriv(GLenum target, GLenum pnam } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetHistogramParameteriv(target, pname, params); } @@ -13153,7 +13168,7 @@ static void REGAL_CALL http_glGetMinmax(GLenum target, GLboolean reset, GLenum f } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetMinmax(target, reset, format, types, values); } @@ -13168,7 +13183,7 @@ static void REGAL_CALL http_glGetMinmaxParameterfv(GLenum target, GLenum pname, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetMinmaxParameterfv(target, pname, params); } @@ -13183,7 +13198,7 @@ static void REGAL_CALL http_glGetMinmaxParameteriv(GLenum target, GLenum pname, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetMinmaxParameteriv(target, pname, params); } @@ -13198,7 +13213,7 @@ static void REGAL_CALL http_glGetSeparableFilter(GLenum target, GLenum format, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetSeparableFilter(target, format, type, row, column, span); } @@ -13213,7 +13228,7 @@ static void REGAL_CALL http_glHistogram(GLenum target, GLsizei width, GLenum int } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glHistogram(target, width, internalformat, sink); } @@ -13228,7 +13243,7 @@ static void REGAL_CALL http_glMinmax(GLenum target, GLenum internalformat, GLboo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMinmax(target, internalformat, sink); } @@ -13243,7 +13258,7 @@ static void REGAL_CALL http_glResetHistogram(GLenum target) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glResetHistogram(target); } @@ -13258,7 +13273,7 @@ static void REGAL_CALL http_glResetMinmax(GLenum target) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glResetMinmax(target); } @@ -13273,7 +13288,7 @@ static void REGAL_CALL http_glSeparableFilter2D(GLenum target, GLenum internalfo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSeparableFilter2D(target, internalformat, width, height, format, type, row, column); } @@ -13294,7 +13309,7 @@ static void REGAL_CALL http_glMultiDrawArraysIndirectCountARB(GLenum mode, const } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiDrawArraysIndirectCountARB(mode, indirect, drawcount, maxdrawcount, stride); if( _context ) { @@ -13316,7 +13331,7 @@ static void REGAL_CALL http_glMultiDrawElementsIndirectCountARB(GLenum mode, GLe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiDrawElementsIndirectCountARB(mode, type, indirect, drawcount, maxdrawcount, stride); if( _context ) { @@ -13336,7 +13351,7 @@ static void REGAL_CALL http_glVertexAttribDivisorARB(GLuint index, GLuint diviso } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribDivisorARB(index, divisor); } @@ -13353,7 +13368,7 @@ static void REGAL_CALL http_glGetInternalformativ(GLenum target, GLenum internal } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetInternalformativ(target, internalformat, pname, bufSize, params); } @@ -13370,7 +13385,7 @@ static void REGAL_CALL http_glGetInternalformati64v(GLenum target, GLenum intern } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetInternalformati64v(target, internalformat, pname, bufSize, params); } @@ -13387,7 +13402,7 @@ static void REGAL_CALL http_glInvalidateBufferData(GLuint buffer) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glInvalidateBufferData(buffer); } @@ -13402,7 +13417,7 @@ static void REGAL_CALL http_glInvalidateBufferSubData(GLuint buffer, GLintptr of } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glInvalidateBufferSubData(buffer, offset, length); } @@ -13417,7 +13432,7 @@ static void REGAL_CALL http_glInvalidateFramebuffer(GLenum target, GLsizei numAt } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glInvalidateFramebuffer(target, numAttachments, attachments); } @@ -13432,7 +13447,7 @@ static void REGAL_CALL http_glInvalidateSubFramebuffer(GLenum target, GLsizei nu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glInvalidateSubFramebuffer(target, numAttachments, attachments, x, y, width, height); } @@ -13447,7 +13462,7 @@ static void REGAL_CALL http_glInvalidateTexImage(GLuint texture, GLint level) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glInvalidateTexImage(texture, level); } @@ -13462,7 +13477,7 @@ static void REGAL_CALL http_glInvalidateTexSubImage(GLuint texture, GLint level, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glInvalidateTexSubImage(texture, level, xoffset, yoffset, zoffset, width, height, depth); } @@ -13479,7 +13494,7 @@ static void REGAL_CALL http_glFlushMappedBufferRange(GLenum target, GLintptr off } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFlushMappedBufferRange(target, offset, length); } @@ -13495,7 +13510,7 @@ static GLvoid *REGAL_CALL http_glMapBufferRange(GLenum target, GLintptr offset, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glMapBufferRange(target, offset, length, access); return ret; @@ -13513,7 +13528,7 @@ static void REGAL_CALL http_glCurrentPaletteMatrixARB(GLint index) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCurrentPaletteMatrixARB(index); } @@ -13528,7 +13543,7 @@ static void REGAL_CALL http_glMatrixIndexPointerARB(GLint size, GLenum type, GLs } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMatrixIndexPointerARB(size, type, stride, pointer); } @@ -13543,7 +13558,7 @@ static void REGAL_CALL http_glMatrixIndexubvARB(GLint size, const GLubyte *indic } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMatrixIndexubvARB(size, indices); } @@ -13558,7 +13573,7 @@ static void REGAL_CALL http_glMatrixIndexuivARB(GLint size, const GLuint *indice } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMatrixIndexuivARB(size, indices); } @@ -13573,7 +13588,7 @@ static void REGAL_CALL http_glMatrixIndexusvARB(GLint size, const GLushort *indi } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMatrixIndexusvARB(size, indices); } @@ -13590,7 +13605,7 @@ static void REGAL_CALL http_glBindBuffersBase(GLenum target, GLuint first, GLsiz } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindBuffersBase(target, first, count, buffers); } @@ -13605,7 +13620,7 @@ static void REGAL_CALL http_glBindBuffersRange(GLenum target, GLuint first, GLsi } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindBuffersRange(target, first, count, buffers, offsets, sizes); } @@ -13620,7 +13635,7 @@ static void REGAL_CALL http_glBindImageTextures(GLuint first, GLsizei count, con } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindImageTextures(first, count, textures); } @@ -13635,7 +13650,7 @@ static void REGAL_CALL http_glBindSamplers(GLuint first, GLsizei count, const GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindSamplers(first, count, samplers); } @@ -13662,7 +13677,7 @@ static void REGAL_CALL http_glBindTextures(GLuint first, GLsizei count, const GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindTextures(first, count, textures); } @@ -13677,7 +13692,7 @@ static void REGAL_CALL http_glBindVertexBuffers(GLuint first, GLsizei count, con } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindVertexBuffers(first, count, buffers, offsets, strides); } @@ -13698,7 +13713,7 @@ static void REGAL_CALL http_glMultiDrawArraysIndirect(GLenum mode, const GLvoid } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiDrawArraysIndirect(mode, indirect, primcount, stride); if( _context ) { @@ -13720,7 +13735,7 @@ static void REGAL_CALL http_glMultiDrawElementsIndirect(GLenum mode, GLenum type } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiDrawElementsIndirect(mode, type, indirect, primcount, stride); if( _context ) { @@ -13740,7 +13755,7 @@ static void REGAL_CALL http_glSampleCoverageARB(GLclampf value, GLboolean invert } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSampleCoverageARB(value, invert); } @@ -13757,7 +13772,7 @@ static void REGAL_CALL http_glActiveTextureARB(GLenum texture) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glActiveTextureARB(texture); } @@ -13772,7 +13787,7 @@ static void REGAL_CALL http_glClientActiveTextureARB(GLenum texture) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glClientActiveTextureARB(texture); } @@ -13787,7 +13802,7 @@ static void REGAL_CALL http_glMultiTexCoord1dARB(GLenum target, GLdouble s) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord1dARB(target, s); } @@ -13802,7 +13817,7 @@ static void REGAL_CALL http_glMultiTexCoord1dvARB(GLenum target, const GLdouble } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord1dvARB(target, v); } @@ -13817,7 +13832,7 @@ static void REGAL_CALL http_glMultiTexCoord1fARB(GLenum target, GLfloat s) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord1fARB(target, s); } @@ -13832,7 +13847,7 @@ static void REGAL_CALL http_glMultiTexCoord1fvARB(GLenum target, const GLfloat * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord1fvARB(target, v); } @@ -13847,7 +13862,7 @@ static void REGAL_CALL http_glMultiTexCoord1iARB(GLenum target, GLint s) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord1iARB(target, s); } @@ -13862,7 +13877,7 @@ static void REGAL_CALL http_glMultiTexCoord1ivARB(GLenum target, const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord1ivARB(target, v); } @@ -13877,7 +13892,7 @@ static void REGAL_CALL http_glMultiTexCoord1sARB(GLenum target, GLshort s) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord1sARB(target, s); } @@ -13892,7 +13907,7 @@ static void REGAL_CALL http_glMultiTexCoord1svARB(GLenum target, const GLshort * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord1svARB(target, v); } @@ -13907,7 +13922,7 @@ static void REGAL_CALL http_glMultiTexCoord2dARB(GLenum target, GLdouble s, GLdo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord2dARB(target, s, t); } @@ -13922,7 +13937,7 @@ static void REGAL_CALL http_glMultiTexCoord2dvARB(GLenum target, const GLdouble } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord2dvARB(target, v); } @@ -13937,7 +13952,7 @@ static void REGAL_CALL http_glMultiTexCoord2fARB(GLenum target, GLfloat s, GLflo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord2fARB(target, s, t); } @@ -13952,7 +13967,7 @@ static void REGAL_CALL http_glMultiTexCoord2fvARB(GLenum target, const GLfloat * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord2fvARB(target, v); } @@ -13967,7 +13982,7 @@ static void REGAL_CALL http_glMultiTexCoord2iARB(GLenum target, GLint s, GLint t } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord2iARB(target, s, t); } @@ -13982,7 +13997,7 @@ static void REGAL_CALL http_glMultiTexCoord2ivARB(GLenum target, const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord2ivARB(target, v); } @@ -13997,7 +14012,7 @@ static void REGAL_CALL http_glMultiTexCoord2sARB(GLenum target, GLshort s, GLsho } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord2sARB(target, s, t); } @@ -14012,7 +14027,7 @@ static void REGAL_CALL http_glMultiTexCoord2svARB(GLenum target, const GLshort * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord2svARB(target, v); } @@ -14027,7 +14042,7 @@ static void REGAL_CALL http_glMultiTexCoord3dARB(GLenum target, GLdouble s, GLdo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord3dARB(target, s, t, r); } @@ -14042,7 +14057,7 @@ static void REGAL_CALL http_glMultiTexCoord3dvARB(GLenum target, const GLdouble } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord3dvARB(target, v); } @@ -14057,7 +14072,7 @@ static void REGAL_CALL http_glMultiTexCoord3fARB(GLenum target, GLfloat s, GLflo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord3fARB(target, s, t, r); } @@ -14072,7 +14087,7 @@ static void REGAL_CALL http_glMultiTexCoord3fvARB(GLenum target, const GLfloat * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord3fvARB(target, v); } @@ -14087,7 +14102,7 @@ static void REGAL_CALL http_glMultiTexCoord3iARB(GLenum target, GLint s, GLint t } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord3iARB(target, s, t, r); } @@ -14102,7 +14117,7 @@ static void REGAL_CALL http_glMultiTexCoord3ivARB(GLenum target, const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord3ivARB(target, v); } @@ -14117,7 +14132,7 @@ static void REGAL_CALL http_glMultiTexCoord3sARB(GLenum target, GLshort s, GLsho } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord3sARB(target, s, t, r); } @@ -14132,7 +14147,7 @@ static void REGAL_CALL http_glMultiTexCoord3svARB(GLenum target, const GLshort * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord3svARB(target, v); } @@ -14147,7 +14162,7 @@ static void REGAL_CALL http_glMultiTexCoord4dARB(GLenum target, GLdouble s, GLdo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord4dARB(target, s, t, r, q); } @@ -14162,7 +14177,7 @@ static void REGAL_CALL http_glMultiTexCoord4dvARB(GLenum target, const GLdouble } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord4dvARB(target, v); } @@ -14177,7 +14192,7 @@ static void REGAL_CALL http_glMultiTexCoord4fARB(GLenum target, GLfloat s, GLflo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord4fARB(target, s, t, r, q); } @@ -14192,7 +14207,7 @@ static void REGAL_CALL http_glMultiTexCoord4fvARB(GLenum target, const GLfloat * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord4fvARB(target, v); } @@ -14207,7 +14222,7 @@ static void REGAL_CALL http_glMultiTexCoord4iARB(GLenum target, GLint s, GLint t } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord4iARB(target, s, t, r, q); } @@ -14222,7 +14237,7 @@ static void REGAL_CALL http_glMultiTexCoord4ivARB(GLenum target, const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord4ivARB(target, v); } @@ -14237,7 +14252,7 @@ static void REGAL_CALL http_glMultiTexCoord4sARB(GLenum target, GLshort s, GLsho } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord4sARB(target, s, t, r, q); } @@ -14252,7 +14267,7 @@ static void REGAL_CALL http_glMultiTexCoord4svARB(GLenum target, const GLshort * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord4svARB(target, v); } @@ -14269,7 +14284,7 @@ static void REGAL_CALL http_glBeginQueryARB(GLenum target, GLuint id) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBeginQueryARB(target, id); } @@ -14284,7 +14299,7 @@ static void REGAL_CALL http_glDeleteQueriesARB(GLsizei n, const GLuint *ids) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeleteQueriesARB(n, ids); } @@ -14299,7 +14314,7 @@ static void REGAL_CALL http_glEndQueryARB(GLenum target) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEndQueryARB(target); } @@ -14314,7 +14329,7 @@ static void REGAL_CALL http_glGenQueriesARB(GLsizei n, GLuint *ids) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGenQueriesARB(n, ids); } @@ -14329,7 +14344,7 @@ static void REGAL_CALL http_glGetQueryObjectivARB(GLuint id, GLenum pname, GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetQueryObjectivARB(id, pname, params); } @@ -14344,7 +14359,7 @@ static void REGAL_CALL http_glGetQueryObjectuivARB(GLuint id, GLenum pname, GLui } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetQueryObjectuivARB(id, pname, params); } @@ -14359,7 +14374,7 @@ static void REGAL_CALL http_glGetQueryivARB(GLenum target, GLenum pname, GLint * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetQueryivARB(target, pname, params); } @@ -14375,7 +14390,7 @@ static GLboolean REGAL_CALL http_glIsQueryARB(GLuint id) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsQueryARB(id); return ret; @@ -14393,7 +14408,7 @@ static void REGAL_CALL http_glPointParameterfARB(GLenum pname, GLfloat param) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPointParameterfARB(pname, param); } @@ -14408,7 +14423,7 @@ static void REGAL_CALL http_glPointParameterfvARB(GLenum pname, const GLfloat *p } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPointParameterfvARB(pname, params); } @@ -14425,7 +14440,7 @@ static void REGAL_CALL http_glGetProgramInterfaceiv(GLuint program, GLenum progr } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetProgramInterfaceiv(program, programInterface, pname, params); } @@ -14441,7 +14456,7 @@ static GLuint REGAL_CALL http_glGetProgramResourceIndex(GLuint program, GLenum p } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glGetProgramResourceIndex(program, programInterface, name); return ret; @@ -14458,7 +14473,7 @@ static GLint REGAL_CALL http_glGetProgramResourceLocation(GLuint program, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glGetProgramResourceLocation(program, programInterface, name); return ret; @@ -14475,7 +14490,7 @@ static GLint REGAL_CALL http_glGetProgramResourceLocationIndex(GLuint program, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glGetProgramResourceLocationIndex(program, programInterface, name); return ret; @@ -14491,7 +14506,7 @@ static void REGAL_CALL http_glGetProgramResourceName(GLuint program, GLenum prog } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetProgramResourceName(program, programInterface, index, bufSize, length, name); } @@ -14506,7 +14521,7 @@ static void REGAL_CALL http_glGetProgramResourceiv(GLuint program, GLenum progra } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetProgramResourceiv(program, programInterface, index, propCount, props, bufSize, length, params); } @@ -14523,7 +14538,7 @@ static void REGAL_CALL http_glProvokingVertex(GLenum mode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProvokingVertex(mode); } @@ -14541,7 +14556,7 @@ static GLenum REGAL_CALL http_glGetGraphicsResetStatusARB(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glGetGraphicsResetStatusARB(); return ret; @@ -14557,7 +14572,7 @@ static void REGAL_CALL http_glGetnColorTableARB(GLenum target, GLenum format, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetnColorTableARB(target, format, type, bufSize, table); } @@ -14572,7 +14587,7 @@ static void REGAL_CALL http_glGetnCompressedTexImageARB(GLenum target, GLint lod } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetnCompressedTexImageARB(target, lod, bufSize, img); } @@ -14587,7 +14602,7 @@ static void REGAL_CALL http_glGetnConvolutionFilterARB(GLenum target, GLenum for } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetnConvolutionFilterARB(target, format, type, bufSize, image); } @@ -14602,7 +14617,7 @@ static void REGAL_CALL http_glGetnHistogramARB(GLenum target, GLboolean reset, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetnHistogramARB(target, reset, format, type, bufSize, values); } @@ -14617,7 +14632,7 @@ static void REGAL_CALL http_glGetnMapdvARB(GLenum target, GLenum query, GLsizei } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetnMapdvARB(target, query, bufSize, v); } @@ -14632,7 +14647,7 @@ static void REGAL_CALL http_glGetnMapfvARB(GLenum target, GLenum query, GLsizei } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetnMapfvARB(target, query, bufSize, v); } @@ -14647,7 +14662,7 @@ static void REGAL_CALL http_glGetnMapivARB(GLenum target, GLenum query, GLsizei } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetnMapivARB(target, query, bufSize, v); } @@ -14662,7 +14677,7 @@ static void REGAL_CALL http_glGetnMinmaxARB(GLenum target, GLboolean reset, GLen } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetnMinmaxARB(target, reset, format, type, bufSize, values); } @@ -14677,7 +14692,7 @@ static void REGAL_CALL http_glGetnPixelMapfvARB(GLenum map, GLsizei bufSize, GLf } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetnPixelMapfvARB(map, bufSize, values); } @@ -14692,7 +14707,7 @@ static void REGAL_CALL http_glGetnPixelMapuivARB(GLenum map, GLsizei bufSize, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetnPixelMapuivARB(map, bufSize, values); } @@ -14707,7 +14722,7 @@ static void REGAL_CALL http_glGetnPixelMapusvARB(GLenum map, GLsizei bufSize, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetnPixelMapusvARB(map, bufSize, values); } @@ -14722,7 +14737,7 @@ static void REGAL_CALL http_glGetnPolygonStippleARB(GLsizei bufSize, GLubyte *pa } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetnPolygonStippleARB(bufSize, pattern); } @@ -14737,7 +14752,7 @@ static void REGAL_CALL http_glGetnSeparableFilterARB(GLenum target, GLenum forma } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetnSeparableFilterARB(target, format, type, rowBufSize, row, columnBufSize, column, span); } @@ -14752,7 +14767,7 @@ static void REGAL_CALL http_glGetnTexImageARB(GLenum target, GLint level, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetnTexImageARB(target, level, format, type, bufSize, img); } @@ -14767,7 +14782,7 @@ static void REGAL_CALL http_glGetnUniformdvARB(GLuint program, GLint location, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetnUniformdvARB(program, location, bufSize, params); } @@ -14782,7 +14797,7 @@ static void REGAL_CALL http_glGetnUniformfvARB(GLuint program, GLint location, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetnUniformfvARB(program, location, bufSize, params); } @@ -14797,7 +14812,7 @@ static void REGAL_CALL http_glGetnUniformivARB(GLuint program, GLint location, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetnUniformivARB(program, location, bufSize, params); } @@ -14812,7 +14827,7 @@ static void REGAL_CALL http_glGetnUniformuivARB(GLuint program, GLint location, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetnUniformuivARB(program, location, bufSize, params); } @@ -14827,7 +14842,7 @@ static void REGAL_CALL http_glReadnPixelsARB(GLint x, GLint y, GLsizei width, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glReadnPixelsARB(x, y, width, height, format, type, bufSize, data); } @@ -14844,7 +14859,7 @@ static void REGAL_CALL http_glMinSampleShading(GLclampf value) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMinSampleShading(value); } @@ -14859,7 +14874,7 @@ static void REGAL_CALL http_glMinSampleShadingARB(GLclampf value) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMinSampleShadingARB(value); } @@ -14876,7 +14891,7 @@ static void REGAL_CALL http_glBindSampler(GLuint unit, GLuint sampler) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindSampler(unit, sampler); } @@ -14891,7 +14906,7 @@ static void REGAL_CALL http_glDeleteSamplers(GLsizei count, const GLuint *sample } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeleteSamplers(count, samplers); } @@ -14906,7 +14921,7 @@ static void REGAL_CALL http_glGenSamplers(GLsizei count, GLuint *samplers) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGenSamplers(count, samplers); } @@ -14921,7 +14936,7 @@ static void REGAL_CALL http_glGetSamplerParameterIiv(GLuint sampler, GLenum pnam } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetSamplerParameterIiv(sampler, pname, params); } @@ -14936,7 +14951,7 @@ static void REGAL_CALL http_glGetSamplerParameterIuiv(GLuint sampler, GLenum pna } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetSamplerParameterIuiv(sampler, pname, params); } @@ -14951,7 +14966,7 @@ static void REGAL_CALL http_glGetSamplerParameterfv(GLuint sampler, GLenum pname } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetSamplerParameterfv(sampler, pname, params); } @@ -14966,7 +14981,7 @@ static void REGAL_CALL http_glGetSamplerParameteriv(GLuint sampler, GLenum pname } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetSamplerParameteriv(sampler, pname, params); } @@ -14982,7 +14997,7 @@ static GLboolean REGAL_CALL http_glIsSampler(GLuint sampler) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsSampler(sampler); return ret; @@ -14998,7 +15013,7 @@ static void REGAL_CALL http_glSamplerParameterIiv(GLuint sampler, GLenum pname, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSamplerParameterIiv(sampler, pname, params); } @@ -15013,7 +15028,7 @@ static void REGAL_CALL http_glSamplerParameterIuiv(GLuint sampler, GLenum pname, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSamplerParameterIuiv(sampler, pname, params); } @@ -15028,7 +15043,7 @@ static void REGAL_CALL http_glSamplerParameterf(GLuint sampler, GLenum pname, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSamplerParameterf(sampler, pname, param); } @@ -15043,7 +15058,7 @@ static void REGAL_CALL http_glSamplerParameterfv(GLuint sampler, GLenum pname, c } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSamplerParameterfv(sampler, pname, params); } @@ -15058,7 +15073,7 @@ static void REGAL_CALL http_glSamplerParameteri(GLuint sampler, GLenum pname, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSamplerParameteri(sampler, pname, param); } @@ -15073,7 +15088,7 @@ static void REGAL_CALL http_glSamplerParameteriv(GLuint sampler, GLenum pname, c } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSamplerParameteriv(sampler, pname, params); } @@ -15090,7 +15105,7 @@ static void REGAL_CALL http_glActiveShaderProgram(GLuint pipeline, GLuint progra } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glActiveShaderProgram(pipeline, program); } @@ -15105,7 +15120,7 @@ static void REGAL_CALL http_glBindProgramPipeline(GLuint pipeline) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindProgramPipeline(pipeline); } @@ -15121,7 +15136,7 @@ static GLuint REGAL_CALL http_glCreateShaderProgramv(GLenum type, GLsizei count, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glCreateShaderProgramv(type, count, strings); return ret; @@ -15137,7 +15152,7 @@ static void REGAL_CALL http_glDeleteProgramPipelines(GLsizei n, const GLuint *pi } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeleteProgramPipelines(n, pipelines); } @@ -15152,7 +15167,7 @@ static void REGAL_CALL http_glGenProgramPipelines(GLsizei n, GLuint *pipelines) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGenProgramPipelines(n, pipelines); } @@ -15167,7 +15182,7 @@ static void REGAL_CALL http_glGetProgramPipelineInfoLog(GLuint pipeline, GLsizei } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetProgramPipelineInfoLog(pipeline, bufSize, length, infoLog); } @@ -15182,7 +15197,7 @@ static void REGAL_CALL http_glGetProgramPipelineiv(GLuint pipeline, GLenum pname } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetProgramPipelineiv(pipeline, pname, params); } @@ -15198,7 +15213,7 @@ static GLboolean REGAL_CALL http_glIsProgramPipeline(GLuint pipeline) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsProgramPipeline(pipeline); return ret; @@ -15214,7 +15229,7 @@ static void REGAL_CALL http_glProgramUniform1d(GLuint program, GLint location, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform1d(program, location, x); } @@ -15229,7 +15244,7 @@ static void REGAL_CALL http_glProgramUniform1dv(GLuint program, GLint location, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform1dv(program, location, count, value); } @@ -15244,7 +15259,7 @@ static void REGAL_CALL http_glProgramUniform1f(GLuint program, GLint location, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform1f(program, location, x); } @@ -15259,7 +15274,7 @@ static void REGAL_CALL http_glProgramUniform1fv(GLuint program, GLint location, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform1fv(program, location, count, value); } @@ -15274,7 +15289,7 @@ static void REGAL_CALL http_glProgramUniform1i(GLuint program, GLint location, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform1i(program, location, x); } @@ -15289,7 +15304,7 @@ static void REGAL_CALL http_glProgramUniform1iv(GLuint program, GLint location, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform1iv(program, location, count, value); } @@ -15304,7 +15319,7 @@ static void REGAL_CALL http_glProgramUniform1ui(GLuint program, GLint location, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform1ui(program, location, v0); } @@ -15319,7 +15334,7 @@ static void REGAL_CALL http_glProgramUniform1uiv(GLuint program, GLint location, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform1uiv(program, location, count, value); } @@ -15334,7 +15349,7 @@ static void REGAL_CALL http_glProgramUniform2d(GLuint program, GLint location, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform2d(program, location, x, y); } @@ -15349,7 +15364,7 @@ static void REGAL_CALL http_glProgramUniform2dv(GLuint program, GLint location, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform2dv(program, location, count, value); } @@ -15364,7 +15379,7 @@ static void REGAL_CALL http_glProgramUniform2f(GLuint program, GLint location, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform2f(program, location, x, y); } @@ -15379,7 +15394,7 @@ static void REGAL_CALL http_glProgramUniform2fv(GLuint program, GLint location, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform2fv(program, location, count, value); } @@ -15394,7 +15409,7 @@ static void REGAL_CALL http_glProgramUniform2i(GLuint program, GLint location, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform2i(program, location, x, y); } @@ -15409,7 +15424,7 @@ static void REGAL_CALL http_glProgramUniform2iv(GLuint program, GLint location, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform2iv(program, location, count, value); } @@ -15424,7 +15439,7 @@ static void REGAL_CALL http_glProgramUniform2ui(GLuint program, GLint location, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform2ui(program, location, x, y); } @@ -15439,7 +15454,7 @@ static void REGAL_CALL http_glProgramUniform2uiv(GLuint program, GLint location, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform2uiv(program, location, count, value); } @@ -15454,7 +15469,7 @@ static void REGAL_CALL http_glProgramUniform3d(GLuint program, GLint location, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform3d(program, location, x, y, z); } @@ -15469,7 +15484,7 @@ static void REGAL_CALL http_glProgramUniform3dv(GLuint program, GLint location, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform3dv(program, location, count, value); } @@ -15484,7 +15499,7 @@ static void REGAL_CALL http_glProgramUniform3f(GLuint program, GLint location, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform3f(program, location, x, y, z); } @@ -15499,7 +15514,7 @@ static void REGAL_CALL http_glProgramUniform3fv(GLuint program, GLint location, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform3fv(program, location, count, value); } @@ -15514,7 +15529,7 @@ static void REGAL_CALL http_glProgramUniform3i(GLuint program, GLint location, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform3i(program, location, x, y, z); } @@ -15529,7 +15544,7 @@ static void REGAL_CALL http_glProgramUniform3iv(GLuint program, GLint location, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform3iv(program, location, count, value); } @@ -15544,7 +15559,7 @@ static void REGAL_CALL http_glProgramUniform3ui(GLuint program, GLint location, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform3ui(program, location, x, y, z); } @@ -15559,7 +15574,7 @@ static void REGAL_CALL http_glProgramUniform3uiv(GLuint program, GLint location, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform3uiv(program, location, count, value); } @@ -15574,7 +15589,7 @@ static void REGAL_CALL http_glProgramUniform4d(GLuint program, GLint location, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform4d(program, location, x, y, z, w); } @@ -15589,7 +15604,7 @@ static void REGAL_CALL http_glProgramUniform4dv(GLuint program, GLint location, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform4dv(program, location, count, value); } @@ -15604,7 +15619,7 @@ static void REGAL_CALL http_glProgramUniform4f(GLuint program, GLint location, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform4f(program, location, x, y, z, w); } @@ -15619,7 +15634,7 @@ static void REGAL_CALL http_glProgramUniform4fv(GLuint program, GLint location, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform4fv(program, location, count, value); } @@ -15634,7 +15649,7 @@ static void REGAL_CALL http_glProgramUniform4i(GLuint program, GLint location, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform4i(program, location, x, y, z, w); } @@ -15649,7 +15664,7 @@ static void REGAL_CALL http_glProgramUniform4iv(GLuint program, GLint location, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform4iv(program, location, count, value); } @@ -15664,7 +15679,7 @@ static void REGAL_CALL http_glProgramUniform4ui(GLuint program, GLint location, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform4ui(program, location, x, y, z, w); } @@ -15679,7 +15694,7 @@ static void REGAL_CALL http_glProgramUniform4uiv(GLuint program, GLint location, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform4uiv(program, location, count, value); } @@ -15694,7 +15709,7 @@ static void REGAL_CALL http_glProgramUniformMatrix2dv(GLuint program, GLint loca } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformMatrix2dv(program, location, count, transpose, value); } @@ -15709,7 +15724,7 @@ static void REGAL_CALL http_glProgramUniformMatrix2fv(GLuint program, GLint loca } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformMatrix2fv(program, location, count, transpose, value); } @@ -15724,7 +15739,7 @@ static void REGAL_CALL http_glProgramUniformMatrix2x3dv(GLuint program, GLint lo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformMatrix2x3dv(program, location, count, transpose, value); } @@ -15739,7 +15754,7 @@ static void REGAL_CALL http_glProgramUniformMatrix2x3fv(GLuint program, GLint lo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformMatrix2x3fv(program, location, count, transpose, value); } @@ -15754,7 +15769,7 @@ static void REGAL_CALL http_glProgramUniformMatrix2x4dv(GLuint program, GLint lo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformMatrix2x4dv(program, location, count, transpose, value); } @@ -15769,7 +15784,7 @@ static void REGAL_CALL http_glProgramUniformMatrix2x4fv(GLuint program, GLint lo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformMatrix2x4fv(program, location, count, transpose, value); } @@ -15784,7 +15799,7 @@ static void REGAL_CALL http_glProgramUniformMatrix3dv(GLuint program, GLint loca } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformMatrix3dv(program, location, count, transpose, value); } @@ -15799,7 +15814,7 @@ static void REGAL_CALL http_glProgramUniformMatrix3fv(GLuint program, GLint loca } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformMatrix3fv(program, location, count, transpose, value); } @@ -15814,7 +15829,7 @@ static void REGAL_CALL http_glProgramUniformMatrix3x2dv(GLuint program, GLint lo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformMatrix3x2dv(program, location, count, transpose, value); } @@ -15829,7 +15844,7 @@ static void REGAL_CALL http_glProgramUniformMatrix3x2fv(GLuint program, GLint lo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformMatrix3x2fv(program, location, count, transpose, value); } @@ -15844,7 +15859,7 @@ static void REGAL_CALL http_glProgramUniformMatrix3x4dv(GLuint program, GLint lo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformMatrix3x4dv(program, location, count, transpose, value); } @@ -15859,7 +15874,7 @@ static void REGAL_CALL http_glProgramUniformMatrix3x4fv(GLuint program, GLint lo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformMatrix3x4fv(program, location, count, transpose, value); } @@ -15874,7 +15889,7 @@ static void REGAL_CALL http_glProgramUniformMatrix4dv(GLuint program, GLint loca } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformMatrix4dv(program, location, count, transpose, value); } @@ -15889,7 +15904,7 @@ static void REGAL_CALL http_glProgramUniformMatrix4fv(GLuint program, GLint loca } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformMatrix4fv(program, location, count, transpose, value); } @@ -15904,7 +15919,7 @@ static void REGAL_CALL http_glProgramUniformMatrix4x2dv(GLuint program, GLint lo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformMatrix4x2dv(program, location, count, transpose, value); } @@ -15919,7 +15934,7 @@ static void REGAL_CALL http_glProgramUniformMatrix4x2fv(GLuint program, GLint lo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformMatrix4x2fv(program, location, count, transpose, value); } @@ -15934,7 +15949,7 @@ static void REGAL_CALL http_glProgramUniformMatrix4x3dv(GLuint program, GLint lo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformMatrix4x3dv(program, location, count, transpose, value); } @@ -15949,7 +15964,7 @@ static void REGAL_CALL http_glProgramUniformMatrix4x3fv(GLuint program, GLint lo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformMatrix4x3fv(program, location, count, transpose, value); } @@ -15964,7 +15979,7 @@ static void REGAL_CALL http_glUseProgramStages(GLuint pipeline, GLbitfield stage } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUseProgramStages(pipeline, stages, program); } @@ -15979,7 +15994,7 @@ static void REGAL_CALL http_glValidateProgramPipeline(GLuint pipeline) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glValidateProgramPipeline(pipeline); } @@ -15996,7 +16011,7 @@ static void REGAL_CALL http_glGetActiveAtomicCounterBufferiv(GLuint program, GLu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetActiveAtomicCounterBufferiv(program, bufferIndex, pname, params); } @@ -16013,7 +16028,7 @@ static void REGAL_CALL http_glBindImageTexture(GLuint unit, GLuint texture, GLin } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindImageTexture(unit, texture, level, layered, layer, access, format); } @@ -16028,7 +16043,7 @@ static void REGAL_CALL http_glMemoryBarrier(GLbitfield barriers) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMemoryBarrier(barriers); } @@ -16045,7 +16060,7 @@ static void REGAL_CALL http_glAttachObjectARB(GLhandleARB containerObj, GLhandle } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glAttachObjectARB(containerObj, obj); } @@ -16060,7 +16075,7 @@ static void REGAL_CALL http_glCompileShaderARB(GLhandleARB shaderObj) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCompileShaderARB(shaderObj); } @@ -16076,7 +16091,7 @@ static GLhandleARB REGAL_CALL http_glCreateProgramObjectARB(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glCreateProgramObjectARB(); if( _context ) { @@ -16096,7 +16111,7 @@ static GLhandleARB REGAL_CALL http_glCreateShaderObjectARB(GLenum shaderType) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glCreateShaderObjectARB(shaderType); if( _context ) { @@ -16115,7 +16130,7 @@ static void REGAL_CALL http_glDeleteObjectARB(GLhandleARB obj) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeleteObjectARB(obj); } @@ -16130,7 +16145,7 @@ static void REGAL_CALL http_glDetachObjectARB(GLhandleARB containerObj, GLhandle } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDetachObjectARB(containerObj, attachedObj); } @@ -16145,7 +16160,7 @@ static void REGAL_CALL http_glGetActiveUniformARB(GLhandleARB programObj, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetActiveUniformARB(programObj, index, maxLength, length, size, type, name); } @@ -16160,7 +16175,7 @@ static void REGAL_CALL http_glGetAttachedObjectsARB(GLhandleARB containerObj, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetAttachedObjectsARB(containerObj, maxCount, count, obj); } @@ -16176,7 +16191,7 @@ static GLhandleARB REGAL_CALL http_glGetHandleARB(GLenum pname) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glGetHandleARB(pname); return ret; @@ -16192,7 +16207,7 @@ static void REGAL_CALL http_glGetInfoLogARB(GLhandleARB obj, GLsizei maxLength, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetInfoLogARB(obj, maxLength, length, infoLog); } @@ -16207,7 +16222,7 @@ static void REGAL_CALL http_glGetObjectParameterfvARB(GLhandleARB obj, GLenum pn } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetObjectParameterfvARB(obj, pname, params); } @@ -16222,7 +16237,7 @@ static void REGAL_CALL http_glGetObjectParameterivARB(GLhandleARB obj, GLenum pn } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetObjectParameterivARB(obj, pname, params); } @@ -16237,7 +16252,7 @@ static void REGAL_CALL http_glGetShaderSourceARB(GLhandleARB obj, GLsizei maxLen } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetShaderSourceARB(obj, maxLength, length, source); } @@ -16253,7 +16268,7 @@ static GLint REGAL_CALL http_glGetUniformLocationARB(GLhandleARB programObj, con } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glGetUniformLocationARB(programObj, name); return ret; @@ -16269,7 +16284,7 @@ static void REGAL_CALL http_glGetUniformfvARB(GLhandleARB programObj, GLint loca } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetUniformfvARB(programObj, location, params); } @@ -16284,7 +16299,7 @@ static void REGAL_CALL http_glGetUniformivARB(GLhandleARB programObj, GLint loca } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetUniformivARB(programObj, location, params); } @@ -16299,7 +16314,7 @@ static void REGAL_CALL http_glLinkProgramARB(GLhandleARB programObj) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glLinkProgramARB(programObj); } @@ -16314,7 +16329,7 @@ static void REGAL_CALL http_glShaderSourceARB(GLhandleARB shaderObj, GLsizei cou } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glShaderSourceARB(shaderObj, count, string, length); } @@ -16329,7 +16344,7 @@ static void REGAL_CALL http_glUniform1fARB(GLint location, GLfloat v0) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform1fARB(location, v0); } @@ -16344,7 +16359,7 @@ static void REGAL_CALL http_glUniform1fvARB(GLint location, GLsizei count, const } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform1fvARB(location, count, value); } @@ -16359,7 +16374,7 @@ static void REGAL_CALL http_glUniform1iARB(GLint location, GLint v0) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform1iARB(location, v0); } @@ -16374,7 +16389,7 @@ static void REGAL_CALL http_glUniform1ivARB(GLint location, GLsizei count, const } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform1ivARB(location, count, value); } @@ -16389,7 +16404,7 @@ static void REGAL_CALL http_glUniform2fARB(GLint location, GLfloat v0, GLfloat v } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform2fARB(location, v0, v1); } @@ -16404,7 +16419,7 @@ static void REGAL_CALL http_glUniform2fvARB(GLint location, GLsizei count, const } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform2fvARB(location, count, value); } @@ -16419,7 +16434,7 @@ static void REGAL_CALL http_glUniform2iARB(GLint location, GLint v0, GLint v1) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform2iARB(location, v0, v1); } @@ -16434,7 +16449,7 @@ static void REGAL_CALL http_glUniform2ivARB(GLint location, GLsizei count, const } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform2ivARB(location, count, value); } @@ -16449,7 +16464,7 @@ static void REGAL_CALL http_glUniform3fARB(GLint location, GLfloat v0, GLfloat v } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform3fARB(location, v0, v1, v2); } @@ -16464,7 +16479,7 @@ static void REGAL_CALL http_glUniform3fvARB(GLint location, GLsizei count, const } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform3fvARB(location, count, value); } @@ -16479,7 +16494,7 @@ static void REGAL_CALL http_glUniform3iARB(GLint location, GLint v0, GLint v1, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform3iARB(location, v0, v1, v2); } @@ -16494,7 +16509,7 @@ static void REGAL_CALL http_glUniform3ivARB(GLint location, GLsizei count, const } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform3ivARB(location, count, value); } @@ -16509,7 +16524,7 @@ static void REGAL_CALL http_glUniform4fARB(GLint location, GLfloat v0, GLfloat v } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform4fARB(location, v0, v1, v2, v3); } @@ -16524,7 +16539,7 @@ static void REGAL_CALL http_glUniform4fvARB(GLint location, GLsizei count, const } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform4fvARB(location, count, value); } @@ -16539,7 +16554,7 @@ static void REGAL_CALL http_glUniform4iARB(GLint location, GLint v0, GLint v1, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform4iARB(location, v0, v1, v2, v3); } @@ -16554,7 +16569,7 @@ static void REGAL_CALL http_glUniform4ivARB(GLint location, GLsizei count, const } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform4ivARB(location, count, value); } @@ -16569,7 +16584,7 @@ static void REGAL_CALL http_glUniformMatrix2fvARB(GLint location, GLsizei count, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniformMatrix2fvARB(location, count, transpose, value); } @@ -16584,7 +16599,7 @@ static void REGAL_CALL http_glUniformMatrix3fvARB(GLint location, GLsizei count, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniformMatrix3fvARB(location, count, transpose, value); } @@ -16599,7 +16614,7 @@ static void REGAL_CALL http_glUniformMatrix4fvARB(GLint location, GLsizei count, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniformMatrix4fvARB(location, count, transpose, value); } @@ -16614,7 +16629,7 @@ static void REGAL_CALL http_glUseProgramObjectARB(GLhandleARB programObj) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUseProgramObjectARB(programObj); } @@ -16629,7 +16644,7 @@ static void REGAL_CALL http_glValidateProgramARB(GLhandleARB programObj) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glValidateProgramARB(programObj); } @@ -16646,7 +16661,7 @@ static void REGAL_CALL http_glShaderStorageBlockBinding(GLuint program, GLuint s } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glShaderStorageBlockBinding(program, storageBlockIndex, storageBlockBinding); } @@ -16663,7 +16678,7 @@ static void REGAL_CALL http_glGetActiveSubroutineName(GLuint program, GLenum sha } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetActiveSubroutineName(program, shaderType, index, bufSize, length, name); } @@ -16678,7 +16693,7 @@ static void REGAL_CALL http_glGetActiveSubroutineUniformName(GLuint program, GLe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetActiveSubroutineUniformName(program, shaderType, index, bufSize, length, name); } @@ -16693,7 +16708,7 @@ static void REGAL_CALL http_glGetActiveSubroutineUniformiv(GLuint program, GLenu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetActiveSubroutineUniformiv(program, shaderType, index, pname, values); } @@ -16708,7 +16723,7 @@ static void REGAL_CALL http_glGetProgramStageiv(GLuint program, GLenum shaderTyp } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetProgramStageiv(program, shaderType, pname, values); } @@ -16723,7 +16738,7 @@ static void REGAL_CALL http_glGetProgramSubroutineParameteruivNV(GLenum target, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetProgramSubroutineParameteruivNV(target, index, params); } @@ -16739,7 +16754,7 @@ static GLuint REGAL_CALL http_glGetSubroutineIndex(GLuint program, GLenum shader } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glGetSubroutineIndex(program, shaderType, name); return ret; @@ -16756,7 +16771,7 @@ static GLint REGAL_CALL http_glGetSubroutineUniformLocation(GLuint program, GLen } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glGetSubroutineUniformLocation(program, shaderType, name); return ret; @@ -16772,7 +16787,7 @@ static void REGAL_CALL http_glGetUniformSubroutineuiv(GLenum shaderType, GLint l } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetUniformSubroutineuiv(shaderType, location, params); } @@ -16787,7 +16802,7 @@ static void REGAL_CALL http_glProgramSubroutineParametersuivNV(GLenum target, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramSubroutineParametersuivNV(target, count, params); } @@ -16802,7 +16817,7 @@ static void REGAL_CALL http_glUniformSubroutinesuiv(GLenum shaderType, GLsizei c } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniformSubroutinesuiv(shaderType, count, indices); } @@ -16819,7 +16834,7 @@ static void REGAL_CALL http_glCompileShaderIncludeARB(GLuint shader, GLsizei cou } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCompileShaderIncludeARB(shader, count, path, length); } @@ -16834,7 +16849,7 @@ static void REGAL_CALL http_glDeleteNamedStringARB(GLint namelen, const GLchar * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeleteNamedStringARB(namelen, name); } @@ -16849,7 +16864,7 @@ static void REGAL_CALL http_glGetNamedStringARB(GLint namelen, const GLchar *nam } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetNamedStringARB(namelen, name, bufSize, stringlen, string); } @@ -16864,7 +16879,7 @@ static void REGAL_CALL http_glGetNamedStringivARB(GLint namelen, const GLchar *n } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetNamedStringivARB(namelen, name, pname, params); } @@ -16880,7 +16895,7 @@ static GLboolean REGAL_CALL http_glIsNamedStringARB(GLint namelen, const GLchar } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsNamedStringARB(namelen, name); return ret; @@ -16896,7 +16911,7 @@ static void REGAL_CALL http_glNamedStringARB(GLenum type, GLint namelen, const G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNamedStringARB(type, namelen, name, stringlen, string); } @@ -16913,7 +16928,7 @@ static void REGAL_CALL http_glTexPageCommitmentARB(GLenum target, GLint level, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexPageCommitmentARB(target, level, xoffset, yoffset, zoffset, width, height, depth, commit); } @@ -16928,7 +16943,7 @@ static void REGAL_CALL http_glTexturePageCommitmentEXT(GLuint texture, GLenum ta } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexturePageCommitmentEXT(texture, target, level, xoffset, yoffset, zoffset, width, height, depth, commit); } @@ -16946,7 +16961,7 @@ static GLenum REGAL_CALL http_glClientWaitSync(GLsync sync, GLbitfield flags, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glClientWaitSync(sync, flags, timeout); return ret; @@ -16962,7 +16977,7 @@ static void REGAL_CALL http_glDeleteSync(GLsync sync) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeleteSync(sync); } @@ -16978,7 +16993,7 @@ static GLsync REGAL_CALL http_glFenceSync(GLenum condition, GLbitfield flags) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glFenceSync(condition, flags); return ret; @@ -16994,7 +17009,7 @@ static void REGAL_CALL http_glGetInteger64v(GLenum pname, GLint64 *params) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetInteger64v(pname, params); } @@ -17009,7 +17024,7 @@ static void REGAL_CALL http_glGetSynciv(GLsync sync, GLenum pname, GLsizei bufSi } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetSynciv(sync, pname, bufSize, length, values); } @@ -17025,7 +17040,7 @@ static GLboolean REGAL_CALL http_glIsSync(GLsync sync) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsSync(sync); return ret; @@ -17041,7 +17056,7 @@ static void REGAL_CALL http_glWaitSync(GLsync sync, GLbitfield flags, GLuint64 t } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWaitSync(sync, flags, timeout); } @@ -17058,7 +17073,7 @@ static void REGAL_CALL http_glPatchParameterfv(GLenum pname, const GLfloat *valu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPatchParameterfv(pname, values); } @@ -17073,7 +17088,7 @@ static void REGAL_CALL http_glPatchParameteri(GLenum pname, GLint value) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPatchParameteri(pname, value); } @@ -17090,7 +17105,7 @@ static void REGAL_CALL http_glTexBufferARB(GLenum target, GLenum internalformat, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexBufferARB(target, internalformat, buffer); } @@ -17107,7 +17122,7 @@ static void REGAL_CALL http_glTexBufferRange(GLenum target, GLenum internalforma } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexBufferRange(target, internalformat, buffer, offset, size); } @@ -17122,7 +17137,7 @@ static void REGAL_CALL http_glTextureBufferRangeEXT(GLuint texture, GLenum targe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTextureBufferRangeEXT(texture, target, internalformat, buffer, offset, size); } @@ -17139,7 +17154,7 @@ static void REGAL_CALL http_glCompressedTexImage1DARB(GLenum target, GLint level } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCompressedTexImage1DARB(target, level, internalformat, width, border, imageSize, data); } @@ -17154,7 +17169,7 @@ static void REGAL_CALL http_glCompressedTexImage2DARB(GLenum target, GLint level } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCompressedTexImage2DARB(target, level, internalformat, width, height, border, imageSize, data); } @@ -17169,7 +17184,7 @@ static void REGAL_CALL http_glCompressedTexImage3DARB(GLenum target, GLint level } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCompressedTexImage3DARB(target, level, internalformat, width, height, depth, border, imageSize, data); } @@ -17184,7 +17199,7 @@ static void REGAL_CALL http_glCompressedTexSubImage1DARB(GLenum target, GLint le } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCompressedTexSubImage1DARB(target, level, xoffset, width, format, imageSize, data); } @@ -17199,7 +17214,7 @@ static void REGAL_CALL http_glCompressedTexSubImage2DARB(GLenum target, GLint le } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCompressedTexSubImage2DARB(target, level, xoffset, yoffset, width, height, format, imageSize, data); } @@ -17214,7 +17229,7 @@ static void REGAL_CALL http_glCompressedTexSubImage3DARB(GLenum target, GLint le } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCompressedTexSubImage3DARB(target, level, xoffset, yoffset, zoffset, width, height, depth, format, imageSize, data); } @@ -17229,7 +17244,7 @@ static void REGAL_CALL http_glGetCompressedTexImageARB(GLenum target, GLint lod, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetCompressedTexImageARB(target, lod, img); } @@ -17246,7 +17261,7 @@ static void REGAL_CALL http_glGetMultisamplefv(GLenum pname, GLuint index, GLflo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetMultisamplefv(pname, index, val); } @@ -17261,7 +17276,7 @@ static void REGAL_CALL http_glSampleMaski(GLuint index, GLbitfield mask) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSampleMaski(index, mask); } @@ -17276,7 +17291,7 @@ static void REGAL_CALL http_glTexImage2DMultisample(GLenum target, GLsizei sampl } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexImage2DMultisample(target, samples, internalformat, width, height, fixedsamplelocations); } @@ -17291,7 +17306,7 @@ static void REGAL_CALL http_glTexImage3DMultisample(GLenum target, GLsizei sampl } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexImage3DMultisample(target, samples, internalformat, width, height, depth, fixedsamplelocations); } @@ -17308,7 +17323,7 @@ static void REGAL_CALL http_glTexStorage1D(GLenum target, GLsizei levels, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexStorage1D(target, levels, internalformat, width); } @@ -17323,7 +17338,7 @@ static void REGAL_CALL http_glTexStorage2D(GLenum target, GLsizei levels, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexStorage2D(target, levels, internalformat, width, height); } @@ -17338,7 +17353,7 @@ static void REGAL_CALL http_glTexStorage3D(GLenum target, GLsizei levels, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexStorage3D(target, levels, internalformat, width, height, depth); } @@ -17353,7 +17368,7 @@ static void REGAL_CALL http_glTextureStorage1DEXT(GLuint texture, GLenum target, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTextureStorage1DEXT(texture, target, levels, internalformat, width); } @@ -17368,7 +17383,7 @@ static void REGAL_CALL http_glTextureStorage2DEXT(GLuint texture, GLenum target, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTextureStorage2DEXT(texture, target, levels, internalformat, width, height); } @@ -17383,7 +17398,7 @@ static void REGAL_CALL http_glTextureStorage3DEXT(GLuint texture, GLenum target, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTextureStorage3DEXT(texture, target, levels, internalformat, width, height, depth); } @@ -17400,7 +17415,7 @@ static void REGAL_CALL http_glTexStorage2DMultisample(GLenum target, GLsizei sam } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexStorage2DMultisample(target, samples, internalformat, width, height, fixedsamplelocations); } @@ -17415,7 +17430,7 @@ static void REGAL_CALL http_glTexStorage3DMultisample(GLenum target, GLsizei sam } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexStorage3DMultisample(target, samples, internalformat, width, height, depth, fixedsamplelocations); } @@ -17430,7 +17445,7 @@ static void REGAL_CALL http_glTextureStorage2DMultisampleEXT(GLuint texture, GLe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTextureStorage2DMultisampleEXT(texture, target, samples, internalformat, width, height, fixedsamplelocations); } @@ -17445,7 +17460,7 @@ static void REGAL_CALL http_glTextureStorage3DMultisampleEXT(GLuint texture, GLe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTextureStorage3DMultisampleEXT(texture, target, samples, internalformat, width, height, depth, fixedsamplelocations); } @@ -17462,7 +17477,7 @@ static void REGAL_CALL http_glTextureView(GLuint texture, GLenum target, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTextureView(texture, target, origtexture, internalformat, minlevel, numlevels, minlayer, numlayers); } @@ -17479,7 +17494,7 @@ static void REGAL_CALL http_glGetQueryObjecti64v(GLuint id, GLenum pname, GLint6 } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetQueryObjecti64v(id, pname, params); } @@ -17494,7 +17509,7 @@ static void REGAL_CALL http_glGetQueryObjectui64v(GLuint id, GLenum pname, GLuin } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetQueryObjectui64v(id, pname, params); } @@ -17509,7 +17524,7 @@ static void REGAL_CALL http_glQueryCounter(GLuint id, GLenum target) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glQueryCounter(id, target); } @@ -17526,7 +17541,7 @@ static void REGAL_CALL http_glBindTransformFeedback(GLenum target, GLuint id) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindTransformFeedback(target, id); } @@ -17541,7 +17556,7 @@ static void REGAL_CALL http_glDeleteTransformFeedbacks(GLsizei n, const GLuint * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeleteTransformFeedbacks(n, ids); } @@ -17556,7 +17571,7 @@ static void REGAL_CALL http_glDrawTransformFeedback(GLenum mode, GLuint name) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawTransformFeedback(mode, name); } @@ -17571,7 +17586,7 @@ static void REGAL_CALL http_glGenTransformFeedbacks(GLsizei n, GLuint *ids) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGenTransformFeedbacks(n, ids); } @@ -17587,7 +17602,7 @@ static GLboolean REGAL_CALL http_glIsTransformFeedback(GLuint id) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsTransformFeedback(id); return ret; @@ -17603,7 +17618,7 @@ static void REGAL_CALL http_glPauseTransformFeedback(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPauseTransformFeedback(); } @@ -17618,7 +17633,7 @@ static void REGAL_CALL http_glResumeTransformFeedback(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glResumeTransformFeedback(); } @@ -17635,7 +17650,7 @@ static void REGAL_CALL http_glBeginQueryIndexed(GLenum target, GLuint index, GLu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBeginQueryIndexed(target, index, id); } @@ -17650,7 +17665,7 @@ static void REGAL_CALL http_glDrawTransformFeedbackStream(GLenum mode, GLuint id } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawTransformFeedbackStream(mode, id, stream); } @@ -17665,7 +17680,7 @@ static void REGAL_CALL http_glEndQueryIndexed(GLenum target, GLuint index) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEndQueryIndexed(target, index); } @@ -17680,7 +17695,7 @@ static void REGAL_CALL http_glGetQueryIndexediv(GLenum target, GLuint index, GLe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetQueryIndexediv(target, index, pname, params); } @@ -17697,7 +17712,7 @@ static void REGAL_CALL http_glDrawTransformFeedbackInstanced(GLenum mode, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawTransformFeedbackInstanced(mode, id, primcount); } @@ -17712,7 +17727,7 @@ static void REGAL_CALL http_glDrawTransformFeedbackStreamInstanced(GLenum mode, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawTransformFeedbackStreamInstanced(mode, id, stream, primcount); } @@ -17729,7 +17744,7 @@ static void REGAL_CALL http_glLoadTransposeMatrixdARB(const GLdouble *m) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glLoadTransposeMatrixdARB(m); } @@ -17744,7 +17759,7 @@ static void REGAL_CALL http_glLoadTransposeMatrixfARB(const GLfloat *m) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glLoadTransposeMatrixfARB(m); } @@ -17759,7 +17774,7 @@ static void REGAL_CALL http_glMultTransposeMatrixdARB(const GLdouble *m) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultTransposeMatrixdARB(m); } @@ -17774,7 +17789,7 @@ static void REGAL_CALL http_glMultTransposeMatrixfARB(const GLfloat *m) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultTransposeMatrixfARB(m); } @@ -17791,7 +17806,7 @@ static void REGAL_CALL http_glBindBufferBase(GLenum target, GLuint index, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindBufferBase(target, index, buffer); } @@ -17806,7 +17821,7 @@ static void REGAL_CALL http_glBindBufferRange(GLenum target, GLuint index, GLuin } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindBufferRange(target, index, buffer, offset, size); } @@ -17821,7 +17836,7 @@ static void REGAL_CALL http_glGetActiveUniformBlockName(GLuint program, GLuint u } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetActiveUniformBlockName(program, uniformBlockIndex, bufSize, length, uniformBlockName); } @@ -17836,7 +17851,7 @@ static void REGAL_CALL http_glGetActiveUniformBlockiv(GLuint program, GLuint uni } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetActiveUniformBlockiv(program, uniformBlockIndex, pname, params); } @@ -17851,7 +17866,7 @@ static void REGAL_CALL http_glGetActiveUniformName(GLuint program, GLuint unifor } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetActiveUniformName(program, uniformIndex, bufSize, length, uniformName); } @@ -17866,7 +17881,7 @@ static void REGAL_CALL http_glGetActiveUniformsiv(GLuint program, GLsizei unifor } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetActiveUniformsiv(program, uniformCount, uniformIndices, pname, params); } @@ -17881,7 +17896,7 @@ static void REGAL_CALL http_glGetIntegeri_v(GLenum target, GLuint index, GLint * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetIntegeri_v(target, index, data); } @@ -17897,7 +17912,7 @@ static GLuint REGAL_CALL http_glGetUniformBlockIndex(GLuint program, const GLcha } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glGetUniformBlockIndex(program, uniformBlockName); return ret; @@ -17913,7 +17928,7 @@ static void REGAL_CALL http_glGetUniformIndices(GLuint program, GLsizei uniformC } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetUniformIndices(program, uniformCount, uniformNames, uniformIndices); } @@ -17928,7 +17943,7 @@ static void REGAL_CALL http_glUniformBlockBinding(GLuint program, GLuint uniform } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniformBlockBinding(program, uniformBlockIndex, uniformBlockBinding); } @@ -17945,7 +17960,7 @@ static void REGAL_CALL http_glBindVertexArray(GLuint array) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindVertexArray(array); } @@ -17960,7 +17975,7 @@ static void REGAL_CALL http_glDeleteVertexArrays(GLsizei n, const GLuint *arrays } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeleteVertexArrays(n, arrays); } @@ -17975,7 +17990,7 @@ static void REGAL_CALL http_glGenVertexArrays(GLsizei n, GLuint *arrays) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGenVertexArrays(n, arrays); } @@ -17991,7 +18006,7 @@ static GLboolean REGAL_CALL http_glIsVertexArray(GLuint array) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsVertexArray(array); return ret; @@ -18009,7 +18024,7 @@ static void REGAL_CALL http_glGetVertexAttribLdv(GLuint index, GLenum pname, GLd } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVertexAttribLdv(index, pname, params); } @@ -18024,7 +18039,7 @@ static void REGAL_CALL http_glVertexAttribL1d(GLuint index, GLdouble x) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribL1d(index, x); } @@ -18039,7 +18054,7 @@ static void REGAL_CALL http_glVertexAttribL1dv(GLuint index, const GLdouble *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribL1dv(index, v); } @@ -18054,7 +18069,7 @@ static void REGAL_CALL http_glVertexAttribL2d(GLuint index, GLdouble x, GLdouble } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribL2d(index, x, y); } @@ -18069,7 +18084,7 @@ static void REGAL_CALL http_glVertexAttribL2dv(GLuint index, const GLdouble *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribL2dv(index, v); } @@ -18084,7 +18099,7 @@ static void REGAL_CALL http_glVertexAttribL3d(GLuint index, GLdouble x, GLdouble } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribL3d(index, x, y, z); } @@ -18099,7 +18114,7 @@ static void REGAL_CALL http_glVertexAttribL3dv(GLuint index, const GLdouble *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribL3dv(index, v); } @@ -18114,7 +18129,7 @@ static void REGAL_CALL http_glVertexAttribL4d(GLuint index, GLdouble x, GLdouble } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribL4d(index, x, y, z, w); } @@ -18129,7 +18144,7 @@ static void REGAL_CALL http_glVertexAttribL4dv(GLuint index, const GLdouble *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribL4dv(index, v); } @@ -18144,7 +18159,7 @@ static void REGAL_CALL http_glVertexAttribLPointer(GLuint index, GLint size, GLe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribLPointer(index, size, type, stride, pointer); } @@ -18161,7 +18176,7 @@ static void REGAL_CALL http_glBindVertexBuffer(GLuint bindingindex, GLuint buffe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindVertexBuffer(bindingindex, buffer, offset, stride); } @@ -18176,7 +18191,7 @@ static void REGAL_CALL http_glVertexArrayBindVertexBufferEXT(GLuint vaobj, GLuin } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexArrayBindVertexBufferEXT(vaobj, bindingindex, buffer, offset, stride); } @@ -18191,7 +18206,7 @@ static void REGAL_CALL http_glVertexArrayVertexAttribBindingEXT(GLuint vaobj, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexArrayVertexAttribBindingEXT(vaobj, attribindex, bindingindex); } @@ -18206,7 +18221,7 @@ static void REGAL_CALL http_glVertexArrayVertexAttribFormatEXT(GLuint vaobj, GLu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexArrayVertexAttribFormatEXT(vaobj, attribindex, size, type, normalized, relativeoffset); } @@ -18221,7 +18236,7 @@ static void REGAL_CALL http_glVertexArrayVertexAttribIFormatEXT(GLuint vaobj, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexArrayVertexAttribIFormatEXT(vaobj, attribindex, size, type, relativeoffset); } @@ -18236,7 +18251,7 @@ static void REGAL_CALL http_glVertexArrayVertexAttribLFormatEXT(GLuint vaobj, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexArrayVertexAttribLFormatEXT(vaobj, attribindex, size, type, relativeoffset); } @@ -18251,7 +18266,7 @@ static void REGAL_CALL http_glVertexArrayVertexBindingDivisorEXT(GLuint vaobj, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexArrayVertexBindingDivisorEXT(vaobj, bindingindex, divisor); } @@ -18266,7 +18281,7 @@ static void REGAL_CALL http_glVertexAttribBinding(GLuint attribindex, GLuint bin } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribBinding(attribindex, bindingindex); } @@ -18281,7 +18296,7 @@ static void REGAL_CALL http_glVertexAttribFormat(GLuint attribindex, GLint size, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribFormat(attribindex, size, type, normalized, relativeoffset); } @@ -18296,7 +18311,7 @@ static void REGAL_CALL http_glVertexAttribIFormat(GLuint attribindex, GLint size } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribIFormat(attribindex, size, type, relativeoffset); } @@ -18311,7 +18326,7 @@ static void REGAL_CALL http_glVertexAttribLFormat(GLuint attribindex, GLint size } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribLFormat(attribindex, size, type, relativeoffset); } @@ -18326,7 +18341,7 @@ static void REGAL_CALL http_glVertexBindingDivisor(GLuint bindingindex, GLuint d } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexBindingDivisor(bindingindex, divisor); } @@ -18343,7 +18358,7 @@ static void REGAL_CALL http_glVertexBlendARB(GLint count) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexBlendARB(count); } @@ -18358,7 +18373,7 @@ static void REGAL_CALL http_glWeightPointerARB(GLint size, GLenum type, GLsizei } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWeightPointerARB(size, type, stride, pointer); } @@ -18373,7 +18388,7 @@ static void REGAL_CALL http_glWeightbvARB(GLint size, const GLbyte *weights) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWeightbvARB(size, weights); } @@ -18388,7 +18403,7 @@ static void REGAL_CALL http_glWeightdvARB(GLint size, const GLdouble *weights) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWeightdvARB(size, weights); } @@ -18403,7 +18418,7 @@ static void REGAL_CALL http_glWeightfvARB(GLint size, const GLfloat *weights) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWeightfvARB(size, weights); } @@ -18418,7 +18433,7 @@ static void REGAL_CALL http_glWeightivARB(GLint size, const GLint *weights) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWeightivARB(size, weights); } @@ -18433,7 +18448,7 @@ static void REGAL_CALL http_glWeightsvARB(GLint size, const GLshort *weights) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWeightsvARB(size, weights); } @@ -18448,7 +18463,7 @@ static void REGAL_CALL http_glWeightubvARB(GLint size, const GLubyte *weights) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWeightubvARB(size, weights); } @@ -18463,7 +18478,7 @@ static void REGAL_CALL http_glWeightuivARB(GLint size, const GLuint *weights) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWeightuivARB(size, weights); } @@ -18478,7 +18493,7 @@ static void REGAL_CALL http_glWeightusvARB(GLint size, const GLushort *weights) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWeightusvARB(size, weights); } @@ -18495,7 +18510,7 @@ static void REGAL_CALL http_glBindBufferARB(GLenum target, GLuint buffer) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindBufferARB(target, buffer); } @@ -18510,7 +18525,7 @@ static void REGAL_CALL http_glBufferDataARB(GLenum target, GLsizeiptrARB size, c } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBufferDataARB(target, size, data, usage); } @@ -18525,7 +18540,7 @@ static void REGAL_CALL http_glBufferSubDataARB(GLenum target, GLintptrARB offset } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBufferSubDataARB(target, offset, size, data); } @@ -18540,7 +18555,7 @@ static void REGAL_CALL http_glDeleteBuffersARB(GLsizei n, const GLuint *buffers) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeleteBuffersARB(n, buffers); } @@ -18555,7 +18570,7 @@ static void REGAL_CALL http_glGenBuffersARB(GLsizei n, GLuint *buffers) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGenBuffersARB(n, buffers); } @@ -18570,7 +18585,7 @@ static void REGAL_CALL http_glGetBufferParameterivARB(GLenum target, GLenum pnam } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetBufferParameterivARB(target, pname, params); } @@ -18585,7 +18600,7 @@ static void REGAL_CALL http_glGetBufferPointervARB(GLenum target, GLenum pname, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetBufferPointervARB(target, pname, params); } @@ -18600,7 +18615,7 @@ static void REGAL_CALL http_glGetBufferSubDataARB(GLenum target, GLintptrARB off } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetBufferSubDataARB(target, offset, size, data); } @@ -18616,7 +18631,7 @@ static GLboolean REGAL_CALL http_glIsBufferARB(GLuint buffer) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsBufferARB(buffer); return ret; @@ -18633,7 +18648,7 @@ static GLvoid *REGAL_CALL http_glMapBufferARB(GLenum target, GLenum access) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glMapBufferARB(target, access); return ret; @@ -18650,7 +18665,7 @@ static GLboolean REGAL_CALL http_glUnmapBufferARB(GLenum target) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glUnmapBufferARB(target); return ret; @@ -18668,7 +18683,7 @@ static void REGAL_CALL http_glBindProgramARB(GLenum target, GLuint program) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindProgramARB(target, program); } @@ -18683,7 +18698,7 @@ static void REGAL_CALL http_glDeleteProgramsARB(GLsizei n, const GLuint *program } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeleteProgramsARB(n, programs); } @@ -18698,7 +18713,7 @@ static void REGAL_CALL http_glDisableVertexAttribArrayARB(GLuint index) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDisableVertexAttribArrayARB(index); } @@ -18713,7 +18728,7 @@ static void REGAL_CALL http_glEnableVertexAttribArrayARB(GLuint index) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEnableVertexAttribArrayARB(index); } @@ -18728,7 +18743,7 @@ static void REGAL_CALL http_glGenProgramsARB(GLsizei n, GLuint *programs) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGenProgramsARB(n, programs); } @@ -18743,7 +18758,7 @@ static void REGAL_CALL http_glGetProgramEnvParameterdvARB(GLenum target, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetProgramEnvParameterdvARB(target, index, params); } @@ -18758,7 +18773,7 @@ static void REGAL_CALL http_glGetProgramEnvParameterfvARB(GLenum target, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetProgramEnvParameterfvARB(target, index, params); } @@ -18773,7 +18788,7 @@ static void REGAL_CALL http_glGetProgramLocalParameterdvARB(GLenum target, GLuin } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetProgramLocalParameterdvARB(target, index, params); } @@ -18788,7 +18803,7 @@ static void REGAL_CALL http_glGetProgramLocalParameterfvARB(GLenum target, GLuin } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetProgramLocalParameterfvARB(target, index, params); } @@ -18803,7 +18818,7 @@ static void REGAL_CALL http_glGetProgramStringARB(GLenum target, GLenum pname, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetProgramStringARB(target, pname, string); } @@ -18818,7 +18833,7 @@ static void REGAL_CALL http_glGetProgramivARB(GLenum target, GLenum pname, GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetProgramivARB(target, pname, params); } @@ -18833,7 +18848,7 @@ static void REGAL_CALL http_glGetVertexAttribPointervARB(GLuint index, GLenum pn } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVertexAttribPointervARB(index, pname, pointer); } @@ -18848,7 +18863,7 @@ static void REGAL_CALL http_glGetVertexAttribdvARB(GLuint index, GLenum pname, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVertexAttribdvARB(index, pname, params); } @@ -18863,7 +18878,7 @@ static void REGAL_CALL http_glGetVertexAttribfvARB(GLuint index, GLenum pname, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVertexAttribfvARB(index, pname, params); } @@ -18878,7 +18893,7 @@ static void REGAL_CALL http_glGetVertexAttribivARB(GLuint index, GLenum pname, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVertexAttribivARB(index, pname, params); } @@ -18894,7 +18909,7 @@ static GLboolean REGAL_CALL http_glIsProgramARB(GLuint program) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsProgramARB(program); return ret; @@ -18910,7 +18925,7 @@ static void REGAL_CALL http_glProgramEnvParameter4dARB(GLenum target, GLuint ind } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramEnvParameter4dARB(target, index, x, y, z, w); } @@ -18925,7 +18940,7 @@ static void REGAL_CALL http_glProgramEnvParameter4dvARB(GLenum target, GLuint in } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramEnvParameter4dvARB(target, index, params); } @@ -18940,7 +18955,7 @@ static void REGAL_CALL http_glProgramEnvParameter4fARB(GLenum target, GLuint ind } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramEnvParameter4fARB(target, index, x, y, z, w); } @@ -18955,7 +18970,7 @@ static void REGAL_CALL http_glProgramEnvParameter4fvARB(GLenum target, GLuint in } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramEnvParameter4fvARB(target, index, params); } @@ -18970,7 +18985,7 @@ static void REGAL_CALL http_glProgramLocalParameter4dARB(GLenum target, GLuint i } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramLocalParameter4dARB(target, index, x, y, z, w); } @@ -18985,7 +19000,7 @@ static void REGAL_CALL http_glProgramLocalParameter4dvARB(GLenum target, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramLocalParameter4dvARB(target, index, params); } @@ -19000,7 +19015,7 @@ static void REGAL_CALL http_glProgramLocalParameter4fARB(GLenum target, GLuint i } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramLocalParameter4fARB(target, index, x, y, z, w); } @@ -19015,7 +19030,7 @@ static void REGAL_CALL http_glProgramLocalParameter4fvARB(GLenum target, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramLocalParameter4fvARB(target, index, params); } @@ -19030,7 +19045,7 @@ static void REGAL_CALL http_glProgramStringARB(GLenum target, GLenum format, GLs } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramStringARB(target, format, len, string); } @@ -19045,7 +19060,7 @@ static void REGAL_CALL http_glVertexAttrib1dARB(GLuint index, GLdouble x) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib1dARB(index, x); } @@ -19060,7 +19075,7 @@ static void REGAL_CALL http_glVertexAttrib1dvARB(GLuint index, const GLdouble *v } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib1dvARB(index, v); } @@ -19075,7 +19090,7 @@ static void REGAL_CALL http_glVertexAttrib1fARB(GLuint index, GLfloat x) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib1fARB(index, x); } @@ -19090,7 +19105,7 @@ static void REGAL_CALL http_glVertexAttrib1fvARB(GLuint index, const GLfloat *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib1fvARB(index, v); } @@ -19105,7 +19120,7 @@ static void REGAL_CALL http_glVertexAttrib1sARB(GLuint index, GLshort x) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib1sARB(index, x); } @@ -19120,7 +19135,7 @@ static void REGAL_CALL http_glVertexAttrib1svARB(GLuint index, const GLshort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib1svARB(index, v); } @@ -19135,7 +19150,7 @@ static void REGAL_CALL http_glVertexAttrib2dARB(GLuint index, GLdouble x, GLdoub } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib2dARB(index, x, y); } @@ -19150,7 +19165,7 @@ static void REGAL_CALL http_glVertexAttrib2dvARB(GLuint index, const GLdouble *v } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib2dvARB(index, v); } @@ -19165,7 +19180,7 @@ static void REGAL_CALL http_glVertexAttrib2fARB(GLuint index, GLfloat x, GLfloat } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib2fARB(index, x, y); } @@ -19180,7 +19195,7 @@ static void REGAL_CALL http_glVertexAttrib2fvARB(GLuint index, const GLfloat *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib2fvARB(index, v); } @@ -19195,7 +19210,7 @@ static void REGAL_CALL http_glVertexAttrib2sARB(GLuint index, GLshort x, GLshort } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib2sARB(index, x, y); } @@ -19210,7 +19225,7 @@ static void REGAL_CALL http_glVertexAttrib2svARB(GLuint index, const GLshort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib2svARB(index, v); } @@ -19225,7 +19240,7 @@ static void REGAL_CALL http_glVertexAttrib3dARB(GLuint index, GLdouble x, GLdoub } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib3dARB(index, x, y, z); } @@ -19240,7 +19255,7 @@ static void REGAL_CALL http_glVertexAttrib3dvARB(GLuint index, const GLdouble *v } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib3dvARB(index, v); } @@ -19255,7 +19270,7 @@ static void REGAL_CALL http_glVertexAttrib3fARB(GLuint index, GLfloat x, GLfloat } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib3fARB(index, x, y, z); } @@ -19270,7 +19285,7 @@ static void REGAL_CALL http_glVertexAttrib3fvARB(GLuint index, const GLfloat *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib3fvARB(index, v); } @@ -19285,7 +19300,7 @@ static void REGAL_CALL http_glVertexAttrib3sARB(GLuint index, GLshort x, GLshort } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib3sARB(index, x, y, z); } @@ -19300,7 +19315,7 @@ static void REGAL_CALL http_glVertexAttrib3svARB(GLuint index, const GLshort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib3svARB(index, v); } @@ -19315,7 +19330,7 @@ static void REGAL_CALL http_glVertexAttrib4NbvARB(GLuint index, const GLbyte *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4NbvARB(index, v); } @@ -19330,7 +19345,7 @@ static void REGAL_CALL http_glVertexAttrib4NivARB(GLuint index, const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4NivARB(index, v); } @@ -19345,7 +19360,7 @@ static void REGAL_CALL http_glVertexAttrib4NsvARB(GLuint index, const GLshort *v } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4NsvARB(index, v); } @@ -19360,7 +19375,7 @@ static void REGAL_CALL http_glVertexAttrib4NubARB(GLuint index, GLubyte x, GLuby } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4NubARB(index, x, y, z, w); } @@ -19375,7 +19390,7 @@ static void REGAL_CALL http_glVertexAttrib4NubvARB(GLuint index, const GLubyte * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4NubvARB(index, v); } @@ -19390,7 +19405,7 @@ static void REGAL_CALL http_glVertexAttrib4NuivARB(GLuint index, const GLuint *v } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4NuivARB(index, v); } @@ -19405,7 +19420,7 @@ static void REGAL_CALL http_glVertexAttrib4NusvARB(GLuint index, const GLushort } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4NusvARB(index, v); } @@ -19420,7 +19435,7 @@ static void REGAL_CALL http_glVertexAttrib4bvARB(GLuint index, const GLbyte *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4bvARB(index, v); } @@ -19435,7 +19450,7 @@ static void REGAL_CALL http_glVertexAttrib4dARB(GLuint index, GLdouble x, GLdoub } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4dARB(index, x, y, z, w); } @@ -19450,7 +19465,7 @@ static void REGAL_CALL http_glVertexAttrib4dvARB(GLuint index, const GLdouble *v } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4dvARB(index, v); } @@ -19465,7 +19480,7 @@ static void REGAL_CALL http_glVertexAttrib4fARB(GLuint index, GLfloat x, GLfloat } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4fARB(index, x, y, z, w); } @@ -19480,7 +19495,7 @@ static void REGAL_CALL http_glVertexAttrib4fvARB(GLuint index, const GLfloat *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4fvARB(index, v); } @@ -19495,7 +19510,7 @@ static void REGAL_CALL http_glVertexAttrib4ivARB(GLuint index, const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4ivARB(index, v); } @@ -19510,7 +19525,7 @@ static void REGAL_CALL http_glVertexAttrib4sARB(GLuint index, GLshort x, GLshort } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4sARB(index, x, y, z, w); } @@ -19525,7 +19540,7 @@ static void REGAL_CALL http_glVertexAttrib4svARB(GLuint index, const GLshort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4svARB(index, v); } @@ -19540,7 +19555,7 @@ static void REGAL_CALL http_glVertexAttrib4ubvARB(GLuint index, const GLubyte *v } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4ubvARB(index, v); } @@ -19555,7 +19570,7 @@ static void REGAL_CALL http_glVertexAttrib4uivARB(GLuint index, const GLuint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4uivARB(index, v); } @@ -19570,7 +19585,7 @@ static void REGAL_CALL http_glVertexAttrib4usvARB(GLuint index, const GLushort * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4usvARB(index, v); } @@ -19585,7 +19600,7 @@ static void REGAL_CALL http_glVertexAttribPointerARB(GLuint index, GLint size, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribPointerARB(index, size, type, normalized, stride, pointer); } @@ -19602,7 +19617,7 @@ static void REGAL_CALL http_glBindAttribLocationARB(GLhandleARB programObj, GLui } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindAttribLocationARB(programObj, index, name); } @@ -19617,7 +19632,7 @@ static void REGAL_CALL http_glGetActiveAttribARB(GLhandleARB programObj, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetActiveAttribARB(programObj, index, maxLength, length, size, type, name); } @@ -19633,7 +19648,7 @@ static GLint REGAL_CALL http_glGetAttribLocationARB(GLhandleARB programObj, cons } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glGetAttribLocationARB(programObj, name); return ret; @@ -19651,7 +19666,7 @@ static void REGAL_CALL http_glColorP3ui(GLenum type, GLuint color) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColorP3ui(type, color); } @@ -19666,7 +19681,7 @@ static void REGAL_CALL http_glColorP3uiv(GLenum type, const GLuint *color) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColorP3uiv(type, color); } @@ -19681,7 +19696,7 @@ static void REGAL_CALL http_glColorP4ui(GLenum type, GLuint color) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColorP4ui(type, color); } @@ -19696,7 +19711,7 @@ static void REGAL_CALL http_glColorP4uiv(GLenum type, const GLuint *color) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColorP4uiv(type, color); } @@ -19711,7 +19726,7 @@ static void REGAL_CALL http_glMultiTexCoordP1ui(GLenum texture, GLenum type, GLu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoordP1ui(texture, type, coords); } @@ -19726,7 +19741,7 @@ static void REGAL_CALL http_glMultiTexCoordP1uiv(GLenum texture, GLenum type, co } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoordP1uiv(texture, type, coords); } @@ -19741,7 +19756,7 @@ static void REGAL_CALL http_glMultiTexCoordP2ui(GLenum texture, GLenum type, GLu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoordP2ui(texture, type, coords); } @@ -19756,7 +19771,7 @@ static void REGAL_CALL http_glMultiTexCoordP2uiv(GLenum texture, GLenum type, co } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoordP2uiv(texture, type, coords); } @@ -19771,7 +19786,7 @@ static void REGAL_CALL http_glMultiTexCoordP3ui(GLenum texture, GLenum type, GLu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoordP3ui(texture, type, coords); } @@ -19786,7 +19801,7 @@ static void REGAL_CALL http_glMultiTexCoordP3uiv(GLenum texture, GLenum type, co } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoordP3uiv(texture, type, coords); } @@ -19801,7 +19816,7 @@ static void REGAL_CALL http_glMultiTexCoordP4ui(GLenum texture, GLenum type, GLu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoordP4ui(texture, type, coords); } @@ -19816,7 +19831,7 @@ static void REGAL_CALL http_glMultiTexCoordP4uiv(GLenum texture, GLenum type, co } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoordP4uiv(texture, type, coords); } @@ -19831,7 +19846,7 @@ static void REGAL_CALL http_glNormalP3ui(GLenum type, GLuint coords) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNormalP3ui(type, coords); } @@ -19846,7 +19861,7 @@ static void REGAL_CALL http_glNormalP3uiv(GLenum type, const GLuint *coords) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNormalP3uiv(type, coords); } @@ -19861,7 +19876,7 @@ static void REGAL_CALL http_glSecondaryColorP3ui(GLenum type, GLuint color) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColorP3ui(type, color); } @@ -19876,7 +19891,7 @@ static void REGAL_CALL http_glSecondaryColorP3uiv(GLenum type, const GLuint *col } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColorP3uiv(type, color); } @@ -19891,7 +19906,7 @@ static void REGAL_CALL http_glTexCoordP1ui(GLenum type, GLuint coords) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoordP1ui(type, coords); } @@ -19906,7 +19921,7 @@ static void REGAL_CALL http_glTexCoordP1uiv(GLenum type, const GLuint *coords) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoordP1uiv(type, coords); } @@ -19921,7 +19936,7 @@ static void REGAL_CALL http_glTexCoordP2ui(GLenum type, GLuint coords) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoordP2ui(type, coords); } @@ -19936,7 +19951,7 @@ static void REGAL_CALL http_glTexCoordP2uiv(GLenum type, const GLuint *coords) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoordP2uiv(type, coords); } @@ -19951,7 +19966,7 @@ static void REGAL_CALL http_glTexCoordP3ui(GLenum type, GLuint coords) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoordP3ui(type, coords); } @@ -19966,7 +19981,7 @@ static void REGAL_CALL http_glTexCoordP3uiv(GLenum type, const GLuint *coords) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoordP3uiv(type, coords); } @@ -19981,7 +19996,7 @@ static void REGAL_CALL http_glTexCoordP4ui(GLenum type, GLuint coords) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoordP4ui(type, coords); } @@ -19996,7 +20011,7 @@ static void REGAL_CALL http_glTexCoordP4uiv(GLenum type, const GLuint *coords) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoordP4uiv(type, coords); } @@ -20011,7 +20026,7 @@ static void REGAL_CALL http_glVertexAttribP1ui(GLuint index, GLenum type, GLbool } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribP1ui(index, type, normalized, value); } @@ -20026,7 +20041,7 @@ static void REGAL_CALL http_glVertexAttribP1uiv(GLuint index, GLenum type, GLboo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribP1uiv(index, type, normalized, value); } @@ -20041,7 +20056,7 @@ static void REGAL_CALL http_glVertexAttribP2ui(GLuint index, GLenum type, GLbool } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribP2ui(index, type, normalized, value); } @@ -20056,7 +20071,7 @@ static void REGAL_CALL http_glVertexAttribP2uiv(GLuint index, GLenum type, GLboo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribP2uiv(index, type, normalized, value); } @@ -20071,7 +20086,7 @@ static void REGAL_CALL http_glVertexAttribP3ui(GLuint index, GLenum type, GLbool } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribP3ui(index, type, normalized, value); } @@ -20086,7 +20101,7 @@ static void REGAL_CALL http_glVertexAttribP3uiv(GLuint index, GLenum type, GLboo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribP3uiv(index, type, normalized, value); } @@ -20101,7 +20116,7 @@ static void REGAL_CALL http_glVertexAttribP4ui(GLuint index, GLenum type, GLbool } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribP4ui(index, type, normalized, value); } @@ -20116,7 +20131,7 @@ static void REGAL_CALL http_glVertexAttribP4uiv(GLuint index, GLenum type, GLboo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribP4uiv(index, type, normalized, value); } @@ -20131,7 +20146,7 @@ static void REGAL_CALL http_glVertexP2ui(GLenum type, GLuint coords) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexP2ui(type, coords); } @@ -20146,7 +20161,7 @@ static void REGAL_CALL http_glVertexP2uiv(GLenum type, const GLuint *coords) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexP2uiv(type, coords); } @@ -20161,7 +20176,7 @@ static void REGAL_CALL http_glVertexP3ui(GLenum type, GLuint coords) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexP3ui(type, coords); } @@ -20176,7 +20191,7 @@ static void REGAL_CALL http_glVertexP3uiv(GLenum type, const GLuint *coords) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexP3uiv(type, coords); } @@ -20191,7 +20206,7 @@ static void REGAL_CALL http_glVertexP4ui(GLenum type, GLuint coords) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexP4ui(type, coords); } @@ -20206,7 +20221,7 @@ static void REGAL_CALL http_glVertexP4uiv(GLenum type, const GLuint *coords) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexP4uiv(type, coords); } @@ -20223,7 +20238,7 @@ static void REGAL_CALL http_glDepthRangeArrayv(GLuint first, GLsizei count, cons } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDepthRangeArrayv(first, count, v); } @@ -20238,7 +20253,7 @@ static void REGAL_CALL http_glDepthRangeIndexed(GLuint index, GLclampd n, GLclam } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDepthRangeIndexed(index, n, f); } @@ -20253,7 +20268,7 @@ static void REGAL_CALL http_glGetDoublei_v(GLenum target, GLuint index, GLdouble } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetDoublei_v(target, index, v); } @@ -20268,7 +20283,7 @@ static void REGAL_CALL http_glGetFloati_v(GLenum target, GLuint index, GLfloat * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetFloati_v(target, index, v); } @@ -20283,7 +20298,7 @@ static void REGAL_CALL http_glScissorArrayv(GLuint first, GLsizei count, const G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glScissorArrayv(first, count, v); } @@ -20298,7 +20313,7 @@ static void REGAL_CALL http_glScissorIndexed(GLuint index, GLint left, GLint bot } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glScissorIndexed(index, left, bottom, width, height); } @@ -20313,7 +20328,7 @@ static void REGAL_CALL http_glScissorIndexedv(GLuint index, const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glScissorIndexedv(index, v); } @@ -20328,7 +20343,7 @@ static void REGAL_CALL http_glViewportArrayv(GLuint first, GLsizei count, const } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glViewportArrayv(first, count, v); } @@ -20343,7 +20358,7 @@ static void REGAL_CALL http_glViewportIndexedf(GLuint index, GLfloat x, GLfloat } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glViewportIndexedf(index, x, y, w, h); } @@ -20358,7 +20373,7 @@ static void REGAL_CALL http_glViewportIndexedfv(GLuint index, const GLfloat *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glViewportIndexedfv(index, v); } @@ -20375,7 +20390,7 @@ static void REGAL_CALL http_glWindowPos2dARB(GLdouble x, GLdouble y) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos2dARB(x, y); } @@ -20390,7 +20405,7 @@ static void REGAL_CALL http_glWindowPos2dvARB(const GLdouble *p) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos2dvARB(p); } @@ -20405,7 +20420,7 @@ static void REGAL_CALL http_glWindowPos2fARB(GLfloat x, GLfloat y) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos2fARB(x, y); } @@ -20420,7 +20435,7 @@ static void REGAL_CALL http_glWindowPos2fvARB(const GLfloat *p) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos2fvARB(p); } @@ -20435,7 +20450,7 @@ static void REGAL_CALL http_glWindowPos2iARB(GLint x, GLint y) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos2iARB(x, y); } @@ -20450,7 +20465,7 @@ static void REGAL_CALL http_glWindowPos2ivARB(const GLint *p) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos2ivARB(p); } @@ -20465,7 +20480,7 @@ static void REGAL_CALL http_glWindowPos2sARB(GLshort x, GLshort y) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos2sARB(x, y); } @@ -20480,7 +20495,7 @@ static void REGAL_CALL http_glWindowPos2svARB(const GLshort *p) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos2svARB(p); } @@ -20495,7 +20510,7 @@ static void REGAL_CALL http_glWindowPos3dARB(GLdouble x, GLdouble y, GLdouble z) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos3dARB(x, y, z); } @@ -20510,7 +20525,7 @@ static void REGAL_CALL http_glWindowPos3dvARB(const GLdouble *p) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos3dvARB(p); } @@ -20525,7 +20540,7 @@ static void REGAL_CALL http_glWindowPos3fARB(GLfloat x, GLfloat y, GLfloat z) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos3fARB(x, y, z); } @@ -20540,7 +20555,7 @@ static void REGAL_CALL http_glWindowPos3fvARB(const GLfloat *p) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos3fvARB(p); } @@ -20555,7 +20570,7 @@ static void REGAL_CALL http_glWindowPos3iARB(GLint x, GLint y, GLint z) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos3iARB(x, y, z); } @@ -20570,7 +20585,7 @@ static void REGAL_CALL http_glWindowPos3ivARB(const GLint *p) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos3ivARB(p); } @@ -20585,7 +20600,7 @@ static void REGAL_CALL http_glWindowPos3sARB(GLshort x, GLshort y, GLshort z) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos3sARB(x, y, z); } @@ -20600,7 +20615,7 @@ static void REGAL_CALL http_glWindowPos3svARB(const GLshort *p) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos3svARB(p); } @@ -20617,7 +20632,7 @@ static void REGAL_CALL http_glDrawBuffersATI(GLsizei n, const GLenum *bufs) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawBuffersATI(n, bufs); } @@ -20634,7 +20649,7 @@ static void REGAL_CALL http_glDrawElementArrayATI(GLenum mode, GLsizei count) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawElementArrayATI(mode, count); } @@ -20649,7 +20664,7 @@ static void REGAL_CALL http_glDrawRangeElementArrayATI(GLenum mode, GLuint start } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawRangeElementArrayATI(mode, start, end, count); } @@ -20664,7 +20679,7 @@ static void REGAL_CALL http_glElementPointerATI(GLenum type, const GLvoid *point } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glElementPointerATI(type, pointer); } @@ -20681,7 +20696,7 @@ static void REGAL_CALL http_glGetTexBumpParameterfvATI(GLenum pname, GLfloat *pa } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetTexBumpParameterfvATI(pname, param); } @@ -20696,7 +20711,7 @@ static void REGAL_CALL http_glGetTexBumpParameterivATI(GLenum pname, GLint *para } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetTexBumpParameterivATI(pname, param); } @@ -20711,7 +20726,7 @@ static void REGAL_CALL http_glTexBumpParameterfvATI(GLenum pname, const GLfloat } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexBumpParameterfvATI(pname, param); } @@ -20726,7 +20741,7 @@ static void REGAL_CALL http_glTexBumpParameterivATI(GLenum pname, const GLint *p } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexBumpParameterivATI(pname, param); } @@ -20743,7 +20758,7 @@ static void REGAL_CALL http_glAlphaFragmentOp1ATI(GLenum op, GLuint dst, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glAlphaFragmentOp1ATI(op, dst, dstMod, arg1, arg1Rep, arg1Mod); } @@ -20758,7 +20773,7 @@ static void REGAL_CALL http_glAlphaFragmentOp2ATI(GLenum op, GLuint dst, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glAlphaFragmentOp2ATI(op, dst, dstMod, arg1, arg1Rep, arg1Mod, arg2, arg2Rep, arg2Mod); } @@ -20773,7 +20788,7 @@ static void REGAL_CALL http_glAlphaFragmentOp3ATI(GLenum op, GLuint dst, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glAlphaFragmentOp3ATI(op, dst, dstMod, arg1, arg1Rep, arg1Mod, arg2, arg2Rep, arg2Mod, arg3, arg3Rep, arg3Mod); } @@ -20788,7 +20803,7 @@ static void REGAL_CALL http_glBeginFragmentShaderATI(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBeginFragmentShaderATI(); } @@ -20803,7 +20818,7 @@ static void REGAL_CALL http_glBindFragmentShaderATI(GLuint id) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindFragmentShaderATI(id); } @@ -20818,7 +20833,7 @@ static void REGAL_CALL http_glColorFragmentOp1ATI(GLenum op, GLuint dst, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColorFragmentOp1ATI(op, dst, dstMask, dstMod, arg1, arg1Rep, arg1Mod); } @@ -20833,7 +20848,7 @@ static void REGAL_CALL http_glColorFragmentOp2ATI(GLenum op, GLuint dst, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColorFragmentOp2ATI(op, dst, dstMask, dstMod, arg1, arg1Rep, arg1Mod, arg2, arg2Rep, arg2Mod); } @@ -20848,7 +20863,7 @@ static void REGAL_CALL http_glColorFragmentOp3ATI(GLenum op, GLuint dst, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColorFragmentOp3ATI(op, dst, dstMask, dstMod, arg1, arg1Rep, arg1Mod, arg2, arg2Rep, arg2Mod, arg3, arg3Rep, arg3Mod); } @@ -20863,7 +20878,7 @@ static void REGAL_CALL http_glDeleteFragmentShaderATI(GLuint id) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeleteFragmentShaderATI(id); } @@ -20878,7 +20893,7 @@ static void REGAL_CALL http_glEndFragmentShaderATI(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEndFragmentShaderATI(); } @@ -20894,7 +20909,7 @@ static GLuint REGAL_CALL http_glGenFragmentShadersATI(GLuint range) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glGenFragmentShadersATI(range); return ret; @@ -20910,7 +20925,7 @@ static void REGAL_CALL http_glPassTexCoordATI(GLuint dst, GLuint coord, GLenum s } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPassTexCoordATI(dst, coord, swizzle); } @@ -20925,7 +20940,7 @@ static void REGAL_CALL http_glSampleMapATI(GLuint dst, GLuint interp, GLenum swi } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSampleMapATI(dst, interp, swizzle); } @@ -20940,7 +20955,7 @@ static void REGAL_CALL http_glSetFragmentShaderConstantATI(GLuint dst, const GLf } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSetFragmentShaderConstantATI(dst, value); } @@ -20958,7 +20973,7 @@ static GLvoid *REGAL_CALL http_glMapObjectBufferATI(GLuint buffer) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glMapObjectBufferATI(buffer); return ret; @@ -20974,7 +20989,7 @@ static void REGAL_CALL http_glUnmapObjectBufferATI(GLuint buffer) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUnmapObjectBufferATI(buffer); } @@ -20991,7 +21006,7 @@ static void REGAL_CALL http_glPNTrianglesfATI(GLenum pname, GLfloat param) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPNTrianglesfATI(pname, param); } @@ -21006,7 +21021,7 @@ static void REGAL_CALL http_glPNTrianglesiATI(GLenum pname, GLint param) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPNTrianglesiATI(pname, param); } @@ -21023,7 +21038,7 @@ static void REGAL_CALL http_glStencilFuncSeparateATI(GLenum frontfunc, GLenum ba } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glStencilFuncSeparateATI(frontfunc, backfunc, ref, mask); } @@ -21038,7 +21053,7 @@ static void REGAL_CALL http_glStencilOpSeparateATI(GLenum face, GLenum sfail, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glStencilOpSeparateATI(face, sfail, dpfail, dppass); } @@ -21055,7 +21070,7 @@ static void REGAL_CALL http_glArrayObjectATI(GLenum array, GLint size, GLenum ty } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glArrayObjectATI(array, size, type, stride, buffer, offset); } @@ -21070,7 +21085,7 @@ static void REGAL_CALL http_glFreeObjectBufferATI(GLuint buffer) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFreeObjectBufferATI(buffer); } @@ -21085,7 +21100,7 @@ static void REGAL_CALL http_glGetArrayObjectfvATI(GLenum array, GLenum pname, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetArrayObjectfvATI(array, pname, params); } @@ -21100,7 +21115,7 @@ static void REGAL_CALL http_glGetArrayObjectivATI(GLenum array, GLenum pname, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetArrayObjectivATI(array, pname, params); } @@ -21115,7 +21130,7 @@ static void REGAL_CALL http_glGetObjectBufferfvATI(GLuint buffer, GLenum pname, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetObjectBufferfvATI(buffer, pname, params); } @@ -21130,7 +21145,7 @@ static void REGAL_CALL http_glGetObjectBufferivATI(GLuint buffer, GLenum pname, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetObjectBufferivATI(buffer, pname, params); } @@ -21145,7 +21160,7 @@ static void REGAL_CALL http_glGetVariantArrayObjectfvATI(GLuint id, GLenum pname } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVariantArrayObjectfvATI(id, pname, params); } @@ -21160,7 +21175,7 @@ static void REGAL_CALL http_glGetVariantArrayObjectivATI(GLuint id, GLenum pname } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVariantArrayObjectivATI(id, pname, params); } @@ -21176,7 +21191,7 @@ static GLboolean REGAL_CALL http_glIsObjectBufferATI(GLuint buffer) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsObjectBufferATI(buffer); return ret; @@ -21193,7 +21208,7 @@ static GLuint REGAL_CALL http_glNewObjectBufferATI(GLsizei size, const GLvoid *p } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glNewObjectBufferATI(size, pointer, usage); return ret; @@ -21209,7 +21224,7 @@ static void REGAL_CALL http_glUpdateObjectBufferATI(GLuint buffer, GLuint offset } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUpdateObjectBufferATI(buffer, offset, size, pointer, preserve); } @@ -21224,7 +21239,7 @@ static void REGAL_CALL http_glVariantArrayObjectATI(GLuint id, GLenum type, GLsi } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVariantArrayObjectATI(id, type, stride, buffer, offset); } @@ -21241,7 +21256,7 @@ static void REGAL_CALL http_glGetVertexAttribArrayObjectfvATI(GLuint index, GLen } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVertexAttribArrayObjectfvATI(index, pname, params); } @@ -21256,7 +21271,7 @@ static void REGAL_CALL http_glGetVertexAttribArrayObjectivATI(GLuint index, GLen } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVertexAttribArrayObjectivATI(index, pname, params); } @@ -21271,7 +21286,7 @@ static void REGAL_CALL http_glVertexAttribArrayObjectATI(GLuint index, GLint siz } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribArrayObjectATI(index, size, type, normalized, stride, buffer, offset); } @@ -21288,7 +21303,7 @@ static void REGAL_CALL http_glClientActiveVertexStreamATI(GLenum stream) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glClientActiveVertexStreamATI(stream); } @@ -21303,7 +21318,7 @@ static void REGAL_CALL http_glNormalStream3bATI(GLenum stream, GLbyte x, GLbyte } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNormalStream3bATI(stream, x, y, z); } @@ -21318,7 +21333,7 @@ static void REGAL_CALL http_glNormalStream3bvATI(GLenum stream, const GLbyte *co } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNormalStream3bvATI(stream, coords); } @@ -21333,7 +21348,7 @@ static void REGAL_CALL http_glNormalStream3dATI(GLenum stream, GLdouble x, GLdou } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNormalStream3dATI(stream, x, y, z); } @@ -21348,7 +21363,7 @@ static void REGAL_CALL http_glNormalStream3dvATI(GLenum stream, const GLdouble * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNormalStream3dvATI(stream, coords); } @@ -21363,7 +21378,7 @@ static void REGAL_CALL http_glNormalStream3fATI(GLenum stream, GLfloat x, GLfloa } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNormalStream3fATI(stream, x, y, z); } @@ -21378,7 +21393,7 @@ static void REGAL_CALL http_glNormalStream3fvATI(GLenum stream, const GLfloat *c } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNormalStream3fvATI(stream, coords); } @@ -21393,7 +21408,7 @@ static void REGAL_CALL http_glNormalStream3iATI(GLenum stream, GLint x, GLint y, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNormalStream3iATI(stream, x, y, z); } @@ -21408,7 +21423,7 @@ static void REGAL_CALL http_glNormalStream3ivATI(GLenum stream, const GLint *coo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNormalStream3ivATI(stream, coords); } @@ -21423,7 +21438,7 @@ static void REGAL_CALL http_glNormalStream3sATI(GLenum stream, GLshort x, GLshor } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNormalStream3sATI(stream, x, y, z); } @@ -21438,7 +21453,7 @@ static void REGAL_CALL http_glNormalStream3svATI(GLenum stream, const GLshort *c } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNormalStream3svATI(stream, coords); } @@ -21453,7 +21468,7 @@ static void REGAL_CALL http_glVertexBlendEnvfATI(GLenum pname, GLfloat param) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexBlendEnvfATI(pname, param); } @@ -21468,7 +21483,7 @@ static void REGAL_CALL http_glVertexBlendEnviATI(GLenum pname, GLint param) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexBlendEnviATI(pname, param); } @@ -21483,7 +21498,7 @@ static void REGAL_CALL http_glVertexStream1dATI(GLenum stream, GLdouble x) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexStream1dATI(stream, x); } @@ -21498,7 +21513,7 @@ static void REGAL_CALL http_glVertexStream1dvATI(GLenum stream, const GLdouble * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexStream1dvATI(stream, coords); } @@ -21513,7 +21528,7 @@ static void REGAL_CALL http_glVertexStream1fATI(GLenum stream, GLfloat x) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexStream1fATI(stream, x); } @@ -21528,7 +21543,7 @@ static void REGAL_CALL http_glVertexStream1fvATI(GLenum stream, const GLfloat *c } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexStream1fvATI(stream, coords); } @@ -21543,7 +21558,7 @@ static void REGAL_CALL http_glVertexStream1iATI(GLenum stream, GLint x) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexStream1iATI(stream, x); } @@ -21558,7 +21573,7 @@ static void REGAL_CALL http_glVertexStream1ivATI(GLenum stream, const GLint *coo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexStream1ivATI(stream, coords); } @@ -21573,7 +21588,7 @@ static void REGAL_CALL http_glVertexStream1sATI(GLenum stream, GLshort x) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexStream1sATI(stream, x); } @@ -21588,7 +21603,7 @@ static void REGAL_CALL http_glVertexStream1svATI(GLenum stream, const GLshort *c } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexStream1svATI(stream, coords); } @@ -21603,7 +21618,7 @@ static void REGAL_CALL http_glVertexStream2dATI(GLenum stream, GLdouble x, GLdou } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexStream2dATI(stream, x, y); } @@ -21618,7 +21633,7 @@ static void REGAL_CALL http_glVertexStream2dvATI(GLenum stream, const GLdouble * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexStream2dvATI(stream, coords); } @@ -21633,7 +21648,7 @@ static void REGAL_CALL http_glVertexStream2fATI(GLenum stream, GLfloat x, GLfloa } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexStream2fATI(stream, x, y); } @@ -21648,7 +21663,7 @@ static void REGAL_CALL http_glVertexStream2fvATI(GLenum stream, const GLfloat *c } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexStream2fvATI(stream, coords); } @@ -21663,7 +21678,7 @@ static void REGAL_CALL http_glVertexStream2iATI(GLenum stream, GLint x, GLint y) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexStream2iATI(stream, x, y); } @@ -21678,7 +21693,7 @@ static void REGAL_CALL http_glVertexStream2ivATI(GLenum stream, const GLint *coo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexStream2ivATI(stream, coords); } @@ -21693,7 +21708,7 @@ static void REGAL_CALL http_glVertexStream2sATI(GLenum stream, GLshort x, GLshor } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexStream2sATI(stream, x, y); } @@ -21708,7 +21723,7 @@ static void REGAL_CALL http_glVertexStream2svATI(GLenum stream, const GLshort *c } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexStream2svATI(stream, coords); } @@ -21723,7 +21738,7 @@ static void REGAL_CALL http_glVertexStream3dATI(GLenum stream, GLdouble x, GLdou } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexStream3dATI(stream, x, y, z); } @@ -21738,7 +21753,7 @@ static void REGAL_CALL http_glVertexStream3dvATI(GLenum stream, const GLdouble * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexStream3dvATI(stream, coords); } @@ -21753,7 +21768,7 @@ static void REGAL_CALL http_glVertexStream3fATI(GLenum stream, GLfloat x, GLfloa } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexStream3fATI(stream, x, y, z); } @@ -21768,7 +21783,7 @@ static void REGAL_CALL http_glVertexStream3fvATI(GLenum stream, const GLfloat *c } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexStream3fvATI(stream, coords); } @@ -21783,7 +21798,7 @@ static void REGAL_CALL http_glVertexStream3iATI(GLenum stream, GLint x, GLint y, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexStream3iATI(stream, x, y, z); } @@ -21798,7 +21813,7 @@ static void REGAL_CALL http_glVertexStream3ivATI(GLenum stream, const GLint *coo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexStream3ivATI(stream, coords); } @@ -21813,7 +21828,7 @@ static void REGAL_CALL http_glVertexStream3sATI(GLenum stream, GLshort x, GLshor } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexStream3sATI(stream, x, y, z); } @@ -21828,7 +21843,7 @@ static void REGAL_CALL http_glVertexStream3svATI(GLenum stream, const GLshort *c } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexStream3svATI(stream, coords); } @@ -21843,7 +21858,7 @@ static void REGAL_CALL http_glVertexStream4dATI(GLenum stream, GLdouble x, GLdou } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexStream4dATI(stream, x, y, z, w); } @@ -21858,7 +21873,7 @@ static void REGAL_CALL http_glVertexStream4dvATI(GLenum stream, const GLdouble * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexStream4dvATI(stream, coords); } @@ -21873,7 +21888,7 @@ static void REGAL_CALL http_glVertexStream4fATI(GLenum stream, GLfloat x, GLfloa } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexStream4fATI(stream, x, y, z, w); } @@ -21888,7 +21903,7 @@ static void REGAL_CALL http_glVertexStream4fvATI(GLenum stream, const GLfloat *c } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexStream4fvATI(stream, coords); } @@ -21903,7 +21918,7 @@ static void REGAL_CALL http_glVertexStream4iATI(GLenum stream, GLint x, GLint y, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexStream4iATI(stream, x, y, z, w); } @@ -21918,7 +21933,7 @@ static void REGAL_CALL http_glVertexStream4ivATI(GLenum stream, const GLint *coo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexStream4ivATI(stream, coords); } @@ -21933,7 +21948,7 @@ static void REGAL_CALL http_glVertexStream4sATI(GLenum stream, GLshort x, GLshor } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexStream4sATI(stream, x, y, z, w); } @@ -21948,7 +21963,7 @@ static void REGAL_CALL http_glVertexStream4svATI(GLenum stream, const GLshort *c } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexStream4svATI(stream, coords); } @@ -21966,7 +21981,7 @@ static GLint REGAL_CALL http_glGetUniformBufferSizeEXT(GLuint program, GLint loc } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glGetUniformBufferSizeEXT(program, location); return ret; @@ -21983,7 +21998,7 @@ static GLintptr REGAL_CALL http_glGetUniformOffsetEXT(GLuint program, GLint loca } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glGetUniformOffsetEXT(program, location); return ret; @@ -21999,7 +22014,7 @@ static void REGAL_CALL http_glUniformBufferEXT(GLuint program, GLint location, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniformBufferEXT(program, location, buffer); } @@ -22016,7 +22031,7 @@ static void REGAL_CALL http_glBlendColorEXT(GLclampf red, GLclampf green, GLclam } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBlendColorEXT(red, green, blue, alpha); } @@ -22033,7 +22048,7 @@ static void REGAL_CALL http_glBlendEquationSeparateEXT(GLenum modeRGB, GLenum mo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBlendEquationSeparateEXT(modeRGB, modeAlpha); } @@ -22050,7 +22065,7 @@ static void REGAL_CALL http_glBlendFuncSeparateEXT(GLenum sfactorRGB, GLenum dfa } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBlendFuncSeparateEXT(sfactorRGB, dfactorRGB, sfactorAlpha, dfactorAlpha); } @@ -22067,7 +22082,7 @@ static void REGAL_CALL http_glBlendEquationEXT(GLenum mode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBlendEquationEXT(mode); } @@ -22084,7 +22099,7 @@ static void REGAL_CALL http_glColorSubTableEXT(GLenum target, GLsizei start, GLs } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColorSubTableEXT(target, start, count, format, type, table); } @@ -22099,7 +22114,7 @@ static void REGAL_CALL http_glCopyColorSubTableEXT(GLenum target, GLsizei start, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCopyColorSubTableEXT(target, start, x, y, width); } @@ -22116,7 +22131,7 @@ static void REGAL_CALL http_glLockArraysEXT(GLint first, GLsizei count) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glLockArraysEXT(first, count); } @@ -22131,7 +22146,7 @@ static void REGAL_CALL http_glUnlockArraysEXT(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUnlockArraysEXT(); } @@ -22148,7 +22163,7 @@ static void REGAL_CALL http_glConvolutionFilter1DEXT(GLenum target, GLenum inter } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glConvolutionFilter1DEXT(target, internalformat, width, format, type, image); } @@ -22163,7 +22178,7 @@ static void REGAL_CALL http_glConvolutionFilter2DEXT(GLenum target, GLenum inter } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glConvolutionFilter2DEXT(target, internalformat, width, height, format, type, image); } @@ -22178,7 +22193,7 @@ static void REGAL_CALL http_glConvolutionParameterfEXT(GLenum target, GLenum pna } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glConvolutionParameterfEXT(target, pname, param); } @@ -22193,7 +22208,7 @@ static void REGAL_CALL http_glConvolutionParameterfvEXT(GLenum target, GLenum pn } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glConvolutionParameterfvEXT(target, pname, params); } @@ -22208,7 +22223,7 @@ static void REGAL_CALL http_glConvolutionParameteriEXT(GLenum target, GLenum pna } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glConvolutionParameteriEXT(target, pname, param); } @@ -22223,7 +22238,7 @@ static void REGAL_CALL http_glConvolutionParameterivEXT(GLenum target, GLenum pn } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glConvolutionParameterivEXT(target, pname, params); } @@ -22238,7 +22253,7 @@ static void REGAL_CALL http_glCopyConvolutionFilter1DEXT(GLenum target, GLenum i } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCopyConvolutionFilter1DEXT(target, internalformat, x, y, width); } @@ -22253,7 +22268,7 @@ static void REGAL_CALL http_glCopyConvolutionFilter2DEXT(GLenum target, GLenum i } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCopyConvolutionFilter2DEXT(target, internalformat, x, y, width, height); } @@ -22268,7 +22283,7 @@ static void REGAL_CALL http_glGetConvolutionFilterEXT(GLenum target, GLenum form } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetConvolutionFilterEXT(target, format, type, image); } @@ -22283,7 +22298,7 @@ static void REGAL_CALL http_glGetConvolutionParameterfvEXT(GLenum target, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetConvolutionParameterfvEXT(target, pname, params); } @@ -22298,7 +22313,7 @@ static void REGAL_CALL http_glGetConvolutionParameterivEXT(GLenum target, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetConvolutionParameterivEXT(target, pname, params); } @@ -22313,7 +22328,7 @@ static void REGAL_CALL http_glGetSeparableFilterEXT(GLenum target, GLenum format } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetSeparableFilterEXT(target, format, type, row, column, span); } @@ -22328,7 +22343,7 @@ static void REGAL_CALL http_glSeparableFilter2DEXT(GLenum target, GLenum interna } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSeparableFilter2DEXT(target, internalformat, width, height, format, type, row, column); } @@ -22345,7 +22360,7 @@ static void REGAL_CALL http_glBinormal3bEXT(GLbyte bx, GLbyte by, GLbyte bz) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBinormal3bEXT(bx, by, bz); } @@ -22360,7 +22375,7 @@ static void REGAL_CALL http_glBinormal3bvEXT(const GLbyte *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBinormal3bvEXT(v); } @@ -22375,7 +22390,7 @@ static void REGAL_CALL http_glBinormal3dEXT(GLdouble bx, GLdouble by, GLdouble b } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBinormal3dEXT(bx, by, bz); } @@ -22390,7 +22405,7 @@ static void REGAL_CALL http_glBinormal3dvEXT(const GLdouble *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBinormal3dvEXT(v); } @@ -22405,7 +22420,7 @@ static void REGAL_CALL http_glBinormal3fEXT(GLfloat bx, GLfloat by, GLfloat bz) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBinormal3fEXT(bx, by, bz); } @@ -22420,7 +22435,7 @@ static void REGAL_CALL http_glBinormal3fvEXT(const GLfloat *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBinormal3fvEXT(v); } @@ -22435,7 +22450,7 @@ static void REGAL_CALL http_glBinormal3iEXT(GLint bx, GLint by, GLint bz) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBinormal3iEXT(bx, by, bz); } @@ -22450,7 +22465,7 @@ static void REGAL_CALL http_glBinormal3ivEXT(const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBinormal3ivEXT(v); } @@ -22465,7 +22480,7 @@ static void REGAL_CALL http_glBinormal3sEXT(GLshort bx, GLshort by, GLshort bz) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBinormal3sEXT(bx, by, bz); } @@ -22480,7 +22495,7 @@ static void REGAL_CALL http_glBinormal3svEXT(const GLshort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBinormal3svEXT(v); } @@ -22495,7 +22510,7 @@ static void REGAL_CALL http_glBinormalPointerEXT(GLenum type, GLsizei stride, co } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBinormalPointerEXT(type, stride, pointer); } @@ -22510,7 +22525,7 @@ static void REGAL_CALL http_glTangent3bEXT(GLbyte tx, GLbyte ty, GLbyte tz) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTangent3bEXT(tx, ty, tz); } @@ -22525,7 +22540,7 @@ static void REGAL_CALL http_glTangent3bvEXT(const GLbyte *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTangent3bvEXT(v); } @@ -22540,7 +22555,7 @@ static void REGAL_CALL http_glTangent3dEXT(GLdouble tx, GLdouble ty, GLdouble tz } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTangent3dEXT(tx, ty, tz); } @@ -22555,7 +22570,7 @@ static void REGAL_CALL http_glTangent3dvEXT(const GLdouble *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTangent3dvEXT(v); } @@ -22570,7 +22585,7 @@ static void REGAL_CALL http_glTangent3fEXT(GLfloat tx, GLfloat ty, GLfloat tz) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTangent3fEXT(tx, ty, tz); } @@ -22585,7 +22600,7 @@ static void REGAL_CALL http_glTangent3fvEXT(const GLfloat *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTangent3fvEXT(v); } @@ -22600,7 +22615,7 @@ static void REGAL_CALL http_glTangent3iEXT(GLint tx, GLint ty, GLint tz) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTangent3iEXT(tx, ty, tz); } @@ -22615,7 +22630,7 @@ static void REGAL_CALL http_glTangent3ivEXT(const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTangent3ivEXT(v); } @@ -22630,7 +22645,7 @@ static void REGAL_CALL http_glTangent3sEXT(GLshort tx, GLshort ty, GLshort tz) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTangent3sEXT(tx, ty, tz); } @@ -22645,7 +22660,7 @@ static void REGAL_CALL http_glTangent3svEXT(const GLshort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTangent3svEXT(v); } @@ -22660,7 +22675,7 @@ static void REGAL_CALL http_glTangentPointerEXT(GLenum type, GLsizei stride, con } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTangentPointerEXT(type, stride, pointer); } @@ -22677,7 +22692,7 @@ static void REGAL_CALL http_glCopyTexImage1DEXT(GLenum target, GLint level, GLen } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCopyTexImage1DEXT(target, level, internalformat, x, y, width, border); } @@ -22692,7 +22707,7 @@ static void REGAL_CALL http_glCopyTexImage2DEXT(GLenum target, GLint level, GLen } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCopyTexImage2DEXT(target, level, internalformat, x, y, width, height, border); } @@ -22707,7 +22722,7 @@ static void REGAL_CALL http_glCopyTexSubImage1DEXT(GLenum target, GLint level, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCopyTexSubImage1DEXT(target, level, xoffset, x, y, width); } @@ -22722,7 +22737,7 @@ static void REGAL_CALL http_glCopyTexSubImage2DEXT(GLenum target, GLint level, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCopyTexSubImage2DEXT(target, level, xoffset, yoffset, x, y, width, height); } @@ -22737,7 +22752,7 @@ static void REGAL_CALL http_glCopyTexSubImage3DEXT(GLenum target, GLint level, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCopyTexSubImage3DEXT(target, level, xoffset, yoffset, zoffset, x, y, width, height); } @@ -22754,7 +22769,7 @@ static void REGAL_CALL http_glCullParameterdvEXT(GLenum pname, GLdouble *params) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCullParameterdvEXT(pname, params); } @@ -22769,7 +22784,7 @@ static void REGAL_CALL http_glCullParameterfvEXT(GLenum pname, GLfloat *params) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCullParameterfvEXT(pname, params); } @@ -22786,7 +22801,7 @@ static void REGAL_CALL http_glGetObjectLabelEXT(GLenum type, GLuint object, GLsi } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetObjectLabelEXT(type, object, bufSize, length, label); } @@ -22801,7 +22816,7 @@ static void REGAL_CALL http_glLabelObjectEXT(GLenum type, GLuint object, GLsizei } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glLabelObjectEXT(type, object, length, label); } @@ -22818,7 +22833,7 @@ static void REGAL_CALL http_glInsertEventMarkerEXT(GLsizei length, const GLchar } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glInsertEventMarkerEXT(length, marker); } @@ -22833,7 +22848,7 @@ static void REGAL_CALL http_glPopGroupMarkerEXT(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPopGroupMarkerEXT(); if( _context ) { @@ -22863,7 +22878,7 @@ static void REGAL_CALL http_glPushGroupMarkerEXT(GLsizei length, const GLchar *m } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPushGroupMarkerEXT(length, marker); if( _context ) { @@ -22883,7 +22898,7 @@ static void REGAL_CALL http_glDepthBoundsEXT(GLclampd zmin, GLclampd zmax) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDepthBoundsEXT(zmin, zmax); } @@ -22908,7 +22923,7 @@ static void REGAL_CALL http_glBindMultiTextureEXT(GLenum texunit, GLenum target, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindMultiTextureEXT(texunit, target, texture); } @@ -22924,7 +22939,7 @@ static GLenum REGAL_CALL http_glCheckNamedFramebufferStatusEXT(GLuint framebuffe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glCheckNamedFramebufferStatusEXT(framebuffer, target); return ret; @@ -22940,7 +22955,7 @@ static void REGAL_CALL http_glClientAttribDefaultEXT(GLbitfield mask) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glClientAttribDefaultEXT(mask); } @@ -22955,7 +22970,7 @@ static void REGAL_CALL http_glCompressedMultiTexImage1DEXT(GLenum texunit, GLenu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCompressedMultiTexImage1DEXT(texunit, target, level, internalformat, width, border, imageSize, data); } @@ -22970,7 +22985,7 @@ static void REGAL_CALL http_glCompressedMultiTexImage2DEXT(GLenum texunit, GLenu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCompressedMultiTexImage2DEXT(texunit, target, level, internalformat, width, height, border, imageSize, bits); } @@ -22985,7 +23000,7 @@ static void REGAL_CALL http_glCompressedMultiTexImage3DEXT(GLenum texunit, GLenu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCompressedMultiTexImage3DEXT(texunit, target, level, internalformat, width, height, depth, border, imageSize, bits); } @@ -23000,7 +23015,7 @@ static void REGAL_CALL http_glCompressedMultiTexSubImage1DEXT(GLenum texunit, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCompressedMultiTexSubImage1DEXT(texunit, target, level, xoffset, width, format, imageSize, data); } @@ -23015,7 +23030,7 @@ static void REGAL_CALL http_glCompressedMultiTexSubImage2DEXT(GLenum texunit, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCompressedMultiTexSubImage2DEXT(texunit, target, level, xoffset, yoffset, width, height, format, imageSize, data); } @@ -23030,7 +23045,7 @@ static void REGAL_CALL http_glCompressedMultiTexSubImage3DEXT(GLenum texunit, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCompressedMultiTexSubImage3DEXT(texunit, target, level, xoffset, yoffset, zoffset, width, height, depth, format, imageSize, data); } @@ -23045,7 +23060,7 @@ static void REGAL_CALL http_glCompressedTextureImage1DEXT(GLuint texture, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCompressedTextureImage1DEXT(texture, target, level, internalformat, width, border, imageSize, bits); } @@ -23060,7 +23075,7 @@ static void REGAL_CALL http_glCompressedTextureImage2DEXT(GLuint texture, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCompressedTextureImage2DEXT(texture, target, level, internalformat, width, height, border, imageSize, bits); } @@ -23075,7 +23090,7 @@ static void REGAL_CALL http_glCompressedTextureImage3DEXT(GLuint texture, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCompressedTextureImage3DEXT(texture, target, level, internalformat, width, height, depth, border, imageSize, bits); } @@ -23090,7 +23105,7 @@ static void REGAL_CALL http_glCompressedTextureSubImage1DEXT(GLuint texture, GLe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCompressedTextureSubImage1DEXT(texture, target, level, xoffset, width, format, imageSize, bits); } @@ -23105,7 +23120,7 @@ static void REGAL_CALL http_glCompressedTextureSubImage2DEXT(GLuint texture, GLe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCompressedTextureSubImage2DEXT(texture, target, level, xoffset, yoffset, width, height, format, imageSize, bits); } @@ -23120,7 +23135,7 @@ static void REGAL_CALL http_glCompressedTextureSubImage3DEXT(GLuint texture, GLe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCompressedTextureSubImage3DEXT(texture, target, level, xoffset, yoffset, zoffset, width, height, depth, format, imageSize, bits); } @@ -23135,7 +23150,7 @@ static void REGAL_CALL http_glCopyMultiTexImage1DEXT(GLenum texunit, GLenum targ } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCopyMultiTexImage1DEXT(texunit, target, level, internalformat, x, y, width, border); } @@ -23150,7 +23165,7 @@ static void REGAL_CALL http_glCopyMultiTexImage2DEXT(GLenum texunit, GLenum targ } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCopyMultiTexImage2DEXT(texunit, target, level, internalformat, x, y, width, height, border); } @@ -23165,7 +23180,7 @@ static void REGAL_CALL http_glCopyMultiTexSubImage1DEXT(GLenum texunit, GLenum t } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCopyMultiTexSubImage1DEXT(texunit, target, level, xoffset, x, y, width); } @@ -23180,7 +23195,7 @@ static void REGAL_CALL http_glCopyMultiTexSubImage2DEXT(GLenum texunit, GLenum t } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCopyMultiTexSubImage2DEXT(texunit, target, level, xoffset, yoffset, x, y, width, height); } @@ -23195,7 +23210,7 @@ static void REGAL_CALL http_glCopyMultiTexSubImage3DEXT(GLenum texunit, GLenum t } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCopyMultiTexSubImage3DEXT(texunit, target, level, xoffset, yoffset, zoffset, x, y, width, height); } @@ -23210,7 +23225,7 @@ static void REGAL_CALL http_glCopyTextureImage1DEXT(GLuint texture, GLenum targe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCopyTextureImage1DEXT(texture, target, level, internalformat, x, y, width, border); } @@ -23225,7 +23240,7 @@ static void REGAL_CALL http_glCopyTextureImage2DEXT(GLuint texture, GLenum targe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCopyTextureImage2DEXT(texture, target, level, internalformat, x, y, width, height, border); } @@ -23240,7 +23255,7 @@ static void REGAL_CALL http_glCopyTextureSubImage1DEXT(GLuint texture, GLenum ta } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCopyTextureSubImage1DEXT(texture, target, level, xoffset, x, y, width); } @@ -23255,7 +23270,7 @@ static void REGAL_CALL http_glCopyTextureSubImage2DEXT(GLuint texture, GLenum ta } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCopyTextureSubImage2DEXT(texture, target, level, xoffset, yoffset, x, y, width, height); } @@ -23270,7 +23285,7 @@ static void REGAL_CALL http_glCopyTextureSubImage3DEXT(GLuint texture, GLenum ta } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCopyTextureSubImage3DEXT(texture, target, level, xoffset, yoffset, zoffset, x, y, width, height); } @@ -23285,7 +23300,7 @@ static void REGAL_CALL http_glDisableClientStateIndexedEXT(GLenum array, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDisableClientStateIndexedEXT(array, index); } @@ -23300,7 +23315,7 @@ static void REGAL_CALL http_glDisableClientStateiEXT(GLenum array, GLuint index) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDisableClientStateiEXT(array, index); } @@ -23315,7 +23330,7 @@ static void REGAL_CALL http_glDisableVertexArrayAttribEXT(GLuint vaobj, GLenum a } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDisableVertexArrayAttribEXT(vaobj, array); } @@ -23330,7 +23345,7 @@ static void REGAL_CALL http_glDisableVertexArrayEXT(GLuint vaobj, GLenum array) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDisableVertexArrayEXT(vaobj, array); } @@ -23345,7 +23360,7 @@ static void REGAL_CALL http_glEnableClientStateIndexedEXT(GLenum array, GLuint i } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEnableClientStateIndexedEXT(array, index); } @@ -23360,7 +23375,7 @@ static void REGAL_CALL http_glEnableClientStateiEXT(GLenum array, GLuint index) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEnableClientStateiEXT(array, index); } @@ -23375,7 +23390,7 @@ static void REGAL_CALL http_glEnableVertexArrayAttribEXT(GLuint vaobj, GLenum ar } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEnableVertexArrayAttribEXT(vaobj, array); } @@ -23390,7 +23405,7 @@ static void REGAL_CALL http_glEnableVertexArrayEXT(GLuint vaobj, GLenum array) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEnableVertexArrayEXT(vaobj, array); } @@ -23405,7 +23420,7 @@ static void REGAL_CALL http_glFlushMappedNamedBufferRangeEXT(GLuint buffer, GLin } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFlushMappedNamedBufferRangeEXT(buffer, offset, length); } @@ -23420,7 +23435,7 @@ static void REGAL_CALL http_glFramebufferDrawBufferEXT(GLuint framebuffer, GLenu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFramebufferDrawBufferEXT(framebuffer, mode); } @@ -23435,7 +23450,7 @@ static void REGAL_CALL http_glFramebufferDrawBuffersEXT(GLuint framebuffer, GLsi } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFramebufferDrawBuffersEXT(framebuffer, n, bufs); } @@ -23450,7 +23465,7 @@ static void REGAL_CALL http_glFramebufferReadBufferEXT(GLuint framebuffer, GLenu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFramebufferReadBufferEXT(framebuffer, mode); } @@ -23465,7 +23480,7 @@ static void REGAL_CALL http_glGenerateMultiTexMipmapEXT(GLenum texunit, GLenum t } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGenerateMultiTexMipmapEXT(texunit, target); } @@ -23480,7 +23495,7 @@ static void REGAL_CALL http_glGenerateTextureMipmapEXT(GLuint texture, GLenum ta } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGenerateTextureMipmapEXT(texture, target); } @@ -23495,7 +23510,7 @@ static void REGAL_CALL http_glGetCompressedMultiTexImageEXT(GLenum texunit, GLen } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetCompressedMultiTexImageEXT(texunit, target, lod, img); } @@ -23510,7 +23525,7 @@ static void REGAL_CALL http_glGetCompressedTextureImageEXT(GLuint texture, GLenu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetCompressedTextureImageEXT(texture, target, lod, img); } @@ -23525,7 +23540,7 @@ static void REGAL_CALL http_glGetDoubleIndexedvEXT(GLenum target, GLuint index, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetDoubleIndexedvEXT(target, index, data); } @@ -23540,7 +23555,7 @@ static void REGAL_CALL http_glGetDoublei_vEXT(GLenum target, GLuint index, GLdou } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetDoublei_vEXT(target, index, data); } @@ -23555,7 +23570,7 @@ static void REGAL_CALL http_glGetFloatIndexedvEXT(GLenum target, GLuint index, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetFloatIndexedvEXT(target, index, data); } @@ -23570,7 +23585,7 @@ static void REGAL_CALL http_glGetFloati_vEXT(GLenum target, GLuint index, GLfloa } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetFloati_vEXT(target, index, data); } @@ -23585,7 +23600,7 @@ static void REGAL_CALL http_glGetFramebufferParameterivEXT(GLuint framebuffer, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetFramebufferParameterivEXT(framebuffer, pname, params); } @@ -23600,7 +23615,7 @@ static void REGAL_CALL http_glGetMultiTexEnvfvEXT(GLenum texunit, GLenum target, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetMultiTexEnvfvEXT(texunit, target, pname, params); } @@ -23615,7 +23630,7 @@ static void REGAL_CALL http_glGetMultiTexEnvivEXT(GLenum texunit, GLenum target, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetMultiTexEnvivEXT(texunit, target, pname, params); } @@ -23630,7 +23645,7 @@ static void REGAL_CALL http_glGetMultiTexGendvEXT(GLenum texunit, GLenum coord, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetMultiTexGendvEXT(texunit, coord, pname, params); } @@ -23645,7 +23660,7 @@ static void REGAL_CALL http_glGetMultiTexGenfvEXT(GLenum texunit, GLenum coord, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetMultiTexGenfvEXT(texunit, coord, pname, params); } @@ -23660,7 +23675,7 @@ static void REGAL_CALL http_glGetMultiTexGenivEXT(GLenum texunit, GLenum coord, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetMultiTexGenivEXT(texunit, coord, pname, params); } @@ -23675,7 +23690,7 @@ static void REGAL_CALL http_glGetMultiTexImageEXT(GLenum texunit, GLenum target, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetMultiTexImageEXT(texunit, target, level, format, type, pixels); } @@ -23690,7 +23705,7 @@ static void REGAL_CALL http_glGetMultiTexLevelParameterfvEXT(GLenum texunit, GLe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetMultiTexLevelParameterfvEXT(texunit, target, level, pname, params); } @@ -23705,7 +23720,7 @@ static void REGAL_CALL http_glGetMultiTexLevelParameterivEXT(GLenum texunit, GLe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetMultiTexLevelParameterivEXT(texunit, target, level, pname, params); } @@ -23720,7 +23735,7 @@ static void REGAL_CALL http_glGetMultiTexParameterIivEXT(GLenum texunit, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetMultiTexParameterIivEXT(texunit, target, pname, params); } @@ -23735,7 +23750,7 @@ static void REGAL_CALL http_glGetMultiTexParameterIuivEXT(GLenum texunit, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetMultiTexParameterIuivEXT(texunit, target, pname, params); } @@ -23750,7 +23765,7 @@ static void REGAL_CALL http_glGetMultiTexParameterfvEXT(GLenum texunit, GLenum t } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetMultiTexParameterfvEXT(texunit, target, pname, params); } @@ -23765,7 +23780,7 @@ static void REGAL_CALL http_glGetMultiTexParameterivEXT(GLenum texunit, GLenum t } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetMultiTexParameterivEXT(texunit, target, pname, params); } @@ -23780,7 +23795,7 @@ static void REGAL_CALL http_glGetNamedBufferParameterivEXT(GLuint buffer, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetNamedBufferParameterivEXT(buffer, pname, params); } @@ -23795,7 +23810,7 @@ static void REGAL_CALL http_glGetNamedBufferPointervEXT(GLuint buffer, GLenum pn } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetNamedBufferPointervEXT(buffer, pname, params); } @@ -23810,7 +23825,7 @@ static void REGAL_CALL http_glGetNamedBufferSubDataEXT(GLuint buffer, GLintptr o } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetNamedBufferSubDataEXT(buffer, offset, size, data); } @@ -23825,7 +23840,7 @@ static void REGAL_CALL http_glGetNamedFramebufferAttachmentParameterivEXT(GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetNamedFramebufferAttachmentParameterivEXT(framebuffer, attachment, pname, params); } @@ -23840,7 +23855,7 @@ static void REGAL_CALL http_glGetNamedProgramLocalParameterIivEXT(GLuint program } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetNamedProgramLocalParameterIivEXT(program, target, index, params); } @@ -23855,7 +23870,7 @@ static void REGAL_CALL http_glGetNamedProgramLocalParameterIuivEXT(GLuint progra } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetNamedProgramLocalParameterIuivEXT(program, target, index, params); } @@ -23870,7 +23885,7 @@ static void REGAL_CALL http_glGetNamedProgramLocalParameterdvEXT(GLuint program, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetNamedProgramLocalParameterdvEXT(program, target, index, params); } @@ -23885,7 +23900,7 @@ static void REGAL_CALL http_glGetNamedProgramLocalParameterfvEXT(GLuint program, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetNamedProgramLocalParameterfvEXT(program, target, index, params); } @@ -23900,7 +23915,7 @@ static void REGAL_CALL http_glGetNamedProgramStringEXT(GLuint program, GLenum ta } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetNamedProgramStringEXT(program, target, pname, string); } @@ -23915,7 +23930,7 @@ static void REGAL_CALL http_glGetNamedProgramivEXT(GLuint program, GLenum target } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetNamedProgramivEXT(program, target, pname, params); } @@ -23930,7 +23945,7 @@ static void REGAL_CALL http_glGetNamedRenderbufferParameterivEXT(GLuint renderbu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetNamedRenderbufferParameterivEXT(renderbuffer, pname, params); } @@ -23945,7 +23960,7 @@ static void REGAL_CALL http_glGetPointerIndexedvEXT(GLenum target, GLuint index, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetPointerIndexedvEXT(target, index, data); } @@ -23960,7 +23975,7 @@ static void REGAL_CALL http_glGetPointeri_vEXT(GLenum pname, GLuint index, GLvoi } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetPointeri_vEXT(pname, index, params); } @@ -23975,7 +23990,7 @@ static void REGAL_CALL http_glGetTextureImageEXT(GLuint texture, GLenum target, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetTextureImageEXT(texture, target, level, format, type, pixels); } @@ -23990,7 +24005,7 @@ static void REGAL_CALL http_glGetTextureLevelParameterfvEXT(GLuint texture, GLen } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetTextureLevelParameterfvEXT(texture, target, level, pname, params); } @@ -24005,7 +24020,7 @@ static void REGAL_CALL http_glGetTextureLevelParameterivEXT(GLuint texture, GLen } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetTextureLevelParameterivEXT(texture, target, level, pname, params); } @@ -24020,7 +24035,7 @@ static void REGAL_CALL http_glGetTextureParameterIivEXT(GLuint texture, GLenum t } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetTextureParameterIivEXT(texture, target, pname, params); } @@ -24035,7 +24050,7 @@ static void REGAL_CALL http_glGetTextureParameterIuivEXT(GLuint texture, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetTextureParameterIuivEXT(texture, target, pname, params); } @@ -24050,7 +24065,7 @@ static void REGAL_CALL http_glGetTextureParameterfvEXT(GLuint texture, GLenum ta } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetTextureParameterfvEXT(texture, target, pname, params); } @@ -24065,7 +24080,7 @@ static void REGAL_CALL http_glGetTextureParameterivEXT(GLuint texture, GLenum ta } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetTextureParameterivEXT(texture, target, pname, params); } @@ -24080,7 +24095,7 @@ static void REGAL_CALL http_glGetVertexArrayIntegeri_vEXT(GLuint vaobj, GLuint i } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVertexArrayIntegeri_vEXT(vaobj, index, pname, param); } @@ -24095,7 +24110,7 @@ static void REGAL_CALL http_glGetVertexArrayIntegervEXT(GLuint vaobj, GLenum pna } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVertexArrayIntegervEXT(vaobj, pname, param); } @@ -24110,7 +24125,7 @@ static void REGAL_CALL http_glGetVertexArrayPointeri_vEXT(GLuint vaobj, GLuint i } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVertexArrayPointeri_vEXT(vaobj, index, pname, param); } @@ -24125,7 +24140,7 @@ static void REGAL_CALL http_glGetVertexArrayPointervEXT(GLuint vaobj, GLenum pna } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVertexArrayPointervEXT(vaobj, pname, param); } @@ -24141,7 +24156,7 @@ static GLvoid *REGAL_CALL http_glMapNamedBufferEXT(GLuint buffer, GLenum access) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glMapNamedBufferEXT(buffer, access); return ret; @@ -24158,7 +24173,7 @@ static GLvoid *REGAL_CALL http_glMapNamedBufferRangeEXT(GLuint buffer, GLintptr } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glMapNamedBufferRangeEXT(buffer, offset, length, access); return ret; @@ -24174,7 +24189,7 @@ static void REGAL_CALL http_glMatrixFrustumEXT(GLenum mode, GLdouble left, GLdou } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMatrixFrustumEXT(mode, left, right, bottom, top, zNear, zFar); } @@ -24189,7 +24204,7 @@ static void REGAL_CALL http_glMatrixLoadIdentityEXT(GLenum mode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMatrixLoadIdentityEXT(mode); } @@ -24204,7 +24219,7 @@ static void REGAL_CALL http_glMatrixLoadTransposedEXT(GLenum mode, const GLdoubl } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMatrixLoadTransposedEXT(mode, m); } @@ -24219,7 +24234,7 @@ static void REGAL_CALL http_glMatrixLoadTransposefEXT(GLenum mode, const GLfloat } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMatrixLoadTransposefEXT(mode, m); } @@ -24234,7 +24249,7 @@ static void REGAL_CALL http_glMatrixLoaddEXT(GLenum mode, const GLdouble *m) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMatrixLoaddEXT(mode, m); } @@ -24249,7 +24264,7 @@ static void REGAL_CALL http_glMatrixLoadfEXT(GLenum mode, const GLfloat *m) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMatrixLoadfEXT(mode, m); } @@ -24264,7 +24279,7 @@ static void REGAL_CALL http_glMatrixMultTransposedEXT(GLenum mode, const GLdoubl } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMatrixMultTransposedEXT(mode, m); } @@ -24279,7 +24294,7 @@ static void REGAL_CALL http_glMatrixMultTransposefEXT(GLenum mode, const GLfloat } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMatrixMultTransposefEXT(mode, m); } @@ -24294,7 +24309,7 @@ static void REGAL_CALL http_glMatrixMultdEXT(GLenum mode, const GLdouble *m) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMatrixMultdEXT(mode, m); } @@ -24309,7 +24324,7 @@ static void REGAL_CALL http_glMatrixMultfEXT(GLenum mode, const GLfloat *m) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMatrixMultfEXT(mode, m); } @@ -24324,7 +24339,7 @@ static void REGAL_CALL http_glMatrixOrthoEXT(GLenum mode, GLdouble left, GLdoubl } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMatrixOrthoEXT(mode, left, right, bottom, top, zNear, zFar); } @@ -24339,7 +24354,7 @@ static void REGAL_CALL http_glMatrixPopEXT(GLenum mode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMatrixPopEXT(mode); } @@ -24354,7 +24369,7 @@ static void REGAL_CALL http_glMatrixPushEXT(GLenum mode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMatrixPushEXT(mode); } @@ -24369,7 +24384,7 @@ static void REGAL_CALL http_glMatrixRotatedEXT(GLenum mode, GLdouble angle, GLdo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMatrixRotatedEXT(mode, angle, x, y, z); } @@ -24384,7 +24399,7 @@ static void REGAL_CALL http_glMatrixRotatefEXT(GLenum mode, GLfloat angle, GLflo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMatrixRotatefEXT(mode, angle, x, y, z); } @@ -24399,7 +24414,7 @@ static void REGAL_CALL http_glMatrixScaledEXT(GLenum mode, GLdouble x, GLdouble } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMatrixScaledEXT(mode, x, y, z); } @@ -24414,7 +24429,7 @@ static void REGAL_CALL http_glMatrixScalefEXT(GLenum mode, GLfloat x, GLfloat y, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMatrixScalefEXT(mode, x, y, z); } @@ -24429,7 +24444,7 @@ static void REGAL_CALL http_glMatrixTranslatedEXT(GLenum mode, GLdouble x, GLdou } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMatrixTranslatedEXT(mode, x, y, z); } @@ -24444,7 +24459,7 @@ static void REGAL_CALL http_glMatrixTranslatefEXT(GLenum mode, GLfloat x, GLfloa } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMatrixTranslatefEXT(mode, x, y, z); } @@ -24459,7 +24474,7 @@ static void REGAL_CALL http_glMultiTexBufferEXT(GLenum texunit, GLenum target, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexBufferEXT(texunit, target, internalformat, buffer); } @@ -24474,7 +24489,7 @@ static void REGAL_CALL http_glMultiTexCoordPointerEXT(GLenum texunit, GLint size } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoordPointerEXT(texunit, size, type, stride, pointer); } @@ -24489,7 +24504,7 @@ static void REGAL_CALL http_glMultiTexEnvfEXT(GLenum texunit, GLenum target, GLe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexEnvfEXT(texunit, target, pname, param); } @@ -24504,7 +24519,7 @@ static void REGAL_CALL http_glMultiTexEnvfvEXT(GLenum texunit, GLenum target, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexEnvfvEXT(texunit, target, pname, params); } @@ -24519,7 +24534,7 @@ static void REGAL_CALL http_glMultiTexEnviEXT(GLenum texunit, GLenum target, GLe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexEnviEXT(texunit, target, pname, param); } @@ -24534,7 +24549,7 @@ static void REGAL_CALL http_glMultiTexEnvivEXT(GLenum texunit, GLenum target, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexEnvivEXT(texunit, target, pname, params); } @@ -24549,7 +24564,7 @@ static void REGAL_CALL http_glMultiTexGendEXT(GLenum texunit, GLenum coord, GLen } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexGendEXT(texunit, coord, pname, param); } @@ -24564,7 +24579,7 @@ static void REGAL_CALL http_glMultiTexGendvEXT(GLenum texunit, GLenum coord, GLe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexGendvEXT(texunit, coord, pname, params); } @@ -24579,7 +24594,7 @@ static void REGAL_CALL http_glMultiTexGenfEXT(GLenum texunit, GLenum coord, GLen } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexGenfEXT(texunit, coord, pname, param); } @@ -24594,7 +24609,7 @@ static void REGAL_CALL http_glMultiTexGenfvEXT(GLenum texunit, GLenum coord, GLe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexGenfvEXT(texunit, coord, pname, params); } @@ -24609,7 +24624,7 @@ static void REGAL_CALL http_glMultiTexGeniEXT(GLenum texunit, GLenum coord, GLen } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexGeniEXT(texunit, coord, pname, param); } @@ -24624,7 +24639,7 @@ static void REGAL_CALL http_glMultiTexGenivEXT(GLenum texunit, GLenum coord, GLe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexGenivEXT(texunit, coord, pname, params); } @@ -24639,7 +24654,7 @@ static void REGAL_CALL http_glMultiTexImage1DEXT(GLenum texunit, GLenum target, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexImage1DEXT(texunit, target, level, internalformat, width, border, format, type, pixels); } @@ -24654,7 +24669,7 @@ static void REGAL_CALL http_glMultiTexImage2DEXT(GLenum texunit, GLenum target, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexImage2DEXT(texunit, target, level, internalformat, width, height, border, format, type, pixels); } @@ -24669,7 +24684,7 @@ static void REGAL_CALL http_glMultiTexImage3DEXT(GLenum texunit, GLenum target, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexImage3DEXT(texunit, target, level, internalformat, width, height, depth, border, format, type, pixels); } @@ -24684,7 +24699,7 @@ static void REGAL_CALL http_glMultiTexParameterIivEXT(GLenum texunit, GLenum tar } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexParameterIivEXT(texunit, target, pname, params); } @@ -24699,7 +24714,7 @@ static void REGAL_CALL http_glMultiTexParameterIuivEXT(GLenum texunit, GLenum ta } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexParameterIuivEXT(texunit, target, pname, params); } @@ -24714,7 +24729,7 @@ static void REGAL_CALL http_glMultiTexParameterfEXT(GLenum texunit, GLenum targe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexParameterfEXT(texunit, target, pname, param); } @@ -24729,7 +24744,7 @@ static void REGAL_CALL http_glMultiTexParameterfvEXT(GLenum texunit, GLenum targ } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexParameterfvEXT(texunit, target, pname, param); } @@ -24744,7 +24759,7 @@ static void REGAL_CALL http_glMultiTexParameteriEXT(GLenum texunit, GLenum targe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexParameteriEXT(texunit, target, pname, param); } @@ -24759,7 +24774,7 @@ static void REGAL_CALL http_glMultiTexParameterivEXT(GLenum texunit, GLenum targ } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexParameterivEXT(texunit, target, pname, param); } @@ -24774,7 +24789,7 @@ static void REGAL_CALL http_glMultiTexRenderbufferEXT(GLenum texunit, GLenum tar } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexRenderbufferEXT(texunit, target, renderbuffer); } @@ -24789,7 +24804,7 @@ static void REGAL_CALL http_glMultiTexSubImage1DEXT(GLenum texunit, GLenum targe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexSubImage1DEXT(texunit, target, level, xoffset, width, format, type, pixels); } @@ -24804,7 +24819,7 @@ static void REGAL_CALL http_glMultiTexSubImage2DEXT(GLenum texunit, GLenum targe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexSubImage2DEXT(texunit, target, level, xoffset, yoffset, width, height, format, type, pixels); } @@ -24819,7 +24834,7 @@ static void REGAL_CALL http_glMultiTexSubImage3DEXT(GLenum texunit, GLenum targe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexSubImage3DEXT(texunit, target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, pixels); } @@ -24834,7 +24849,7 @@ static void REGAL_CALL http_glNamedBufferDataEXT(GLuint buffer, GLsizeiptr size, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNamedBufferDataEXT(buffer, size, data, usage); } @@ -24849,7 +24864,7 @@ static void REGAL_CALL http_glNamedBufferSubDataEXT(GLuint buffer, GLintptr offs } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNamedBufferSubDataEXT(buffer, offset, size, data); } @@ -24864,7 +24879,7 @@ static void REGAL_CALL http_glNamedCopyBufferSubDataEXT(GLuint readBuffer, GLuin } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNamedCopyBufferSubDataEXT(readBuffer, writeBuffer, readOffset, writeOffset, size); } @@ -24879,7 +24894,7 @@ static void REGAL_CALL http_glNamedFramebufferRenderbufferEXT(GLuint framebuffer } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNamedFramebufferRenderbufferEXT(framebuffer, attachment, renderbuffertarget, renderbuffer); } @@ -24894,7 +24909,7 @@ static void REGAL_CALL http_glNamedFramebufferTexture1DEXT(GLuint framebuffer, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNamedFramebufferTexture1DEXT(framebuffer, attachment, textarget, texture, level); } @@ -24909,7 +24924,7 @@ static void REGAL_CALL http_glNamedFramebufferTexture2DEXT(GLuint framebuffer, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNamedFramebufferTexture2DEXT(framebuffer, attachment, textarget, texture, level); } @@ -24924,7 +24939,7 @@ static void REGAL_CALL http_glNamedFramebufferTexture3DEXT(GLuint framebuffer, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNamedFramebufferTexture3DEXT(framebuffer, attachment, textarget, texture, level, zoffset); } @@ -24939,7 +24954,7 @@ static void REGAL_CALL http_glNamedFramebufferTextureEXT(GLuint framebuffer, GLe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNamedFramebufferTextureEXT(framebuffer, attachment, texture, level); } @@ -24954,7 +24969,7 @@ static void REGAL_CALL http_glNamedFramebufferTextureFaceEXT(GLuint framebuffer, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNamedFramebufferTextureFaceEXT(framebuffer, attachment, texture, level, face); } @@ -24969,7 +24984,7 @@ static void REGAL_CALL http_glNamedFramebufferTextureLayerEXT(GLuint framebuffer } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNamedFramebufferTextureLayerEXT(framebuffer, attachment, texture, level, layer); } @@ -24984,7 +24999,7 @@ static void REGAL_CALL http_glNamedProgramLocalParameter4dEXT(GLuint program, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNamedProgramLocalParameter4dEXT(program, target, index, x, y, z, w); } @@ -24999,7 +25014,7 @@ static void REGAL_CALL http_glNamedProgramLocalParameter4dvEXT(GLuint program, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNamedProgramLocalParameter4dvEXT(program, target, index, params); } @@ -25014,7 +25029,7 @@ static void REGAL_CALL http_glNamedProgramLocalParameter4fEXT(GLuint program, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNamedProgramLocalParameter4fEXT(program, target, index, x, y, z, w); } @@ -25029,7 +25044,7 @@ static void REGAL_CALL http_glNamedProgramLocalParameter4fvEXT(GLuint program, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNamedProgramLocalParameter4fvEXT(program, target, index, params); } @@ -25044,7 +25059,7 @@ static void REGAL_CALL http_glNamedProgramLocalParameterI4iEXT(GLuint program, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNamedProgramLocalParameterI4iEXT(program, target, index, x, y, z, w); } @@ -25059,7 +25074,7 @@ static void REGAL_CALL http_glNamedProgramLocalParameterI4ivEXT(GLuint program, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNamedProgramLocalParameterI4ivEXT(program, target, index, params); } @@ -25074,7 +25089,7 @@ static void REGAL_CALL http_glNamedProgramLocalParameterI4uiEXT(GLuint program, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNamedProgramLocalParameterI4uiEXT(program, target, index, x, y, z, w); } @@ -25089,7 +25104,7 @@ static void REGAL_CALL http_glNamedProgramLocalParameterI4uivEXT(GLuint program, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNamedProgramLocalParameterI4uivEXT(program, target, index, params); } @@ -25104,7 +25119,7 @@ static void REGAL_CALL http_glNamedProgramLocalParameters4fvEXT(GLuint program, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNamedProgramLocalParameters4fvEXT(program, target, index, count, params); } @@ -25119,7 +25134,7 @@ static void REGAL_CALL http_glNamedProgramLocalParametersI4ivEXT(GLuint program, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNamedProgramLocalParametersI4ivEXT(program, target, index, count, params); } @@ -25134,7 +25149,7 @@ static void REGAL_CALL http_glNamedProgramLocalParametersI4uivEXT(GLuint program } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNamedProgramLocalParametersI4uivEXT(program, target, index, count, params); } @@ -25149,7 +25164,7 @@ static void REGAL_CALL http_glNamedProgramStringEXT(GLuint program, GLenum targe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNamedProgramStringEXT(program, target, format, len, string); } @@ -25164,7 +25179,7 @@ static void REGAL_CALL http_glNamedRenderbufferStorageEXT(GLuint renderbuffer, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNamedRenderbufferStorageEXT(renderbuffer, internalformat, width, height); } @@ -25179,7 +25194,7 @@ static void REGAL_CALL http_glNamedRenderbufferStorageMultisampleCoverageEXT(GLu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNamedRenderbufferStorageMultisampleCoverageEXT(renderbuffer, coverageSamples, colorSamples, internalformat, width, height); } @@ -25194,7 +25209,7 @@ static void REGAL_CALL http_glNamedRenderbufferStorageMultisampleEXT(GLuint rend } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNamedRenderbufferStorageMultisampleEXT(renderbuffer, samples, internalformat, width, height); } @@ -25209,7 +25224,7 @@ static void REGAL_CALL http_glProgramUniform1dEXT(GLuint program, GLint location } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform1dEXT(program, location, x); } @@ -25224,7 +25239,7 @@ static void REGAL_CALL http_glProgramUniform1dvEXT(GLuint program, GLint locatio } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform1dvEXT(program, location, count, value); } @@ -25239,7 +25254,7 @@ static void REGAL_CALL http_glProgramUniform1fEXT(GLuint program, GLint location } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform1fEXT(program, location, v0); } @@ -25254,7 +25269,7 @@ static void REGAL_CALL http_glProgramUniform1fvEXT(GLuint program, GLint locatio } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform1fvEXT(program, location, count, value); } @@ -25269,7 +25284,7 @@ static void REGAL_CALL http_glProgramUniform1iEXT(GLuint program, GLint location } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform1iEXT(program, location, v0); } @@ -25284,7 +25299,7 @@ static void REGAL_CALL http_glProgramUniform1ivEXT(GLuint program, GLint locatio } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform1ivEXT(program, location, count, value); } @@ -25299,7 +25314,7 @@ static void REGAL_CALL http_glProgramUniform1uiEXT(GLuint program, GLint locatio } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform1uiEXT(program, location, v0); } @@ -25314,7 +25329,7 @@ static void REGAL_CALL http_glProgramUniform1uivEXT(GLuint program, GLint locati } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform1uivEXT(program, location, count, value); } @@ -25329,7 +25344,7 @@ static void REGAL_CALL http_glProgramUniform2dEXT(GLuint program, GLint location } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform2dEXT(program, location, x, y); } @@ -25344,7 +25359,7 @@ static void REGAL_CALL http_glProgramUniform2dvEXT(GLuint program, GLint locatio } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform2dvEXT(program, location, count, value); } @@ -25359,7 +25374,7 @@ static void REGAL_CALL http_glProgramUniform2fEXT(GLuint program, GLint location } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform2fEXT(program, location, v0, v1); } @@ -25374,7 +25389,7 @@ static void REGAL_CALL http_glProgramUniform2fvEXT(GLuint program, GLint locatio } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform2fvEXT(program, location, count, value); } @@ -25389,7 +25404,7 @@ static void REGAL_CALL http_glProgramUniform2iEXT(GLuint program, GLint location } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform2iEXT(program, location, v0, v1); } @@ -25404,7 +25419,7 @@ static void REGAL_CALL http_glProgramUniform2ivEXT(GLuint program, GLint locatio } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform2ivEXT(program, location, count, value); } @@ -25419,7 +25434,7 @@ static void REGAL_CALL http_glProgramUniform2uiEXT(GLuint program, GLint locatio } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform2uiEXT(program, location, v0, v1); } @@ -25434,7 +25449,7 @@ static void REGAL_CALL http_glProgramUniform2uivEXT(GLuint program, GLint locati } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform2uivEXT(program, location, count, value); } @@ -25449,7 +25464,7 @@ static void REGAL_CALL http_glProgramUniform3dEXT(GLuint program, GLint location } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform3dEXT(program, location, x, y, z); } @@ -25464,7 +25479,7 @@ static void REGAL_CALL http_glProgramUniform3dvEXT(GLuint program, GLint locatio } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform3dvEXT(program, location, count, value); } @@ -25479,7 +25494,7 @@ static void REGAL_CALL http_glProgramUniform3fEXT(GLuint program, GLint location } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform3fEXT(program, location, v0, v1, v2); } @@ -25494,7 +25509,7 @@ static void REGAL_CALL http_glProgramUniform3fvEXT(GLuint program, GLint locatio } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform3fvEXT(program, location, count, value); } @@ -25509,7 +25524,7 @@ static void REGAL_CALL http_glProgramUniform3iEXT(GLuint program, GLint location } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform3iEXT(program, location, v0, v1, v2); } @@ -25524,7 +25539,7 @@ static void REGAL_CALL http_glProgramUniform3ivEXT(GLuint program, GLint locatio } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform3ivEXT(program, location, count, value); } @@ -25539,7 +25554,7 @@ static void REGAL_CALL http_glProgramUniform3uiEXT(GLuint program, GLint locatio } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform3uiEXT(program, location, v0, v1, v2); } @@ -25554,7 +25569,7 @@ static void REGAL_CALL http_glProgramUniform3uivEXT(GLuint program, GLint locati } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform3uivEXT(program, location, count, value); } @@ -25569,7 +25584,7 @@ static void REGAL_CALL http_glProgramUniform4dEXT(GLuint program, GLint location } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform4dEXT(program, location, x, y, z, w); } @@ -25584,7 +25599,7 @@ static void REGAL_CALL http_glProgramUniform4dvEXT(GLuint program, GLint locatio } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform4dvEXT(program, location, count, value); } @@ -25599,7 +25614,7 @@ static void REGAL_CALL http_glProgramUniform4fEXT(GLuint program, GLint location } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform4fEXT(program, location, v0, v1, v2, v3); } @@ -25614,7 +25629,7 @@ static void REGAL_CALL http_glProgramUniform4fvEXT(GLuint program, GLint locatio } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform4fvEXT(program, location, count, value); } @@ -25629,7 +25644,7 @@ static void REGAL_CALL http_glProgramUniform4iEXT(GLuint program, GLint location } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform4iEXT(program, location, v0, v1, v2, v3); } @@ -25644,7 +25659,7 @@ static void REGAL_CALL http_glProgramUniform4ivEXT(GLuint program, GLint locatio } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform4ivEXT(program, location, count, value); } @@ -25659,7 +25674,7 @@ static void REGAL_CALL http_glProgramUniform4uiEXT(GLuint program, GLint locatio } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform4uiEXT(program, location, v0, v1, v2, v3); } @@ -25674,7 +25689,7 @@ static void REGAL_CALL http_glProgramUniform4uivEXT(GLuint program, GLint locati } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform4uivEXT(program, location, count, value); } @@ -25689,7 +25704,7 @@ static void REGAL_CALL http_glProgramUniformMatrix2dvEXT(GLuint program, GLint l } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformMatrix2dvEXT(program, location, count, transpose, value); } @@ -25704,7 +25719,7 @@ static void REGAL_CALL http_glProgramUniformMatrix2fvEXT(GLuint program, GLint l } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformMatrix2fvEXT(program, location, count, transpose, value); } @@ -25719,7 +25734,7 @@ static void REGAL_CALL http_glProgramUniformMatrix2x3dvEXT(GLuint program, GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformMatrix2x3dvEXT(program, location, count, transpose, value); } @@ -25734,7 +25749,7 @@ static void REGAL_CALL http_glProgramUniformMatrix2x3fvEXT(GLuint program, GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformMatrix2x3fvEXT(program, location, count, transpose, value); } @@ -25749,7 +25764,7 @@ static void REGAL_CALL http_glProgramUniformMatrix2x4dvEXT(GLuint program, GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformMatrix2x4dvEXT(program, location, count, transpose, value); } @@ -25764,7 +25779,7 @@ static void REGAL_CALL http_glProgramUniformMatrix2x4fvEXT(GLuint program, GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformMatrix2x4fvEXT(program, location, count, transpose, value); } @@ -25779,7 +25794,7 @@ static void REGAL_CALL http_glProgramUniformMatrix3dvEXT(GLuint program, GLint l } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformMatrix3dvEXT(program, location, count, transpose, value); } @@ -25794,7 +25809,7 @@ static void REGAL_CALL http_glProgramUniformMatrix3fvEXT(GLuint program, GLint l } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformMatrix3fvEXT(program, location, count, transpose, value); } @@ -25809,7 +25824,7 @@ static void REGAL_CALL http_glProgramUniformMatrix3x2dvEXT(GLuint program, GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformMatrix3x2dvEXT(program, location, count, transpose, value); } @@ -25824,7 +25839,7 @@ static void REGAL_CALL http_glProgramUniformMatrix3x2fvEXT(GLuint program, GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformMatrix3x2fvEXT(program, location, count, transpose, value); } @@ -25839,7 +25854,7 @@ static void REGAL_CALL http_glProgramUniformMatrix3x4dvEXT(GLuint program, GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformMatrix3x4dvEXT(program, location, count, transpose, value); } @@ -25854,7 +25869,7 @@ static void REGAL_CALL http_glProgramUniformMatrix3x4fvEXT(GLuint program, GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformMatrix3x4fvEXT(program, location, count, transpose, value); } @@ -25869,7 +25884,7 @@ static void REGAL_CALL http_glProgramUniformMatrix4dvEXT(GLuint program, GLint l } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformMatrix4dvEXT(program, location, count, transpose, value); } @@ -25884,7 +25899,7 @@ static void REGAL_CALL http_glProgramUniformMatrix4fvEXT(GLuint program, GLint l } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformMatrix4fvEXT(program, location, count, transpose, value); } @@ -25899,7 +25914,7 @@ static void REGAL_CALL http_glProgramUniformMatrix4x2dvEXT(GLuint program, GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformMatrix4x2dvEXT(program, location, count, transpose, value); } @@ -25914,7 +25929,7 @@ static void REGAL_CALL http_glProgramUniformMatrix4x2fvEXT(GLuint program, GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformMatrix4x2fvEXT(program, location, count, transpose, value); } @@ -25929,7 +25944,7 @@ static void REGAL_CALL http_glProgramUniformMatrix4x3dvEXT(GLuint program, GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformMatrix4x3dvEXT(program, location, count, transpose, value); } @@ -25944,7 +25959,7 @@ static void REGAL_CALL http_glProgramUniformMatrix4x3fvEXT(GLuint program, GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformMatrix4x3fvEXT(program, location, count, transpose, value); } @@ -25959,7 +25974,7 @@ static void REGAL_CALL http_glPushClientAttribDefaultEXT(GLbitfield mask) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPushClientAttribDefaultEXT(mask); } @@ -25974,7 +25989,7 @@ static void REGAL_CALL http_glTextureBufferEXT(GLuint texture, GLenum target, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTextureBufferEXT(texture, target, internalformat, buffer); } @@ -25989,7 +26004,7 @@ static void REGAL_CALL http_glTextureImage1DEXT(GLuint texture, GLenum target, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTextureImage1DEXT(texture, target, level, internalformat, width, border, format, type, pixels); } @@ -26004,7 +26019,7 @@ static void REGAL_CALL http_glTextureImage2DEXT(GLuint texture, GLenum target, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTextureImage2DEXT(texture, target, level, internalformat, width, height, border, format, type, pixels); } @@ -26019,7 +26034,7 @@ static void REGAL_CALL http_glTextureImage3DEXT(GLuint texture, GLenum target, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTextureImage3DEXT(texture, target, level, internalformat, width, height, depth, border, format, type, pixels); } @@ -26034,7 +26049,7 @@ static void REGAL_CALL http_glTextureParameterIivEXT(GLuint texture, GLenum targ } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTextureParameterIivEXT(texture, target, pname, params); } @@ -26049,7 +26064,7 @@ static void REGAL_CALL http_glTextureParameterIuivEXT(GLuint texture, GLenum tar } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTextureParameterIuivEXT(texture, target, pname, params); } @@ -26064,7 +26079,7 @@ static void REGAL_CALL http_glTextureParameterfEXT(GLuint texture, GLenum target } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTextureParameterfEXT(texture, target, pname, param); } @@ -26079,7 +26094,7 @@ static void REGAL_CALL http_glTextureParameterfvEXT(GLuint texture, GLenum targe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTextureParameterfvEXT(texture, target, pname, param); } @@ -26094,7 +26109,7 @@ static void REGAL_CALL http_glTextureParameteriEXT(GLuint texture, GLenum target } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTextureParameteriEXT(texture, target, pname, param); } @@ -26109,7 +26124,7 @@ static void REGAL_CALL http_glTextureParameterivEXT(GLuint texture, GLenum targe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTextureParameterivEXT(texture, target, pname, param); } @@ -26124,7 +26139,7 @@ static void REGAL_CALL http_glTextureRenderbufferEXT(GLuint texture, GLenum targ } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTextureRenderbufferEXT(texture, target, renderbuffer); } @@ -26139,7 +26154,7 @@ static void REGAL_CALL http_glTextureSubImage1DEXT(GLuint texture, GLenum target } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTextureSubImage1DEXT(texture, target, level, xoffset, width, format, type, pixels); } @@ -26154,7 +26169,7 @@ static void REGAL_CALL http_glTextureSubImage2DEXT(GLuint texture, GLenum target } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTextureSubImage2DEXT(texture, target, level, xoffset, yoffset, width, height, format, type, pixels); } @@ -26169,7 +26184,7 @@ static void REGAL_CALL http_glTextureSubImage3DEXT(GLuint texture, GLenum target } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTextureSubImage3DEXT(texture, target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, pixels); } @@ -26185,7 +26200,7 @@ static GLboolean REGAL_CALL http_glUnmapNamedBufferEXT(GLuint buffer) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glUnmapNamedBufferEXT(buffer); return ret; @@ -26201,7 +26216,7 @@ static void REGAL_CALL http_glVertexArrayColorOffsetEXT(GLuint vaobj, GLuint buf } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexArrayColorOffsetEXT(vaobj, buffer, size, type, stride, offset); } @@ -26216,7 +26231,7 @@ static void REGAL_CALL http_glVertexArrayEdgeFlagOffsetEXT(GLuint vaobj, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexArrayEdgeFlagOffsetEXT(vaobj, buffer, stride, offset); } @@ -26231,7 +26246,7 @@ static void REGAL_CALL http_glVertexArrayFogCoordOffsetEXT(GLuint vaobj, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexArrayFogCoordOffsetEXT(vaobj, buffer, type, stride, offset); } @@ -26246,7 +26261,7 @@ static void REGAL_CALL http_glVertexArrayIndexOffsetEXT(GLuint vaobj, GLuint buf } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexArrayIndexOffsetEXT(vaobj, buffer, type, stride, offset); } @@ -26261,7 +26276,7 @@ static void REGAL_CALL http_glVertexArrayMultiTexCoordOffsetEXT(GLuint vaobj, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexArrayMultiTexCoordOffsetEXT(vaobj, buffer, texunit, size, type, stride, offset); } @@ -26276,7 +26291,7 @@ static void REGAL_CALL http_glVertexArrayNormalOffsetEXT(GLuint vaobj, GLuint bu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexArrayNormalOffsetEXT(vaobj, buffer, type, stride, offset); } @@ -26291,7 +26306,7 @@ static void REGAL_CALL http_glVertexArraySecondaryColorOffsetEXT(GLuint vaobj, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexArraySecondaryColorOffsetEXT(vaobj, buffer, size, type, stride, offset); } @@ -26306,7 +26321,7 @@ static void REGAL_CALL http_glVertexArrayTexCoordOffsetEXT(GLuint vaobj, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexArrayTexCoordOffsetEXT(vaobj, buffer, size, type, stride, offset); } @@ -26321,7 +26336,7 @@ static void REGAL_CALL http_glVertexArrayVertexAttribIOffsetEXT(GLuint vaobj, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexArrayVertexAttribIOffsetEXT(vaobj, buffer, index, size, type, stride, offset); } @@ -26336,7 +26351,7 @@ static void REGAL_CALL http_glVertexArrayVertexAttribOffsetEXT(GLuint vaobj, GLu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexArrayVertexAttribOffsetEXT(vaobj, buffer, index, size, type, normalized, stride, offset); } @@ -26351,7 +26366,7 @@ static void REGAL_CALL http_glVertexArrayVertexOffsetEXT(GLuint vaobj, GLuint bu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexArrayVertexOffsetEXT(vaobj, buffer, size, type, stride, offset); } @@ -26368,7 +26383,7 @@ static void REGAL_CALL http_glDiscardFramebufferEXT(GLenum target, GLsizei numAt } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDiscardFramebufferEXT(target, numAttachments, attachments); } @@ -26385,7 +26400,7 @@ static void REGAL_CALL http_glGetQueryObjectivEXT(GLuint id, GLenum pname, GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetQueryObjectivEXT(id, pname, params); } @@ -26400,7 +26415,7 @@ static void REGAL_CALL http_glQueryCounterEXT(GLuint id, GLenum target) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glQueryCounterEXT(id, target); } @@ -26417,7 +26432,7 @@ static void REGAL_CALL http_glColorMaskIndexedEXT(GLuint buf, GLboolean r, GLboo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColorMaskIndexedEXT(buf, r, g, b, a); } @@ -26432,7 +26447,7 @@ static void REGAL_CALL http_glDisableIndexedEXT(GLenum target, GLuint index) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDisableIndexedEXT(target, index); } @@ -26447,7 +26462,7 @@ static void REGAL_CALL http_glEnableIndexedEXT(GLenum target, GLuint index) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEnableIndexedEXT(target, index); } @@ -26462,7 +26477,7 @@ static void REGAL_CALL http_glGetBooleanIndexedvEXT(GLenum value, GLuint index, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetBooleanIndexedvEXT(value, index, data); } @@ -26477,7 +26492,7 @@ static void REGAL_CALL http_glGetIntegerIndexedvEXT(GLenum value, GLuint index, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetIntegerIndexedvEXT(value, index, data); } @@ -26493,7 +26508,7 @@ static GLboolean REGAL_CALL http_glIsEnabledIndexedEXT(GLenum target, GLuint ind } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsEnabledIndexedEXT(target, index); return ret; @@ -26515,7 +26530,7 @@ static void REGAL_CALL http_glDrawArraysInstancedEXT(GLenum mode, GLint start, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawArraysInstancedEXT(mode, start, count, primcount); if( _context ) { @@ -26537,7 +26552,7 @@ static void REGAL_CALL http_glDrawElementsInstancedEXT(GLenum mode, GLsizei coun } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawElementsInstancedEXT(mode, count, type, indices, primcount); if( _context ) { @@ -26557,7 +26572,7 @@ static void REGAL_CALL http_glDrawRangeElementsEXT(GLenum mode, GLuint start, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawRangeElementsEXT(mode, start, end, count, type, indices); } @@ -26574,7 +26589,7 @@ static void REGAL_CALL http_glFogCoordPointerEXT(GLenum type, GLsizei stride, co } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFogCoordPointerEXT(type, stride, pointer); } @@ -26589,7 +26604,7 @@ static void REGAL_CALL http_glFogCoorddEXT(GLdouble coord) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFogCoorddEXT(coord); } @@ -26604,7 +26619,7 @@ static void REGAL_CALL http_glFogCoorddvEXT(const GLdouble *coord) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFogCoorddvEXT(coord); } @@ -26619,7 +26634,7 @@ static void REGAL_CALL http_glFogCoordfEXT(GLfloat coord) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFogCoordfEXT(coord); } @@ -26634,7 +26649,7 @@ static void REGAL_CALL http_glFogCoordfvEXT(const GLfloat *coord) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFogCoordfvEXT(coord); } @@ -26651,7 +26666,7 @@ static void REGAL_CALL http_glFragmentColorMaterialEXT(GLenum face, GLenum mode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFragmentColorMaterialEXT(face, mode); } @@ -26666,7 +26681,7 @@ static void REGAL_CALL http_glFragmentLightModelfEXT(GLenum pname, GLfloat param } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFragmentLightModelfEXT(pname, param); } @@ -26681,7 +26696,7 @@ static void REGAL_CALL http_glFragmentLightModelfvEXT(GLenum pname, GLfloat *par } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFragmentLightModelfvEXT(pname, params); } @@ -26696,7 +26711,7 @@ static void REGAL_CALL http_glFragmentLightModeliEXT(GLenum pname, GLint param) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFragmentLightModeliEXT(pname, param); } @@ -26711,7 +26726,7 @@ static void REGAL_CALL http_glFragmentLightModelivEXT(GLenum pname, GLint *param } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFragmentLightModelivEXT(pname, params); } @@ -26726,7 +26741,7 @@ static void REGAL_CALL http_glFragmentLightfEXT(GLenum light, GLenum pname, GLfl } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFragmentLightfEXT(light, pname, param); } @@ -26741,7 +26756,7 @@ static void REGAL_CALL http_glFragmentLightfvEXT(GLenum light, GLenum pname, GLf } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFragmentLightfvEXT(light, pname, params); } @@ -26756,7 +26771,7 @@ static void REGAL_CALL http_glFragmentLightiEXT(GLenum light, GLenum pname, GLin } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFragmentLightiEXT(light, pname, param); } @@ -26771,7 +26786,7 @@ static void REGAL_CALL http_glFragmentLightivEXT(GLenum light, GLenum pname, GLi } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFragmentLightivEXT(light, pname, params); } @@ -26786,7 +26801,7 @@ static void REGAL_CALL http_glFragmentMaterialfEXT(GLenum face, GLenum pname, co } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFragmentMaterialfEXT(face, pname, param); } @@ -26801,7 +26816,7 @@ static void REGAL_CALL http_glFragmentMaterialfvEXT(GLenum face, GLenum pname, c } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFragmentMaterialfvEXT(face, pname, params); } @@ -26816,7 +26831,7 @@ static void REGAL_CALL http_glFragmentMaterialiEXT(GLenum face, GLenum pname, co } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFragmentMaterialiEXT(face, pname, param); } @@ -26831,7 +26846,7 @@ static void REGAL_CALL http_glFragmentMaterialivEXT(GLenum face, GLenum pname, c } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFragmentMaterialivEXT(face, pname, params); } @@ -26846,7 +26861,7 @@ static void REGAL_CALL http_glGetFragmentLightfvEXT(GLenum light, GLenum pname, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetFragmentLightfvEXT(light, pname, params); } @@ -26861,7 +26876,7 @@ static void REGAL_CALL http_glGetFragmentLightivEXT(GLenum light, GLenum pname, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetFragmentLightivEXT(light, pname, params); } @@ -26876,7 +26891,7 @@ static void REGAL_CALL http_glGetFragmentMaterialfvEXT(GLenum face, GLenum pname } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetFragmentMaterialfvEXT(face, pname, params); } @@ -26891,7 +26906,7 @@ static void REGAL_CALL http_glGetFragmentMaterialivEXT(GLenum face, GLenum pname } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetFragmentMaterialivEXT(face, pname, params); } @@ -26906,7 +26921,7 @@ static void REGAL_CALL http_glLightEnviEXT(GLenum pname, GLint param) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glLightEnviEXT(pname, param); } @@ -26923,7 +26938,7 @@ static void REGAL_CALL http_glBlitFramebufferEXT(GLint srcX0, GLint srcY0, GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBlitFramebufferEXT(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter); } @@ -26940,7 +26955,7 @@ static void REGAL_CALL http_glRenderbufferStorageMultisampleEXT(GLenum target, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRenderbufferStorageMultisampleEXT(target, samples, internalformat, width, height); } @@ -26957,7 +26972,7 @@ static void REGAL_CALL http_glBindFramebufferEXT(GLenum target, GLuint framebuff } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindFramebufferEXT(target, framebuffer); } @@ -26972,7 +26987,7 @@ static void REGAL_CALL http_glBindRenderbufferEXT(GLenum target, GLuint renderbu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindRenderbufferEXT(target, renderbuffer); } @@ -26988,7 +27003,7 @@ static GLenum REGAL_CALL http_glCheckFramebufferStatusEXT(GLenum target) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glCheckFramebufferStatusEXT(target); return ret; @@ -27004,7 +27019,7 @@ static void REGAL_CALL http_glDeleteFramebuffersEXT(GLsizei n, const GLuint *fra } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeleteFramebuffersEXT(n, framebuffers); } @@ -27019,7 +27034,7 @@ static void REGAL_CALL http_glDeleteRenderbuffersEXT(GLsizei n, const GLuint *re } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeleteRenderbuffersEXT(n, renderbuffers); } @@ -27034,7 +27049,7 @@ static void REGAL_CALL http_glFramebufferRenderbufferEXT(GLenum target, GLenum a } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFramebufferRenderbufferEXT(target, attachment, renderbuffertarget, renderbuffer); } @@ -27049,7 +27064,7 @@ static void REGAL_CALL http_glFramebufferTexture1DEXT(GLenum target, GLenum atta } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFramebufferTexture1DEXT(target, attachment, textarget, texture, level); } @@ -27064,7 +27079,7 @@ static void REGAL_CALL http_glFramebufferTexture2DEXT(GLenum target, GLenum atta } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFramebufferTexture2DEXT(target, attachment, textarget, texture, level); } @@ -27079,7 +27094,7 @@ static void REGAL_CALL http_glFramebufferTexture3DEXT(GLenum target, GLenum atta } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFramebufferTexture3DEXT(target, attachment, textarget, texture, level, zoffset); } @@ -27094,7 +27109,7 @@ static void REGAL_CALL http_glGenFramebuffersEXT(GLsizei n, GLuint *framebuffers } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGenFramebuffersEXT(n, framebuffers); } @@ -27109,7 +27124,7 @@ static void REGAL_CALL http_glGenRenderbuffersEXT(GLsizei n, GLuint *renderbuffe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGenRenderbuffersEXT(n, renderbuffers); } @@ -27124,7 +27139,7 @@ static void REGAL_CALL http_glGenerateMipmapEXT(GLenum target) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGenerateMipmapEXT(target); } @@ -27139,7 +27154,7 @@ static void REGAL_CALL http_glGetFramebufferAttachmentParameterivEXT(GLenum targ } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetFramebufferAttachmentParameterivEXT(target, attachment, pname, params); } @@ -27154,7 +27169,7 @@ static void REGAL_CALL http_glGetRenderbufferParameterivEXT(GLenum target, GLenu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetRenderbufferParameterivEXT(target, pname, params); } @@ -27170,7 +27185,7 @@ static GLboolean REGAL_CALL http_glIsFramebufferEXT(GLuint framebuffer) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsFramebufferEXT(framebuffer); return ret; @@ -27187,7 +27202,7 @@ static GLboolean REGAL_CALL http_glIsRenderbufferEXT(GLuint renderbuffer) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsRenderbufferEXT(renderbuffer); return ret; @@ -27203,7 +27218,7 @@ static void REGAL_CALL http_glRenderbufferStorageEXT(GLenum target, GLenum inter } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRenderbufferStorageEXT(target, internalformat, width, height); } @@ -27220,7 +27235,7 @@ static void REGAL_CALL http_glFramebufferTextureEXT(GLenum target, GLenum attach } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFramebufferTextureEXT(target, attachment, texture, level); } @@ -27235,7 +27250,7 @@ static void REGAL_CALL http_glFramebufferTextureFaceEXT(GLenum target, GLenum at } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFramebufferTextureFaceEXT(target, attachment, texture, level, face); } @@ -27250,7 +27265,7 @@ static void REGAL_CALL http_glProgramParameteriEXT(GLuint program, GLenum pname, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramParameteriEXT(program, pname, value); } @@ -27267,7 +27282,7 @@ static void REGAL_CALL http_glProgramEnvParameters4fvEXT(GLenum target, GLuint i } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramEnvParameters4fvEXT(target, index, count, params); } @@ -27282,7 +27297,7 @@ static void REGAL_CALL http_glProgramLocalParameters4fvEXT(GLenum target, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramLocalParameters4fvEXT(target, index, count, params); } @@ -27299,7 +27314,7 @@ static void REGAL_CALL http_glBindFragDataLocationEXT(GLuint program, GLuint col } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindFragDataLocationEXT(program, color, name); } @@ -27315,7 +27330,7 @@ static GLint REGAL_CALL http_glGetFragDataLocationEXT(GLuint program, const GLch } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glGetFragDataLocationEXT(program, name); return ret; @@ -27331,7 +27346,7 @@ static void REGAL_CALL http_glGetUniformuivEXT(GLuint program, GLint location, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetUniformuivEXT(program, location, params); } @@ -27346,7 +27361,7 @@ static void REGAL_CALL http_glGetVertexAttribIivEXT(GLuint index, GLenum pname, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVertexAttribIivEXT(index, pname, params); } @@ -27361,7 +27376,7 @@ static void REGAL_CALL http_glGetVertexAttribIuivEXT(GLuint index, GLenum pname, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVertexAttribIuivEXT(index, pname, params); } @@ -27376,7 +27391,7 @@ static void REGAL_CALL http_glUniform1uiEXT(GLint location, GLuint v0) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform1uiEXT(location, v0); } @@ -27391,7 +27406,7 @@ static void REGAL_CALL http_glUniform1uivEXT(GLint location, GLsizei count, cons } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform1uivEXT(location, count, value); } @@ -27406,7 +27421,7 @@ static void REGAL_CALL http_glUniform2uiEXT(GLint location, GLuint v0, GLuint v1 } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform2uiEXT(location, v0, v1); } @@ -27421,7 +27436,7 @@ static void REGAL_CALL http_glUniform2uivEXT(GLint location, GLsizei count, cons } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform2uivEXT(location, count, value); } @@ -27436,7 +27451,7 @@ static void REGAL_CALL http_glUniform3uiEXT(GLint location, GLuint v0, GLuint v1 } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform3uiEXT(location, v0, v1, v2); } @@ -27451,7 +27466,7 @@ static void REGAL_CALL http_glUniform3uivEXT(GLint location, GLsizei count, cons } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform3uivEXT(location, count, value); } @@ -27466,7 +27481,7 @@ static void REGAL_CALL http_glUniform4uiEXT(GLint location, GLuint v0, GLuint v1 } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform4uiEXT(location, v0, v1, v2, v3); } @@ -27481,7 +27496,7 @@ static void REGAL_CALL http_glUniform4uivEXT(GLint location, GLsizei count, cons } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform4uivEXT(location, count, value); } @@ -27496,7 +27511,7 @@ static void REGAL_CALL http_glVertexAttribI1iEXT(GLuint index, GLint x) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI1iEXT(index, x); } @@ -27511,7 +27526,7 @@ static void REGAL_CALL http_glVertexAttribI1ivEXT(GLuint index, const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI1ivEXT(index, v); } @@ -27526,7 +27541,7 @@ static void REGAL_CALL http_glVertexAttribI1uiEXT(GLuint index, GLuint x) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI1uiEXT(index, x); } @@ -27541,7 +27556,7 @@ static void REGAL_CALL http_glVertexAttribI1uivEXT(GLuint index, const GLuint *v } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI1uivEXT(index, v); } @@ -27556,7 +27571,7 @@ static void REGAL_CALL http_glVertexAttribI2iEXT(GLuint index, GLint x, GLint y) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI2iEXT(index, x, y); } @@ -27571,7 +27586,7 @@ static void REGAL_CALL http_glVertexAttribI2ivEXT(GLuint index, const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI2ivEXT(index, v); } @@ -27586,7 +27601,7 @@ static void REGAL_CALL http_glVertexAttribI2uiEXT(GLuint index, GLuint x, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI2uiEXT(index, x, y); } @@ -27601,7 +27616,7 @@ static void REGAL_CALL http_glVertexAttribI2uivEXT(GLuint index, const GLuint *v } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI2uivEXT(index, v); } @@ -27616,7 +27631,7 @@ static void REGAL_CALL http_glVertexAttribI3iEXT(GLuint index, GLint x, GLint y, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI3iEXT(index, x, y, z); } @@ -27631,7 +27646,7 @@ static void REGAL_CALL http_glVertexAttribI3ivEXT(GLuint index, const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI3ivEXT(index, v); } @@ -27646,7 +27661,7 @@ static void REGAL_CALL http_glVertexAttribI3uiEXT(GLuint index, GLuint x, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI3uiEXT(index, x, y, z); } @@ -27661,7 +27676,7 @@ static void REGAL_CALL http_glVertexAttribI3uivEXT(GLuint index, const GLuint *v } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI3uivEXT(index, v); } @@ -27676,7 +27691,7 @@ static void REGAL_CALL http_glVertexAttribI4bvEXT(GLuint index, const GLbyte *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI4bvEXT(index, v); } @@ -27691,7 +27706,7 @@ static void REGAL_CALL http_glVertexAttribI4iEXT(GLuint index, GLint x, GLint y, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI4iEXT(index, x, y, z, w); } @@ -27706,7 +27721,7 @@ static void REGAL_CALL http_glVertexAttribI4ivEXT(GLuint index, const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI4ivEXT(index, v); } @@ -27721,7 +27736,7 @@ static void REGAL_CALL http_glVertexAttribI4svEXT(GLuint index, const GLshort *v } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI4svEXT(index, v); } @@ -27736,7 +27751,7 @@ static void REGAL_CALL http_glVertexAttribI4ubvEXT(GLuint index, const GLubyte * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI4ubvEXT(index, v); } @@ -27751,7 +27766,7 @@ static void REGAL_CALL http_glVertexAttribI4uiEXT(GLuint index, GLuint x, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI4uiEXT(index, x, y, z, w); } @@ -27766,7 +27781,7 @@ static void REGAL_CALL http_glVertexAttribI4uivEXT(GLuint index, const GLuint *v } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI4uivEXT(index, v); } @@ -27781,7 +27796,7 @@ static void REGAL_CALL http_glVertexAttribI4usvEXT(GLuint index, const GLushort } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribI4usvEXT(index, v); } @@ -27796,7 +27811,7 @@ static void REGAL_CALL http_glVertexAttribIPointerEXT(GLuint index, GLint size, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribIPointerEXT(index, size, type, stride, pointer); } @@ -27813,7 +27828,7 @@ static void REGAL_CALL http_glGetHistogramEXT(GLenum target, GLboolean reset, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetHistogramEXT(target, reset, format, type, values); } @@ -27828,7 +27843,7 @@ static void REGAL_CALL http_glGetHistogramParameterfvEXT(GLenum target, GLenum p } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetHistogramParameterfvEXT(target, pname, params); } @@ -27843,7 +27858,7 @@ static void REGAL_CALL http_glGetHistogramParameterivEXT(GLenum target, GLenum p } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetHistogramParameterivEXT(target, pname, params); } @@ -27858,7 +27873,7 @@ static void REGAL_CALL http_glGetMinmaxEXT(GLenum target, GLboolean reset, GLenu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetMinmaxEXT(target, reset, format, type, values); } @@ -27873,7 +27888,7 @@ static void REGAL_CALL http_glGetMinmaxParameterfvEXT(GLenum target, GLenum pnam } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetMinmaxParameterfvEXT(target, pname, params); } @@ -27888,7 +27903,7 @@ static void REGAL_CALL http_glGetMinmaxParameterivEXT(GLenum target, GLenum pnam } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetMinmaxParameterivEXT(target, pname, params); } @@ -27903,7 +27918,7 @@ static void REGAL_CALL http_glHistogramEXT(GLenum target, GLsizei width, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glHistogramEXT(target, width, internalformat, sink); } @@ -27918,7 +27933,7 @@ static void REGAL_CALL http_glMinmaxEXT(GLenum target, GLenum internalformat, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMinmaxEXT(target, internalformat, sink); } @@ -27933,7 +27948,7 @@ static void REGAL_CALL http_glResetHistogramEXT(GLenum target) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glResetHistogramEXT(target); } @@ -27948,7 +27963,7 @@ static void REGAL_CALL http_glResetMinmaxEXT(GLenum target) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glResetMinmaxEXT(target); } @@ -27965,7 +27980,7 @@ static void REGAL_CALL http_glIndexFuncEXT(GLenum func, GLfloat ref) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glIndexFuncEXT(func, ref); } @@ -27982,7 +27997,7 @@ static void REGAL_CALL http_glIndexMaterialEXT(GLenum face, GLenum mode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glIndexMaterialEXT(face, mode); } @@ -27999,7 +28014,7 @@ static void REGAL_CALL http_glApplyTextureEXT(GLenum mode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glApplyTextureEXT(mode); } @@ -28014,7 +28029,7 @@ static void REGAL_CALL http_glTextureLightEXT(GLenum pname) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTextureLightEXT(pname); } @@ -28029,7 +28044,7 @@ static void REGAL_CALL http_glTextureMaterialEXT(GLenum face, GLenum mode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTextureMaterialEXT(face, mode); } @@ -28046,7 +28061,7 @@ static void REGAL_CALL http_glFlushMappedBufferRangeEXT(GLenum target, GLintptr } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFlushMappedBufferRangeEXT(target, offset, length); } @@ -28062,7 +28077,7 @@ static GLvoid *REGAL_CALL http_glMapBufferRangeEXT(GLenum target, GLintptr offse } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glMapBufferRangeEXT(target, offset, length, access); return ret; @@ -28084,7 +28099,7 @@ static void REGAL_CALL http_glMultiDrawArraysEXT(GLenum mode, const GLint *first } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiDrawArraysEXT(mode, first, count, primcount); if( _context ) { @@ -28106,7 +28121,7 @@ static void REGAL_CALL http_glMultiDrawElementsEXT(GLenum mode, const GLsizei *c } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiDrawElementsEXT(mode, count, type, indices, primcount); if( _context ) { @@ -28126,7 +28141,7 @@ static void REGAL_CALL http_glSampleMaskEXT(GLclampf value, GLboolean invert) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSampleMaskEXT(value, invert); } @@ -28141,7 +28156,7 @@ static void REGAL_CALL http_glSamplePatternEXT(GLenum pattern) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSamplePatternEXT(pattern); } @@ -28158,7 +28173,7 @@ static void REGAL_CALL http_glFramebufferTexture2DMultisampleEXT(GLenum target, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFramebufferTexture2DMultisampleEXT(target, attachment, textarget, texture, level, samples); } @@ -28175,7 +28190,7 @@ static void REGAL_CALL http_glDrawBuffersIndexedEXT(GLint n, const GLenum *locat } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawBuffersIndexedEXT(n, location, indices); } @@ -28190,7 +28205,7 @@ static void REGAL_CALL http_glGetIntegeri_vEXT(GLenum target, GLuint index, GLin } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetIntegeri_vEXT(target, index, data); } @@ -28205,7 +28220,7 @@ static void REGAL_CALL http_glReadBufferIndexedEXT(GLenum src, GLint index) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glReadBufferIndexedEXT(src, index); } @@ -28222,7 +28237,7 @@ static void REGAL_CALL http_glBeginQueryEXT(GLenum target, GLuint id) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBeginQueryEXT(target, id); } @@ -28237,7 +28252,7 @@ static void REGAL_CALL http_glDeleteQueriesEXT(GLsizei n, const GLuint *ids) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeleteQueriesEXT(n, ids); } @@ -28252,7 +28267,7 @@ static void REGAL_CALL http_glEndQueryEXT(GLenum target) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEndQueryEXT(target); } @@ -28267,7 +28282,7 @@ static void REGAL_CALL http_glGenQueriesEXT(GLsizei n, GLuint *ids) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGenQueriesEXT(n, ids); } @@ -28282,7 +28297,7 @@ static void REGAL_CALL http_glGetQueryObjectuivEXT(GLuint id, GLenum pname, GLui } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetQueryObjectuivEXT(id, pname, params); } @@ -28297,7 +28312,7 @@ static void REGAL_CALL http_glGetQueryivEXT(GLenum target, GLenum pname, GLint * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetQueryivEXT(target, pname, params); } @@ -28313,7 +28328,7 @@ static GLboolean REGAL_CALL http_glIsQueryEXT(GLuint id) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsQueryEXT(id); return ret; @@ -28331,7 +28346,7 @@ static void REGAL_CALL http_glColorTableEXT(GLenum target, GLenum internalFormat } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColorTableEXT(target, internalFormat, width, format, type, table); } @@ -28346,7 +28361,7 @@ static void REGAL_CALL http_glGetColorTableEXT(GLenum target, GLenum format, GLe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetColorTableEXT(target, format, type, data); } @@ -28361,7 +28376,7 @@ static void REGAL_CALL http_glGetColorTableParameterfvEXT(GLenum target, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetColorTableParameterfvEXT(target, pname, params); } @@ -28376,7 +28391,7 @@ static void REGAL_CALL http_glGetColorTableParameterivEXT(GLenum target, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetColorTableParameterivEXT(target, pname, params); } @@ -28393,7 +28408,7 @@ static void REGAL_CALL http_glGetPixelTransformParameterfvEXT(GLenum target, GLe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetPixelTransformParameterfvEXT(target, pname, params); } @@ -28408,7 +28423,7 @@ static void REGAL_CALL http_glGetPixelTransformParameterivEXT(GLenum target, GLe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetPixelTransformParameterivEXT(target, pname, params); } @@ -28423,7 +28438,7 @@ static void REGAL_CALL http_glPixelTransformParameterfEXT(GLenum target, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPixelTransformParameterfEXT(target, pname, param); } @@ -28438,7 +28453,7 @@ static void REGAL_CALL http_glPixelTransformParameterfvEXT(GLenum target, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPixelTransformParameterfvEXT(target, pname, params); } @@ -28453,7 +28468,7 @@ static void REGAL_CALL http_glPixelTransformParameteriEXT(GLenum target, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPixelTransformParameteriEXT(target, pname, param); } @@ -28468,7 +28483,7 @@ static void REGAL_CALL http_glPixelTransformParameterivEXT(GLenum target, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPixelTransformParameterivEXT(target, pname, params); } @@ -28485,7 +28500,7 @@ static void REGAL_CALL http_glPointParameterfEXT(GLenum pname, GLfloat param) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPointParameterfEXT(pname, param); } @@ -28500,7 +28515,7 @@ static void REGAL_CALL http_glPointParameterfvEXT(GLenum pname, const GLfloat *p } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPointParameterfvEXT(pname, params); } @@ -28517,7 +28532,7 @@ static void REGAL_CALL http_glPolygonOffsetEXT(GLfloat factor, GLfloat bias) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPolygonOffsetEXT(factor, bias); } @@ -28534,7 +28549,7 @@ static void REGAL_CALL http_glProvokingVertexEXT(GLenum mode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProvokingVertexEXT(mode); } @@ -28551,7 +28566,7 @@ static void REGAL_CALL http_glGetnUniformfvEXT(GLuint program, GLint location, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetnUniformfvEXT(program, location, bufSize, params); } @@ -28566,7 +28581,7 @@ static void REGAL_CALL http_glGetnUniformivEXT(GLuint program, GLint location, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetnUniformivEXT(program, location, bufSize, params); } @@ -28581,7 +28596,7 @@ static void REGAL_CALL http_glReadnPixelsEXT(GLint x, GLint y, GLsizei width, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glReadnPixelsEXT(x, y, width, height, format, type, bufSize, data); } @@ -28598,7 +28613,7 @@ static void REGAL_CALL http_glBeginSceneEXT(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBeginSceneEXT(); } @@ -28613,7 +28628,7 @@ static void REGAL_CALL http_glEndSceneEXT(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEndSceneEXT(); } @@ -28630,7 +28645,7 @@ static void REGAL_CALL http_glSecondaryColor3bEXT(GLbyte red, GLbyte green, GLby } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColor3bEXT(red, green, blue); } @@ -28645,7 +28660,7 @@ static void REGAL_CALL http_glSecondaryColor3bvEXT(const GLbyte *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColor3bvEXT(v); } @@ -28660,7 +28675,7 @@ static void REGAL_CALL http_glSecondaryColor3dEXT(GLdouble red, GLdouble green, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColor3dEXT(red, green, blue); } @@ -28675,7 +28690,7 @@ static void REGAL_CALL http_glSecondaryColor3dvEXT(const GLdouble *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColor3dvEXT(v); } @@ -28690,7 +28705,7 @@ static void REGAL_CALL http_glSecondaryColor3fEXT(GLfloat red, GLfloat green, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColor3fEXT(red, green, blue); } @@ -28705,7 +28720,7 @@ static void REGAL_CALL http_glSecondaryColor3fvEXT(const GLfloat *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColor3fvEXT(v); } @@ -28720,7 +28735,7 @@ static void REGAL_CALL http_glSecondaryColor3iEXT(GLint red, GLint green, GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColor3iEXT(red, green, blue); } @@ -28735,7 +28750,7 @@ static void REGAL_CALL http_glSecondaryColor3ivEXT(const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColor3ivEXT(v); } @@ -28750,7 +28765,7 @@ static void REGAL_CALL http_glSecondaryColor3sEXT(GLshort red, GLshort green, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColor3sEXT(red, green, blue); } @@ -28765,7 +28780,7 @@ static void REGAL_CALL http_glSecondaryColor3svEXT(const GLshort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColor3svEXT(v); } @@ -28780,7 +28795,7 @@ static void REGAL_CALL http_glSecondaryColor3ubEXT(GLubyte red, GLubyte green, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColor3ubEXT(red, green, blue); } @@ -28795,7 +28810,7 @@ static void REGAL_CALL http_glSecondaryColor3ubvEXT(const GLubyte *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColor3ubvEXT(v); } @@ -28810,7 +28825,7 @@ static void REGAL_CALL http_glSecondaryColor3uiEXT(GLuint red, GLuint green, GLu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColor3uiEXT(red, green, blue); } @@ -28825,7 +28840,7 @@ static void REGAL_CALL http_glSecondaryColor3uivEXT(const GLuint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColor3uivEXT(v); } @@ -28840,7 +28855,7 @@ static void REGAL_CALL http_glSecondaryColor3usEXT(GLushort red, GLushort green, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColor3usEXT(red, green, blue); } @@ -28855,7 +28870,7 @@ static void REGAL_CALL http_glSecondaryColor3usvEXT(const GLushort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColor3usvEXT(v); } @@ -28870,7 +28885,7 @@ static void REGAL_CALL http_glSecondaryColorPointerEXT(GLint size, GLenum type, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColorPointerEXT(size, type, stride, pointer); } @@ -28887,7 +28902,7 @@ static void REGAL_CALL http_glActiveProgramEXT(GLuint program) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glActiveProgramEXT(program); } @@ -28903,7 +28918,7 @@ static GLuint REGAL_CALL http_glCreateShaderProgramEXT(GLenum type, const GLchar } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glCreateShaderProgramEXT(type, string); return ret; @@ -28919,7 +28934,7 @@ static void REGAL_CALL http_glUseShaderProgramEXT(GLenum type, GLuint program) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUseShaderProgramEXT(type, program); } @@ -28936,7 +28951,7 @@ static void REGAL_CALL http_glBindImageTextureEXT(GLuint index, GLuint texture, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindImageTextureEXT(index, texture, level, layered, layer, access, format); } @@ -28951,7 +28966,7 @@ static void REGAL_CALL http_glMemoryBarrierEXT(GLbitfield barriers) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMemoryBarrierEXT(barriers); } @@ -28968,7 +28983,7 @@ static void REGAL_CALL http_glStencilClearTagEXT(GLsizei stencilTagBits, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glStencilClearTagEXT(stencilTagBits, stencilClearTag); } @@ -28985,7 +29000,7 @@ static void REGAL_CALL http_glActiveStencilFaceEXT(GLenum face) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glActiveStencilFaceEXT(face); } @@ -29002,7 +29017,7 @@ static void REGAL_CALL http_glTexSubImage1DEXT(GLenum target, GLint level, GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexSubImage1DEXT(target, level, xoffset, width, format, type, pixels); } @@ -29017,7 +29032,7 @@ static void REGAL_CALL http_glTexSubImage2DEXT(GLenum target, GLint level, GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexSubImage2DEXT(target, level, xoffset, yoffset, width, height, format, type, pixels); } @@ -29032,7 +29047,7 @@ static void REGAL_CALL http_glTexSubImage3DEXT(GLenum target, GLint level, GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexSubImage3DEXT(target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, pixels); } @@ -29049,7 +29064,7 @@ static void REGAL_CALL http_glTexImage3DEXT(GLenum target, GLint level, GLenum i } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexImage3DEXT(target, level, internalformat, width, height, depth, border, format, type, pixels); } @@ -29066,7 +29081,7 @@ static void REGAL_CALL http_glFramebufferTextureLayerEXT(GLenum target, GLenum a } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFramebufferTextureLayerEXT(target, attachment, texture, level, layer); } @@ -29083,7 +29098,7 @@ static void REGAL_CALL http_glTexBufferEXT(GLenum target, GLenum internalformat, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexBufferEXT(target, internalformat, buffer); } @@ -29100,7 +29115,7 @@ static void REGAL_CALL http_glClearColorIiEXT(GLint red, GLint green, GLint blue } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glClearColorIiEXT(red, green, blue, alpha); } @@ -29115,7 +29130,7 @@ static void REGAL_CALL http_glClearColorIuiEXT(GLuint red, GLuint green, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glClearColorIuiEXT(red, green, blue, alpha); } @@ -29130,7 +29145,7 @@ static void REGAL_CALL http_glGetTexParameterIivEXT(GLenum target, GLenum pname, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetTexParameterIivEXT(target, pname, params); } @@ -29145,7 +29160,7 @@ static void REGAL_CALL http_glGetTexParameterIuivEXT(GLenum target, GLenum pname } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetTexParameterIuivEXT(target, pname, params); } @@ -29160,7 +29175,7 @@ static void REGAL_CALL http_glTexParameterIivEXT(GLenum target, GLenum pname, co } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexParameterIivEXT(target, pname, params); } @@ -29175,7 +29190,7 @@ static void REGAL_CALL http_glTexParameterIuivEXT(GLenum target, GLenum pname, c } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexParameterIuivEXT(target, pname, params); } @@ -29193,7 +29208,7 @@ static GLboolean REGAL_CALL http_glAreTexturesResidentEXT(GLsizei n, const GLuin } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glAreTexturesResidentEXT(n, textures, residences); return ret; @@ -29217,7 +29232,7 @@ static void REGAL_CALL http_glBindTextureEXT(GLenum target, GLuint texture) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindTextureEXT(target, texture); } @@ -29235,7 +29250,7 @@ static void REGAL_CALL http_glDeleteTexturesEXT(GLsizei n, const GLuint *texture } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeleteTexturesEXT(n, textures); } @@ -29250,7 +29265,7 @@ static void REGAL_CALL http_glGenTexturesEXT(GLsizei n, GLuint *textures) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGenTexturesEXT(n, textures); } @@ -29266,7 +29281,7 @@ static GLboolean REGAL_CALL http_glIsTextureEXT(GLuint texture) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsTextureEXT(texture); return ret; @@ -29282,7 +29297,7 @@ static void REGAL_CALL http_glPrioritizeTexturesEXT(GLsizei n, const GLuint *tex } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPrioritizeTexturesEXT(n, textures, priorities); } @@ -29299,7 +29314,7 @@ static void REGAL_CALL http_glTextureNormalEXT(GLenum mode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTextureNormalEXT(mode); } @@ -29316,7 +29331,7 @@ static void REGAL_CALL http_glTexStorage1DEXT(GLenum target, GLsizei levels, GLe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexStorage1DEXT(target, levels, internalformat, width); } @@ -29331,7 +29346,7 @@ static void REGAL_CALL http_glTexStorage2DEXT(GLenum target, GLsizei levels, GLe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexStorage2DEXT(target, levels, internalformat, width, height); } @@ -29346,7 +29361,7 @@ static void REGAL_CALL http_glTexStorage3DEXT(GLenum target, GLsizei levels, GLe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexStorage3DEXT(target, levels, internalformat, width, height, depth); } @@ -29363,7 +29378,7 @@ static void REGAL_CALL http_glGetQueryObjecti64vEXT(GLuint id, GLenum pname, GLi } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetQueryObjecti64vEXT(id, pname, params); } @@ -29378,7 +29393,7 @@ static void REGAL_CALL http_glGetQueryObjectui64vEXT(GLuint id, GLenum pname, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetQueryObjectui64vEXT(id, pname, params); } @@ -29395,7 +29410,7 @@ static void REGAL_CALL http_glBeginTransformFeedbackEXT(GLenum primitiveMode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBeginTransformFeedbackEXT(primitiveMode); } @@ -29410,7 +29425,7 @@ static void REGAL_CALL http_glBindBufferBaseEXT(GLenum target, GLuint index, GLu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindBufferBaseEXT(target, index, buffer); } @@ -29425,7 +29440,7 @@ static void REGAL_CALL http_glBindBufferOffsetEXT(GLenum target, GLuint index, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindBufferOffsetEXT(target, index, buffer, offset); } @@ -29440,7 +29455,7 @@ static void REGAL_CALL http_glBindBufferRangeEXT(GLenum target, GLuint index, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindBufferRangeEXT(target, index, buffer, offset, size); } @@ -29455,7 +29470,7 @@ static void REGAL_CALL http_glEndTransformFeedbackEXT(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEndTransformFeedbackEXT(); } @@ -29470,7 +29485,7 @@ static void REGAL_CALL http_glGetTransformFeedbackVaryingEXT(GLuint program, GLu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetTransformFeedbackVaryingEXT(program, index, bufSize, length, size, type, name); } @@ -29485,7 +29500,7 @@ static void REGAL_CALL http_glTransformFeedbackVaryingsEXT(GLuint program, GLsiz } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTransformFeedbackVaryingsEXT(program, count, varyings, bufferMode); } @@ -29502,7 +29517,7 @@ static void REGAL_CALL http_glArrayElementEXT(GLint i) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glArrayElementEXT(i); } @@ -29517,7 +29532,7 @@ static void REGAL_CALL http_glColorPointerEXT(GLint size, GLenum type, GLsizei s } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColorPointerEXT(size, type, stride, count, pointer); } @@ -29536,7 +29551,7 @@ static void REGAL_CALL http_glDrawArraysEXT(GLenum mode, GLint first, GLsizei co } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawArraysEXT(mode, first, count); if( _context ) { @@ -29554,7 +29569,7 @@ static void REGAL_CALL http_glEdgeFlagPointerEXT(GLsizei stride, GLsizei count, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEdgeFlagPointerEXT(stride, count, pointer); } @@ -29569,7 +29584,7 @@ static void REGAL_CALL http_glGetPointervEXT(GLenum pname, GLvoid **params) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetPointervEXT(pname, params); } @@ -29584,7 +29599,7 @@ static void REGAL_CALL http_glIndexPointerEXT(GLenum type, GLsizei stride, GLsiz } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glIndexPointerEXT(type, stride, count, pointer); } @@ -29599,7 +29614,7 @@ static void REGAL_CALL http_glNormalPointerEXT(GLenum type, GLsizei stride, GLsi } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNormalPointerEXT(type, stride, count, pointer); } @@ -29614,7 +29629,7 @@ static void REGAL_CALL http_glTexCoordPointerEXT(GLint size, GLenum type, GLsize } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoordPointerEXT(size, type, stride, count, pointer); } @@ -29629,7 +29644,7 @@ static void REGAL_CALL http_glVertexPointerEXT(GLint size, GLenum type, GLsizei } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexPointerEXT(size, type, stride, count, pointer); } @@ -29646,7 +29661,7 @@ static void REGAL_CALL http_glGetVertexAttribLdvEXT(GLuint index, GLenum pname, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVertexAttribLdvEXT(index, pname, params); } @@ -29661,7 +29676,7 @@ static void REGAL_CALL http_glVertexArrayVertexAttribLOffsetEXT(GLuint vaobj, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexArrayVertexAttribLOffsetEXT(vaobj, buffer, index, size, type, stride, offset); } @@ -29676,7 +29691,7 @@ static void REGAL_CALL http_glVertexAttribL1dEXT(GLuint index, GLdouble x) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribL1dEXT(index, x); } @@ -29691,7 +29706,7 @@ static void REGAL_CALL http_glVertexAttribL1dvEXT(GLuint index, const GLdouble * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribL1dvEXT(index, v); } @@ -29706,7 +29721,7 @@ static void REGAL_CALL http_glVertexAttribL2dEXT(GLuint index, GLdouble x, GLdou } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribL2dEXT(index, x, y); } @@ -29721,7 +29736,7 @@ static void REGAL_CALL http_glVertexAttribL2dvEXT(GLuint index, const GLdouble * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribL2dvEXT(index, v); } @@ -29736,7 +29751,7 @@ static void REGAL_CALL http_glVertexAttribL3dEXT(GLuint index, GLdouble x, GLdou } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribL3dEXT(index, x, y, z); } @@ -29751,7 +29766,7 @@ static void REGAL_CALL http_glVertexAttribL3dvEXT(GLuint index, const GLdouble * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribL3dvEXT(index, v); } @@ -29766,7 +29781,7 @@ static void REGAL_CALL http_glVertexAttribL4dEXT(GLuint index, GLdouble x, GLdou } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribL4dEXT(index, x, y, z, w); } @@ -29781,7 +29796,7 @@ static void REGAL_CALL http_glVertexAttribL4dvEXT(GLuint index, const GLdouble * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribL4dvEXT(index, v); } @@ -29796,7 +29811,7 @@ static void REGAL_CALL http_glVertexAttribLPointerEXT(GLuint index, GLint size, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribLPointerEXT(index, size, type, stride, pointer); } @@ -29813,7 +29828,7 @@ static void REGAL_CALL http_glBeginVertexShaderEXT(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBeginVertexShaderEXT(); } @@ -29829,7 +29844,7 @@ static GLuint REGAL_CALL http_glBindLightParameterEXT(GLenum light, GLenum value } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glBindLightParameterEXT(light, value); return ret; @@ -29846,7 +29861,7 @@ static GLuint REGAL_CALL http_glBindMaterialParameterEXT(GLenum face, GLenum val } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glBindMaterialParameterEXT(face, value); return ret; @@ -29863,7 +29878,7 @@ static GLuint REGAL_CALL http_glBindParameterEXT(GLenum value) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glBindParameterEXT(value); return ret; @@ -29880,7 +29895,7 @@ static GLuint REGAL_CALL http_glBindTexGenParameterEXT(GLenum unit, GLenum coord } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glBindTexGenParameterEXT(unit, coord, value); return ret; @@ -29897,7 +29912,7 @@ static GLuint REGAL_CALL http_glBindTextureUnitParameterEXT(GLenum unit, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glBindTextureUnitParameterEXT(unit, value); return ret; @@ -29913,7 +29928,7 @@ static void REGAL_CALL http_glBindVertexShaderEXT(GLuint id) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindVertexShaderEXT(id); } @@ -29928,7 +29943,7 @@ static void REGAL_CALL http_glDeleteVertexShaderEXT(GLuint id) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeleteVertexShaderEXT(id); } @@ -29943,7 +29958,7 @@ static void REGAL_CALL http_glDisableVariantClientStateEXT(GLuint id) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDisableVariantClientStateEXT(id); } @@ -29958,7 +29973,7 @@ static void REGAL_CALL http_glEnableVariantClientStateEXT(GLuint id) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEnableVariantClientStateEXT(id); } @@ -29973,7 +29988,7 @@ static void REGAL_CALL http_glEndVertexShaderEXT(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEndVertexShaderEXT(); } @@ -29988,7 +30003,7 @@ static void REGAL_CALL http_glExtractComponentEXT(GLuint res, GLuint src, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glExtractComponentEXT(res, src, num); } @@ -30004,7 +30019,7 @@ static GLuint REGAL_CALL http_glGenSymbolsEXT(GLenum datatype, GLenum storagetyp } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glGenSymbolsEXT(datatype, storagetype, range, components); return ret; @@ -30021,7 +30036,7 @@ static GLuint REGAL_CALL http_glGenVertexShadersEXT(GLuint range) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glGenVertexShadersEXT(range); return ret; @@ -30037,7 +30052,7 @@ static void REGAL_CALL http_glGetInvariantBooleanvEXT(GLuint id, GLenum value, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetInvariantBooleanvEXT(id, value, data); } @@ -30052,7 +30067,7 @@ static void REGAL_CALL http_glGetInvariantFloatvEXT(GLuint id, GLenum value, GLf } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetInvariantFloatvEXT(id, value, data); } @@ -30067,7 +30082,7 @@ static void REGAL_CALL http_glGetInvariantIntegervEXT(GLuint id, GLenum value, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetInvariantIntegervEXT(id, value, data); } @@ -30082,7 +30097,7 @@ static void REGAL_CALL http_glGetLocalConstantBooleanvEXT(GLuint id, GLenum valu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetLocalConstantBooleanvEXT(id, value, data); } @@ -30097,7 +30112,7 @@ static void REGAL_CALL http_glGetLocalConstantFloatvEXT(GLuint id, GLenum value, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetLocalConstantFloatvEXT(id, value, data); } @@ -30112,7 +30127,7 @@ static void REGAL_CALL http_glGetLocalConstantIntegervEXT(GLuint id, GLenum valu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetLocalConstantIntegervEXT(id, value, data); } @@ -30127,7 +30142,7 @@ static void REGAL_CALL http_glGetVariantBooleanvEXT(GLuint id, GLenum value, GLb } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVariantBooleanvEXT(id, value, data); } @@ -30142,7 +30157,7 @@ static void REGAL_CALL http_glGetVariantFloatvEXT(GLuint id, GLenum value, GLflo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVariantFloatvEXT(id, value, data); } @@ -30157,7 +30172,7 @@ static void REGAL_CALL http_glGetVariantIntegervEXT(GLuint id, GLenum value, GLi } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVariantIntegervEXT(id, value, data); } @@ -30172,7 +30187,7 @@ static void REGAL_CALL http_glGetVariantPointervEXT(GLuint id, GLenum value, GLv } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVariantPointervEXT(id, value, data); } @@ -30187,7 +30202,7 @@ static void REGAL_CALL http_glInsertComponentEXT(GLuint res, GLuint src, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glInsertComponentEXT(res, src, num); } @@ -30203,7 +30218,7 @@ static GLboolean REGAL_CALL http_glIsVariantEnabledEXT(GLuint id, GLenum cap) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsVariantEnabledEXT(id, cap); return ret; @@ -30219,7 +30234,7 @@ static void REGAL_CALL http_glSetInvariantEXT(GLuint id, GLenum type, const GLvo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSetInvariantEXT(id, type, addr); } @@ -30234,7 +30249,7 @@ static void REGAL_CALL http_glSetLocalConstantEXT(GLuint id, GLenum type, const } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSetLocalConstantEXT(id, type, addr); } @@ -30249,7 +30264,7 @@ static void REGAL_CALL http_glShaderOp1EXT(GLenum op, GLuint res, GLuint arg1) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glShaderOp1EXT(op, res, arg1); } @@ -30264,7 +30279,7 @@ static void REGAL_CALL http_glShaderOp2EXT(GLenum op, GLuint res, GLuint arg1, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glShaderOp2EXT(op, res, arg1, arg2); } @@ -30279,7 +30294,7 @@ static void REGAL_CALL http_glShaderOp3EXT(GLenum op, GLuint res, GLuint arg1, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glShaderOp3EXT(op, res, arg1, arg2, arg3); } @@ -30294,7 +30309,7 @@ static void REGAL_CALL http_glSwizzleEXT(GLuint res, GLuint in, GLenum outX, GLe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSwizzleEXT(res, in, outX, outY, outZ, outW); } @@ -30309,7 +30324,7 @@ static void REGAL_CALL http_glVariantPointerEXT(GLuint id, GLenum type, GLuint s } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVariantPointerEXT(id, type, stride, addr); } @@ -30324,7 +30339,7 @@ static void REGAL_CALL http_glVariantbvEXT(GLuint id, const GLbyte *addr) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVariantbvEXT(id, addr); } @@ -30339,7 +30354,7 @@ static void REGAL_CALL http_glVariantdvEXT(GLuint id, const GLdouble *addr) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVariantdvEXT(id, addr); } @@ -30354,7 +30369,7 @@ static void REGAL_CALL http_glVariantfvEXT(GLuint id, const GLfloat *addr) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVariantfvEXT(id, addr); } @@ -30369,7 +30384,7 @@ static void REGAL_CALL http_glVariantivEXT(GLuint id, const GLint *addr) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVariantivEXT(id, addr); } @@ -30384,7 +30399,7 @@ static void REGAL_CALL http_glVariantsvEXT(GLuint id, const GLshort *addr) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVariantsvEXT(id, addr); } @@ -30399,7 +30414,7 @@ static void REGAL_CALL http_glVariantubvEXT(GLuint id, const GLubyte *addr) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVariantubvEXT(id, addr); } @@ -30414,7 +30429,7 @@ static void REGAL_CALL http_glVariantuivEXT(GLuint id, const GLuint *addr) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVariantuivEXT(id, addr); } @@ -30429,7 +30444,7 @@ static void REGAL_CALL http_glVariantusvEXT(GLuint id, const GLushort *addr) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVariantusvEXT(id, addr); } @@ -30444,7 +30459,7 @@ static void REGAL_CALL http_glWriteMaskEXT(GLuint res, GLuint in, GLenum outX, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWriteMaskEXT(res, in, outX, outY, outZ, outW); } @@ -30461,7 +30476,7 @@ static void REGAL_CALL http_glVertexWeightPointerEXT(GLsizei size, GLenum type, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexWeightPointerEXT(size, type, stride, pointer); } @@ -30476,7 +30491,7 @@ static void REGAL_CALL http_glVertexWeightfEXT(GLfloat weight) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexWeightfEXT(weight); } @@ -30491,7 +30506,7 @@ static void REGAL_CALL http_glVertexWeightfvEXT(const GLfloat *weight) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexWeightfvEXT(weight); } @@ -30509,7 +30524,7 @@ static GLsync REGAL_CALL http_glImportSyncEXT(GLenum external_sync_type, GLintpt } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glImportSyncEXT(external_sync_type, external_sync, flags); return ret; @@ -30527,7 +30542,7 @@ static void REGAL_CALL http_glFrameTerminatorGREMEDY(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFrameTerminatorGREMEDY(); } @@ -30544,7 +30559,7 @@ static void REGAL_CALL http_glStringMarkerGREMEDY(GLsizei len, const GLvoid *str } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glStringMarkerGREMEDY(len, string); } @@ -30561,7 +30576,7 @@ static void REGAL_CALL http_glGetImageTransformParameterfvHP(GLenum target, GLen } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetImageTransformParameterfvHP(target, pname, params); } @@ -30576,7 +30591,7 @@ static void REGAL_CALL http_glGetImageTransformParameterivHP(GLenum target, GLen } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetImageTransformParameterivHP(target, pname, params); } @@ -30591,7 +30606,7 @@ static void REGAL_CALL http_glImageTransformParameterfHP(GLenum target, GLenum p } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glImageTransformParameterfHP(target, pname, param); } @@ -30606,7 +30621,7 @@ static void REGAL_CALL http_glImageTransformParameterfvHP(GLenum target, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glImageTransformParameterfvHP(target, pname, params); } @@ -30621,7 +30636,7 @@ static void REGAL_CALL http_glImageTransformParameteriHP(GLenum target, GLenum p } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glImageTransformParameteriHP(target, pname, param); } @@ -30636,7 +30651,7 @@ static void REGAL_CALL http_glImageTransformParameterivHP(GLenum target, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glImageTransformParameterivHP(target, pname, params); } @@ -30653,7 +30668,7 @@ static void REGAL_CALL http_glMultiModeDrawArraysIBM(const GLenum *mode, const G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiModeDrawArraysIBM(mode, first, count, primcount, modestride); } @@ -30668,7 +30683,7 @@ static void REGAL_CALL http_glMultiModeDrawElementsIBM(const GLenum *mode, const } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiModeDrawElementsIBM(mode, count, type, indices, primcount, modestride); } @@ -30685,7 +30700,7 @@ static void REGAL_CALL http_glColorPointerListIBM(GLint size, GLenum type, GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColorPointerListIBM(size, type, stride, pointer, ptrstride); } @@ -30700,7 +30715,7 @@ static void REGAL_CALL http_glEdgeFlagPointerListIBM(GLint stride, const GLboole } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEdgeFlagPointerListIBM(stride, pointer, ptrstride); } @@ -30715,7 +30730,7 @@ static void REGAL_CALL http_glFogCoordPointerListIBM(GLenum type, GLint stride, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFogCoordPointerListIBM(type, stride, pointer, ptrstride); } @@ -30730,7 +30745,7 @@ static void REGAL_CALL http_glIndexPointerListIBM(GLenum type, GLint stride, con } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glIndexPointerListIBM(type, stride, pointer, ptrstride); } @@ -30745,7 +30760,7 @@ static void REGAL_CALL http_glNormalPointerListIBM(GLenum type, GLint stride, co } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNormalPointerListIBM(type, stride, pointer, ptrstride); } @@ -30760,7 +30775,7 @@ static void REGAL_CALL http_glSecondaryColorPointerListIBM(GLint size, GLenum ty } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColorPointerListIBM(size, type, stride, pointer, ptrstride); } @@ -30775,7 +30790,7 @@ static void REGAL_CALL http_glTexCoordPointerListIBM(GLint size, GLenum type, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoordPointerListIBM(size, type, stride, pointer, ptrstride); } @@ -30790,7 +30805,7 @@ static void REGAL_CALL http_glVertexPointerListIBM(GLint size, GLenum type, GLin } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexPointerListIBM(size, type, stride, pointer, ptrstride); } @@ -30807,7 +30822,7 @@ static void REGAL_CALL http_glFramebufferTexture2DMultisampleIMG(GLenum target, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFramebufferTexture2DMultisampleIMG(target, attachment, textarget, texture, level, samples); } @@ -30822,7 +30837,7 @@ static void REGAL_CALL http_glRenderbufferStorageMultisampleIMG(GLenum target, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRenderbufferStorageMultisampleIMG(target, samples, internalformat, width, height); } @@ -30839,7 +30854,7 @@ static void REGAL_CALL http_glBlendFuncSeparateINGR(GLenum sfactorRGB, GLenum df } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBlendFuncSeparateINGR(sfactorRGB, dfactorRGB, sfactorAlpha, dfactorAlpha); } @@ -30857,7 +30872,7 @@ static GLvoid *REGAL_CALL http_glMapTexture2DINTEL(GLuint texture, GLint level, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glMapTexture2DINTEL(texture, level, access, stride, layout); return ret; @@ -30873,7 +30888,7 @@ static void REGAL_CALL http_glSyncTextureINTEL(GLuint texture) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSyncTextureINTEL(texture); } @@ -30888,7 +30903,7 @@ static void REGAL_CALL http_glUnmapTexture2DINTEL(GLuint texture, GLint level) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUnmapTexture2DINTEL(texture, level); } @@ -30905,7 +30920,7 @@ static void REGAL_CALL http_glColorPointervINTEL(GLint size, GLenum type, const } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColorPointervINTEL(size, type, pointer); } @@ -30920,7 +30935,7 @@ static void REGAL_CALL http_glNormalPointervINTEL(GLenum type, const GLvoid **po } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNormalPointervINTEL(type, pointer); } @@ -30935,7 +30950,7 @@ static void REGAL_CALL http_glTexCoordPointervINTEL(GLint size, GLenum type, con } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoordPointervINTEL(size, type, pointer); } @@ -30950,7 +30965,7 @@ static void REGAL_CALL http_glVertexPointervINTEL(GLint size, GLenum type, const } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexPointervINTEL(size, type, pointer); } @@ -30967,7 +30982,7 @@ static void REGAL_CALL http_glTexScissorFuncINTEL(GLenum target, GLenum lfunc, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexScissorFuncINTEL(target, lfunc, hfunc); } @@ -30982,7 +30997,7 @@ static void REGAL_CALL http_glTexScissorINTEL(GLenum target, GLclampf tlow, GLcl } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexScissorINTEL(target, tlow, thigh); } @@ -30999,7 +31014,7 @@ static void REGAL_CALL http_glDebugMessageCallback(GLDEBUGPROC callback, const G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDebugMessageCallback(callback, userParam); } @@ -31014,7 +31029,7 @@ static void REGAL_CALL http_glDebugMessageControl(GLenum source, GLenum type, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDebugMessageControl(source, type, severity, count, ids, enabled); } @@ -31029,7 +31044,7 @@ static void REGAL_CALL http_glDebugMessageInsert(GLenum source, GLenum type, GLu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDebugMessageInsert(source, type, id, severity, length, buf); } @@ -31045,7 +31060,7 @@ static GLuint REGAL_CALL http_glGetDebugMessageLog(GLuint count, GLsizei bufsize } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glGetDebugMessageLog(count, bufsize, sources, types, ids, severities, lengths, messageLog); return ret; @@ -31061,7 +31076,7 @@ static void REGAL_CALL http_glGetObjectLabel(GLenum identifier, GLuint name, GLs } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetObjectLabel(identifier, name, bufSize, length, label); } @@ -31076,7 +31091,7 @@ static void REGAL_CALL http_glGetObjectPtrLabel(const GLvoid *ptr, GLsizei bufSi } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetObjectPtrLabel(ptr, bufSize, length, label); } @@ -31091,7 +31106,7 @@ static void REGAL_CALL http_glObjectLabel(GLenum identifier, GLuint name, GLsize } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glObjectLabel(identifier, name, length, label); } @@ -31106,7 +31121,7 @@ static void REGAL_CALL http_glObjectPtrLabel(const GLvoid *ptr, GLsizei length, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glObjectPtrLabel(ptr, length, label); } @@ -31121,7 +31136,7 @@ static void REGAL_CALL http_glPopDebugGroup(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPopDebugGroup(); if( _context ) { @@ -31151,7 +31166,7 @@ static void REGAL_CALL http_glPushDebugGroup(GLenum source, GLuint id, GLsizei l } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPushDebugGroup(source, id, length, message); if( _context ) { @@ -31172,7 +31187,7 @@ static GLuint REGAL_CALL http_glBufferRegionEnabled(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glBufferRegionEnabled(); return ret; @@ -31188,7 +31203,7 @@ static void REGAL_CALL http_glDeleteBufferRegion(GLenum region) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeleteBufferRegion(region); } @@ -31203,7 +31218,7 @@ static void REGAL_CALL http_glDrawBufferRegion(GLuint region, GLint x, GLint y, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawBufferRegion(region, x, y, width, height, xDest, yDest); } @@ -31219,7 +31234,7 @@ static GLuint REGAL_CALL http_glNewBufferRegion(GLenum region) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glNewBufferRegion(region); return ret; @@ -31235,7 +31250,7 @@ static void REGAL_CALL http_glReadBufferRegion(GLuint region, GLint x, GLint y, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glReadBufferRegion(region, x, y, width, height); } @@ -31252,7 +31267,7 @@ static void REGAL_CALL http_glResizeBuffersMESA(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glResizeBuffersMESA(); } @@ -31269,7 +31284,7 @@ static void REGAL_CALL http_glWindowPos2dMESA(GLdouble x, GLdouble y) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos2dMESA(x, y); } @@ -31284,7 +31299,7 @@ static void REGAL_CALL http_glWindowPos2dvMESA(const GLdouble *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos2dvMESA(v); } @@ -31299,7 +31314,7 @@ static void REGAL_CALL http_glWindowPos2fMESA(GLfloat x, GLfloat y) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos2fMESA(x, y); } @@ -31314,7 +31329,7 @@ static void REGAL_CALL http_glWindowPos2fvMESA(const GLfloat *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos2fvMESA(v); } @@ -31329,7 +31344,7 @@ static void REGAL_CALL http_glWindowPos2iMESA(GLint x, GLint y) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos2iMESA(x, y); } @@ -31344,7 +31359,7 @@ static void REGAL_CALL http_glWindowPos2ivMESA(const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos2ivMESA(v); } @@ -31359,7 +31374,7 @@ static void REGAL_CALL http_glWindowPos2sMESA(GLshort x, GLshort y) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos2sMESA(x, y); } @@ -31374,7 +31389,7 @@ static void REGAL_CALL http_glWindowPos2svMESA(const GLshort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos2svMESA(v); } @@ -31389,7 +31404,7 @@ static void REGAL_CALL http_glWindowPos3dMESA(GLdouble x, GLdouble y, GLdouble z } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos3dMESA(x, y, z); } @@ -31404,7 +31419,7 @@ static void REGAL_CALL http_glWindowPos3dvMESA(const GLdouble *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos3dvMESA(v); } @@ -31419,7 +31434,7 @@ static void REGAL_CALL http_glWindowPos3fMESA(GLfloat x, GLfloat y, GLfloat z) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos3fMESA(x, y, z); } @@ -31434,7 +31449,7 @@ static void REGAL_CALL http_glWindowPos3fvMESA(const GLfloat *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos3fvMESA(v); } @@ -31449,7 +31464,7 @@ static void REGAL_CALL http_glWindowPos3iMESA(GLint x, GLint y, GLint z) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos3iMESA(x, y, z); } @@ -31464,7 +31479,7 @@ static void REGAL_CALL http_glWindowPos3ivMESA(const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos3ivMESA(v); } @@ -31479,7 +31494,7 @@ static void REGAL_CALL http_glWindowPos3sMESA(GLshort x, GLshort y, GLshort z) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos3sMESA(x, y, z); } @@ -31494,7 +31509,7 @@ static void REGAL_CALL http_glWindowPos3svMESA(const GLshort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos3svMESA(v); } @@ -31509,7 +31524,7 @@ static void REGAL_CALL http_glWindowPos4dMESA(GLdouble x, GLdouble y, GLdouble z } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos4dMESA(x, y, z, w); } @@ -31524,7 +31539,7 @@ static void REGAL_CALL http_glWindowPos4dvMESA(const GLdouble *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos4dvMESA(v); } @@ -31539,7 +31554,7 @@ static void REGAL_CALL http_glWindowPos4fMESA(GLfloat x, GLfloat y, GLfloat z, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos4fMESA(x, y, z, w); } @@ -31554,7 +31569,7 @@ static void REGAL_CALL http_glWindowPos4fvMESA(const GLfloat *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos4fvMESA(v); } @@ -31569,7 +31584,7 @@ static void REGAL_CALL http_glWindowPos4iMESA(GLint x, GLint y, GLint z, GLint w } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos4iMESA(x, y, z, w); } @@ -31584,7 +31599,7 @@ static void REGAL_CALL http_glWindowPos4ivMESA(const GLint *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos4ivMESA(v); } @@ -31599,7 +31614,7 @@ static void REGAL_CALL http_glWindowPos4sMESA(GLshort x, GLshort y, GLshort z, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos4sMESA(x, y, z, w); } @@ -31614,7 +31629,7 @@ static void REGAL_CALL http_glWindowPos4svMESA(const GLshort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWindowPos4svMESA(v); } @@ -31631,7 +31646,7 @@ static void REGAL_CALL http_glBeginConditionalRenderNVX(GLuint id) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBeginConditionalRenderNVX(id); } @@ -31646,7 +31661,7 @@ static void REGAL_CALL http_glEndConditionalRenderNVX(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEndConditionalRenderNVX(); } @@ -31664,7 +31679,7 @@ static GLuint64 REGAL_CALL http_glGetImageHandleNV(GLuint texture, GLint level, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glGetImageHandleNV(texture, level, layered, layer, format); return ret; @@ -31681,7 +31696,7 @@ static GLuint64 REGAL_CALL http_glGetTextureHandleNV(GLuint texture) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glGetTextureHandleNV(texture); return ret; @@ -31698,7 +31713,7 @@ static GLuint64 REGAL_CALL http_glGetTextureSamplerHandleNV(GLuint texture, GLui } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glGetTextureSamplerHandleNV(texture, sampler); return ret; @@ -31715,7 +31730,7 @@ static GLboolean REGAL_CALL http_glIsImageHandleResidentNV(GLuint64 handle) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsImageHandleResidentNV(handle); return ret; @@ -31732,7 +31747,7 @@ static GLboolean REGAL_CALL http_glIsTextureHandleResidentNV(GLuint64 handle) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsTextureHandleResidentNV(handle); return ret; @@ -31748,7 +31763,7 @@ static void REGAL_CALL http_glMakeImageHandleNonResidentNV(GLuint64 handle) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMakeImageHandleNonResidentNV(handle); } @@ -31763,7 +31778,7 @@ static void REGAL_CALL http_glMakeImageHandleResidentNV(GLuint64 handle, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMakeImageHandleResidentNV(handle, access); } @@ -31778,7 +31793,7 @@ static void REGAL_CALL http_glMakeTextureHandleNonResidentNV(GLuint64 handle) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMakeTextureHandleNonResidentNV(handle); } @@ -31793,7 +31808,7 @@ static void REGAL_CALL http_glMakeTextureHandleResidentNV(GLuint64 handle) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMakeTextureHandleResidentNV(handle); } @@ -31808,7 +31823,7 @@ static void REGAL_CALL http_glProgramUniformHandleui64NV(GLuint program, GLint l } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformHandleui64NV(program, location, value); } @@ -31823,7 +31838,7 @@ static void REGAL_CALL http_glProgramUniformHandleui64vNV(GLuint program, GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformHandleui64vNV(program, location, count, values); } @@ -31838,7 +31853,7 @@ static void REGAL_CALL http_glUniformHandleui64NV(GLint location, GLuint64 value } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniformHandleui64NV(location, value); } @@ -31853,7 +31868,7 @@ static void REGAL_CALL http_glUniformHandleui64vNV(GLint location, GLsizei count } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniformHandleui64vNV(location, count, value); } @@ -31870,7 +31885,7 @@ static void REGAL_CALL http_glBlendBarrierNV(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBlendBarrierNV(); } @@ -31885,7 +31900,7 @@ static void REGAL_CALL http_glBlendParameteriNV(GLenum pname, GLint value) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBlendParameteriNV(pname, value); } @@ -31902,7 +31917,7 @@ static void REGAL_CALL http_glBeginConditionalRenderNV(GLuint id, GLenum mode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBeginConditionalRenderNV(id, mode); } @@ -31917,7 +31932,7 @@ static void REGAL_CALL http_glEndConditionalRenderNV(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEndConditionalRenderNV(); } @@ -31934,7 +31949,7 @@ static void REGAL_CALL http_glCopyBufferSubDataNV(GLenum readtarget, GLenum writ } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCopyBufferSubDataNV(readtarget, writetarget, readoffset, writeoffset, size); } @@ -31951,7 +31966,7 @@ static void REGAL_CALL http_glCopyImageSubDataNV(GLuint srcName, GLenum srcTarge } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCopyImageSubDataNV(srcName, srcTarget, srcLevel, srcX, srcY, srcZ, dstName, dstTarget, dstLevel, dstX, dstY, dstZ, width, height, depth); } @@ -31968,7 +31983,7 @@ static void REGAL_CALL http_glCoverageMaskNV(GLboolean mask) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCoverageMaskNV(mask); } @@ -31983,7 +31998,7 @@ static void REGAL_CALL http_glCoverageOperationNV(GLenum operation) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCoverageOperationNV(operation); } @@ -32000,7 +32015,7 @@ static void REGAL_CALL http_glClearDepthdNV(GLdouble depth) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glClearDepthdNV(depth); } @@ -32015,7 +32030,7 @@ static void REGAL_CALL http_glDepthBoundsdNV(GLdouble zmin, GLdouble zmax) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDepthBoundsdNV(zmin, zmax); } @@ -32030,7 +32045,7 @@ static void REGAL_CALL http_glDepthRangedNV(GLdouble zNear, GLdouble zFar) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDepthRangedNV(zNear, zFar); } @@ -32047,7 +32062,7 @@ static void REGAL_CALL http_glDrawBuffersNV(GLsizei n, const GLenum *bufs) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawBuffersNV(n, bufs); } @@ -32064,7 +32079,7 @@ static void REGAL_CALL http_glDrawTextureNV(GLuint texture, GLuint sampler, GLfl } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawTextureNV(texture, sampler, x0, y0, x1, y1, z, s0, t0, s1, t1); } @@ -32081,7 +32096,7 @@ static void REGAL_CALL http_glEvalMapsNV(GLenum target, GLenum mode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEvalMapsNV(target, mode); } @@ -32096,7 +32111,7 @@ static void REGAL_CALL http_glGetMapAttribParameterfvNV(GLenum target, GLuint in } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetMapAttribParameterfvNV(target, index, pname, params); } @@ -32111,7 +32126,7 @@ static void REGAL_CALL http_glGetMapAttribParameterivNV(GLenum target, GLuint in } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetMapAttribParameterivNV(target, index, pname, params); } @@ -32126,7 +32141,7 @@ static void REGAL_CALL http_glGetMapControlPointsNV(GLenum target, GLuint index, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetMapControlPointsNV(target, index, type, ustride, vstride, packed, points); } @@ -32141,7 +32156,7 @@ static void REGAL_CALL http_glGetMapParameterfvNV(GLenum target, GLenum pname, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetMapParameterfvNV(target, pname, params); } @@ -32156,7 +32171,7 @@ static void REGAL_CALL http_glGetMapParameterivNV(GLenum target, GLenum pname, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetMapParameterivNV(target, pname, params); } @@ -32171,7 +32186,7 @@ static void REGAL_CALL http_glMapControlPointsNV(GLenum target, GLuint index, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMapControlPointsNV(target, index, type, ustride, vstride, uorder, vorder, packed, points); } @@ -32186,7 +32201,7 @@ static void REGAL_CALL http_glMapParameterfvNV(GLenum target, GLenum pname, cons } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMapParameterfvNV(target, pname, params); } @@ -32201,7 +32216,7 @@ static void REGAL_CALL http_glMapParameterivNV(GLenum target, GLenum pname, cons } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMapParameterivNV(target, pname, params); } @@ -32218,7 +32233,7 @@ static void REGAL_CALL http_glGetMultisamplefvNV(GLenum pname, GLuint index, GLf } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetMultisamplefvNV(pname, index, val); } @@ -32233,7 +32248,7 @@ static void REGAL_CALL http_glSampleMaskIndexedNV(GLuint index, GLbitfield mask) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSampleMaskIndexedNV(index, mask); } @@ -32248,7 +32263,7 @@ static void REGAL_CALL http_glTexRenderbufferNV(GLenum target, GLuint renderbuff } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexRenderbufferNV(target, renderbuffer); } @@ -32265,7 +32280,7 @@ static void REGAL_CALL http_glDeleteFencesNV(GLsizei n, const GLuint *fences) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeleteFencesNV(n, fences); } @@ -32280,7 +32295,7 @@ static void REGAL_CALL http_glFinishFenceNV(GLuint fence) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFinishFenceNV(fence); } @@ -32295,7 +32310,7 @@ static void REGAL_CALL http_glGenFencesNV(GLsizei n, GLuint *fences) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGenFencesNV(n, fences); } @@ -32310,7 +32325,7 @@ static void REGAL_CALL http_glGetFenceivNV(GLuint fence, GLenum pname, GLint *pa } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetFenceivNV(fence, pname, params); } @@ -32326,7 +32341,7 @@ static GLboolean REGAL_CALL http_glIsFenceNV(GLuint fence) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsFenceNV(fence); return ret; @@ -32342,7 +32357,7 @@ static void REGAL_CALL http_glSetFenceNV(GLuint fence, GLenum condition) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSetFenceNV(fence, condition); } @@ -32358,7 +32373,7 @@ static GLboolean REGAL_CALL http_glTestFenceNV(GLuint fence) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glTestFenceNV(fence); return ret; @@ -32376,7 +32391,7 @@ static void REGAL_CALL http_glGetProgramNamedParameterdvNV(GLuint id, GLsizei le } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetProgramNamedParameterdvNV(id, len, name, params); } @@ -32391,7 +32406,7 @@ static void REGAL_CALL http_glGetProgramNamedParameterfvNV(GLuint id, GLsizei le } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetProgramNamedParameterfvNV(id, len, name, params); } @@ -32406,7 +32421,7 @@ static void REGAL_CALL http_glProgramNamedParameter4dNV(GLuint id, GLsizei len, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramNamedParameter4dNV(id, len, name, x, y, z, w); } @@ -32421,7 +32436,7 @@ static void REGAL_CALL http_glProgramNamedParameter4dvNV(GLuint id, GLsizei len, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramNamedParameter4dvNV(id, len, name, v); } @@ -32436,7 +32451,7 @@ static void REGAL_CALL http_glProgramNamedParameter4fNV(GLuint id, GLsizei len, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramNamedParameter4fNV(id, len, name, x, y, z, w); } @@ -32451,7 +32466,7 @@ static void REGAL_CALL http_glProgramNamedParameter4fvNV(GLuint id, GLsizei len, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramNamedParameter4fvNV(id, len, name, v); } @@ -32468,7 +32483,7 @@ static void REGAL_CALL http_glBlitFramebufferNV(GLint srcX0, GLint srcY0, GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBlitFramebufferNV(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter); } @@ -32485,7 +32500,7 @@ static void REGAL_CALL http_glRenderbufferStorageMultisampleCoverageNV(GLenum ta } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRenderbufferStorageMultisampleCoverageNV(target, coverageSamples, colorSamples, internalformat, width, height); } @@ -32502,7 +32517,7 @@ static void REGAL_CALL http_glProgramVertexLimitNV(GLenum target, GLint limit) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramVertexLimitNV(target, limit); } @@ -32519,7 +32534,7 @@ static void REGAL_CALL http_glGetProgramEnvParameterIivNV(GLenum target, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetProgramEnvParameterIivNV(target, index, params); } @@ -32534,7 +32549,7 @@ static void REGAL_CALL http_glGetProgramEnvParameterIuivNV(GLenum target, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetProgramEnvParameterIuivNV(target, index, params); } @@ -32549,7 +32564,7 @@ static void REGAL_CALL http_glGetProgramLocalParameterIivNV(GLenum target, GLuin } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetProgramLocalParameterIivNV(target, index, params); } @@ -32564,7 +32579,7 @@ static void REGAL_CALL http_glGetProgramLocalParameterIuivNV(GLenum target, GLui } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetProgramLocalParameterIuivNV(target, index, params); } @@ -32579,7 +32594,7 @@ static void REGAL_CALL http_glProgramEnvParameterI4iNV(GLenum target, GLuint ind } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramEnvParameterI4iNV(target, index, x, y, z, w); } @@ -32594,7 +32609,7 @@ static void REGAL_CALL http_glProgramEnvParameterI4ivNV(GLenum target, GLuint in } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramEnvParameterI4ivNV(target, index, params); } @@ -32609,7 +32624,7 @@ static void REGAL_CALL http_glProgramEnvParameterI4uiNV(GLenum target, GLuint in } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramEnvParameterI4uiNV(target, index, x, y, z, w); } @@ -32624,7 +32639,7 @@ static void REGAL_CALL http_glProgramEnvParameterI4uivNV(GLenum target, GLuint i } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramEnvParameterI4uivNV(target, index, params); } @@ -32639,7 +32654,7 @@ static void REGAL_CALL http_glProgramEnvParametersI4ivNV(GLenum target, GLuint i } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramEnvParametersI4ivNV(target, index, count, params); } @@ -32654,7 +32669,7 @@ static void REGAL_CALL http_glProgramEnvParametersI4uivNV(GLenum target, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramEnvParametersI4uivNV(target, index, count, params); } @@ -32669,7 +32684,7 @@ static void REGAL_CALL http_glProgramLocalParameterI4iNV(GLenum target, GLuint i } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramLocalParameterI4iNV(target, index, x, y, z, w); } @@ -32684,7 +32699,7 @@ static void REGAL_CALL http_glProgramLocalParameterI4ivNV(GLenum target, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramLocalParameterI4ivNV(target, index, params); } @@ -32699,7 +32714,7 @@ static void REGAL_CALL http_glProgramLocalParameterI4uiNV(GLenum target, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramLocalParameterI4uiNV(target, index, x, y, z, w); } @@ -32714,7 +32729,7 @@ static void REGAL_CALL http_glProgramLocalParameterI4uivNV(GLenum target, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramLocalParameterI4uivNV(target, index, params); } @@ -32729,7 +32744,7 @@ static void REGAL_CALL http_glProgramLocalParametersI4ivNV(GLenum target, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramLocalParametersI4ivNV(target, index, count, params); } @@ -32744,7 +32759,7 @@ static void REGAL_CALL http_glProgramLocalParametersI4uivNV(GLenum target, GLuin } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramLocalParametersI4uivNV(target, index, count, params); } @@ -32761,7 +32776,7 @@ static void REGAL_CALL http_glGetUniformi64vNV(GLuint program, GLint location, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetUniformi64vNV(program, location, params); } @@ -32776,7 +32791,7 @@ static void REGAL_CALL http_glProgramUniform1i64NV(GLuint program, GLint locatio } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform1i64NV(program, location, x); } @@ -32791,7 +32806,7 @@ static void REGAL_CALL http_glProgramUniform1i64vNV(GLuint program, GLint locati } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform1i64vNV(program, location, count, value); } @@ -32806,7 +32821,7 @@ static void REGAL_CALL http_glProgramUniform1ui64NV(GLuint program, GLint locati } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform1ui64NV(program, location, x); } @@ -32821,7 +32836,7 @@ static void REGAL_CALL http_glProgramUniform1ui64vNV(GLuint program, GLint locat } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform1ui64vNV(program, location, count, value); } @@ -32836,7 +32851,7 @@ static void REGAL_CALL http_glProgramUniform2i64NV(GLuint program, GLint locatio } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform2i64NV(program, location, x, y); } @@ -32851,7 +32866,7 @@ static void REGAL_CALL http_glProgramUniform2i64vNV(GLuint program, GLint locati } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform2i64vNV(program, location, count, value); } @@ -32866,7 +32881,7 @@ static void REGAL_CALL http_glProgramUniform2ui64NV(GLuint program, GLint locati } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform2ui64NV(program, location, x, y); } @@ -32881,7 +32896,7 @@ static void REGAL_CALL http_glProgramUniform2ui64vNV(GLuint program, GLint locat } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform2ui64vNV(program, location, count, value); } @@ -32896,7 +32911,7 @@ static void REGAL_CALL http_glProgramUniform3i64NV(GLuint program, GLint locatio } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform3i64NV(program, location, x, y, z); } @@ -32911,7 +32926,7 @@ static void REGAL_CALL http_glProgramUniform3i64vNV(GLuint program, GLint locati } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform3i64vNV(program, location, count, value); } @@ -32926,7 +32941,7 @@ static void REGAL_CALL http_glProgramUniform3ui64NV(GLuint program, GLint locati } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform3ui64NV(program, location, x, y, z); } @@ -32941,7 +32956,7 @@ static void REGAL_CALL http_glProgramUniform3ui64vNV(GLuint program, GLint locat } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform3ui64vNV(program, location, count, value); } @@ -32956,7 +32971,7 @@ static void REGAL_CALL http_glProgramUniform4i64NV(GLuint program, GLint locatio } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform4i64NV(program, location, x, y, z, w); } @@ -32971,7 +32986,7 @@ static void REGAL_CALL http_glProgramUniform4i64vNV(GLuint program, GLint locati } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform4i64vNV(program, location, count, value); } @@ -32986,7 +33001,7 @@ static void REGAL_CALL http_glProgramUniform4ui64NV(GLuint program, GLint locati } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform4ui64NV(program, location, x, y, z, w); } @@ -33001,7 +33016,7 @@ static void REGAL_CALL http_glProgramUniform4ui64vNV(GLuint program, GLint locat } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniform4ui64vNV(program, location, count, value); } @@ -33016,7 +33031,7 @@ static void REGAL_CALL http_glUniform1i64NV(GLint location, GLint64EXT x) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform1i64NV(location, x); } @@ -33031,7 +33046,7 @@ static void REGAL_CALL http_glUniform1i64vNV(GLint location, GLsizei count, cons } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform1i64vNV(location, count, value); } @@ -33046,7 +33061,7 @@ static void REGAL_CALL http_glUniform1ui64NV(GLint location, GLuint64EXT x) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform1ui64NV(location, x); } @@ -33061,7 +33076,7 @@ static void REGAL_CALL http_glUniform1ui64vNV(GLint location, GLsizei count, con } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform1ui64vNV(location, count, value); } @@ -33076,7 +33091,7 @@ static void REGAL_CALL http_glUniform2i64NV(GLint location, GLint64EXT x, GLint6 } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform2i64NV(location, x, y); } @@ -33091,7 +33106,7 @@ static void REGAL_CALL http_glUniform2i64vNV(GLint location, GLsizei count, cons } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform2i64vNV(location, count, value); } @@ -33106,7 +33121,7 @@ static void REGAL_CALL http_glUniform2ui64NV(GLint location, GLuint64EXT x, GLui } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform2ui64NV(location, x, y); } @@ -33121,7 +33136,7 @@ static void REGAL_CALL http_glUniform2ui64vNV(GLint location, GLsizei count, con } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform2ui64vNV(location, count, value); } @@ -33136,7 +33151,7 @@ static void REGAL_CALL http_glUniform3i64NV(GLint location, GLint64EXT x, GLint6 } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform3i64NV(location, x, y, z); } @@ -33151,7 +33166,7 @@ static void REGAL_CALL http_glUniform3i64vNV(GLint location, GLsizei count, cons } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform3i64vNV(location, count, value); } @@ -33166,7 +33181,7 @@ static void REGAL_CALL http_glUniform3ui64NV(GLint location, GLuint64EXT x, GLui } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform3ui64NV(location, x, y, z); } @@ -33181,7 +33196,7 @@ static void REGAL_CALL http_glUniform3ui64vNV(GLint location, GLsizei count, con } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform3ui64vNV(location, count, value); } @@ -33196,7 +33211,7 @@ static void REGAL_CALL http_glUniform4i64NV(GLint location, GLint64EXT x, GLint6 } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform4i64NV(location, x, y, z, w); } @@ -33211,7 +33226,7 @@ static void REGAL_CALL http_glUniform4i64vNV(GLint location, GLsizei count, cons } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform4i64vNV(location, count, value); } @@ -33226,7 +33241,7 @@ static void REGAL_CALL http_glUniform4ui64NV(GLint location, GLuint64EXT x, GLui } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform4ui64NV(location, x, y, z, w); } @@ -33241,7 +33256,7 @@ static void REGAL_CALL http_glUniform4ui64vNV(GLint location, GLsizei count, con } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniform4ui64vNV(location, count, value); } @@ -33258,7 +33273,7 @@ static void REGAL_CALL http_glColor3hNV(GLhalfNV red, GLhalfNV green, GLhalfNV b } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor3hNV(red, green, blue); } @@ -33273,7 +33288,7 @@ static void REGAL_CALL http_glColor3hvNV(const GLhalfNV *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor3hvNV(v); } @@ -33288,7 +33303,7 @@ static void REGAL_CALL http_glColor4hNV(GLhalfNV red, GLhalfNV green, GLhalfNV b } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor4hNV(red, green, blue, alpha); } @@ -33303,7 +33318,7 @@ static void REGAL_CALL http_glColor4hvNV(const GLhalfNV *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor4hvNV(v); } @@ -33318,7 +33333,7 @@ static void REGAL_CALL http_glFogCoordhNV(GLhalfNV coord) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFogCoordhNV(coord); } @@ -33333,7 +33348,7 @@ static void REGAL_CALL http_glFogCoordhvNV(const GLhalfNV *coord) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFogCoordhvNV(coord); } @@ -33348,7 +33363,7 @@ static void REGAL_CALL http_glMultiTexCoord1hNV(GLenum target, GLhalfNV s) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord1hNV(target, s); } @@ -33363,7 +33378,7 @@ static void REGAL_CALL http_glMultiTexCoord1hvNV(GLenum target, const GLhalfNV * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord1hvNV(target, v); } @@ -33378,7 +33393,7 @@ static void REGAL_CALL http_glMultiTexCoord2hNV(GLenum target, GLhalfNV s, GLhal } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord2hNV(target, s, t); } @@ -33393,7 +33408,7 @@ static void REGAL_CALL http_glMultiTexCoord2hvNV(GLenum target, const GLhalfNV * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord2hvNV(target, v); } @@ -33408,7 +33423,7 @@ static void REGAL_CALL http_glMultiTexCoord3hNV(GLenum target, GLhalfNV s, GLhal } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord3hNV(target, s, t, r); } @@ -33423,7 +33438,7 @@ static void REGAL_CALL http_glMultiTexCoord3hvNV(GLenum target, const GLhalfNV * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord3hvNV(target, v); } @@ -33438,7 +33453,7 @@ static void REGAL_CALL http_glMultiTexCoord4hNV(GLenum target, GLhalfNV s, GLhal } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord4hNV(target, s, t, r, q); } @@ -33453,7 +33468,7 @@ static void REGAL_CALL http_glMultiTexCoord4hvNV(GLenum target, const GLhalfNV * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord4hvNV(target, v); } @@ -33468,7 +33483,7 @@ static void REGAL_CALL http_glNormal3hNV(GLhalfNV nx, GLhalfNV ny, GLhalfNV nz) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNormal3hNV(nx, ny, nz); } @@ -33483,7 +33498,7 @@ static void REGAL_CALL http_glNormal3hvNV(const GLhalfNV *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNormal3hvNV(v); } @@ -33498,7 +33513,7 @@ static void REGAL_CALL http_glSecondaryColor3hNV(GLhalfNV red, GLhalfNV green, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColor3hNV(red, green, blue); } @@ -33513,7 +33528,7 @@ static void REGAL_CALL http_glSecondaryColor3hvNV(const GLhalfNV *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColor3hvNV(v); } @@ -33528,7 +33543,7 @@ static void REGAL_CALL http_glTexCoord1hNV(GLhalfNV s) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord1hNV(s); } @@ -33543,7 +33558,7 @@ static void REGAL_CALL http_glTexCoord1hvNV(const GLhalfNV *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord1hvNV(v); } @@ -33558,7 +33573,7 @@ static void REGAL_CALL http_glTexCoord2hNV(GLhalfNV s, GLhalfNV t) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord2hNV(s, t); } @@ -33573,7 +33588,7 @@ static void REGAL_CALL http_glTexCoord2hvNV(const GLhalfNV *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord2hvNV(v); } @@ -33588,7 +33603,7 @@ static void REGAL_CALL http_glTexCoord3hNV(GLhalfNV s, GLhalfNV t, GLhalfNV r) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord3hNV(s, t, r); } @@ -33603,7 +33618,7 @@ static void REGAL_CALL http_glTexCoord3hvNV(const GLhalfNV *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord3hvNV(v); } @@ -33618,7 +33633,7 @@ static void REGAL_CALL http_glTexCoord4hNV(GLhalfNV s, GLhalfNV t, GLhalfNV r, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord4hNV(s, t, r, q); } @@ -33633,7 +33648,7 @@ static void REGAL_CALL http_glTexCoord4hvNV(const GLhalfNV *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord4hvNV(v); } @@ -33648,7 +33663,7 @@ static void REGAL_CALL http_glVertex2hNV(GLhalfNV x, GLhalfNV y) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertex2hNV(x, y); } @@ -33663,7 +33678,7 @@ static void REGAL_CALL http_glVertex2hvNV(const GLhalfNV *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertex2hvNV(v); } @@ -33678,7 +33693,7 @@ static void REGAL_CALL http_glVertex3hNV(GLhalfNV x, GLhalfNV y, GLhalfNV z) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertex3hNV(x, y, z); } @@ -33693,7 +33708,7 @@ static void REGAL_CALL http_glVertex3hvNV(const GLhalfNV *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertex3hvNV(v); } @@ -33708,7 +33723,7 @@ static void REGAL_CALL http_glVertex4hNV(GLhalfNV x, GLhalfNV y, GLhalfNV z, GLh } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertex4hNV(x, y, z, w); } @@ -33723,7 +33738,7 @@ static void REGAL_CALL http_glVertex4hvNV(const GLhalfNV *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertex4hvNV(v); } @@ -33738,7 +33753,7 @@ static void REGAL_CALL http_glVertexAttrib1hNV(GLuint index, GLhalfNV x) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib1hNV(index, x); } @@ -33753,7 +33768,7 @@ static void REGAL_CALL http_glVertexAttrib1hvNV(GLuint index, const GLhalfNV *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib1hvNV(index, v); } @@ -33768,7 +33783,7 @@ static void REGAL_CALL http_glVertexAttrib2hNV(GLuint index, GLhalfNV x, GLhalfN } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib2hNV(index, x, y); } @@ -33783,7 +33798,7 @@ static void REGAL_CALL http_glVertexAttrib2hvNV(GLuint index, const GLhalfNV *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib2hvNV(index, v); } @@ -33798,7 +33813,7 @@ static void REGAL_CALL http_glVertexAttrib3hNV(GLuint index, GLhalfNV x, GLhalfN } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib3hNV(index, x, y, z); } @@ -33813,7 +33828,7 @@ static void REGAL_CALL http_glVertexAttrib3hvNV(GLuint index, const GLhalfNV *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib3hvNV(index, v); } @@ -33828,7 +33843,7 @@ static void REGAL_CALL http_glVertexAttrib4hNV(GLuint index, GLhalfNV x, GLhalfN } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4hNV(index, x, y, z, w); } @@ -33843,7 +33858,7 @@ static void REGAL_CALL http_glVertexAttrib4hvNV(GLuint index, const GLhalfNV *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4hvNV(index, v); } @@ -33858,7 +33873,7 @@ static void REGAL_CALL http_glVertexAttribs1hvNV(GLuint index, GLsizei count, co } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribs1hvNV(index, count, v); } @@ -33873,7 +33888,7 @@ static void REGAL_CALL http_glVertexAttribs2hvNV(GLuint index, GLsizei count, co } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribs2hvNV(index, count, v); } @@ -33888,7 +33903,7 @@ static void REGAL_CALL http_glVertexAttribs3hvNV(GLuint index, GLsizei count, co } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribs3hvNV(index, count, v); } @@ -33903,7 +33918,7 @@ static void REGAL_CALL http_glVertexAttribs4hvNV(GLuint index, GLsizei count, co } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribs4hvNV(index, count, v); } @@ -33918,7 +33933,7 @@ static void REGAL_CALL http_glVertexWeighthNV(GLhalfNV weight) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexWeighthNV(weight); } @@ -33933,7 +33948,7 @@ static void REGAL_CALL http_glVertexWeighthvNV(const GLhalfNV *weight) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexWeighthvNV(weight); } @@ -33950,7 +33965,7 @@ static void REGAL_CALL http_glUniformMatrix2x3fvNV(GLint location, GLsizei count } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniformMatrix2x3fvNV(location, count, transpose, value); } @@ -33965,7 +33980,7 @@ static void REGAL_CALL http_glUniformMatrix2x4fvNV(GLint location, GLsizei count } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniformMatrix2x4fvNV(location, count, transpose, value); } @@ -33980,7 +33995,7 @@ static void REGAL_CALL http_glUniformMatrix3x2fvNV(GLint location, GLsizei count } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniformMatrix3x2fvNV(location, count, transpose, value); } @@ -33995,7 +34010,7 @@ static void REGAL_CALL http_glUniformMatrix3x4fvNV(GLint location, GLsizei count } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniformMatrix3x4fvNV(location, count, transpose, value); } @@ -34010,7 +34025,7 @@ static void REGAL_CALL http_glUniformMatrix4x2fvNV(GLint location, GLsizei count } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniformMatrix4x2fvNV(location, count, transpose, value); } @@ -34025,7 +34040,7 @@ static void REGAL_CALL http_glUniformMatrix4x3fvNV(GLint location, GLsizei count } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniformMatrix4x3fvNV(location, count, transpose, value); } @@ -34042,7 +34057,7 @@ static void REGAL_CALL http_glBeginOcclusionQueryNV(GLuint id) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBeginOcclusionQueryNV(id); } @@ -34057,7 +34072,7 @@ static void REGAL_CALL http_glDeleteOcclusionQueriesNV(GLsizei n, const GLuint * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeleteOcclusionQueriesNV(n, ids); } @@ -34072,7 +34087,7 @@ static void REGAL_CALL http_glEndOcclusionQueryNV(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEndOcclusionQueryNV(); } @@ -34087,7 +34102,7 @@ static void REGAL_CALL http_glGenOcclusionQueriesNV(GLsizei n, GLuint *ids) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGenOcclusionQueriesNV(n, ids); } @@ -34102,7 +34117,7 @@ static void REGAL_CALL http_glGetOcclusionQueryivNV(GLuint id, GLenum pname, GLi } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetOcclusionQueryivNV(id, pname, params); } @@ -34117,7 +34132,7 @@ static void REGAL_CALL http_glGetOcclusionQueryuivNV(GLuint id, GLenum pname, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetOcclusionQueryuivNV(id, pname, params); } @@ -34133,7 +34148,7 @@ static GLboolean REGAL_CALL http_glIsOcclusionQueryNV(GLuint id) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsOcclusionQueryNV(id); return ret; @@ -34151,7 +34166,7 @@ static void REGAL_CALL http_glProgramBufferParametersIivNV(GLenum target, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramBufferParametersIivNV(target, buffer, index, count, params); } @@ -34166,7 +34181,7 @@ static void REGAL_CALL http_glProgramBufferParametersIuivNV(GLenum target, GLuin } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramBufferParametersIuivNV(target, buffer, index, count, params); } @@ -34181,7 +34196,7 @@ static void REGAL_CALL http_glProgramBufferParametersfvNV(GLenum target, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramBufferParametersfvNV(target, buffer, index, count, params); } @@ -34198,7 +34213,7 @@ static void REGAL_CALL http_glCopyPathNV(GLuint resultPath, GLuint srcPath) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCopyPathNV(resultPath, srcPath); } @@ -34213,7 +34228,7 @@ static void REGAL_CALL http_glCoverFillPathInstancedNV(GLsizei numPaths, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCoverFillPathInstancedNV(numPaths, pathNameType, paths, pathBase, coverMode, transformType, transformValues); } @@ -34228,7 +34243,7 @@ static void REGAL_CALL http_glCoverFillPathNV(GLuint path, GLenum coverMode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCoverFillPathNV(path, coverMode); } @@ -34243,7 +34258,7 @@ static void REGAL_CALL http_glCoverStrokePathInstancedNV(GLsizei numPaths, GLenu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCoverStrokePathInstancedNV(numPaths, pathNameType, paths, pathBase, coverMode, transformType, transformValues); } @@ -34258,7 +34273,7 @@ static void REGAL_CALL http_glCoverStrokePathNV(GLuint name, GLenum coverMode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCoverStrokePathNV(name, coverMode); } @@ -34273,7 +34288,7 @@ static void REGAL_CALL http_glDeletePathsNV(GLuint path, GLsizei range) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeletePathsNV(path, range); } @@ -34289,7 +34304,7 @@ static GLuint REGAL_CALL http_glGenPathsNV(GLsizei range) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glGenPathsNV(range); return ret; @@ -34305,7 +34320,7 @@ static void REGAL_CALL http_glGetPathColorGenfvNV(GLenum color, GLenum pname, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetPathColorGenfvNV(color, pname, value); } @@ -34320,7 +34335,7 @@ static void REGAL_CALL http_glGetPathColorGenivNV(GLenum color, GLenum pname, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetPathColorGenivNV(color, pname, value); } @@ -34335,7 +34350,7 @@ static void REGAL_CALL http_glGetPathCommandsNV(GLuint name, GLubyte *commands) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetPathCommandsNV(name, commands); } @@ -34350,7 +34365,7 @@ static void REGAL_CALL http_glGetPathCoordsNV(GLuint name, GLfloat *coords) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetPathCoordsNV(name, coords); } @@ -34365,7 +34380,7 @@ static void REGAL_CALL http_glGetPathDashArrayNV(GLuint name, GLfloat *dashArray } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetPathDashArrayNV(name, dashArray); } @@ -34381,7 +34396,7 @@ static GLfloat REGAL_CALL http_glGetPathLengthNV(GLuint path, GLsizei startSegme } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glGetPathLengthNV(path, startSegment, numSegments); return ret; @@ -34397,7 +34412,7 @@ static void REGAL_CALL http_glGetPathMetricRangeNV(GLbitfield metricQueryMask, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetPathMetricRangeNV(metricQueryMask, fistPathName, numPaths, stride, metrics); } @@ -34412,7 +34427,7 @@ static void REGAL_CALL http_glGetPathMetricsNV(GLbitfield metricQueryMask, GLsiz } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetPathMetricsNV(metricQueryMask, numPaths, pathNameType, paths, pathBase, stride, metrics); } @@ -34427,7 +34442,7 @@ static void REGAL_CALL http_glGetPathParameterfvNV(GLuint name, GLenum param, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetPathParameterfvNV(name, param, value); } @@ -34442,7 +34457,7 @@ static void REGAL_CALL http_glGetPathParameterivNV(GLuint name, GLenum param, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetPathParameterivNV(name, param, value); } @@ -34457,7 +34472,7 @@ static void REGAL_CALL http_glGetPathSpacingNV(GLenum pathListMode, GLsizei numP } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetPathSpacingNV(pathListMode, numPaths, pathNameType, paths, pathBase, advanceScale, kerningScale, transformType, returnedSpacing); } @@ -34472,7 +34487,7 @@ static void REGAL_CALL http_glGetPathTexGenfvNV(GLenum texCoordSet, GLenum pname } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetPathTexGenfvNV(texCoordSet, pname, value); } @@ -34487,7 +34502,7 @@ static void REGAL_CALL http_glGetPathTexGenivNV(GLenum texCoordSet, GLenum pname } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetPathTexGenivNV(texCoordSet, pname, value); } @@ -34502,7 +34517,7 @@ static void REGAL_CALL http_glInterpolatePathsNV(GLuint resultPath, GLuint pathA } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glInterpolatePathsNV(resultPath, pathA, pathB, weight); } @@ -34518,7 +34533,7 @@ static GLboolean REGAL_CALL http_glIsPathNV(GLuint path) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsPathNV(path); return ret; @@ -34535,7 +34550,7 @@ static GLboolean REGAL_CALL http_glIsPointInFillPathNV(GLuint path, GLuint mask, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsPointInFillPathNV(path, mask, x, y); return ret; @@ -34552,7 +34567,7 @@ static GLboolean REGAL_CALL http_glIsPointInStrokePathNV(GLuint path, GLfloat x, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsPointInStrokePathNV(path, x, y); return ret; @@ -34568,7 +34583,7 @@ static void REGAL_CALL http_glPathColorGenNV(GLenum color, GLenum genMode, GLenu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPathColorGenNV(color, genMode, colorFormat, coeffs); } @@ -34583,7 +34598,7 @@ static void REGAL_CALL http_glPathCommandsNV(GLuint path, GLsizei numCommands, c } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPathCommandsNV(path, numCommands, commands, numCoords, coordType, coords); } @@ -34598,7 +34613,7 @@ static void REGAL_CALL http_glPathCoordsNV(GLuint path, GLsizei numCoords, GLenu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPathCoordsNV(path, numCoords, coordType, coords); } @@ -34613,7 +34628,7 @@ static void REGAL_CALL http_glPathCoverDepthFuncNV(GLenum zfunc) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPathCoverDepthFuncNV(zfunc); } @@ -34628,7 +34643,7 @@ static void REGAL_CALL http_glPathDashArrayNV(GLuint path, GLsizei dashCount, co } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPathDashArrayNV(path, dashCount, dashArray); } @@ -34643,7 +34658,7 @@ static void REGAL_CALL http_glPathFogGenNV(GLenum genMode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPathFogGenNV(genMode); } @@ -34658,7 +34673,7 @@ static void REGAL_CALL http_glPathGlyphRangeNV(GLuint firstPathName, GLenum font } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPathGlyphRangeNV(firstPathName, fontTarget, fontName, fontStyle, firstGlyph, numGlyphs, handleMissingGlyphs, pathParameterTemplate, emScale); } @@ -34673,7 +34688,7 @@ static void REGAL_CALL http_glPathGlyphsNV(GLuint firstPathName, GLenum fontTarg } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPathGlyphsNV(firstPathName, fontTarget, fontName, fontStyle, numGlyphs, type, charcodes, handleMissingGlyphs, pathParameterTemplate, emScale); } @@ -34688,7 +34703,7 @@ static void REGAL_CALL http_glPathParameterfNV(GLuint path, GLenum pname, GLfloa } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPathParameterfNV(path, pname, value); } @@ -34703,7 +34718,7 @@ static void REGAL_CALL http_glPathParameterfvNV(GLuint path, GLenum pname, const } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPathParameterfvNV(path, pname, value); } @@ -34718,7 +34733,7 @@ static void REGAL_CALL http_glPathParameteriNV(GLuint path, GLenum pname, GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPathParameteriNV(path, pname, value); } @@ -34733,7 +34748,7 @@ static void REGAL_CALL http_glPathParameterivNV(GLuint path, GLenum pname, const } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPathParameterivNV(path, pname, value); } @@ -34748,7 +34763,7 @@ static void REGAL_CALL http_glPathStencilDepthOffsetNV(GLfloat factor, GLfloat u } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPathStencilDepthOffsetNV(factor, units); } @@ -34763,7 +34778,7 @@ static void REGAL_CALL http_glPathStencilFuncNV(GLenum func, GLint ref, GLuint m } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPathStencilFuncNV(func, ref, mask); } @@ -34778,7 +34793,7 @@ static void REGAL_CALL http_glPathStringNV(GLuint path, GLenum format, GLsizei l } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPathStringNV(path, format, length, pathString); } @@ -34793,7 +34808,7 @@ static void REGAL_CALL http_glPathSubCommandsNV(GLuint path, GLsizei commandStar } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPathSubCommandsNV(path, commandStart, commandsToDelete, numCommands, commands, numCoords, coordType, coords); } @@ -34808,7 +34823,7 @@ static void REGAL_CALL http_glPathSubCoordsNV(GLuint path, GLsizei coordStart, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPathSubCoordsNV(path, coordStart, numCoords, coordType, coords); } @@ -34823,7 +34838,7 @@ static void REGAL_CALL http_glPathTexGenNV(GLenum texCoordSet, GLenum genMode, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPathTexGenNV(texCoordSet, genMode, components, coeffs); } @@ -34839,7 +34854,7 @@ static GLboolean REGAL_CALL http_glPointAlongPathNV(GLuint path, GLsizei startSe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glPointAlongPathNV(path, startSegment, numSegments, distance, x, y, tangentX, tangentY); return ret; @@ -34855,7 +34870,7 @@ static void REGAL_CALL http_glStencilFillPathInstancedNV(GLsizei numPaths, GLenu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glStencilFillPathInstancedNV(numPaths, pathNameType, paths, pathBase, fillMode, mask, transformType, transformValues); } @@ -34870,7 +34885,7 @@ static void REGAL_CALL http_glStencilFillPathNV(GLuint path, GLenum fillMode, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glStencilFillPathNV(path, fillMode, mask); } @@ -34885,7 +34900,7 @@ static void REGAL_CALL http_glStencilStrokePathInstancedNV(GLsizei numPaths, GLe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glStencilStrokePathInstancedNV(numPaths, pathNameType, paths, pathBase, reference, mask, transformType, transformValues); } @@ -34900,7 +34915,7 @@ static void REGAL_CALL http_glStencilStrokePathNV(GLuint path, GLint reference, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glStencilStrokePathNV(path, reference, mask); } @@ -34915,7 +34930,7 @@ static void REGAL_CALL http_glTransformPathNV(GLuint resultPath, GLuint srcPath, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTransformPathNV(resultPath, srcPath, transformType, transformValues); } @@ -34930,7 +34945,7 @@ static void REGAL_CALL http_glWeightPathsNV(GLuint resultPath, GLsizei numPaths, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWeightPathsNV(resultPath, numPaths, paths, weights); } @@ -34947,7 +34962,7 @@ static void REGAL_CALL http_glFlushPixelDataRangeNV(GLenum target) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFlushPixelDataRangeNV(target); } @@ -34962,7 +34977,7 @@ static void REGAL_CALL http_glPixelDataRangeNV(GLenum target, GLsizei size, cons } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPixelDataRangeNV(target, size, pointer); } @@ -34979,7 +34994,7 @@ static void REGAL_CALL http_glPointParameteriNV(GLenum pname, GLint param) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPointParameteriNV(pname, param); } @@ -34994,7 +35009,7 @@ static void REGAL_CALL http_glPointParameterivNV(GLenum pname, const GLint *para } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPointParameterivNV(pname, params); } @@ -35011,7 +35026,7 @@ static void REGAL_CALL http_glGetVideoi64vNV(GLuint video_slot, GLenum pname, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVideoi64vNV(video_slot, pname, params); } @@ -35026,7 +35041,7 @@ static void REGAL_CALL http_glGetVideoivNV(GLuint video_slot, GLenum pname, GLin } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVideoivNV(video_slot, pname, params); } @@ -35041,7 +35056,7 @@ static void REGAL_CALL http_glGetVideoui64vNV(GLuint video_slot, GLenum pname, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVideoui64vNV(video_slot, pname, params); } @@ -35056,7 +35071,7 @@ static void REGAL_CALL http_glGetVideouivNV(GLuint video_slot, GLenum pname, GLu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVideouivNV(video_slot, pname, params); } @@ -35071,7 +35086,7 @@ static void REGAL_CALL http_glPresentFrameDualFillNV(GLuint video_slot, GLuint64 } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPresentFrameDualFillNV(video_slot, minPresentTime, beginPresentTimeId, presentDurationId, type, target0, fill0, target1, fill1, target2, fill2, target3, fill3); } @@ -35086,7 +35101,7 @@ static void REGAL_CALL http_glPresentFrameKeyedNV(GLuint video_slot, GLuint64EXT } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPresentFrameKeyedNV(video_slot, minPresentTime, beginPresentTimeId, presentDurationId, type, target0, fill0, key0, target1, fill1, key1); } @@ -35103,7 +35118,7 @@ static void REGAL_CALL http_glPrimitiveRestartIndexNV(GLuint index) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPrimitiveRestartIndexNV(index); } @@ -35118,7 +35133,7 @@ static void REGAL_CALL http_glPrimitiveRestartNV(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPrimitiveRestartNV(); } @@ -35135,7 +35150,7 @@ static void REGAL_CALL http_glReadBufferNV(GLenum mode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glReadBufferNV(mode); } @@ -35152,7 +35167,7 @@ static void REGAL_CALL http_glCombinerInputNV(GLenum stage, GLenum portion, GLen } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCombinerInputNV(stage, portion, variable, input, mapping, componentUsage); } @@ -35167,7 +35182,7 @@ static void REGAL_CALL http_glCombinerOutputNV(GLenum stage, GLenum portion, GLe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCombinerOutputNV(stage, portion, abOutput, cdOutput, sumOutput, scale, bias, abDotProduct, cdDotProduct, muxSum); } @@ -35182,7 +35197,7 @@ static void REGAL_CALL http_glCombinerParameterfNV(GLenum pname, GLfloat param) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCombinerParameterfNV(pname, param); } @@ -35197,7 +35212,7 @@ static void REGAL_CALL http_glCombinerParameterfvNV(GLenum pname, const GLfloat } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCombinerParameterfvNV(pname, params); } @@ -35212,7 +35227,7 @@ static void REGAL_CALL http_glCombinerParameteriNV(GLenum pname, GLint param) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCombinerParameteriNV(pname, param); } @@ -35227,7 +35242,7 @@ static void REGAL_CALL http_glCombinerParameterivNV(GLenum pname, const GLint *p } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCombinerParameterivNV(pname, params); } @@ -35242,7 +35257,7 @@ static void REGAL_CALL http_glFinalCombinerInputNV(GLenum variable, GLenum input } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFinalCombinerInputNV(variable, input, mapping, componentUsage); } @@ -35257,7 +35272,7 @@ static void REGAL_CALL http_glGetCombinerInputParameterfvNV(GLenum stage, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetCombinerInputParameterfvNV(stage, portion, variable, pname, params); } @@ -35272,7 +35287,7 @@ static void REGAL_CALL http_glGetCombinerInputParameterivNV(GLenum stage, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetCombinerInputParameterivNV(stage, portion, variable, pname, params); } @@ -35287,7 +35302,7 @@ static void REGAL_CALL http_glGetCombinerOutputParameterfvNV(GLenum stage, GLenu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetCombinerOutputParameterfvNV(stage, portion, pname, params); } @@ -35302,7 +35317,7 @@ static void REGAL_CALL http_glGetCombinerOutputParameterivNV(GLenum stage, GLenu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetCombinerOutputParameterivNV(stage, portion, pname, params); } @@ -35317,7 +35332,7 @@ static void REGAL_CALL http_glGetFinalCombinerInputParameterfvNV(GLenum variable } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetFinalCombinerInputParameterfvNV(variable, pname, params); } @@ -35332,7 +35347,7 @@ static void REGAL_CALL http_glGetFinalCombinerInputParameterivNV(GLenum variable } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetFinalCombinerInputParameterivNV(variable, pname, params); } @@ -35349,7 +35364,7 @@ static void REGAL_CALL http_glCombinerStageParameterfvNV(GLenum stage, GLenum pn } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCombinerStageParameterfvNV(stage, pname, params); } @@ -35364,7 +35379,7 @@ static void REGAL_CALL http_glGetCombinerStageParameterfvNV(GLenum stage, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetCombinerStageParameterfvNV(stage, pname, params); } @@ -35381,7 +35396,7 @@ static void REGAL_CALL http_glGetBufferParameterui64vNV(GLenum target, GLenum pn } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetBufferParameterui64vNV(target, pname, params); } @@ -35396,7 +35411,7 @@ static void REGAL_CALL http_glGetIntegerui64vNV(GLenum target, GLuint64EXT *data } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetIntegerui64vNV(target, data); } @@ -35411,7 +35426,7 @@ static void REGAL_CALL http_glGetNamedBufferParameterui64vNV(GLuint buffer, GLen } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetNamedBufferParameterui64vNV(buffer, pname, params); } @@ -35426,7 +35441,7 @@ static void REGAL_CALL http_glGetUniformui64vNV(GLuint program, GLint location, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetUniformui64vNV(program, location, params); } @@ -35442,7 +35457,7 @@ static GLboolean REGAL_CALL http_glIsBufferResidentNV(GLenum target) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsBufferResidentNV(target); return ret; @@ -35459,7 +35474,7 @@ static GLboolean REGAL_CALL http_glIsNamedBufferResidentNV(GLuint buffer) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsNamedBufferResidentNV(buffer); return ret; @@ -35475,7 +35490,7 @@ static void REGAL_CALL http_glMakeBufferNonResidentNV(GLenum target) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMakeBufferNonResidentNV(target); } @@ -35490,7 +35505,7 @@ static void REGAL_CALL http_glMakeBufferResidentNV(GLenum target, GLenum access) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMakeBufferResidentNV(target, access); } @@ -35505,7 +35520,7 @@ static void REGAL_CALL http_glMakeNamedBufferNonResidentNV(GLuint buffer) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMakeNamedBufferNonResidentNV(buffer); } @@ -35520,7 +35535,7 @@ static void REGAL_CALL http_glMakeNamedBufferResidentNV(GLuint buffer, GLenum ac } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMakeNamedBufferResidentNV(buffer, access); } @@ -35535,7 +35550,7 @@ static void REGAL_CALL http_glProgramUniformui64NV(GLuint program, GLint locatio } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformui64NV(program, location, v0); } @@ -35550,7 +35565,7 @@ static void REGAL_CALL http_glProgramUniformui64vNV(GLuint program, GLint locati } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramUniformui64vNV(program, location, count, value); } @@ -35565,7 +35580,7 @@ static void REGAL_CALL http_glUniformui64NV(GLint location, GLuint64EXT v0) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniformui64NV(location, v0); } @@ -35580,7 +35595,7 @@ static void REGAL_CALL http_glUniformui64vNV(GLint location, GLsizei count, cons } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glUniformui64vNV(location, count, value); } @@ -35597,7 +35612,7 @@ static void REGAL_CALL http_glTextureBarrierNV(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTextureBarrierNV(); } @@ -35614,7 +35629,7 @@ static void REGAL_CALL http_glTexImage2DMultisampleCoverageNV(GLenum target, GLs } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexImage2DMultisampleCoverageNV(target, coverageSamples, colorSamples, internalFormat, width, height, fixedSampleLocations); } @@ -35629,7 +35644,7 @@ static void REGAL_CALL http_glTexImage3DMultisampleCoverageNV(GLenum target, GLs } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexImage3DMultisampleCoverageNV(target, coverageSamples, colorSamples, internalFormat, width, height, depth, fixedSampleLocations); } @@ -35644,7 +35659,7 @@ static void REGAL_CALL http_glTextureImage2DMultisampleCoverageNV(GLuint texture } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTextureImage2DMultisampleCoverageNV(texture, target, coverageSamples, colorSamples, internalFormat, width, height, fixedSampleLocations); } @@ -35659,7 +35674,7 @@ static void REGAL_CALL http_glTextureImage2DMultisampleNV(GLuint texture, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTextureImage2DMultisampleNV(texture, target, samples, internalFormat, width, height, fixedSampleLocations); } @@ -35674,7 +35689,7 @@ static void REGAL_CALL http_glTextureImage3DMultisampleCoverageNV(GLuint texture } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTextureImage3DMultisampleCoverageNV(texture, target, coverageSamples, colorSamples, internalFormat, width, height, depth, fixedSampleLocations); } @@ -35689,7 +35704,7 @@ static void REGAL_CALL http_glTextureImage3DMultisampleNV(GLuint texture, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTextureImage3DMultisampleNV(texture, target, samples, internalFormat, width, height, depth, fixedSampleLocations); } @@ -35706,7 +35721,7 @@ static void REGAL_CALL http_glActiveVaryingNV(GLuint program, const GLchar *name } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glActiveVaryingNV(program, name); } @@ -35721,7 +35736,7 @@ static void REGAL_CALL http_glBeginTransformFeedbackNV(GLenum primitiveMode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBeginTransformFeedbackNV(primitiveMode); } @@ -35736,7 +35751,7 @@ static void REGAL_CALL http_glBindBufferBaseNV(GLenum target, GLuint index, GLui } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindBufferBaseNV(target, index, buffer); } @@ -35751,7 +35766,7 @@ static void REGAL_CALL http_glBindBufferOffsetNV(GLenum target, GLuint index, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindBufferOffsetNV(target, index, buffer, offset); } @@ -35766,7 +35781,7 @@ static void REGAL_CALL http_glBindBufferRangeNV(GLenum target, GLuint index, GLu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindBufferRangeNV(target, index, buffer, offset, size); } @@ -35781,7 +35796,7 @@ static void REGAL_CALL http_glEndTransformFeedbackNV(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEndTransformFeedbackNV(); } @@ -35796,7 +35811,7 @@ static void REGAL_CALL http_glGetActiveVaryingNV(GLuint program, GLuint index, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetActiveVaryingNV(program, index, bufSize, length, size, type, name); } @@ -35811,7 +35826,7 @@ static void REGAL_CALL http_glGetTransformFeedbackVaryingNV(GLuint program, GLui } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetTransformFeedbackVaryingNV(program, index, location); } @@ -35827,7 +35842,7 @@ static GLint REGAL_CALL http_glGetVaryingLocationNV(GLuint program, const GLchar } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glGetVaryingLocationNV(program, name); return ret; @@ -35843,7 +35858,7 @@ static void REGAL_CALL http_glTransformFeedbackAttribsNV(GLuint count, const GLi } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTransformFeedbackAttribsNV(count, attribs, bufferMode); } @@ -35858,7 +35873,7 @@ static void REGAL_CALL http_glTransformFeedbackVaryingsNV(GLuint program, GLsize } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTransformFeedbackVaryingsNV(program, count, locations, bufferMode); } @@ -35875,7 +35890,7 @@ static void REGAL_CALL http_glBindTransformFeedbackNV(GLenum target, GLuint id) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindTransformFeedbackNV(target, id); } @@ -35890,7 +35905,7 @@ static void REGAL_CALL http_glDeleteTransformFeedbacksNV(GLsizei n, const GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeleteTransformFeedbacksNV(n, ids); } @@ -35905,7 +35920,7 @@ static void REGAL_CALL http_glDrawTransformFeedbackNV(GLenum mode, GLuint name) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawTransformFeedbackNV(mode, name); } @@ -35920,7 +35935,7 @@ static void REGAL_CALL http_glGenTransformFeedbacksNV(GLsizei n, GLuint *ids) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGenTransformFeedbacksNV(n, ids); } @@ -35936,7 +35951,7 @@ static GLboolean REGAL_CALL http_glIsTransformFeedbackNV(GLuint id) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsTransformFeedbackNV(id); return ret; @@ -35952,7 +35967,7 @@ static void REGAL_CALL http_glPauseTransformFeedbackNV(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPauseTransformFeedbackNV(); } @@ -35967,7 +35982,7 @@ static void REGAL_CALL http_glResumeTransformFeedbackNV(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glResumeTransformFeedbackNV(); } @@ -35984,7 +35999,7 @@ static void REGAL_CALL http_glVDPAUFiniNV(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVDPAUFiniNV(); } @@ -35999,7 +36014,7 @@ static void REGAL_CALL http_glVDPAUGetSurfaceivNV(GLvdpauSurfaceNV surface, GLen } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVDPAUGetSurfaceivNV(surface, pname, bufSize, length, values); } @@ -36014,7 +36029,7 @@ static void REGAL_CALL http_glVDPAUInitNV(const GLvoid *vdpDevice, const GLvoid } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVDPAUInitNV(vdpDevice, getProcAddress); } @@ -36030,7 +36045,7 @@ static GLboolean REGAL_CALL http_glVDPAUIsSurfaceNV(GLvdpauSurfaceNV surface) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glVDPAUIsSurfaceNV(surface); return ret; @@ -36046,7 +36061,7 @@ static void REGAL_CALL http_glVDPAUMapSurfacesNV(GLsizei numSurfaces, const GLvd } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVDPAUMapSurfacesNV(numSurfaces, surfaces); } @@ -36062,7 +36077,7 @@ static GLvdpauSurfaceNV REGAL_CALL http_glVDPAURegisterOutputSurfaceNV(const GLv } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glVDPAURegisterOutputSurfaceNV(vdpSurface, target, numTextureNames, textureNames); return ret; @@ -36079,7 +36094,7 @@ static GLvdpauSurfaceNV REGAL_CALL http_glVDPAURegisterVideoSurfaceNV(const GLvo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glVDPAURegisterVideoSurfaceNV(vdpSurface, target, numTextureNames, textureNames); return ret; @@ -36095,7 +36110,7 @@ static void REGAL_CALL http_glVDPAUSurfaceAccessNV(GLvdpauSurfaceNV surface, GLe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVDPAUSurfaceAccessNV(surface, access); } @@ -36110,7 +36125,7 @@ static void REGAL_CALL http_glVDPAUUnmapSurfacesNV(GLsizei numSurfaces, const GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVDPAUUnmapSurfacesNV(numSurfaces, surfaces); } @@ -36125,7 +36140,7 @@ static void REGAL_CALL http_glVDPAUUnregisterSurfaceNV(GLvdpauSurfaceNV surface) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVDPAUUnregisterSurfaceNV(surface); } @@ -36142,7 +36157,7 @@ static void REGAL_CALL http_glFlushVertexArrayRangeNV(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFlushVertexArrayRangeNV(); } @@ -36157,7 +36172,7 @@ static void REGAL_CALL http_glVertexArrayRangeNV(GLsizei size, const GLvoid *poi } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexArrayRangeNV(size, pointer); } @@ -36174,7 +36189,7 @@ static void REGAL_CALL http_glGetVertexAttribLi64vNV(GLuint index, GLenum pname, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVertexAttribLi64vNV(index, pname, params); } @@ -36189,7 +36204,7 @@ static void REGAL_CALL http_glGetVertexAttribLui64vNV(GLuint index, GLenum pname } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVertexAttribLui64vNV(index, pname, params); } @@ -36204,7 +36219,7 @@ static void REGAL_CALL http_glVertexAttribL1i64NV(GLuint index, GLint64EXT x) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribL1i64NV(index, x); } @@ -36219,7 +36234,7 @@ static void REGAL_CALL http_glVertexAttribL1i64vNV(GLuint index, const GLint64EX } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribL1i64vNV(index, v); } @@ -36234,7 +36249,7 @@ static void REGAL_CALL http_glVertexAttribL1ui64NV(GLuint index, GLuint64EXT x) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribL1ui64NV(index, x); } @@ -36249,7 +36264,7 @@ static void REGAL_CALL http_glVertexAttribL1ui64vNV(GLuint index, const GLuint64 } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribL1ui64vNV(index, v); } @@ -36264,7 +36279,7 @@ static void REGAL_CALL http_glVertexAttribL2i64NV(GLuint index, GLint64EXT x, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribL2i64NV(index, x, y); } @@ -36279,7 +36294,7 @@ static void REGAL_CALL http_glVertexAttribL2i64vNV(GLuint index, const GLint64EX } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribL2i64vNV(index, v); } @@ -36294,7 +36309,7 @@ static void REGAL_CALL http_glVertexAttribL2ui64NV(GLuint index, GLuint64EXT x, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribL2ui64NV(index, x, y); } @@ -36309,7 +36324,7 @@ static void REGAL_CALL http_glVertexAttribL2ui64vNV(GLuint index, const GLuint64 } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribL2ui64vNV(index, v); } @@ -36324,7 +36339,7 @@ static void REGAL_CALL http_glVertexAttribL3i64NV(GLuint index, GLint64EXT x, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribL3i64NV(index, x, y, z); } @@ -36339,7 +36354,7 @@ static void REGAL_CALL http_glVertexAttribL3i64vNV(GLuint index, const GLint64EX } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribL3i64vNV(index, v); } @@ -36354,7 +36369,7 @@ static void REGAL_CALL http_glVertexAttribL3ui64NV(GLuint index, GLuint64EXT x, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribL3ui64NV(index, x, y, z); } @@ -36369,7 +36384,7 @@ static void REGAL_CALL http_glVertexAttribL3ui64vNV(GLuint index, const GLuint64 } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribL3ui64vNV(index, v); } @@ -36384,7 +36399,7 @@ static void REGAL_CALL http_glVertexAttribL4i64NV(GLuint index, GLint64EXT x, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribL4i64NV(index, x, y, z, w); } @@ -36399,7 +36414,7 @@ static void REGAL_CALL http_glVertexAttribL4i64vNV(GLuint index, const GLint64EX } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribL4i64vNV(index, v); } @@ -36414,7 +36429,7 @@ static void REGAL_CALL http_glVertexAttribL4ui64NV(GLuint index, GLuint64EXT x, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribL4ui64NV(index, x, y, z, w); } @@ -36429,7 +36444,7 @@ static void REGAL_CALL http_glVertexAttribL4ui64vNV(GLuint index, const GLuint64 } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribL4ui64vNV(index, v); } @@ -36444,7 +36459,7 @@ static void REGAL_CALL http_glVertexAttribLFormatNV(GLuint index, GLint size, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribLFormatNV(index, size, type, stride); } @@ -36461,7 +36476,7 @@ static void REGAL_CALL http_glBufferAddressRangeNV(GLenum pname, GLuint index, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBufferAddressRangeNV(pname, index, address, length); } @@ -36476,7 +36491,7 @@ static void REGAL_CALL http_glColorFormatNV(GLint size, GLenum type, GLsizei str } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColorFormatNV(size, type, stride); } @@ -36491,7 +36506,7 @@ static void REGAL_CALL http_glEdgeFlagFormatNV(GLsizei stride) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEdgeFlagFormatNV(stride); } @@ -36506,7 +36521,7 @@ static void REGAL_CALL http_glFogCoordFormatNV(GLenum type, GLsizei stride) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFogCoordFormatNV(type, stride); } @@ -36521,7 +36536,7 @@ static void REGAL_CALL http_glGetIntegerui64i_vNV(GLenum target, GLuint index, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetIntegerui64i_vNV(target, index, data); } @@ -36536,7 +36551,7 @@ static void REGAL_CALL http_glIndexFormatNV(GLenum type, GLsizei stride) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glIndexFormatNV(type, stride); } @@ -36551,7 +36566,7 @@ static void REGAL_CALL http_glNormalFormatNV(GLenum type, GLsizei stride) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNormalFormatNV(type, stride); } @@ -36566,7 +36581,7 @@ static void REGAL_CALL http_glSecondaryColorFormatNV(GLint size, GLenum type, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSecondaryColorFormatNV(size, type, stride); } @@ -36581,7 +36596,7 @@ static void REGAL_CALL http_glTexCoordFormatNV(GLint size, GLenum type, GLsizei } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoordFormatNV(size, type, stride); } @@ -36596,7 +36611,7 @@ static void REGAL_CALL http_glVertexAttribFormatNV(GLuint index, GLint size, GLe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribFormatNV(index, size, type, normalized, stride); } @@ -36611,7 +36626,7 @@ static void REGAL_CALL http_glVertexAttribIFormatNV(GLuint index, GLint size, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribIFormatNV(index, size, type, stride); } @@ -36626,7 +36641,7 @@ static void REGAL_CALL http_glVertexFormatNV(GLint size, GLenum type, GLsizei st } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexFormatNV(size, type, stride); } @@ -36644,7 +36659,7 @@ static GLboolean REGAL_CALL http_glAreProgramsResidentNV(GLsizei n, const GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glAreProgramsResidentNV(n, programs, residences); return ret; @@ -36660,7 +36675,7 @@ static void REGAL_CALL http_glBindProgramNV(GLenum target, GLuint id) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindProgramNV(target, id); } @@ -36675,7 +36690,7 @@ static void REGAL_CALL http_glDeleteProgramsNV(GLsizei n, const GLuint *programs } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeleteProgramsNV(n, programs); } @@ -36690,7 +36705,7 @@ static void REGAL_CALL http_glExecuteProgramNV(GLenum target, GLuint id, const G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glExecuteProgramNV(target, id, params); } @@ -36705,7 +36720,7 @@ static void REGAL_CALL http_glGenProgramsNV(GLsizei n, GLuint *programs) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGenProgramsNV(n, programs); } @@ -36720,7 +36735,7 @@ static void REGAL_CALL http_glGetProgramParameterdvNV(GLenum target, GLuint inde } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetProgramParameterdvNV(target, index, pname, params); } @@ -36735,7 +36750,7 @@ static void REGAL_CALL http_glGetProgramParameterfvNV(GLenum target, GLuint inde } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetProgramParameterfvNV(target, index, pname, params); } @@ -36750,7 +36765,7 @@ static void REGAL_CALL http_glGetProgramStringNV(GLuint id, GLenum pname, GLubyt } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetProgramStringNV(id, pname, program); } @@ -36765,7 +36780,7 @@ static void REGAL_CALL http_glGetProgramivNV(GLuint id, GLenum pname, GLint *par } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetProgramivNV(id, pname, params); } @@ -36780,7 +36795,7 @@ static void REGAL_CALL http_glGetTrackMatrixivNV(GLenum target, GLuint address, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetTrackMatrixivNV(target, address, pname, params); } @@ -36795,7 +36810,7 @@ static void REGAL_CALL http_glGetVertexAttribPointervNV(GLuint index, GLenum pna } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVertexAttribPointervNV(index, pname, pointer); } @@ -36810,7 +36825,7 @@ static void REGAL_CALL http_glGetVertexAttribdvNV(GLuint index, GLenum pname, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVertexAttribdvNV(index, pname, params); } @@ -36825,7 +36840,7 @@ static void REGAL_CALL http_glGetVertexAttribfvNV(GLuint index, GLenum pname, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVertexAttribfvNV(index, pname, params); } @@ -36840,7 +36855,7 @@ static void REGAL_CALL http_glGetVertexAttribivNV(GLuint index, GLenum pname, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVertexAttribivNV(index, pname, params); } @@ -36856,7 +36871,7 @@ static GLboolean REGAL_CALL http_glIsProgramNV(GLuint id) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsProgramNV(id); return ret; @@ -36872,7 +36887,7 @@ static void REGAL_CALL http_glLoadProgramNV(GLenum target, GLuint id, GLsizei le } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glLoadProgramNV(target, id, len, program); } @@ -36887,7 +36902,7 @@ static void REGAL_CALL http_glProgramParameter4dNV(GLenum target, GLuint index, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramParameter4dNV(target, index, x, y, z, w); } @@ -36902,7 +36917,7 @@ static void REGAL_CALL http_glProgramParameter4dvNV(GLenum target, GLuint index, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramParameter4dvNV(target, index, v); } @@ -36917,7 +36932,7 @@ static void REGAL_CALL http_glProgramParameter4fNV(GLenum target, GLuint index, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramParameter4fNV(target, index, x, y, z, w); } @@ -36932,7 +36947,7 @@ static void REGAL_CALL http_glProgramParameter4fvNV(GLenum target, GLuint index, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramParameter4fvNV(target, index, v); } @@ -36947,7 +36962,7 @@ static void REGAL_CALL http_glProgramParameters4dvNV(GLenum target, GLuint index } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramParameters4dvNV(target, index, count, v); } @@ -36962,7 +36977,7 @@ static void REGAL_CALL http_glProgramParameters4fvNV(GLenum target, GLuint index } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramParameters4fvNV(target, index, count, v); } @@ -36977,7 +36992,7 @@ static void REGAL_CALL http_glRequestResidentProgramsNV(GLsizei n, const GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRequestResidentProgramsNV(n, programs); } @@ -36992,7 +37007,7 @@ static void REGAL_CALL http_glTrackMatrixNV(GLenum target, GLuint address, GLenu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTrackMatrixNV(target, address, matrix, transform); } @@ -37007,7 +37022,7 @@ static void REGAL_CALL http_glVertexAttrib1dNV(GLuint index, GLdouble x) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib1dNV(index, x); } @@ -37022,7 +37037,7 @@ static void REGAL_CALL http_glVertexAttrib1dvNV(GLuint index, const GLdouble *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib1dvNV(index, v); } @@ -37037,7 +37052,7 @@ static void REGAL_CALL http_glVertexAttrib1fNV(GLuint index, GLfloat x) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib1fNV(index, x); } @@ -37052,7 +37067,7 @@ static void REGAL_CALL http_glVertexAttrib1fvNV(GLuint index, const GLfloat *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib1fvNV(index, v); } @@ -37067,7 +37082,7 @@ static void REGAL_CALL http_glVertexAttrib1sNV(GLuint index, GLshort x) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib1sNV(index, x); } @@ -37082,7 +37097,7 @@ static void REGAL_CALL http_glVertexAttrib1svNV(GLuint index, const GLshort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib1svNV(index, v); } @@ -37097,7 +37112,7 @@ static void REGAL_CALL http_glVertexAttrib2dNV(GLuint index, GLdouble x, GLdoubl } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib2dNV(index, x, y); } @@ -37112,7 +37127,7 @@ static void REGAL_CALL http_glVertexAttrib2dvNV(GLuint index, const GLdouble *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib2dvNV(index, v); } @@ -37127,7 +37142,7 @@ static void REGAL_CALL http_glVertexAttrib2fNV(GLuint index, GLfloat x, GLfloat } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib2fNV(index, x, y); } @@ -37142,7 +37157,7 @@ static void REGAL_CALL http_glVertexAttrib2fvNV(GLuint index, const GLfloat *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib2fvNV(index, v); } @@ -37157,7 +37172,7 @@ static void REGAL_CALL http_glVertexAttrib2sNV(GLuint index, GLshort x, GLshort } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib2sNV(index, x, y); } @@ -37172,7 +37187,7 @@ static void REGAL_CALL http_glVertexAttrib2svNV(GLuint index, const GLshort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib2svNV(index, v); } @@ -37187,7 +37202,7 @@ static void REGAL_CALL http_glVertexAttrib3dNV(GLuint index, GLdouble x, GLdoubl } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib3dNV(index, x, y, z); } @@ -37202,7 +37217,7 @@ static void REGAL_CALL http_glVertexAttrib3dvNV(GLuint index, const GLdouble *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib3dvNV(index, v); } @@ -37217,7 +37232,7 @@ static void REGAL_CALL http_glVertexAttrib3fNV(GLuint index, GLfloat x, GLfloat } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib3fNV(index, x, y, z); } @@ -37232,7 +37247,7 @@ static void REGAL_CALL http_glVertexAttrib3fvNV(GLuint index, const GLfloat *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib3fvNV(index, v); } @@ -37247,7 +37262,7 @@ static void REGAL_CALL http_glVertexAttrib3sNV(GLuint index, GLshort x, GLshort } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib3sNV(index, x, y, z); } @@ -37262,7 +37277,7 @@ static void REGAL_CALL http_glVertexAttrib3svNV(GLuint index, const GLshort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib3svNV(index, v); } @@ -37277,7 +37292,7 @@ static void REGAL_CALL http_glVertexAttrib4dNV(GLuint index, GLdouble x, GLdoubl } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4dNV(index, x, y, z, w); } @@ -37292,7 +37307,7 @@ static void REGAL_CALL http_glVertexAttrib4dvNV(GLuint index, const GLdouble *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4dvNV(index, v); } @@ -37307,7 +37322,7 @@ static void REGAL_CALL http_glVertexAttrib4fNV(GLuint index, GLfloat x, GLfloat } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4fNV(index, x, y, z, w); } @@ -37322,7 +37337,7 @@ static void REGAL_CALL http_glVertexAttrib4fvNV(GLuint index, const GLfloat *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4fvNV(index, v); } @@ -37337,7 +37352,7 @@ static void REGAL_CALL http_glVertexAttrib4sNV(GLuint index, GLshort x, GLshort } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4sNV(index, x, y, z, w); } @@ -37352,7 +37367,7 @@ static void REGAL_CALL http_glVertexAttrib4svNV(GLuint index, const GLshort *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4svNV(index, v); } @@ -37367,7 +37382,7 @@ static void REGAL_CALL http_glVertexAttrib4ubNV(GLuint index, GLubyte x, GLubyte } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4ubNV(index, x, y, z, w); } @@ -37382,7 +37397,7 @@ static void REGAL_CALL http_glVertexAttrib4ubvNV(GLuint index, const GLubyte *v) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttrib4ubvNV(index, v); } @@ -37397,7 +37412,7 @@ static void REGAL_CALL http_glVertexAttribPointerNV(GLuint index, GLint fsize, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribPointerNV(index, fsize, type, stride, pointer); } @@ -37412,7 +37427,7 @@ static void REGAL_CALL http_glVertexAttribs1dvNV(GLuint index, GLsizei n, const } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribs1dvNV(index, n, v); } @@ -37427,7 +37442,7 @@ static void REGAL_CALL http_glVertexAttribs1fvNV(GLuint index, GLsizei n, const } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribs1fvNV(index, n, v); } @@ -37442,7 +37457,7 @@ static void REGAL_CALL http_glVertexAttribs1svNV(GLuint index, GLsizei n, const } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribs1svNV(index, n, v); } @@ -37457,7 +37472,7 @@ static void REGAL_CALL http_glVertexAttribs2dvNV(GLuint index, GLsizei n, const } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribs2dvNV(index, n, v); } @@ -37472,7 +37487,7 @@ static void REGAL_CALL http_glVertexAttribs2fvNV(GLuint index, GLsizei n, const } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribs2fvNV(index, n, v); } @@ -37487,7 +37502,7 @@ static void REGAL_CALL http_glVertexAttribs2svNV(GLuint index, GLsizei n, const } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribs2svNV(index, n, v); } @@ -37502,7 +37517,7 @@ static void REGAL_CALL http_glVertexAttribs3dvNV(GLuint index, GLsizei n, const } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribs3dvNV(index, n, v); } @@ -37517,7 +37532,7 @@ static void REGAL_CALL http_glVertexAttribs3fvNV(GLuint index, GLsizei n, const } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribs3fvNV(index, n, v); } @@ -37532,7 +37547,7 @@ static void REGAL_CALL http_glVertexAttribs3svNV(GLuint index, GLsizei n, const } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribs3svNV(index, n, v); } @@ -37547,7 +37562,7 @@ static void REGAL_CALL http_glVertexAttribs4dvNV(GLuint index, GLsizei n, const } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribs4dvNV(index, n, v); } @@ -37562,7 +37577,7 @@ static void REGAL_CALL http_glVertexAttribs4fvNV(GLuint index, GLsizei n, const } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribs4fvNV(index, n, v); } @@ -37577,7 +37592,7 @@ static void REGAL_CALL http_glVertexAttribs4svNV(GLuint index, GLsizei n, const } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribs4svNV(index, n, v); } @@ -37592,7 +37607,7 @@ static void REGAL_CALL http_glVertexAttribs4ubvNV(GLuint index, GLsizei n, const } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVertexAttribs4ubvNV(index, n, v); } @@ -37609,7 +37624,7 @@ static void REGAL_CALL http_glBeginVideoCaptureNV(GLuint video_capture_slot) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBeginVideoCaptureNV(video_capture_slot); } @@ -37624,7 +37639,7 @@ static void REGAL_CALL http_glBindVideoCaptureStreamBufferNV(GLuint video_captur } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindVideoCaptureStreamBufferNV(video_capture_slot, stream, frame_region, offset); } @@ -37639,7 +37654,7 @@ static void REGAL_CALL http_glBindVideoCaptureStreamTextureNV(GLuint video_captu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindVideoCaptureStreamTextureNV(video_capture_slot, stream, frame_region, target, texture); } @@ -37654,7 +37669,7 @@ static void REGAL_CALL http_glEndVideoCaptureNV(GLuint video_capture_slot) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEndVideoCaptureNV(video_capture_slot); } @@ -37669,7 +37684,7 @@ static void REGAL_CALL http_glGetVideoCaptureStreamdvNV(GLuint video_capture_slo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVideoCaptureStreamdvNV(video_capture_slot, stream, pname, params); } @@ -37684,7 +37699,7 @@ static void REGAL_CALL http_glGetVideoCaptureStreamfvNV(GLuint video_capture_slo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVideoCaptureStreamfvNV(video_capture_slot, stream, pname, params); } @@ -37699,7 +37714,7 @@ static void REGAL_CALL http_glGetVideoCaptureStreamivNV(GLuint video_capture_slo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVideoCaptureStreamivNV(video_capture_slot, stream, pname, params); } @@ -37714,7 +37729,7 @@ static void REGAL_CALL http_glGetVideoCaptureivNV(GLuint video_capture_slot, GLe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetVideoCaptureivNV(video_capture_slot, pname, params); } @@ -37730,7 +37745,7 @@ static GLenum REGAL_CALL http_glVideoCaptureNV(GLuint video_capture_slot, GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glVideoCaptureNV(video_capture_slot, sequence_num, capture_time); return ret; @@ -37746,7 +37761,7 @@ static void REGAL_CALL http_glVideoCaptureStreamParameterdvNV(GLuint video_captu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVideoCaptureStreamParameterdvNV(video_capture_slot, stream, pname, params); } @@ -37761,7 +37776,7 @@ static void REGAL_CALL http_glVideoCaptureStreamParameterfvNV(GLuint video_captu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVideoCaptureStreamParameterfvNV(video_capture_slot, stream, pname, params); } @@ -37776,7 +37791,7 @@ static void REGAL_CALL http_glVideoCaptureStreamParameterivNV(GLuint video_captu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glVideoCaptureStreamParameterivNV(video_capture_slot, stream, pname, params); } @@ -37793,7 +37808,7 @@ static void REGAL_CALL http_glBlendEquationSeparateOES(GLenum modeRGB, GLenum mo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBlendEquationSeparateOES(modeRGB, modeAlpha); } @@ -37810,7 +37825,7 @@ static void REGAL_CALL http_glBlendFuncSeparateOES(GLenum sfactorRGB, GLenum dfa } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBlendFuncSeparateOES(sfactorRGB, dfactorRGB, sfactorAlpha, dfactorAlpha); } @@ -37827,7 +37842,7 @@ static void REGAL_CALL http_glBlendEquationOES(GLenum mode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBlendEquationOES(mode); } @@ -37844,7 +37859,7 @@ static void REGAL_CALL http_glBindFramebufferOES(GLenum target, GLuint framebuff } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindFramebufferOES(target, framebuffer); } @@ -37859,7 +37874,7 @@ static void REGAL_CALL http_glBindRenderbufferOES(GLenum target, GLuint renderbu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindRenderbufferOES(target, renderbuffer); } @@ -37875,7 +37890,7 @@ static GLenum REGAL_CALL http_glCheckFramebufferStatusOES(GLenum target) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glCheckFramebufferStatusOES(target); return ret; @@ -37891,7 +37906,7 @@ static void REGAL_CALL http_glDeleteFramebuffersOES(GLsizei n, const GLuint *fra } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeleteFramebuffersOES(n, framebuffers); } @@ -37906,7 +37921,7 @@ static void REGAL_CALL http_glDeleteRenderbuffersOES(GLsizei n, const GLuint *re } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeleteRenderbuffersOES(n, renderbuffers); } @@ -37921,7 +37936,7 @@ static void REGAL_CALL http_glFramebufferRenderbufferOES(GLenum target, GLenum a } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFramebufferRenderbufferOES(target, attachment, renderbuffertarget, renderbuffer); } @@ -37936,7 +37951,7 @@ static void REGAL_CALL http_glFramebufferTexture2DOES(GLenum target, GLenum atta } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFramebufferTexture2DOES(target, attachment, textarget, texture, level); } @@ -37951,7 +37966,7 @@ static void REGAL_CALL http_glGenFramebuffersOES(GLsizei n, GLuint *framebuffers } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGenFramebuffersOES(n, framebuffers); } @@ -37966,7 +37981,7 @@ static void REGAL_CALL http_glGenRenderbuffersOES(GLsizei n, GLuint *renderbuffe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGenRenderbuffersOES(n, renderbuffers); } @@ -37981,7 +37996,7 @@ static void REGAL_CALL http_glGenerateMipmapOES(GLenum target) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGenerateMipmapOES(target); } @@ -37996,7 +38011,7 @@ static void REGAL_CALL http_glGetFramebufferAttachmentParameterivOES(GLenum targ } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetFramebufferAttachmentParameterivOES(target, attachment, pname, params); } @@ -38011,7 +38026,7 @@ static void REGAL_CALL http_glGetRenderbufferParameterivOES(GLenum target, GLenu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetRenderbufferParameterivOES(target, pname, params); } @@ -38027,7 +38042,7 @@ static GLboolean REGAL_CALL http_glIsFramebufferOES(GLuint framebuffer) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsFramebufferOES(framebuffer); return ret; @@ -38044,7 +38059,7 @@ static GLboolean REGAL_CALL http_glIsRenderbufferOES(GLuint renderbuffer) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsRenderbufferOES(renderbuffer); return ret; @@ -38060,7 +38075,7 @@ static void REGAL_CALL http_glRenderbufferStorageOES(GLenum target, GLenum inter } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRenderbufferStorageOES(target, internalformat, width, height); } @@ -38077,7 +38092,7 @@ static void REGAL_CALL http_glGetProgramBinaryOES(GLuint program, GLsizei bufSiz } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetProgramBinaryOES(program, bufSize, length, binaryFormat, binary); } @@ -38092,7 +38107,7 @@ static void REGAL_CALL http_glProgramBinaryOES(GLuint program, GLenum binaryForm } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glProgramBinaryOES(program, binaryFormat, binary, length); } @@ -38109,7 +38124,7 @@ static void REGAL_CALL http_glGetBufferPointervOES(GLenum target, GLenum pname, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetBufferPointervOES(target, pname, params); } @@ -38125,7 +38140,7 @@ static GLvoid *REGAL_CALL http_glMapBufferOES(GLenum target, GLenum access) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glMapBufferOES(target, access); return ret; @@ -38142,7 +38157,7 @@ static GLboolean REGAL_CALL http_glUnmapBufferOES(GLenum target) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glUnmapBufferOES(target); return ret; @@ -38160,7 +38175,7 @@ static void REGAL_CALL http_glCurrentPaletteMatrixOES(GLuint index) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCurrentPaletteMatrixOES(index); } @@ -38175,7 +38190,7 @@ static void REGAL_CALL http_glMatrixIndexPointerOES(GLint size, GLenum type, GLs } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMatrixIndexPointerOES(size, type, stride, pointer); } @@ -38190,7 +38205,7 @@ static void REGAL_CALL http_glWeightPointerOES(GLint size, GLenum type, GLsizei } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glWeightPointerOES(size, type, stride, pointer); } @@ -38207,7 +38222,7 @@ static void REGAL_CALL http_glClearDepthfOES(GLclampd depth) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glClearDepthfOES(depth); } @@ -38222,7 +38237,7 @@ static void REGAL_CALL http_glClipPlanefOES(GLenum plane, const GLfloat *equatio } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glClipPlanefOES(plane, equation); } @@ -38237,7 +38252,7 @@ static void REGAL_CALL http_glDepthRangefOES(GLclampf n, GLclampf f) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDepthRangefOES(n, f); } @@ -38252,7 +38267,7 @@ static void REGAL_CALL http_glFrustumfOES(GLfloat l, GLfloat r, GLfloat b, GLflo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFrustumfOES(l, r, b, t, n, f); } @@ -38267,7 +38282,7 @@ static void REGAL_CALL http_glGetClipPlanefOES(GLenum plane, GLfloat *equation) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetClipPlanefOES(plane, equation); } @@ -38282,7 +38297,7 @@ static void REGAL_CALL http_glOrthofOES(GLfloat l, GLfloat r, GLfloat b, GLfloat } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glOrthofOES(l, r, b, t, n, f); } @@ -38299,7 +38314,7 @@ static void REGAL_CALL http_glCompressedTexImage3DOES(GLenum target, GLint level } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCompressedTexImage3DOES(target, level, internalformat, width, height, depth, border, imageSize, data); } @@ -38314,7 +38329,7 @@ static void REGAL_CALL http_glCompressedTexSubImage3DOES(GLenum target, GLint le } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCompressedTexSubImage3DOES(target, level, xoffset, yoffset, zoffset, width, height, depth, format, imageSize, data); } @@ -38329,7 +38344,7 @@ static void REGAL_CALL http_glCopyTexSubImage3DOES(GLenum target, GLint level, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCopyTexSubImage3DOES(target, level, xoffset, yoffset, zoffset, x, y, width, height); } @@ -38344,7 +38359,7 @@ static void REGAL_CALL http_glFramebufferTexture3DOES(GLenum target, GLenum atta } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFramebufferTexture3DOES(target, attachment, textarget, texture, level, zoffset); } @@ -38359,7 +38374,7 @@ static void REGAL_CALL http_glTexImage3DOES(GLenum target, GLint level, GLenum i } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexImage3DOES(target, level, internalFormat, width, height, depth, border, format, type, pixels); } @@ -38374,7 +38389,7 @@ static void REGAL_CALL http_glTexSubImage3DOES(GLenum target, GLint level, GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexSubImage3DOES(target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, pixels); } @@ -38391,7 +38406,7 @@ static void REGAL_CALL http_glGetTexGenfvOES(GLenum coord, GLenum pname, GLfloat } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetTexGenfvOES(coord, pname, params); } @@ -38406,7 +38421,7 @@ static void REGAL_CALL http_glGetTexGenivOES(GLenum coord, GLenum pname, GLint * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetTexGenivOES(coord, pname, params); } @@ -38421,7 +38436,7 @@ static void REGAL_CALL http_glGetTexGenxvOES(GLenum coord, GLenum pname, GLfixed } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetTexGenxvOES(coord, pname, params); } @@ -38436,7 +38451,7 @@ static void REGAL_CALL http_glTexGenfOES(GLenum coord, GLenum pname, GLfloat par } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexGenfOES(coord, pname, param); } @@ -38451,7 +38466,7 @@ static void REGAL_CALL http_glTexGenfvOES(GLenum coord, GLenum pname, const GLfl } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexGenfvOES(coord, pname, params); } @@ -38466,7 +38481,7 @@ static void REGAL_CALL http_glTexGeniOES(GLenum coord, GLenum pname, GLint param } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexGeniOES(coord, pname, param); } @@ -38481,7 +38496,7 @@ static void REGAL_CALL http_glTexGenivOES(GLenum coord, GLenum pname, const GLin } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexGenivOES(coord, pname, params); } @@ -38496,7 +38511,7 @@ static void REGAL_CALL http_glTexGenxOES(GLenum coord, GLenum pname, GLfixed par } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexGenxOES(coord, pname, param); } @@ -38511,7 +38526,7 @@ static void REGAL_CALL http_glTexGenxvOES(GLenum coord, GLenum pname, const GLfi } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexGenxvOES(coord, pname, params); } @@ -38528,7 +38543,7 @@ static void REGAL_CALL http_glBindVertexArrayOES(GLuint array) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glBindVertexArrayOES(array); } @@ -38543,7 +38558,7 @@ static void REGAL_CALL http_glDeleteVertexArraysOES(GLsizei n, const GLuint *arr } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeleteVertexArraysOES(n, arrays); } @@ -38558,7 +38573,7 @@ static void REGAL_CALL http_glGenVertexArraysOES(GLsizei n, GLuint *arrays) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGenVertexArraysOES(n, arrays); } @@ -38574,7 +38589,7 @@ static GLboolean REGAL_CALL http_glIsVertexArrayOES(GLuint array) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsVertexArrayOES(array); return ret; @@ -38592,7 +38607,7 @@ static void REGAL_CALL http_glHintPGI(GLenum target, GLint mode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glHintPGI(target, mode); } @@ -38609,7 +38624,7 @@ static void REGAL_CALL http_glAlphaFuncQCOM(GLenum func, GLclampf ref) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glAlphaFuncQCOM(func, ref); } @@ -38626,7 +38641,7 @@ static void REGAL_CALL http_glDisableDriverControlQCOM(GLuint driverControl) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDisableDriverControlQCOM(driverControl); } @@ -38641,7 +38656,7 @@ static void REGAL_CALL http_glEnableDriverControlQCOM(GLuint driverControl) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEnableDriverControlQCOM(driverControl); } @@ -38656,7 +38671,7 @@ static void REGAL_CALL http_glGetDriverControlStringQCOM(GLuint driverControl, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetDriverControlStringQCOM(driverControl, bufSize, length, driverControlString); } @@ -38671,7 +38686,7 @@ static void REGAL_CALL http_glGetDriverControlsQCOM(GLint *num, GLsizei size, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetDriverControlsQCOM(num, size, driverControls); } @@ -38688,7 +38703,7 @@ static void REGAL_CALL http_glExtGetBufferPointervQCOM(GLenum target, GLvoid **p } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glExtGetBufferPointervQCOM(target, params); } @@ -38703,7 +38718,7 @@ static void REGAL_CALL http_glExtGetBuffersQCOM(GLuint *buffers, GLint maxBuffer } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glExtGetBuffersQCOM(buffers, maxBuffers, numBuffers); } @@ -38718,7 +38733,7 @@ static void REGAL_CALL http_glExtGetFramebuffersQCOM(GLuint *framebuffers, GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glExtGetFramebuffersQCOM(framebuffers, maxFramebuffers, numFramebuffers); } @@ -38733,7 +38748,7 @@ static void REGAL_CALL http_glExtGetRenderbuffersQCOM(GLuint *renderbuffers, GLi } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glExtGetRenderbuffersQCOM(renderbuffers, maxRenderbuffers, numRenderbuffers); } @@ -38748,7 +38763,7 @@ static void REGAL_CALL http_glExtGetTexLevelParameterivQCOM(GLuint texture, GLen } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glExtGetTexLevelParameterivQCOM(texture, face, level, pname, params); } @@ -38763,7 +38778,7 @@ static void REGAL_CALL http_glExtGetTexSubImageQCOM(GLenum target, GLint level, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glExtGetTexSubImageQCOM(target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, texels); } @@ -38778,7 +38793,7 @@ static void REGAL_CALL http_glExtGetTexturesQCOM(GLuint *textures, GLint maxText } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glExtGetTexturesQCOM(textures, maxTextures, numTextures); } @@ -38793,7 +38808,7 @@ static void REGAL_CALL http_glExtTexObjectStateOverrideiQCOM(GLenum target, GLen } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glExtTexObjectStateOverrideiQCOM(target, pname, param); } @@ -38810,7 +38825,7 @@ static void REGAL_CALL http_glExtGetProgramBinarySourceQCOM(GLuint program, GLen } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glExtGetProgramBinarySourceQCOM(program, shadertype, source, length); } @@ -38825,7 +38840,7 @@ static void REGAL_CALL http_glExtGetProgramsQCOM(GLuint *programs, GLint maxProg } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glExtGetProgramsQCOM(programs, maxPrograms, numPrograms); } @@ -38840,7 +38855,7 @@ static void REGAL_CALL http_glExtGetShadersQCOM(GLuint *shaders, GLint maxShader } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glExtGetShadersQCOM(shaders, maxShaders, numShaders); } @@ -38856,7 +38871,7 @@ static GLboolean REGAL_CALL http_glExtIsProgramBinaryQCOM(GLuint program) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glExtIsProgramBinaryQCOM(program); return ret; @@ -38874,7 +38889,7 @@ static void REGAL_CALL http_glEndTilingQCOM(GLbitfield preserveMask) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glEndTilingQCOM(preserveMask); } @@ -38889,7 +38904,7 @@ static void REGAL_CALL http_glStartTilingQCOM(GLuint x, GLuint y, GLuint width, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glStartTilingQCOM(x, y, width, height, preserveMask); } @@ -38906,7 +38921,7 @@ static void REGAL_CALL http_glAlphaFuncx(GLenum func, GLclampx ref) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glAlphaFuncx(func, ref); } @@ -38921,7 +38936,7 @@ static void REGAL_CALL http_glClearColorx(GLclampx red, GLclampx green, GLclampx } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glClearColorx(red, green, blue, alpha); } @@ -38936,7 +38951,7 @@ static void REGAL_CALL http_glClearDepthx(GLclampx depth) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glClearDepthx(depth); } @@ -38951,7 +38966,7 @@ static void REGAL_CALL http_glColor4x(GLfixed red, GLfixed green, GLfixed blue, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor4x(red, green, blue, alpha); } @@ -38966,7 +38981,7 @@ static void REGAL_CALL http_glDepthRangex(GLclampx zNear, GLclampx zFar) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDepthRangex(zNear, zFar); } @@ -38981,7 +38996,7 @@ static void REGAL_CALL http_glFogx(GLenum pname, GLfixed param) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFogx(pname, param); } @@ -38996,7 +39011,7 @@ static void REGAL_CALL http_glFogxv(GLenum pname, const GLfixed *params) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFogxv(pname, params); } @@ -39011,7 +39026,7 @@ static void REGAL_CALL http_glFrustumf(GLfloat left, GLfloat right, GLfloat bott } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFrustumf(left, right, bottom, top, zNear, zFar); } @@ -39026,7 +39041,7 @@ static void REGAL_CALL http_glFrustumx(GLfixed left, GLfixed right, GLfixed bott } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFrustumx(left, right, bottom, top, zNear, zFar); } @@ -39041,7 +39056,7 @@ static void REGAL_CALL http_glLightModelx(GLenum pname, GLfixed param) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glLightModelx(pname, param); } @@ -39056,7 +39071,7 @@ static void REGAL_CALL http_glLightModelxv(GLenum pname, const GLfixed *params) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glLightModelxv(pname, params); } @@ -39071,7 +39086,7 @@ static void REGAL_CALL http_glLightx(GLenum light, GLenum pname, GLfixed param) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glLightx(light, pname, param); } @@ -39086,7 +39101,7 @@ static void REGAL_CALL http_glLightxv(GLenum light, GLenum pname, const GLfixed } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glLightxv(light, pname, params); } @@ -39101,7 +39116,7 @@ static void REGAL_CALL http_glLineWidthx(GLfixed width) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glLineWidthx(width); } @@ -39116,7 +39131,7 @@ static void REGAL_CALL http_glLoadMatrixx(const GLfixed *m) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glLoadMatrixx(m); } @@ -39131,7 +39146,7 @@ static void REGAL_CALL http_glMaterialx(GLenum face, GLenum pname, GLfixed param } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMaterialx(face, pname, param); } @@ -39146,7 +39161,7 @@ static void REGAL_CALL http_glMaterialxv(GLenum face, GLenum pname, const GLfixe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMaterialxv(face, pname, params); } @@ -39161,7 +39176,7 @@ static void REGAL_CALL http_glMultMatrixx(const GLfixed *m) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultMatrixx(m); } @@ -39176,7 +39191,7 @@ static void REGAL_CALL http_glMultiTexCoord4x(GLenum target, GLfixed s, GLfixed } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glMultiTexCoord4x(target, s, t, r, q); } @@ -39191,7 +39206,7 @@ static void REGAL_CALL http_glNormal3x(GLfixed nx, GLfixed ny, GLfixed nz) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNormal3x(nx, ny, nz); } @@ -39206,7 +39221,7 @@ static void REGAL_CALL http_glOrthof(GLfloat left, GLfloat right, GLfloat bottom } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glOrthof(left, right, bottom, top, zNear, zFar); } @@ -39221,7 +39236,7 @@ static void REGAL_CALL http_glOrthox(GLfixed left, GLfixed right, GLfixed bottom } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glOrthox(left, right, bottom, top, zNear, zFar); } @@ -39236,7 +39251,7 @@ static void REGAL_CALL http_glPointSizex(GLfixed size) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPointSizex(size); } @@ -39251,7 +39266,7 @@ static void REGAL_CALL http_glPolygonOffsetx(GLfixed factor, GLfixed units) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPolygonOffsetx(factor, units); } @@ -39266,7 +39281,7 @@ static void REGAL_CALL http_glRotatex(GLfixed angle, GLfixed x, GLfixed y, GLfix } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glRotatex(angle, x, y, z); } @@ -39281,7 +39296,7 @@ static void REGAL_CALL http_glSampleCoveragex(GLclampx value, GLboolean invert) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSampleCoveragex(value, invert); } @@ -39296,7 +39311,7 @@ static void REGAL_CALL http_glScalex(GLfixed x, GLfixed y, GLfixed z) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glScalex(x, y, z); } @@ -39311,7 +39326,7 @@ static void REGAL_CALL http_glTexEnvx(GLenum target, GLenum pname, GLfixed param } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexEnvx(target, pname, param); } @@ -39326,7 +39341,7 @@ static void REGAL_CALL http_glTexEnvxv(GLenum target, GLenum pname, const GLfixe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexEnvxv(target, pname, params); } @@ -39341,7 +39356,7 @@ static void REGAL_CALL http_glTexParameterx(GLenum target, GLenum pname, GLfixed } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexParameterx(target, pname, param); } @@ -39356,7 +39371,7 @@ static void REGAL_CALL http_glTranslatex(GLfixed x, GLfixed y, GLfixed z) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTranslatex(x, y, z); } @@ -39373,7 +39388,7 @@ static void REGAL_CALL http_glClipPlanef(GLenum plane, const GLfloat *equation) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glClipPlanef(plane, equation); } @@ -39388,7 +39403,7 @@ static void REGAL_CALL http_glClipPlanex(GLenum plane, const GLfixed *equation) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glClipPlanex(plane, equation); } @@ -39403,7 +39418,7 @@ static void REGAL_CALL http_glGetClipPlanef(GLenum pname, GLfloat *eqn) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetClipPlanef(pname, eqn); } @@ -39418,7 +39433,7 @@ static void REGAL_CALL http_glGetClipPlanex(GLenum pname, GLfixed *eqn) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetClipPlanex(pname, eqn); } @@ -39433,7 +39448,7 @@ static void REGAL_CALL http_glGetFixedv(GLenum pname, GLfixed *params) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetFixedv(pname, params); } @@ -39448,7 +39463,7 @@ static void REGAL_CALL http_glGetLightxv(GLenum light, GLenum pname, GLfixed *pa } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetLightxv(light, pname, params); } @@ -39463,7 +39478,7 @@ static void REGAL_CALL http_glGetMaterialxv(GLenum face, GLenum pname, GLfixed * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetMaterialxv(face, pname, params); } @@ -39478,7 +39493,7 @@ static void REGAL_CALL http_glGetTexEnvxv(GLenum env, GLenum pname, GLfixed *par } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetTexEnvxv(env, pname, params); } @@ -39493,7 +39508,7 @@ static void REGAL_CALL http_glGetTexParameterxv(GLenum target, GLenum pname, GLf } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetTexParameterxv(target, pname, params); } @@ -39508,7 +39523,7 @@ static void REGAL_CALL http_glPointParameterx(GLenum pname, GLfixed param) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPointParameterx(pname, param); } @@ -39523,7 +39538,7 @@ static void REGAL_CALL http_glPointParameterxv(GLenum pname, const GLfixed *para } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPointParameterxv(pname, params); } @@ -39538,7 +39553,7 @@ static void REGAL_CALL http_glPointSizePointerOES(GLenum type, GLsizei stride, c } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPointSizePointerOES(type, stride, pointer); } @@ -39553,7 +39568,7 @@ static void REGAL_CALL http_glTexParameterxv(GLenum target, GLenum pname, const } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexParameterxv(target, pname, params); } @@ -39570,7 +39585,7 @@ static void REGAL_CALL http_glLogMessageCallbackREGAL(GLLOGPROCREGAL callback) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glLogMessageCallbackREGAL(callback); } @@ -39587,7 +39602,7 @@ static void REGAL_CALL http_glDetailTexFuncSGIS(GLenum target, GLsizei n, const } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDetailTexFuncSGIS(target, n, points); } @@ -39602,7 +39617,7 @@ static void REGAL_CALL http_glGetDetailTexFuncSGIS(GLenum target, GLfloat *point } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetDetailTexFuncSGIS(target, points); } @@ -39619,7 +39634,7 @@ static void REGAL_CALL http_glFogFuncSGIS(GLsizei n, const GLfloat *points) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFogFuncSGIS(n, points); } @@ -39634,7 +39649,7 @@ static void REGAL_CALL http_glGetFogFuncSGIS(GLfloat *points) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetFogFuncSGIS(points); } @@ -39651,7 +39666,7 @@ static void REGAL_CALL http_glSampleMaskSGIS(GLclampf value, GLboolean invert) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSampleMaskSGIS(value, invert); } @@ -39666,7 +39681,7 @@ static void REGAL_CALL http_glSamplePatternSGIS(GLenum pattern) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSamplePatternSGIS(pattern); } @@ -39683,7 +39698,7 @@ static void REGAL_CALL http_glGetPixelTexGenParameterfvSGIS(GLenum pname, GLfloa } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetPixelTexGenParameterfvSGIS(pname, params); } @@ -39698,7 +39713,7 @@ static void REGAL_CALL http_glGetPixelTexGenParameterivSGIS(GLenum pname, GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetPixelTexGenParameterivSGIS(pname, params); } @@ -39713,7 +39728,7 @@ static void REGAL_CALL http_glPixelTexGenParameterfSGIS(GLenum pname, GLfloat pa } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPixelTexGenParameterfSGIS(pname, param); } @@ -39728,7 +39743,7 @@ static void REGAL_CALL http_glPixelTexGenParameterfvSGIS(GLenum pname, const GLf } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPixelTexGenParameterfvSGIS(pname, params); } @@ -39743,7 +39758,7 @@ static void REGAL_CALL http_glPixelTexGenParameteriSGIS(GLenum pname, GLint para } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPixelTexGenParameteriSGIS(pname, param); } @@ -39758,7 +39773,7 @@ static void REGAL_CALL http_glPixelTexGenParameterivSGIS(GLenum pname, const GLi } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPixelTexGenParameterivSGIS(pname, params); } @@ -39775,7 +39790,7 @@ static void REGAL_CALL http_glPointParameterfSGIS(GLenum pname, GLfloat param) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPointParameterfSGIS(pname, param); } @@ -39790,7 +39805,7 @@ static void REGAL_CALL http_glPointParameterfvSGIS(GLenum pname, const GLfloat * } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPointParameterfvSGIS(pname, params); } @@ -39807,7 +39822,7 @@ static void REGAL_CALL http_glGetSharpenTexFuncSGIS(GLenum target, GLfloat *poin } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetSharpenTexFuncSGIS(target, points); } @@ -39822,7 +39837,7 @@ static void REGAL_CALL http_glSharpenTexFuncSGIS(GLenum target, GLsizei n, const } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSharpenTexFuncSGIS(target, n, points); } @@ -39839,7 +39854,7 @@ static void REGAL_CALL http_glTexImage4DSGIS(GLenum target, GLint level, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexImage4DSGIS(target, level, internalformat, width, height, depth, size4d, border, format, type, pixels); } @@ -39854,7 +39869,7 @@ static void REGAL_CALL http_glTexSubImage4DSGIS(GLenum target, GLint level, GLin } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexSubImage4DSGIS(target, level, xoffset, yoffset, zoffset, woffset, width, height, depth, size4d, format, type, pixels); } @@ -39871,7 +39886,7 @@ static void REGAL_CALL http_glTextureColorMaskSGIS(GLboolean red, GLboolean gree } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTextureColorMaskSGIS(red, green, blue, alpha); } @@ -39888,7 +39903,7 @@ static void REGAL_CALL http_glGetTexFilterFuncSGIS(GLenum target, GLenum filter, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetTexFilterFuncSGIS(target, filter, weights); } @@ -39903,7 +39918,7 @@ static void REGAL_CALL http_glTexFilterFuncSGIS(GLenum target, GLenum filter, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexFilterFuncSGIS(target, filter, n, weights); } @@ -39920,7 +39935,7 @@ static void REGAL_CALL http_glAsyncMarkerSGIX(GLuint marker) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glAsyncMarkerSGIX(marker); } @@ -39935,7 +39950,7 @@ static void REGAL_CALL http_glDeleteAsyncMarkersSGIX(GLuint marker, GLsizei rang } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeleteAsyncMarkersSGIX(marker, range); } @@ -39951,7 +39966,7 @@ static GLint REGAL_CALL http_glFinishAsyncSGIX(GLuint *markerp) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glFinishAsyncSGIX(markerp); return ret; @@ -39968,7 +39983,7 @@ static GLuint REGAL_CALL http_glGenAsyncMarkersSGIX(GLsizei range) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glGenAsyncMarkersSGIX(range); return ret; @@ -39985,7 +40000,7 @@ static GLboolean REGAL_CALL http_glIsAsyncMarkerSGIX(GLuint marker) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glIsAsyncMarkerSGIX(marker); return ret; @@ -40002,7 +40017,7 @@ static GLint REGAL_CALL http_glPollAsyncSGIX(GLuint *markerp) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glPollAsyncSGIX(markerp); return ret; @@ -40020,7 +40035,7 @@ static void REGAL_CALL http_glFlushRasterSGIX(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFlushRasterSGIX(); } @@ -40037,7 +40052,7 @@ static void REGAL_CALL http_glTextureFogSGIX(GLenum pname) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTextureFogSGIX(pname); } @@ -40054,7 +40069,7 @@ static void REGAL_CALL http_glFragmentColorMaterialSGIX(GLenum face, GLenum mode } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFragmentColorMaterialSGIX(face, mode); } @@ -40069,7 +40084,7 @@ static void REGAL_CALL http_glFragmentLightModelfSGIX(GLenum pname, GLfloat para } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFragmentLightModelfSGIX(pname, param); } @@ -40084,7 +40099,7 @@ static void REGAL_CALL http_glFragmentLightModelfvSGIX(GLenum pname, const GLflo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFragmentLightModelfvSGIX(pname, params); } @@ -40099,7 +40114,7 @@ static void REGAL_CALL http_glFragmentLightModeliSGIX(GLenum pname, GLint param) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFragmentLightModeliSGIX(pname, param); } @@ -40114,7 +40129,7 @@ static void REGAL_CALL http_glFragmentLightModelivSGIX(GLenum pname, const GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFragmentLightModelivSGIX(pname, params); } @@ -40129,7 +40144,7 @@ static void REGAL_CALL http_glFragmentLightfSGIX(GLenum light, GLenum pname, GLf } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFragmentLightfSGIX(light, pname, param); } @@ -40144,7 +40159,7 @@ static void REGAL_CALL http_glFragmentLightfvSGIX(GLenum light, GLenum pname, co } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFragmentLightfvSGIX(light, pname, params); } @@ -40159,7 +40174,7 @@ static void REGAL_CALL http_glFragmentLightiSGIX(GLenum light, GLenum pname, GLi } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFragmentLightiSGIX(light, pname, param); } @@ -40174,7 +40189,7 @@ static void REGAL_CALL http_glFragmentLightivSGIX(GLenum light, GLenum pname, co } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFragmentLightivSGIX(light, pname, params); } @@ -40189,7 +40204,7 @@ static void REGAL_CALL http_glFragmentMaterialfSGIX(GLenum face, GLenum pname, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFragmentMaterialfSGIX(face, pname, param); } @@ -40204,7 +40219,7 @@ static void REGAL_CALL http_glFragmentMaterialfvSGIX(GLenum face, GLenum pname, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFragmentMaterialfvSGIX(face, pname, params); } @@ -40219,7 +40234,7 @@ static void REGAL_CALL http_glFragmentMaterialiSGIX(GLenum face, GLenum pname, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFragmentMaterialiSGIX(face, pname, param); } @@ -40234,7 +40249,7 @@ static void REGAL_CALL http_glFragmentMaterialivSGIX(GLenum face, GLenum pname, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFragmentMaterialivSGIX(face, pname, params); } @@ -40249,7 +40264,7 @@ static void REGAL_CALL http_glGetFragmentLightfvSGIX(GLenum light, GLenum pname, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetFragmentLightfvSGIX(light, pname, params); } @@ -40264,7 +40279,7 @@ static void REGAL_CALL http_glGetFragmentLightivSGIX(GLenum light, GLenum pname, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetFragmentLightivSGIX(light, pname, params); } @@ -40279,7 +40294,7 @@ static void REGAL_CALL http_glGetFragmentMaterialfvSGIX(GLenum face, GLenum pnam } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetFragmentMaterialfvSGIX(face, pname, params); } @@ -40294,7 +40309,7 @@ static void REGAL_CALL http_glGetFragmentMaterialivSGIX(GLenum face, GLenum pnam } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetFragmentMaterialivSGIX(face, pname, params); } @@ -40309,7 +40324,7 @@ static void REGAL_CALL http_glLightEnviSGIX(GLenum pname, GLint param) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glLightEnviSGIX(pname, param); } @@ -40326,7 +40341,7 @@ static void REGAL_CALL http_glFrameZoomSGIX(GLint factor) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFrameZoomSGIX(factor); } @@ -40343,7 +40358,7 @@ static void REGAL_CALL http_glIglooInterfaceSGIX(GLenum pname, const GLvoid *par } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glIglooInterfaceSGIX(pname, params); } @@ -40361,7 +40376,7 @@ static GLint REGAL_CALL http_glGetInstrumentsSGIX(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glGetInstrumentsSGIX(); return ret; @@ -40377,7 +40392,7 @@ static void REGAL_CALL http_glInstrumentsBufferSGIX(GLsizei size, GLint *buffer) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glInstrumentsBufferSGIX(size, buffer); } @@ -40393,7 +40408,7 @@ static GLint REGAL_CALL http_glPollInstrumentsSGIX(GLint *marker_p) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); ret = _next->glPollInstrumentsSGIX(marker_p); return ret; @@ -40409,7 +40424,7 @@ static void REGAL_CALL http_glReadInstrumentsSGIX(GLint marker) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glReadInstrumentsSGIX(marker); } @@ -40424,7 +40439,7 @@ static void REGAL_CALL http_glStartInstrumentsSGIX(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glStartInstrumentsSGIX(); } @@ -40439,7 +40454,7 @@ static void REGAL_CALL http_glStopInstrumentsSGIX(GLint marker) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glStopInstrumentsSGIX(marker); } @@ -40456,7 +40471,7 @@ static void REGAL_CALL http_glGetListParameterfvSGIX(GLuint list, GLenum pname, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetListParameterfvSGIX(list, pname, params); } @@ -40471,7 +40486,7 @@ static void REGAL_CALL http_glGetListParameterivSGIX(GLuint list, GLenum pname, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetListParameterivSGIX(list, pname, params); } @@ -40486,7 +40501,7 @@ static void REGAL_CALL http_glListParameterfSGIX(GLuint list, GLenum pname, GLfl } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glListParameterfSGIX(list, pname, param); } @@ -40501,7 +40516,7 @@ static void REGAL_CALL http_glListParameterfvSGIX(GLuint list, GLenum pname, con } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glListParameterfvSGIX(list, pname, params); } @@ -40516,7 +40531,7 @@ static void REGAL_CALL http_glListParameteriSGIX(GLuint list, GLenum pname, GLin } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glListParameteriSGIX(list, pname, param); } @@ -40531,7 +40546,7 @@ static void REGAL_CALL http_glListParameterivSGIX(GLuint list, GLenum pname, con } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glListParameterivSGIX(list, pname, params); } @@ -40548,7 +40563,7 @@ static void REGAL_CALL http_glPixelTexGenSGIX(GLenum mode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glPixelTexGenSGIX(mode); } @@ -40565,7 +40580,7 @@ static void REGAL_CALL http_glDeformSGIX(GLbitfield mask) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeformSGIX(mask); } @@ -40580,7 +40595,7 @@ static void REGAL_CALL http_glDeformationMap3dSGIX(GLenum target, GLdouble u1, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeformationMap3dSGIX(target, u1, u2, ustride, uorder, v1, v2, vstride, vorder, w1, w2, wstride, worder, points); } @@ -40595,7 +40610,7 @@ static void REGAL_CALL http_glDeformationMap3fSGIX(GLenum target, GLfloat u1, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDeformationMap3fSGIX(target, u1, u2, ustride, uorder, v1, v2, vstride, vorder, w1, w2, wstride, worder, points); } @@ -40610,7 +40625,7 @@ static void REGAL_CALL http_glLoadIdentityDeformationMapSGIX(GLbitfield mask) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glLoadIdentityDeformationMapSGIX(mask); } @@ -40627,7 +40642,7 @@ static void REGAL_CALL http_glReferencePlaneSGIX(const GLdouble *equation) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glReferencePlaneSGIX(equation); } @@ -40644,7 +40659,7 @@ static void REGAL_CALL http_glSpriteParameterfSGIX(GLenum pname, GLfloat param) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSpriteParameterfSGIX(pname, param); } @@ -40659,7 +40674,7 @@ static void REGAL_CALL http_glSpriteParameterfvSGIX(GLenum pname, const GLfloat } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSpriteParameterfvSGIX(pname, params); } @@ -40674,7 +40689,7 @@ static void REGAL_CALL http_glSpriteParameteriSGIX(GLenum pname, GLint param) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSpriteParameteriSGIX(pname, param); } @@ -40689,7 +40704,7 @@ static void REGAL_CALL http_glSpriteParameterivSGIX(GLenum pname, const GLint *p } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glSpriteParameterivSGIX(pname, params); } @@ -40706,7 +40721,7 @@ static void REGAL_CALL http_glTagSampleBufferSGIX(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTagSampleBufferSGIX(); } @@ -40723,7 +40738,7 @@ static void REGAL_CALL http_glColorTableParameterfvSGI(GLenum target, GLenum pna } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColorTableParameterfvSGI(target, pname, params); } @@ -40738,7 +40753,7 @@ static void REGAL_CALL http_glColorTableParameterivSGI(GLenum target, GLenum pna } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColorTableParameterivSGI(target, pname, params); } @@ -40753,7 +40768,7 @@ static void REGAL_CALL http_glColorTableSGI(GLenum target, GLenum internalformat } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColorTableSGI(target, internalformat, width, format, type, table); } @@ -40768,7 +40783,7 @@ static void REGAL_CALL http_glCopyColorTableSGI(GLenum target, GLenum internalfo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glCopyColorTableSGI(target, internalformat, x, y, width); } @@ -40783,7 +40798,7 @@ static void REGAL_CALL http_glGetColorTableParameterfvSGI(GLenum target, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetColorTableParameterfvSGI(target, pname, params); } @@ -40798,7 +40813,7 @@ static void REGAL_CALL http_glGetColorTableParameterivSGI(GLenum target, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetColorTableParameterivSGI(target, pname, params); } @@ -40813,7 +40828,7 @@ static void REGAL_CALL http_glGetColorTableSGI(GLenum target, GLenum format, GLe } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGetColorTableSGI(target, format, type, table); } @@ -40830,7 +40845,7 @@ static void REGAL_CALL http_glFinishTextureSUNX(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glFinishTextureSUNX(); } @@ -40847,7 +40862,7 @@ static void REGAL_CALL http_glGlobalAlphaFactorbSUN(GLbyte factor) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGlobalAlphaFactorbSUN(factor); } @@ -40862,7 +40877,7 @@ static void REGAL_CALL http_glGlobalAlphaFactordSUN(GLdouble factor) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGlobalAlphaFactordSUN(factor); } @@ -40877,7 +40892,7 @@ static void REGAL_CALL http_glGlobalAlphaFactorfSUN(GLfloat factor) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGlobalAlphaFactorfSUN(factor); } @@ -40892,7 +40907,7 @@ static void REGAL_CALL http_glGlobalAlphaFactoriSUN(GLint factor) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGlobalAlphaFactoriSUN(factor); } @@ -40907,7 +40922,7 @@ static void REGAL_CALL http_glGlobalAlphaFactorsSUN(GLshort factor) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGlobalAlphaFactorsSUN(factor); } @@ -40922,7 +40937,7 @@ static void REGAL_CALL http_glGlobalAlphaFactorubSUN(GLubyte factor) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGlobalAlphaFactorubSUN(factor); } @@ -40937,7 +40952,7 @@ static void REGAL_CALL http_glGlobalAlphaFactoruiSUN(GLuint factor) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGlobalAlphaFactoruiSUN(factor); } @@ -40952,7 +40967,7 @@ static void REGAL_CALL http_glGlobalAlphaFactorusSUN(GLushort factor) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glGlobalAlphaFactorusSUN(factor); } @@ -40969,7 +40984,7 @@ static void REGAL_CALL http_glDrawMeshArraysSUN(GLenum mode, GLint first, GLsize } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glDrawMeshArraysSUN(mode, first, count, width); } @@ -40986,7 +41001,7 @@ static void REGAL_CALL http_glReadVideoPixelsSUN(GLint x, GLint y, GLsizei width } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glReadVideoPixelsSUN(x, y, width, height, format, type, pixels); } @@ -41003,7 +41018,7 @@ static void REGAL_CALL http_glReplacementCodePointerSUN(GLenum type, GLsizei str } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glReplacementCodePointerSUN(type, stride, pointer); } @@ -41018,7 +41033,7 @@ static void REGAL_CALL http_glReplacementCodeubSUN(GLubyte code) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glReplacementCodeubSUN(code); } @@ -41033,7 +41048,7 @@ static void REGAL_CALL http_glReplacementCodeubvSUN(const GLubyte *code) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glReplacementCodeubvSUN(code); } @@ -41048,7 +41063,7 @@ static void REGAL_CALL http_glReplacementCodeuiSUN(GLuint code) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glReplacementCodeuiSUN(code); } @@ -41063,7 +41078,7 @@ static void REGAL_CALL http_glReplacementCodeuivSUN(const GLuint *code) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glReplacementCodeuivSUN(code); } @@ -41078,7 +41093,7 @@ static void REGAL_CALL http_glReplacementCodeusSUN(GLushort code) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glReplacementCodeusSUN(code); } @@ -41093,7 +41108,7 @@ static void REGAL_CALL http_glReplacementCodeusvSUN(const GLushort *code) } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glReplacementCodeusvSUN(code); } @@ -41110,7 +41125,7 @@ static void REGAL_CALL http_glColor3fVertex3fSUN(GLfloat r, GLfloat g, GLfloat b } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor3fVertex3fSUN(r, g, b, x, y, z); } @@ -41125,7 +41140,7 @@ static void REGAL_CALL http_glColor3fVertex3fvSUN(const GLfloat *c, const GLfloa } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor3fVertex3fvSUN(c, v); } @@ -41140,7 +41155,7 @@ static void REGAL_CALL http_glColor4fNormal3fVertex3fSUN(GLfloat r, GLfloat g, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor4fNormal3fVertex3fSUN(r, g, b, a, nx, ny, nz, x, y, z); } @@ -41155,7 +41170,7 @@ static void REGAL_CALL http_glColor4fNormal3fVertex3fvSUN(const GLfloat *c, cons } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor4fNormal3fVertex3fvSUN(c, n, v); } @@ -41170,7 +41185,7 @@ static void REGAL_CALL http_glColor4ubVertex2fSUN(GLubyte r, GLubyte g, GLubyte } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor4ubVertex2fSUN(r, g, b, a, x, y); } @@ -41185,7 +41200,7 @@ static void REGAL_CALL http_glColor4ubVertex2fvSUN(const GLubyte *c, const GLflo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor4ubVertex2fvSUN(c, v); } @@ -41200,7 +41215,7 @@ static void REGAL_CALL http_glColor4ubVertex3fSUN(GLubyte r, GLubyte g, GLubyte } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor4ubVertex3fSUN(r, g, b, a, x, y, z); } @@ -41215,7 +41230,7 @@ static void REGAL_CALL http_glColor4ubVertex3fvSUN(const GLubyte *c, const GLflo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glColor4ubVertex3fvSUN(c, v); } @@ -41230,7 +41245,7 @@ static void REGAL_CALL http_glNormal3fVertex3fSUN(GLfloat nx, GLfloat ny, GLfloa } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNormal3fVertex3fSUN(nx, ny, nz, x, y, z); } @@ -41245,7 +41260,7 @@ static void REGAL_CALL http_glNormal3fVertex3fvSUN(const GLfloat *n, const GLflo } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glNormal3fVertex3fvSUN(n, v); } @@ -41260,7 +41275,7 @@ static void REGAL_CALL http_glReplacementCodeuiColor3fVertex3fSUN(GLuint rc, GLf } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glReplacementCodeuiColor3fVertex3fSUN(rc, r, g, b, x, y, z); } @@ -41275,7 +41290,7 @@ static void REGAL_CALL http_glReplacementCodeuiColor3fVertex3fvSUN(const GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glReplacementCodeuiColor3fVertex3fvSUN(rc, c, v); } @@ -41290,7 +41305,7 @@ static void REGAL_CALL http_glReplacementCodeuiColor4fNormal3fVertex3fSUN(GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glReplacementCodeuiColor4fNormal3fVertex3fSUN(rc, r, g, b, a, nx, ny, nz, x, y, z); } @@ -41305,7 +41320,7 @@ static void REGAL_CALL http_glReplacementCodeuiColor4fNormal3fVertex3fvSUN(const } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glReplacementCodeuiColor4fNormal3fVertex3fvSUN(rc, c, n, v); } @@ -41320,7 +41335,7 @@ static void REGAL_CALL http_glReplacementCodeuiColor4ubVertex3fSUN(GLuint rc, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glReplacementCodeuiColor4ubVertex3fSUN(rc, r, g, b, a, x, y, z); } @@ -41335,7 +41350,7 @@ static void REGAL_CALL http_glReplacementCodeuiColor4ubVertex3fvSUN(const GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glReplacementCodeuiColor4ubVertex3fvSUN(rc, c, v); } @@ -41350,7 +41365,7 @@ static void REGAL_CALL http_glReplacementCodeuiNormal3fVertex3fSUN(GLuint rc, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glReplacementCodeuiNormal3fVertex3fSUN(rc, nx, ny, nz, x, y, z); } @@ -41365,7 +41380,7 @@ static void REGAL_CALL http_glReplacementCodeuiNormal3fVertex3fvSUN(const GLuint } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glReplacementCodeuiNormal3fVertex3fvSUN(rc, n, v); } @@ -41380,7 +41395,7 @@ static void REGAL_CALL http_glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3f } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN(rc, s, t, r, g, b, a, nx, ny, nz, x, y, z); } @@ -41395,7 +41410,7 @@ static void REGAL_CALL http_glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3f } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN(rc, tc, c, n, v); } @@ -41410,7 +41425,7 @@ static void REGAL_CALL http_glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN(GLu } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN(rc, s, t, nx, ny, nz, x, y, z); } @@ -41425,7 +41440,7 @@ static void REGAL_CALL http_glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN(co } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN(rc, tc, n, v); } @@ -41440,7 +41455,7 @@ static void REGAL_CALL http_glReplacementCodeuiTexCoord2fVertex3fSUN(GLuint rc, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glReplacementCodeuiTexCoord2fVertex3fSUN(rc, s, t, x, y, z); } @@ -41455,7 +41470,7 @@ static void REGAL_CALL http_glReplacementCodeuiTexCoord2fVertex3fvSUN(const GLui } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glReplacementCodeuiTexCoord2fVertex3fvSUN(rc, tc, v); } @@ -41470,7 +41485,7 @@ static void REGAL_CALL http_glReplacementCodeuiVertex3fSUN(GLuint rc, GLfloat x, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glReplacementCodeuiVertex3fSUN(rc, x, y, z); } @@ -41485,7 +41500,7 @@ static void REGAL_CALL http_glReplacementCodeuiVertex3fvSUN(const GLuint *rc, co } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glReplacementCodeuiVertex3fvSUN(rc, v); } @@ -41500,7 +41515,7 @@ static void REGAL_CALL http_glTexCoord2fColor3fVertex3fSUN(GLfloat s, GLfloat t, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord2fColor3fVertex3fSUN(s, t, r, g, b, x, y, z); } @@ -41515,7 +41530,7 @@ static void REGAL_CALL http_glTexCoord2fColor3fVertex3fvSUN(const GLfloat *tc, c } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord2fColor3fVertex3fvSUN(tc, c, v); } @@ -41530,7 +41545,7 @@ static void REGAL_CALL http_glTexCoord2fColor4fNormal3fVertex3fSUN(GLfloat s, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord2fColor4fNormal3fVertex3fSUN(s, t, r, g, b, a, nx, ny, nz, x, y, z); } @@ -41545,7 +41560,7 @@ static void REGAL_CALL http_glTexCoord2fColor4fNormal3fVertex3fvSUN(const GLfloa } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord2fColor4fNormal3fVertex3fvSUN(tc, c, n, v); } @@ -41560,7 +41575,7 @@ static void REGAL_CALL http_glTexCoord2fColor4ubVertex3fSUN(GLfloat s, GLfloat t } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord2fColor4ubVertex3fSUN(s, t, r, g, b, a, x, y, z); } @@ -41575,7 +41590,7 @@ static void REGAL_CALL http_glTexCoord2fColor4ubVertex3fvSUN(const GLfloat *tc, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord2fColor4ubVertex3fvSUN(tc, c, v); } @@ -41590,7 +41605,7 @@ static void REGAL_CALL http_glTexCoord2fNormal3fVertex3fSUN(GLfloat s, GLfloat t } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord2fNormal3fVertex3fSUN(s, t, nx, ny, nz, x, y, z); } @@ -41605,7 +41620,7 @@ static void REGAL_CALL http_glTexCoord2fNormal3fVertex3fvSUN(const GLfloat *tc, } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord2fNormal3fVertex3fvSUN(tc, n, v); } @@ -41620,7 +41635,7 @@ static void REGAL_CALL http_glTexCoord2fVertex3fSUN(GLfloat s, GLfloat t, GLfloa } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord2fVertex3fSUN(s, t, x, y, z); } @@ -41635,7 +41650,7 @@ static void REGAL_CALL http_glTexCoord2fVertex3fvSUN(const GLfloat *tc, const GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord2fVertex3fvSUN(tc, v); } @@ -41650,7 +41665,7 @@ static void REGAL_CALL http_glTexCoord4fColor4fNormal3fVertex4fSUN(GLfloat s, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord4fColor4fNormal3fVertex4fSUN(s, t, p, q, r, g, b, a, nx, ny, nz, x, y, z, w); } @@ -41665,7 +41680,7 @@ static void REGAL_CALL http_glTexCoord4fColor4fNormal3fVertex4fvSUN(const GLfloa } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord4fColor4fNormal3fVertex4fvSUN(tc, c, n, v); } @@ -41680,7 +41695,7 @@ static void REGAL_CALL http_glTexCoord4fVertex4fSUN(GLfloat s, GLfloat t, GLfloa } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord4fVertex4fSUN(s, t, p, q, x, y, z, w); } @@ -41695,7 +41710,7 @@ static void REGAL_CALL http_glTexCoord4fVertex4fvSUN(const GLfloat *tc, const GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glTexCoord4fVertex4fvSUN(tc, v); } @@ -41712,7 +41727,7 @@ static void REGAL_CALL http_glAddSwapHintRectWIN(GLint x, GLint y, GLsizei width } _context->http.YieldToHttpServer( _context ); } - Dispatch::GL *_next = _context ? &_context->dispatchGL : NULL; + Dispatch::GL *_next = _context ? &_context->http.next : NULL; RegalAssert(_next); _next->glAddSwapHintRectWIN(x, y, width, height); } @@ -41731,7 +41746,7 @@ static BOOL REGAL_CALL http_wglSetStereoEmitterState3DL(HDC hDC, UINT uState) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglSetStereoEmitterState3DL(hDC, uState); return ret; @@ -41748,7 +41763,7 @@ static VOID REGAL_CALL http_wglBlitContextFramebufferAMD(HGLRC dstCtx, GLint src } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->wglBlitContextFramebufferAMD(dstCtx, srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter); } @@ -41763,7 +41778,7 @@ static HGLRC REGAL_CALL http_wglCreateAssociatedContextAMD(UINT id) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglCreateAssociatedContextAMD(id); return ret; @@ -41779,7 +41794,7 @@ static HGLRC REGAL_CALL http_wglCreateAssociatedContextAttribsAMD(UINT id, HGLRC } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglCreateAssociatedContextAttribsAMD(id, hShareContext, attribList); return ret; @@ -41795,7 +41810,7 @@ static BOOL REGAL_CALL http_wglDeleteAssociatedContextAMD(HGLRC hglrc) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglDeleteAssociatedContextAMD(hglrc); return ret; @@ -41811,7 +41826,7 @@ static UINT REGAL_CALL http_wglGetContextGPUIDAMD(HGLRC hglrc) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglGetContextGPUIDAMD(hglrc); return ret; @@ -41827,7 +41842,7 @@ static HGLRC REGAL_CALL http_wglGetCurrentAssociatedContextAMD(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglGetCurrentAssociatedContextAMD(); return ret; @@ -41843,7 +41858,7 @@ static UINT REGAL_CALL http_wglGetGPUIDsAMD(UINT maxCount, UINT *ids) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglGetGPUIDsAMD(maxCount, ids); return ret; @@ -41859,7 +41874,7 @@ static INT REGAL_CALL http_wglGetGPUInfoAMD(UINT id, int property, GLenum dataTy } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglGetGPUInfoAMD(id, property, dataType, size, data); return ret; @@ -41875,7 +41890,7 @@ static BOOL REGAL_CALL http_wglMakeAssociatedContextCurrentAMD(HGLRC hglrc) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglMakeAssociatedContextCurrentAMD(hglrc); return ret; @@ -41893,7 +41908,7 @@ static HANDLE REGAL_CALL http_wglCreateBufferRegionARB(HDC hDC, int iLayerPlane, } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglCreateBufferRegionARB(hDC, iLayerPlane, uType); return ret; @@ -41908,7 +41923,7 @@ static VOID REGAL_CALL http_wglDeleteBufferRegionARB(HANDLE hRegion) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->wglDeleteBufferRegionARB(hRegion); } @@ -41923,7 +41938,7 @@ static BOOL REGAL_CALL http_wglRestoreBufferRegionARB(HANDLE hRegion, int x, int } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglRestoreBufferRegionARB(hRegion, x, y, width, height, xSrc, ySrc); return ret; @@ -41939,7 +41954,7 @@ static BOOL REGAL_CALL http_wglSaveBufferRegionARB(HANDLE hRegion, int x, int y, } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglSaveBufferRegionARB(hRegion, x, y, width, height); return ret; @@ -41957,7 +41972,7 @@ static HGLRC REGAL_CALL http_wglCreateContextAttribsARB(HDC hDC, HGLRC hShareCon } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglCreateContextAttribsARB(hDC, hShareContext, piAttribList); return ret; @@ -41975,7 +41990,7 @@ static const char *REGAL_CALL http_wglGetExtensionsStringARB(HDC hDC) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglGetExtensionsStringARB(hDC); return ret; @@ -41993,7 +42008,7 @@ static HDC REGAL_CALL http_wglGetCurrentReadDCARB(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglGetCurrentReadDCARB(); return ret; @@ -42009,7 +42024,7 @@ static BOOL REGAL_CALL http_wglMakeContextCurrentARB(HDC hDrawDC, HDC hReadDC, H } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglMakeContextCurrentARB(hDrawDC, hReadDC, hglrc); return ret; @@ -42027,7 +42042,7 @@ static HPBUFFERARB REGAL_CALL http_wglCreatePbufferARB(HDC hDC, int iPixelFormat } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglCreatePbufferARB(hDC, iPixelFormat, iWidth, iHeight, piAttribList); return ret; @@ -42043,7 +42058,7 @@ static BOOL REGAL_CALL http_wglDestroyPbufferARB(HPBUFFERARB hPbuffer) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglDestroyPbufferARB(hPbuffer); return ret; @@ -42059,7 +42074,7 @@ static HDC REGAL_CALL http_wglGetPbufferDCARB(HPBUFFERARB hPbuffer) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglGetPbufferDCARB(hPbuffer); return ret; @@ -42075,7 +42090,7 @@ static BOOL REGAL_CALL http_wglQueryPbufferARB(HPBUFFERARB hPbuffer, int iAttrib } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglQueryPbufferARB(hPbuffer, iAttribute, piValue); return ret; @@ -42091,7 +42106,7 @@ static int REGAL_CALL http_wglReleasePbufferDCARB(HPBUFFERARB hPbuffer, HDC hDC) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglReleasePbufferDCARB(hPbuffer, hDC); return ret; @@ -42109,7 +42124,7 @@ static BOOL REGAL_CALL http_wglChoosePixelFormatARB(HDC hDC, const int *piAttrib } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglChoosePixelFormatARB(hDC, piAttribIList, pfAttribFList, nMaxFormats, piFormats, nNumFormats); return ret; @@ -42125,7 +42140,7 @@ static BOOL REGAL_CALL http_wglGetPixelFormatAttribfvARB(HDC hDC, int iPixelForm } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglGetPixelFormatAttribfvARB(hDC, iPixelFormat, iLayerPlane, nAttributes, piAttributes, pfValues); return ret; @@ -42141,7 +42156,7 @@ static BOOL REGAL_CALL http_wglGetPixelFormatAttribivARB(HDC hDC, int iPixelForm } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglGetPixelFormatAttribivARB(hDC, iPixelFormat, iLayerPlane, nAttributes, piAttributes, piValues); return ret; @@ -42159,7 +42174,7 @@ static BOOL REGAL_CALL http_wglBindTexImageARB(HPBUFFERARB hPbuffer, int iBuffer } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglBindTexImageARB(hPbuffer, iBuffer); return ret; @@ -42175,7 +42190,7 @@ static BOOL REGAL_CALL http_wglReleaseTexImageARB(HPBUFFERARB hPbuffer, int iBuf } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglReleaseTexImageARB(hPbuffer, iBuffer); return ret; @@ -42191,7 +42206,7 @@ static BOOL REGAL_CALL http_wglSetPbufferAttribARB(HPBUFFERARB hPbuffer, const i } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglSetPbufferAttribARB(hPbuffer, piAttribList); return ret; @@ -42209,7 +42224,7 @@ static GLboolean REGAL_CALL http_wglBindDisplayColorTableEXT(GLushort id) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglBindDisplayColorTableEXT(id); return ret; @@ -42225,7 +42240,7 @@ static GLboolean REGAL_CALL http_wglCreateDisplayColorTableEXT(GLushort id) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglCreateDisplayColorTableEXT(id); return ret; @@ -42240,7 +42255,7 @@ static VOID REGAL_CALL http_wglDestroyDisplayColorTableEXT(GLushort id) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->wglDestroyDisplayColorTableEXT(id); } @@ -42255,7 +42270,7 @@ static GLboolean REGAL_CALL http_wglLoadDisplayColorTableEXT(const GLushort *tab } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglLoadDisplayColorTableEXT(table, length); return ret; @@ -42273,7 +42288,7 @@ static const char *REGAL_CALL http_wglGetExtensionsStringEXT(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglGetExtensionsStringEXT(); return ret; @@ -42291,7 +42306,7 @@ static HDC REGAL_CALL http_wglGetCurrentReadDCEXT(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglGetCurrentReadDCEXT(); return ret; @@ -42307,7 +42322,7 @@ static BOOL REGAL_CALL http_wglMakeContextCurrentEXT(HDC hDrawDC, HDC hReadDC, H } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglMakeContextCurrentEXT(hDrawDC, hReadDC, hglrc); return ret; @@ -42325,7 +42340,7 @@ static HPBUFFEREXT REGAL_CALL http_wglCreatePbufferEXT(HDC hDC, int iPixelFormat } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglCreatePbufferEXT(hDC, iPixelFormat, iWidth, iHeight, piAttribList); return ret; @@ -42341,7 +42356,7 @@ static BOOL REGAL_CALL http_wglDestroyPbufferEXT(HPBUFFEREXT hPbuffer) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglDestroyPbufferEXT(hPbuffer); return ret; @@ -42357,7 +42372,7 @@ static HDC REGAL_CALL http_wglGetPbufferDCEXT(HPBUFFEREXT hPbuffer) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglGetPbufferDCEXT(hPbuffer); return ret; @@ -42373,7 +42388,7 @@ static BOOL REGAL_CALL http_wglQueryPbufferEXT(HPBUFFEREXT hPbuffer, int iAttrib } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglQueryPbufferEXT(hPbuffer, iAttribute, piValue); return ret; @@ -42389,7 +42404,7 @@ static int REGAL_CALL http_wglReleasePbufferDCEXT(HPBUFFEREXT hPbuffer, HDC hDC) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglReleasePbufferDCEXT(hPbuffer, hDC); return ret; @@ -42407,7 +42422,7 @@ static BOOL REGAL_CALL http_wglChoosePixelFormatEXT(HDC hDC, const int *piAttrib } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglChoosePixelFormatEXT(hDC, piAttribIList, pfAttribFList, nMaxFormats, piFormats, nNumFormats); return ret; @@ -42423,7 +42438,7 @@ static BOOL REGAL_CALL http_wglGetPixelFormatAttribfvEXT(HDC hDC, int iPixelForm } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglGetPixelFormatAttribfvEXT(hDC, iPixelFormat, iLayerPlane, nAttributes, piAttributes, pfValues); return ret; @@ -42439,7 +42454,7 @@ static BOOL REGAL_CALL http_wglGetPixelFormatAttribivEXT(HDC hDC, int iPixelForm } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglGetPixelFormatAttribivEXT(hDC, iPixelFormat, iLayerPlane, nAttributes, piAttributes, piValues); return ret; @@ -42457,7 +42472,7 @@ static int REGAL_CALL http_wglGetSwapIntervalEXT(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglGetSwapIntervalEXT(); return ret; @@ -42473,7 +42488,7 @@ static BOOL REGAL_CALL http_wglSwapIntervalEXT(int interval) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglSwapIntervalEXT(interval); return ret; @@ -42491,7 +42506,7 @@ static int REGAL_CALL http_wglChoosePixelFormat(HDC hDC, const PIXELFORMATDESCRI } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglChoosePixelFormat(hDC, ppfd); return ret; @@ -42507,7 +42522,7 @@ static int REGAL_CALL http_wglDescribePixelFormat(HDC hDC, int iPixelFormat, UIN } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglDescribePixelFormat(hDC, iPixelFormat, nBytes, ppfd); return ret; @@ -42523,7 +42538,7 @@ static int REGAL_CALL http_wglGetPixelFormat(HDC hDC) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglGetPixelFormat(hDC); return ret; @@ -42539,7 +42554,7 @@ static BOOL REGAL_CALL http_wglSetPixelFormat(HDC hDC, int iPixelFormat, const P } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglSetPixelFormat(hDC, iPixelFormat, ppfd); return ret; @@ -42562,7 +42577,7 @@ static BOOL REGAL_CALL http_wglSwapBuffers(HDC hDC) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglSwapBuffers(hDC); if( _context ) { @@ -42583,7 +42598,7 @@ static BOOL REGAL_CALL http_wglGetDigitalVideoParametersI3D(HDC hDC, int iAttrib } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglGetDigitalVideoParametersI3D(hDC, iAttribute, piValue); return ret; @@ -42599,7 +42614,7 @@ static BOOL REGAL_CALL http_wglSetDigitalVideoParametersI3D(HDC hDC, int iAttrib } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglSetDigitalVideoParametersI3D(hDC, iAttribute, piValue); return ret; @@ -42617,7 +42632,7 @@ static BOOL REGAL_CALL http_wglGetGammaTableI3D(HDC hDC, int iEntries, USHORT *p } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglGetGammaTableI3D(hDC, iEntries, puRed, puGreen, puBlue); return ret; @@ -42633,7 +42648,7 @@ static BOOL REGAL_CALL http_wglGetGammaTableParametersI3D(HDC hDC, int iAttribut } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglGetGammaTableParametersI3D(hDC, iAttribute, piValue); return ret; @@ -42649,7 +42664,7 @@ static BOOL REGAL_CALL http_wglSetGammaTableI3D(HDC hDC, int iEntries, const USH } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglSetGammaTableI3D(hDC, iEntries, puRed, puGreen, puBlue); return ret; @@ -42665,7 +42680,7 @@ static BOOL REGAL_CALL http_wglSetGammaTableParametersI3D(HDC hDC, int iAttribut } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglSetGammaTableParametersI3D(hDC, iAttribute, piValue); return ret; @@ -42683,7 +42698,7 @@ static BOOL REGAL_CALL http_wglDisableGenlockI3D(HDC hDC) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglDisableGenlockI3D(hDC); return ret; @@ -42699,7 +42714,7 @@ static BOOL REGAL_CALL http_wglEnableGenlockI3D(HDC hDC) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglEnableGenlockI3D(hDC); return ret; @@ -42715,7 +42730,7 @@ static BOOL REGAL_CALL http_wglGenlockSampleRateI3D(HDC hDC, UINT uRate) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglGenlockSampleRateI3D(hDC, uRate); return ret; @@ -42731,7 +42746,7 @@ static BOOL REGAL_CALL http_wglGenlockSourceDelayI3D(HDC hDC, UINT uDelay) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglGenlockSourceDelayI3D(hDC, uDelay); return ret; @@ -42747,7 +42762,7 @@ static BOOL REGAL_CALL http_wglGenlockSourceEdgeI3D(HDC hDC, UINT uEdge) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglGenlockSourceEdgeI3D(hDC, uEdge); return ret; @@ -42763,7 +42778,7 @@ static BOOL REGAL_CALL http_wglGenlockSourceI3D(HDC hDC, UINT uSource) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglGenlockSourceI3D(hDC, uSource); return ret; @@ -42779,7 +42794,7 @@ static BOOL REGAL_CALL http_wglGetGenlockSampleRateI3D(HDC hDC, UINT *uRate) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglGetGenlockSampleRateI3D(hDC, uRate); return ret; @@ -42795,7 +42810,7 @@ static BOOL REGAL_CALL http_wglGetGenlockSourceDelayI3D(HDC hDC, UINT *uDelay) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglGetGenlockSourceDelayI3D(hDC, uDelay); return ret; @@ -42811,7 +42826,7 @@ static BOOL REGAL_CALL http_wglGetGenlockSourceEdgeI3D(HDC hDC, UINT *uEdge) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglGetGenlockSourceEdgeI3D(hDC, uEdge); return ret; @@ -42827,7 +42842,7 @@ static BOOL REGAL_CALL http_wglGetGenlockSourceI3D(HDC hDC, UINT *uSource) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglGetGenlockSourceI3D(hDC, uSource); return ret; @@ -42843,7 +42858,7 @@ static BOOL REGAL_CALL http_wglIsEnabledGenlockI3D(HDC hDC, BOOL *pFlag) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglIsEnabledGenlockI3D(hDC, pFlag); return ret; @@ -42859,7 +42874,7 @@ static BOOL REGAL_CALL http_wglQueryGenlockMaxSourceDelayI3D(HDC hDC, UINT *uMax } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglQueryGenlockMaxSourceDelayI3D(hDC, uMaxLineDelay, uMaxPixelDelay); return ret; @@ -42877,7 +42892,7 @@ static BOOL REGAL_CALL http_wglAssociateImageBufferEventsI3D(HDC hDC, const HAND } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglAssociateImageBufferEventsI3D(hDC, pEvent, pAddress, pSize, count); return ret; @@ -42893,7 +42908,7 @@ static LPVOID REGAL_CALL http_wglCreateImageBufferI3D(HDC hDC, DWORD dwSize, UIN } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglCreateImageBufferI3D(hDC, dwSize, uFlags); return ret; @@ -42909,7 +42924,7 @@ static BOOL REGAL_CALL http_wglDestroyImageBufferI3D(HDC hDC, LPVOID pAddress) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglDestroyImageBufferI3D(hDC, pAddress); return ret; @@ -42925,7 +42940,7 @@ static BOOL REGAL_CALL http_wglReleaseImageBufferEventsI3D(HDC hDC, const LPVOID } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglReleaseImageBufferEventsI3D(hDC, pAddress, count); return ret; @@ -42943,7 +42958,7 @@ static BOOL REGAL_CALL http_wglDisableFrameLockI3D(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglDisableFrameLockI3D(); return ret; @@ -42959,7 +42974,7 @@ static BOOL REGAL_CALL http_wglEnableFrameLockI3D(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglEnableFrameLockI3D(); return ret; @@ -42975,7 +42990,7 @@ static BOOL REGAL_CALL http_wglIsEnabledFrameLockI3D(BOOL *pFlag) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglIsEnabledFrameLockI3D(pFlag); return ret; @@ -42991,7 +43006,7 @@ static BOOL REGAL_CALL http_wglQueryFrameLockMasterI3D(BOOL *pFlag) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglQueryFrameLockMasterI3D(pFlag); return ret; @@ -43009,7 +43024,7 @@ static BOOL REGAL_CALL http_wglBeginFrameTrackingI3D(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglBeginFrameTrackingI3D(); return ret; @@ -43025,7 +43040,7 @@ static BOOL REGAL_CALL http_wglEndFrameTrackingI3D(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglEndFrameTrackingI3D(); return ret; @@ -43041,7 +43056,7 @@ static BOOL REGAL_CALL http_wglGetFrameUsageI3D(float *pUsage) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglGetFrameUsageI3D(pUsage); return ret; @@ -43057,7 +43072,7 @@ static BOOL REGAL_CALL http_wglQueryFrameTrackingI3D(DWORD *pFrameCount, DWORD * } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglQueryFrameTrackingI3D(pFrameCount, pMissedFrames, pLastMissedUsage); return ret; @@ -43075,7 +43090,7 @@ static BOOL REGAL_CALL http_wglDXCloseDeviceNV(HANDLE hDevice) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglDXCloseDeviceNV(hDevice); return ret; @@ -43091,7 +43106,7 @@ static BOOL REGAL_CALL http_wglDXLockObjectsNV(HANDLE hDevice, GLint count, HAND } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglDXLockObjectsNV(hDevice, count, hObjects); return ret; @@ -43107,7 +43122,7 @@ static BOOL REGAL_CALL http_wglDXObjectAccessNV(HANDLE hObject, GLenum access) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglDXObjectAccessNV(hObject, access); return ret; @@ -43123,7 +43138,7 @@ static HANDLE REGAL_CALL http_wglDXOpenDeviceNV(GLvoid *dxDevice) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglDXOpenDeviceNV(dxDevice); return ret; @@ -43139,7 +43154,7 @@ static HANDLE REGAL_CALL http_wglDXRegisterObjectNV(HANDLE hDevice, GLvoid *dxOb } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglDXRegisterObjectNV(hDevice, dxObject, name, type, access); return ret; @@ -43155,7 +43170,7 @@ static BOOL REGAL_CALL http_wglDXSetResourceShareHandleNV(GLvoid *dxObject, HAND } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglDXSetResourceShareHandleNV(dxObject, shareHandle); return ret; @@ -43171,7 +43186,7 @@ static BOOL REGAL_CALL http_wglDXUnlockObjectsNV(HANDLE hDevice, GLint count, HA } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglDXUnlockObjectsNV(hDevice, count, hObjects); return ret; @@ -43187,7 +43202,7 @@ static BOOL REGAL_CALL http_wglDXUnregisterObjectNV(HANDLE hDevice, HANDLE hObje } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglDXUnregisterObjectNV(hDevice, hObject); return ret; @@ -43205,7 +43220,7 @@ static BOOL REGAL_CALL http_wglCopyImageSubDataNV(HGLRC hSrcRC, GLuint srcName, } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglCopyImageSubDataNV(hSrcRC, srcName, srcTarget, srcLevel, srcX, srcY, srcZ, hDstRC, dstName, dstTarget, dstLevel, dstX, dstY, dstZ, width, height, depth); return ret; @@ -43223,7 +43238,7 @@ static HDC REGAL_CALL http_wglCreateAffinityDCNV(const HGPUNV *phGpuList) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglCreateAffinityDCNV(phGpuList); return ret; @@ -43239,7 +43254,7 @@ static BOOL REGAL_CALL http_wglDeleteDCNV(HDC hAffinityDC) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglDeleteDCNV(hAffinityDC); return ret; @@ -43255,7 +43270,7 @@ static BOOL REGAL_CALL http_wglEnumGpuDevicesNV(HGPUNV hGpu, UINT iDeviceIndex, } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglEnumGpuDevicesNV(hGpu, iDeviceIndex, lpGpuDevice); return ret; @@ -43271,7 +43286,7 @@ static BOOL REGAL_CALL http_wglEnumGpusFromAffinityDCNV(HDC hAffinityDC, UINT iG } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglEnumGpusFromAffinityDCNV(hAffinityDC, iGpuIndex, hGpu); return ret; @@ -43287,7 +43302,7 @@ static BOOL REGAL_CALL http_wglEnumGpusNV(UINT iGpuIndex, HGPUNV *phGpu) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglEnumGpusNV(iGpuIndex, phGpu); return ret; @@ -43305,7 +43320,7 @@ static BOOL REGAL_CALL http_wglBindVideoDeviceNV(HDC hDC, unsigned int uVideoSlo } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglBindVideoDeviceNV(hDC, uVideoSlot, hVideoDevice, piAttribList); return ret; @@ -43321,7 +43336,7 @@ static int REGAL_CALL http_wglEnumerateVideoDevicesNV(HDC hDC, HVIDEOOUTPUTDEVIC } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglEnumerateVideoDevicesNV(hDC, phDeviceList); return ret; @@ -43337,7 +43352,7 @@ static BOOL REGAL_CALL http_wglQueryCurrentContextNV(int iAttribute, int *piValu } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglQueryCurrentContextNV(iAttribute, piValue); return ret; @@ -43355,7 +43370,7 @@ static BOOL REGAL_CALL http_wglBindSwapBarrierNV(GLuint group, GLuint barrier) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglBindSwapBarrierNV(group, barrier); return ret; @@ -43371,7 +43386,7 @@ static BOOL REGAL_CALL http_wglJoinSwapGroupNV(HDC hDC, GLuint group) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglJoinSwapGroupNV(hDC, group); return ret; @@ -43387,7 +43402,7 @@ static BOOL REGAL_CALL http_wglQueryFrameCountNV(HDC hDC, GLuint *count) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglQueryFrameCountNV(hDC, count); return ret; @@ -43403,7 +43418,7 @@ static BOOL REGAL_CALL http_wglQueryMaxSwapGroupsNV(HDC hDC, GLuint *maxGroups, } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglQueryMaxSwapGroupsNV(hDC, maxGroups, maxBarriers); return ret; @@ -43419,7 +43434,7 @@ static BOOL REGAL_CALL http_wglQuerySwapGroupNV(HDC hDC, GLuint *group, GLuint * } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglQuerySwapGroupNV(hDC, group, barrier); return ret; @@ -43435,7 +43450,7 @@ static BOOL REGAL_CALL http_wglResetFrameCountNV(HDC hDC) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglResetFrameCountNV(hDC); return ret; @@ -43453,7 +43468,7 @@ static void *REGAL_CALL http_wglAllocateMemoryNV(GLsizei size, GLfloat readfreq, } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglAllocateMemoryNV(size, readfreq, writefreq, priority); return ret; @@ -43468,7 +43483,7 @@ static void REGAL_CALL http_wglFreeMemoryNV(void *pointer) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->wglFreeMemoryNV(pointer); } @@ -43485,7 +43500,7 @@ static BOOL REGAL_CALL http_wglBindVideoCaptureDeviceNV(UINT uVideoSlot, HVIDEOI } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglBindVideoCaptureDeviceNV(uVideoSlot, hDevice); return ret; @@ -43501,7 +43516,7 @@ static UINT REGAL_CALL http_wglEnumerateVideoCaptureDevicesNV(HDC hDC, HVIDEOINP } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglEnumerateVideoCaptureDevicesNV(hDC, phDeviceList); return ret; @@ -43517,7 +43532,7 @@ static BOOL REGAL_CALL http_wglLockVideoCaptureDeviceNV(HDC hDC, HVIDEOINPUTDEVI } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglLockVideoCaptureDeviceNV(hDC, hDevice); return ret; @@ -43533,7 +43548,7 @@ static BOOL REGAL_CALL http_wglQueryVideoCaptureDeviceNV(HDC hDC, HVIDEOINPUTDEV } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglQueryVideoCaptureDeviceNV(hDC, hDevice, iAttribute, piValue); return ret; @@ -43549,7 +43564,7 @@ static BOOL REGAL_CALL http_wglReleaseVideoCaptureDeviceNV(HDC hDC, HVIDEOINPUTD } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglReleaseVideoCaptureDeviceNV(hDC, hDevice); return ret; @@ -43567,7 +43582,7 @@ static BOOL REGAL_CALL http_wglBindVideoImageNV(HPVIDEODEV hVideoDevice, HPBUFFE } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglBindVideoImageNV(hVideoDevice, hPbuffer, iVideoBuffer); return ret; @@ -43583,7 +43598,7 @@ static BOOL REGAL_CALL http_wglGetVideoDeviceNV(HDC hDC, int numDevices, HPVIDEO } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglGetVideoDeviceNV(hDC, numDevices, hVideoDevice); return ret; @@ -43599,7 +43614,7 @@ static BOOL REGAL_CALL http_wglGetVideoInfoNV(HPVIDEODEV hpVideoDevice, unsigned } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglGetVideoInfoNV(hpVideoDevice, pulCounterOutputPbuffer, pulCounterOutputVideo); return ret; @@ -43615,7 +43630,7 @@ static BOOL REGAL_CALL http_wglReleaseVideoDeviceNV(HPVIDEODEV hVideoDevice) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglReleaseVideoDeviceNV(hVideoDevice); return ret; @@ -43631,7 +43646,7 @@ static BOOL REGAL_CALL http_wglReleaseVideoImageNV(HPBUFFERARB hPbuffer, int iVi } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglReleaseVideoImageNV(hPbuffer, iVideoBuffer); return ret; @@ -43647,7 +43662,7 @@ static BOOL REGAL_CALL http_wglSendPbufferToVideoNV(HPBUFFERARB hPbuffer, int iB } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglSendPbufferToVideoNV(hPbuffer, iBufferType, pulCounterPbuffer, bBlock); return ret; @@ -43665,7 +43680,7 @@ static BOOL REGAL_CALL http_wglGetMscRateOML(HDC hDC, INT32 *numerator, INT32 *d } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglGetMscRateOML(hDC, numerator, denominator); return ret; @@ -43681,7 +43696,7 @@ static BOOL REGAL_CALL http_wglGetSyncValuesOML(HDC hDC, INT64 *ust, INT64 *msc, } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglGetSyncValuesOML(hDC, ust, msc, sbc); return ret; @@ -43697,7 +43712,7 @@ static INT64 REGAL_CALL http_wglSwapBuffersMscOML(HDC hDC, INT64 target_msc, INT } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglSwapBuffersMscOML(hDC, target_msc, divisor, remainder); return ret; @@ -43713,7 +43728,7 @@ static INT64 REGAL_CALL http_wglSwapLayerBuffersMscOML(HDC hDC, int fuPlanes, IN } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglSwapLayerBuffersMscOML(hDC, fuPlanes, target_msc, divisor, remainder); return ret; @@ -43729,7 +43744,7 @@ static BOOL REGAL_CALL http_wglWaitForMscOML(HDC hDC, INT64 target_msc, INT64 di } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglWaitForMscOML(hDC, target_msc, divisor, remainder, ust, msc, sbc); return ret; @@ -43745,7 +43760,7 @@ static BOOL REGAL_CALL http_wglWaitForSbcOML(HDC hDC, INT64 target_sbc, INT64 *u } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglWaitForSbcOML(hDC, target_sbc, ust, msc, sbc); return ret; @@ -43763,7 +43778,7 @@ static BOOL REGAL_CALL http_wglCopyContext(HGLRC hglrcSrc, HGLRC hglrcDst, UINT } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglCopyContext(hglrcSrc, hglrcDst, mask); return ret; @@ -43779,7 +43794,7 @@ static HGLRC REGAL_CALL http_wglCreateContext(HDC hDC) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglCreateContext(hDC); return ret; @@ -43795,7 +43810,7 @@ static HGLRC REGAL_CALL http_wglCreateLayerContext(HDC hDC, int iLayerPlane) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglCreateLayerContext(hDC, iLayerPlane); return ret; @@ -43811,7 +43826,7 @@ static BOOL REGAL_CALL http_wglDeleteContext(HGLRC hglrc) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglDeleteContext(hglrc); return ret; @@ -43827,7 +43842,7 @@ static BOOL REGAL_CALL http_wglDescribeLayerPlane(HDC hDC, int iPixelFormat, int } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglDescribeLayerPlane(hDC, iPixelFormat, iLayerPlane, nBytes, plpd); return ret; @@ -43843,7 +43858,7 @@ static HGLRC REGAL_CALL http_wglGetCurrentContext(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglGetCurrentContext(); return ret; @@ -43859,7 +43874,7 @@ static HDC REGAL_CALL http_wglGetCurrentDC(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglGetCurrentDC(); return ret; @@ -43875,7 +43890,7 @@ static PROC REGAL_CALL http_wglGetDefaultProcAddress(LPCSTR lpszProc) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglGetDefaultProcAddress(lpszProc); return ret; @@ -43891,7 +43906,7 @@ static int REGAL_CALL http_wglGetLayerPaletteEntries(HDC hDC, int iLayerPlane, i } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglGetLayerPaletteEntries(hDC, iLayerPlane, iStart, nEntries, pcr); return ret; @@ -43907,7 +43922,7 @@ static PROC REGAL_CALL http_wglGetProcAddress(LPCSTR lpszProc) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglGetProcAddress(lpszProc); return ret; @@ -43923,7 +43938,7 @@ static BOOL REGAL_CALL http_wglMakeCurrent(HDC hDC, HGLRC hglrc) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglMakeCurrent(hDC, hglrc); return ret; @@ -43939,7 +43954,7 @@ static BOOL REGAL_CALL http_wglRealizeLayerPalette(HDC hDC, int iLayerPlane, BOO } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglRealizeLayerPalette(hDC, iLayerPlane, bRealize); return ret; @@ -43955,7 +43970,7 @@ static int REGAL_CALL http_wglSetLayerPaletteEntries(HDC hDC, int iLayerPlane, i } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglSetLayerPaletteEntries(hDC, iLayerPlane, iStart, nEntries, pcr); return ret; @@ -43971,7 +43986,7 @@ static BOOL REGAL_CALL http_wglShareLists(HGLRC hglrcShare, HGLRC hglrcSrc) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglShareLists(hglrcShare, hglrcSrc); return ret; @@ -43987,7 +44002,7 @@ static BOOL REGAL_CALL http_wglSwapLayerBuffers(HDC hDC, UINT fuPlanes) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglSwapLayerBuffers(hDC, fuPlanes); return ret; @@ -44003,7 +44018,7 @@ static DWORD REGAL_CALL http_wglSwapMultipleBuffers(UINT n, const WGLSWAP *ps) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglSwapMultipleBuffers(n, ps); return ret; @@ -44019,7 +44034,7 @@ static BOOL REGAL_CALL http_wglUseFontBitmapsA(HDC hDC, DWORD first, DWORD count } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglUseFontBitmapsA(hDC, first, count, listBase); return ret; @@ -44035,7 +44050,7 @@ static BOOL REGAL_CALL http_wglUseFontBitmapsW(HDC hDC, DWORD first, DWORD count } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglUseFontBitmapsW(hDC, first, count, listBase); return ret; @@ -44051,7 +44066,7 @@ static BOOL REGAL_CALL http_wglUseFontOutlinesA(HDC hDC, DWORD first, DWORD coun } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglUseFontOutlinesA(hDC, first, count, listBase, deviation, extrusion, format, lpgmf); return ret; @@ -44067,7 +44082,7 @@ static BOOL REGAL_CALL http_wglUseFontOutlinesW(HDC hDC, DWORD first, DWORD coun } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->wglUseFontOutlinesW(hDC, first, count, listBase, deviation, extrusion, format, lpgmf); return ret; @@ -44089,7 +44104,7 @@ static XVisualInfo *REGAL_CALL http_glXChooseVisual(Display *dpy, int screen, in } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXChooseVisual(dpy, screen, attribList); return ret; @@ -44104,7 +44119,7 @@ static void REGAL_CALL http_glXCopyContext(Display *dpy, GLXContext src, GLXCont } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->glXCopyContext(dpy, src, dst, mask); } @@ -44119,7 +44134,7 @@ static GLXContext REGAL_CALL http_glXCreateContext(Display *dpy, XVisualInfo *vi } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXCreateContext(dpy, vis, shareList, direct); return ret; @@ -44135,7 +44150,7 @@ static GLXPixmap REGAL_CALL http_glXCreateGLXPixmap(Display *dpy, XVisualInfo *v } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXCreateGLXPixmap(dpy, vis, pixmap); return ret; @@ -44150,7 +44165,7 @@ static void REGAL_CALL http_glXDestroyContext(Display *dpy, GLXContext ctx) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->glXDestroyContext(dpy, ctx); } @@ -44164,7 +44179,7 @@ static void REGAL_CALL http_glXDestroyGLXPixmap(Display *dpy, GLXPixmap pix) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->glXDestroyGLXPixmap(dpy, pix); } @@ -44179,7 +44194,7 @@ static int REGAL_CALL http_glXGetConfig(Display *dpy, XVisualInfo *vis, int attr } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXGetConfig(dpy, vis, attrib, value); return ret; @@ -44195,7 +44210,7 @@ static GLXContext REGAL_CALL http_glXGetCurrentContext(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXGetCurrentContext(); return ret; @@ -44211,7 +44226,7 @@ static GLXDrawable REGAL_CALL http_glXGetCurrentDrawable(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXGetCurrentDrawable(); return ret; @@ -44227,7 +44242,7 @@ static Bool REGAL_CALL http_glXIsDirect(Display *dpy, GLXContext ctx) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXIsDirect(dpy, ctx); return ret; @@ -44243,7 +44258,7 @@ static Bool REGAL_CALL http_glXMakeCurrent(Display *dpy, GLXDrawable drawable, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXMakeCurrent(dpy, drawable, ctx); return ret; @@ -44259,7 +44274,7 @@ static Bool REGAL_CALL http_glXQueryExtension(Display *dpy, int *errorBase, int } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXQueryExtension(dpy, errorBase, eventBase); return ret; @@ -44275,7 +44290,7 @@ static Bool REGAL_CALL http_glXQueryVersion(Display *dpy, int *major, int *minor } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXQueryVersion(dpy, major, minor); return ret; @@ -44297,7 +44312,7 @@ static void REGAL_CALL http_glXSwapBuffers(Display *dpy, GLXDrawable drawable) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->glXSwapBuffers(dpy, drawable); if( _context ) { @@ -44314,7 +44329,7 @@ static void REGAL_CALL http_glXUseXFont(Font font, int first, int count, int lis } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->glXUseXFont(font, first, count, listBase); } @@ -44328,7 +44343,7 @@ static void REGAL_CALL http_glXWaitGL(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->glXWaitGL(); } @@ -44342,7 +44357,7 @@ static void REGAL_CALL http_glXWaitX(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->glXWaitX(); } @@ -44359,7 +44374,7 @@ static const char *REGAL_CALL http_glXGetClientString(Display *dpy, int name) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXGetClientString(dpy, name); return ret; @@ -44375,7 +44390,7 @@ static const char *REGAL_CALL http_glXQueryExtensionsString(Display *dpy, int sc } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXQueryExtensionsString(dpy, screen); return ret; @@ -44391,7 +44406,7 @@ static const char *REGAL_CALL http_glXQueryServerString(Display *dpy, int screen } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXQueryServerString(dpy, screen, name); return ret; @@ -44409,7 +44424,7 @@ static Display *REGAL_CALL http_glXGetCurrentDisplay(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXGetCurrentDisplay(); return ret; @@ -44427,7 +44442,7 @@ static GLXFBConfig *REGAL_CALL http_glXChooseFBConfig(Display *dpy, int screen, } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXChooseFBConfig(dpy, screen, attrib_list, nelements); return ret; @@ -44443,7 +44458,7 @@ static GLXContext REGAL_CALL http_glXCreateNewContext(Display *dpy, GLXFBConfig } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXCreateNewContext(dpy, config, render_type, share_list, direct); return ret; @@ -44459,7 +44474,7 @@ static GLXPbuffer REGAL_CALL http_glXCreatePbuffer(Display *dpy, GLXFBConfig con } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXCreatePbuffer(dpy, config, attrib_list); return ret; @@ -44475,7 +44490,7 @@ static GLXPixmap REGAL_CALL http_glXCreatePixmap(Display *dpy, GLXFBConfig confi } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXCreatePixmap(dpy, config, pixmap, attrib_list); return ret; @@ -44491,7 +44506,7 @@ static GLXWindow REGAL_CALL http_glXCreateWindow(Display *dpy, GLXFBConfig confi } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXCreateWindow(dpy, config, win, attrib_list); return ret; @@ -44506,7 +44521,7 @@ static void REGAL_CALL http_glXDestroyPbuffer(Display *dpy, GLXPbuffer pbuf) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->glXDestroyPbuffer(dpy, pbuf); } @@ -44520,7 +44535,7 @@ static void REGAL_CALL http_glXDestroyPixmap(Display *dpy, GLXPixmap pixmap) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->glXDestroyPixmap(dpy, pixmap); } @@ -44534,7 +44549,7 @@ static void REGAL_CALL http_glXDestroyWindow(Display *dpy, GLXWindow win) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->glXDestroyWindow(dpy, win); } @@ -44549,7 +44564,7 @@ static GLXDrawable REGAL_CALL http_glXGetCurrentReadDrawable(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXGetCurrentReadDrawable(); return ret; @@ -44565,7 +44580,7 @@ static int REGAL_CALL http_glXGetFBConfigAttrib(Display *dpy, GLXFBConfig config } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXGetFBConfigAttrib(dpy, config, attribute, value); return ret; @@ -44581,7 +44596,7 @@ static GLXFBConfig *REGAL_CALL http_glXGetFBConfigs(Display *dpy, int screen, in } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXGetFBConfigs(dpy, screen, nelements); return ret; @@ -44596,7 +44611,7 @@ static void REGAL_CALL http_glXGetSelectedEvent(Display *dpy, GLXDrawable draw, } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->glXGetSelectedEvent(dpy, draw, event_mask); } @@ -44611,7 +44626,7 @@ static XVisualInfo *REGAL_CALL http_glXGetVisualFromFBConfig(Display *dpy, GLXFB } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXGetVisualFromFBConfig(dpy, config); return ret; @@ -44627,7 +44642,7 @@ static Bool REGAL_CALL http_glXMakeContextCurrent(Display *display, GLXDrawable } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXMakeContextCurrent(display, draw, read, ctx); return ret; @@ -44643,7 +44658,7 @@ static int REGAL_CALL http_glXQueryContext(Display *dpy, GLXContext ctx, int att } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXQueryContext(dpy, ctx, attribute, value); return ret; @@ -44658,7 +44673,7 @@ static void REGAL_CALL http_glXQueryDrawable(Display *dpy, GLXDrawable draw, int } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->glXQueryDrawable(dpy, draw, attribute, value); } @@ -44672,7 +44687,7 @@ static void REGAL_CALL http_glXSelectEvent(Display *dpy, GLXDrawable draw, unsig } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->glXSelectEvent(dpy, draw, event_mask); } @@ -44689,7 +44704,7 @@ static __GLXextFuncPtr REGAL_CALL http_glXGetProcAddress(const GLubyte *procName } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXGetProcAddress(procName); return ret; @@ -44706,7 +44721,7 @@ static void REGAL_CALL http_glXBlitContextFramebufferAMD(GLXContext dstCtx, GLin } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->glXBlitContextFramebufferAMD(dstCtx, srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter); } @@ -44721,7 +44736,7 @@ static GLXContext REGAL_CALL http_glXCreateAssociatedContextAMD(unsigned int id, } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXCreateAssociatedContextAMD(id, share_list); return ret; @@ -44737,7 +44752,7 @@ static GLXContext REGAL_CALL http_glXCreateAssociatedContextAttribsAMD(unsigned } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXCreateAssociatedContextAttribsAMD(id, share_context, attribList); return ret; @@ -44753,7 +44768,7 @@ static Bool REGAL_CALL http_glXDeleteAssociatedContextAMD(GLXContext ctx) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXDeleteAssociatedContextAMD(ctx); return ret; @@ -44769,7 +44784,7 @@ static unsigned int REGAL_CALL http_glXGetContextGPUIDAMD(GLXContext ctx) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXGetContextGPUIDAMD(ctx); return ret; @@ -44785,7 +44800,7 @@ static GLXContext REGAL_CALL http_glXGetCurrentAssociatedContextAMD(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXGetCurrentAssociatedContextAMD(); return ret; @@ -44801,7 +44816,7 @@ static unsigned int REGAL_CALL http_glXGetGPUIDsAMD(unsigned int maxCount, unsig } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXGetGPUIDsAMD(maxCount, ids); return ret; @@ -44817,7 +44832,7 @@ static int REGAL_CALL http_glXGetGPUInfoAMD(unsigned int id, int property, GLenu } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXGetGPUInfoAMD(id, property, dataType, size, data); return ret; @@ -44833,7 +44848,7 @@ static Bool REGAL_CALL http_glXMakeAssociatedContextCurrentAMD(GLXContext ctx) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXMakeAssociatedContextCurrentAMD(ctx); return ret; @@ -44851,7 +44866,7 @@ static GLXContext REGAL_CALL http_glXCreateContextAttribsARB(Display *dpy, GLXFB } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXCreateContextAttribsARB(dpy, config, share_context, direct, attrib_list); return ret; @@ -44869,7 +44884,7 @@ static __GLXextFuncPtr REGAL_CALL http_glXGetProcAddressARB(const GLubyte *procN } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXGetProcAddressARB(procName); return ret; @@ -44886,7 +44901,7 @@ static void REGAL_CALL http_glXBindTexImageATI(Display *dpy, GLXPbuffer pbuf, in } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->glXBindTexImageATI(dpy, pbuf, buffer); } @@ -44900,7 +44915,7 @@ static void REGAL_CALL http_glXDrawableAttribATI(Display *dpy, GLXDrawable draw, } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->glXDrawableAttribATI(dpy, draw, attrib_list); } @@ -44914,7 +44929,7 @@ static void REGAL_CALL http_glXReleaseTexImageATI(Display *dpy, GLXPbuffer pbuf, } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->glXReleaseTexImageATI(dpy, pbuf, buffer); } @@ -44930,7 +44945,7 @@ static void REGAL_CALL http_glXFreeContextEXT(Display *dpy, GLXContext context) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->glXFreeContextEXT(dpy, context); } @@ -44945,7 +44960,7 @@ static GLXContextID REGAL_CALL http_glXGetContextIDEXT(const GLXContext context) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXGetContextIDEXT(context); return ret; @@ -44961,7 +44976,7 @@ static GLXContext REGAL_CALL http_glXImportContextEXT(Display *dpy, GLXContextID } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXImportContextEXT(dpy, contextID); return ret; @@ -44977,7 +44992,7 @@ static int REGAL_CALL http_glXQueryContextInfoEXT(Display *dpy, GLXContext conte } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXQueryContextInfoEXT(dpy, context, attribute, value); return ret; @@ -44994,7 +45009,7 @@ static void REGAL_CALL http_glXSwapIntervalEXT(Display *dpy, GLXDrawable drawabl } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->glXSwapIntervalEXT(dpy, drawable, interval); } @@ -45010,7 +45025,7 @@ static void REGAL_CALL http_glXBindTexImageEXT(Display *display, GLXDrawable dra } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->glXBindTexImageEXT(display, drawable, buffer, attrib_list); } @@ -45024,7 +45039,7 @@ static void REGAL_CALL http_glXReleaseTexImageEXT(Display *display, GLXDrawable } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->glXReleaseTexImageEXT(display, drawable, buffer); } @@ -45041,7 +45056,7 @@ static unsigned int REGAL_CALL http_glXGetAGPOffsetMESA(const void *pointer) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXGetAGPOffsetMESA(pointer); return ret; @@ -45058,7 +45073,7 @@ static void REGAL_CALL http_glXCopySubBufferMESA(Display *dpy, GLXDrawable drawa } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->glXCopySubBufferMESA(dpy, drawable, x, y, width, height); } @@ -45075,7 +45090,7 @@ static GLXPixmap REGAL_CALL http_glXCreateGLXPixmapMESA(Display *dpy, XVisualInf } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXCreateGLXPixmapMESA(dpy, visual, pixmap, cmap); return ret; @@ -45093,7 +45108,7 @@ static Bool REGAL_CALL http_glXReleaseBuffersMESA(Display *dpy, GLXDrawable d) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXReleaseBuffersMESA(dpy, d); return ret; @@ -45111,7 +45126,7 @@ static GLboolean REGAL_CALL http_glXSet3DfxModeMESA(GLint mode) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXSet3DfxModeMESA(mode); return ret; @@ -45129,7 +45144,7 @@ static int REGAL_CALL http_glXGetSwapIntervalMESA(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXGetSwapIntervalMESA(); return ret; @@ -45145,7 +45160,7 @@ static int REGAL_CALL http_glXSwapIntervalMESA(unsigned int interval) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXSwapIntervalMESA(interval); return ret; @@ -45162,7 +45177,7 @@ static void REGAL_CALL http_glXCopyImageSubDataNV(Display *dpy, GLXContext srcCt } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->glXCopyImageSubDataNV(dpy, srcCtx, srcName, srcTarget, srcLevel, srcX, srcY, srcZ, dstCtx, dstName, dstTarget, dstLevel, dstX, dstY, dstZ, width, height, depth); } @@ -45179,7 +45194,7 @@ static int REGAL_CALL http_glXBindVideoDeviceNV(Display *dpy, unsigned int video } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXBindVideoDeviceNV(dpy, video_slot, video_device, attrib_list); return ret; @@ -45195,7 +45210,7 @@ static unsigned int *REGAL_CALL http_glXEnumerateVideoDevicesNV(Display *dpy, in } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXEnumerateVideoDevicesNV(dpy, screen, nelements); return ret; @@ -45213,7 +45228,7 @@ static Bool REGAL_CALL http_glXBindSwapBarrierNV(Display *dpy, GLuint group, GLu } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXBindSwapBarrierNV(dpy, group, barrier); return ret; @@ -45229,7 +45244,7 @@ static Bool REGAL_CALL http_glXJoinSwapGroupNV(Display *dpy, GLXDrawable drawabl } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXJoinSwapGroupNV(dpy, drawable, group); return ret; @@ -45245,7 +45260,7 @@ static Bool REGAL_CALL http_glXQueryFrameCountNV(Display *dpy, int screen, GLuin } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXQueryFrameCountNV(dpy, screen, count); return ret; @@ -45261,7 +45276,7 @@ static Bool REGAL_CALL http_glXQueryMaxSwapGroupsNV(Display *dpy, int screen, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXQueryMaxSwapGroupsNV(dpy, screen, maxGroups, maxBarriers); return ret; @@ -45277,7 +45292,7 @@ static Bool REGAL_CALL http_glXQuerySwapGroupNV(Display *dpy, GLXDrawable drawab } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXQuerySwapGroupNV(dpy, drawable, group, barrier); return ret; @@ -45293,7 +45308,7 @@ static Bool REGAL_CALL http_glXResetFrameCountNV(Display *dpy, int screen) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXResetFrameCountNV(dpy, screen); return ret; @@ -45311,7 +45326,7 @@ static void *REGAL_CALL http_glXAllocateMemoryNV(GLsizei size, GLfloat readFrequ } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXAllocateMemoryNV(size, readFrequency, writeFrequency, priority); return ret; @@ -45326,7 +45341,7 @@ static void REGAL_CALL http_glXFreeMemoryNV(void *pointer) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->glXFreeMemoryNV(pointer); } @@ -45343,7 +45358,7 @@ static int REGAL_CALL http_glXBindVideoCaptureDeviceNV(Display *dpy, unsigned in } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXBindVideoCaptureDeviceNV(dpy, video_capture_slot, device); return ret; @@ -45359,7 +45374,7 @@ static GLXVideoCaptureDeviceNV *REGAL_CALL http_glXEnumerateVideoCaptureDevicesN } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXEnumerateVideoCaptureDevicesNV(dpy, screen, nelements); return ret; @@ -45374,7 +45389,7 @@ static void REGAL_CALL http_glXLockVideoCaptureDeviceNV(Display *dpy, GLXVideoCa } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->glXLockVideoCaptureDeviceNV(dpy, device); } @@ -45389,7 +45404,7 @@ static int REGAL_CALL http_glXQueryVideoCaptureDeviceNV(Display *dpy, GLXVideoCa } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXQueryVideoCaptureDeviceNV(dpy, device, attribute, value); return ret; @@ -45404,7 +45419,7 @@ static void REGAL_CALL http_glXReleaseVideoCaptureDeviceNV(Display *dpy, GLXVide } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->glXReleaseVideoCaptureDeviceNV(dpy, device); } @@ -45421,7 +45436,7 @@ static int REGAL_CALL http_glXBindVideoImageNV(Display *dpy, GLXVideoDeviceNV Vi } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXBindVideoImageNV(dpy, VideoDevice, pbuf, iVideoBuffer); return ret; @@ -45437,7 +45452,7 @@ static int REGAL_CALL http_glXGetVideoDeviceNV(Display *dpy, int screen, int num } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXGetVideoDeviceNV(dpy, screen, numVideoDevices, pVideoDevice); return ret; @@ -45453,7 +45468,7 @@ static int REGAL_CALL http_glXGetVideoInfoNV(Display *dpy, int screen, GLXVideoD } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXGetVideoInfoNV(dpy, screen, VideoDevice, pulCounterOutputPbuffer, pulCounterOutputVideo); return ret; @@ -45469,7 +45484,7 @@ static int REGAL_CALL http_glXReleaseVideoDeviceNV(Display *dpy, int screen, GLX } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXReleaseVideoDeviceNV(dpy, screen, VideoDevice); return ret; @@ -45485,7 +45500,7 @@ static int REGAL_CALL http_glXReleaseVideoImageNV(Display *dpy, GLXPbuffer pbuf) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXReleaseVideoImageNV(dpy, pbuf); return ret; @@ -45501,7 +45516,7 @@ static int REGAL_CALL http_glXSendPbufferToVideoNV(Display *dpy, GLXPbuffer pbuf } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXSendPbufferToVideoNV(dpy, pbuf, iBufferType, pulCounterPbuffer, bBlock); return ret; @@ -45519,7 +45534,7 @@ static Bool REGAL_CALL http_glXGetMscRateOML(Display *dpy, GLXDrawable drawable, } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXGetMscRateOML(dpy, drawable, numerator, denominator); return ret; @@ -45535,7 +45550,7 @@ static Bool REGAL_CALL http_glXGetSyncValuesOML(Display *dpy, GLXDrawable drawab } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXGetSyncValuesOML(dpy, drawable, ust, msc, sbc); return ret; @@ -45551,7 +45566,7 @@ static int64_t REGAL_CALL http_glXSwapBuffersMscOML(Display *dpy, GLXDrawable dr } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXSwapBuffersMscOML(dpy, drawable, target_msc, divisor, remainder); return ret; @@ -45567,7 +45582,7 @@ static Bool REGAL_CALL http_glXWaitForMscOML(Display *dpy, GLXDrawable drawable, } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXWaitForMscOML(dpy, drawable, target_msc, divisor, remainder, ust, msc, sbc); return ret; @@ -45583,7 +45598,7 @@ static Bool REGAL_CALL http_glXWaitForSbcOML(Display *dpy, GLXDrawable drawable, } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXWaitForSbcOML(dpy, drawable, target_sbc, ust, msc, sbc); return ret; @@ -45601,7 +45616,7 @@ static GLXFBConfigSGIX *REGAL_CALL http_glXChooseFBConfigSGIX(Display *dpy, int } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXChooseFBConfigSGIX(dpy, screen, attrib_list, nelements); return ret; @@ -45617,7 +45632,7 @@ static GLXContext REGAL_CALL http_glXCreateContextWithConfigSGIX(Display *dpy, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXCreateContextWithConfigSGIX(dpy, config, render_type, share_list, direct); return ret; @@ -45633,7 +45648,7 @@ static GLXPixmap REGAL_CALL http_glXCreateGLXPixmapWithConfigSGIX(Display *dpy, } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXCreateGLXPixmapWithConfigSGIX(dpy, config, pixmap); return ret; @@ -45649,7 +45664,7 @@ static int REGAL_CALL http_glXGetFBConfigAttribSGIX(Display *dpy, GLXFBConfigSGI } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXGetFBConfigAttribSGIX(dpy, config, attribute, value); return ret; @@ -45665,7 +45680,7 @@ static GLXFBConfigSGIX REGAL_CALL http_glXGetFBConfigFromVisualSGIX(Display *dpy } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXGetFBConfigFromVisualSGIX(dpy, vis); return ret; @@ -45681,7 +45696,7 @@ static XVisualInfo *REGAL_CALL http_glXGetVisualFromFBConfigSGIX(Display *dpy, G } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXGetVisualFromFBConfigSGIX(dpy, config); return ret; @@ -45699,7 +45714,7 @@ static GLXPbuffer REGAL_CALL http_glXCreateGLXPbufferSGIX(Display *dpy, GLXFBCon } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXCreateGLXPbufferSGIX(dpy, config, width, height, attrib_list); return ret; @@ -45714,7 +45729,7 @@ static void REGAL_CALL http_glXDestroyGLXPbufferSGIX(Display *dpy, GLXPbuffer pb } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->glXDestroyGLXPbufferSGIX(dpy, pbuf); } @@ -45728,7 +45743,7 @@ static void REGAL_CALL http_glXGetSelectedEventSGIX(Display *dpy, GLXDrawable dr } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->glXGetSelectedEventSGIX(dpy, drawable, mask); } @@ -45742,7 +45757,7 @@ static void REGAL_CALL http_glXQueryGLXPbufferSGIX(Display *dpy, GLXPbuffer pbuf } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->glXQueryGLXPbufferSGIX(dpy, pbuf, attribute, value); } @@ -45756,7 +45771,7 @@ static void REGAL_CALL http_glXSelectEventSGIX(Display *dpy, GLXDrawable drawabl } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->glXSelectEventSGIX(dpy, drawable, mask); } @@ -45772,7 +45787,7 @@ static void REGAL_CALL http_glXBindSwapBarrierSGIX(Display *dpy, GLXDrawable dra } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->glXBindSwapBarrierSGIX(dpy, drawable, barrier); } @@ -45787,7 +45802,7 @@ static Bool REGAL_CALL http_glXQueryMaxSwapBarriersSGIX(Display *dpy, int screen } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXQueryMaxSwapBarriersSGIX(dpy, screen, max); return ret; @@ -45804,7 +45819,7 @@ static void REGAL_CALL http_glXJoinSwapGroupSGIX(Display *dpy, GLXDrawable drawa } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->glXJoinSwapGroupSGIX(dpy, drawable, member); } @@ -45821,7 +45836,7 @@ static int REGAL_CALL http_glXBindChannelToWindowSGIX(Display *display, int scre } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXBindChannelToWindowSGIX(display, screen, channel, window); return ret; @@ -45837,7 +45852,7 @@ static int REGAL_CALL http_glXChannelRectSGIX(Display *display, int screen, int } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXChannelRectSGIX(display, screen, channel, x, y, w, h); return ret; @@ -45853,7 +45868,7 @@ static int REGAL_CALL http_glXChannelRectSyncSGIX(Display *display, int screen, } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXChannelRectSyncSGIX(display, screen, channel, synctype); return ret; @@ -45869,7 +45884,7 @@ static int REGAL_CALL http_glXQueryChannelDeltasSGIX(Display *display, int scree } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXQueryChannelDeltasSGIX(display, screen, channel, x, y, w, h); return ret; @@ -45885,7 +45900,7 @@ static int REGAL_CALL http_glXQueryChannelRectSGIX(Display *display, int screen, } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXQueryChannelRectSGIX(display, screen, channel, dx, dy, dw, dh); return ret; @@ -45902,7 +45917,7 @@ static void REGAL_CALL http_glXCushionSGI(Display *dpy, Window window, float cus } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->glXCushionSGI(dpy, window, cushion); } @@ -45919,7 +45934,7 @@ static GLXDrawable REGAL_CALL http_glXGetCurrentReadDrawableSGI(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXGetCurrentReadDrawableSGI(); return ret; @@ -45935,7 +45950,7 @@ static Bool REGAL_CALL http_glXMakeCurrentReadSGI(Display *dpy, GLXDrawable draw } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXMakeCurrentReadSGI(dpy, draw, read, ctx); return ret; @@ -45953,7 +45968,7 @@ static int REGAL_CALL http_glXSwapIntervalSGI(int interval) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXSwapIntervalSGI(interval); return ret; @@ -45971,7 +45986,7 @@ static int REGAL_CALL http_glXGetVideoSyncSGI(unsigned int *count) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXGetVideoSyncSGI(count); return ret; @@ -45987,7 +46002,7 @@ static int REGAL_CALL http_glXWaitVideoSyncSGI(int divisor, int remainder, unsig } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXWaitVideoSyncSGI(divisor, remainder, count); return ret; @@ -46005,7 +46020,7 @@ static Status REGAL_CALL http_glXGetTransparentIndexSUN(Display *dpy, Window ove } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXGetTransparentIndexSUN(dpy, overlay, underlay, pTransparentIndex); return ret; @@ -46023,7 +46038,7 @@ static int REGAL_CALL http_glXGetVideoResizeSUN(Display *display, GLXDrawable wi } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXGetVideoResizeSUN(display, window, factor); return ret; @@ -46039,7 +46054,7 @@ static int REGAL_CALL http_glXVideoResizeSUN(Display *display, GLXDrawable windo } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->glXVideoResizeSUN(display, window, factor); return ret; @@ -46061,7 +46076,7 @@ static CGLError REGAL_CALL http_CGLChoosePixelFormat(const CGLPixelFormatAttribu } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLChoosePixelFormat(attribs, pix, npix); return ret; @@ -46077,7 +46092,7 @@ static CGLError REGAL_CALL http_CGLClearDrawable(CGLContextObj ctx) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLClearDrawable(ctx); return ret; @@ -46093,7 +46108,7 @@ static CGLError REGAL_CALL http_CGLCopyContext(CGLContextObj src, CGLContextObj } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLCopyContext(src, dst, mask); return ret; @@ -46109,7 +46124,7 @@ static CGLError REGAL_CALL http_CGLCreateContext(CGLPixelFormatObj pix, CGLConte } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLCreateContext(pix, share, ctx); return ret; @@ -46125,7 +46140,7 @@ static CGLError REGAL_CALL http_CGLDescribePixelFormat(CGLPixelFormatObj pix, GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLDescribePixelFormat(pix, pix_num, attrib, value); return ret; @@ -46141,7 +46156,7 @@ static CGLError REGAL_CALL http_CGLDescribeRenderer(CGLRendererInfoObj rend, GLi } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLDescribeRenderer(rend, rend_num, prop, value); return ret; @@ -46157,7 +46172,7 @@ static CGLError REGAL_CALL http_CGLDestroyContext(CGLContextObj ctx) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLDestroyContext(ctx); return ret; @@ -46173,7 +46188,7 @@ static CGLError REGAL_CALL http_CGLDestroyPixelFormat(CGLPixelFormatObj pix) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLDestroyPixelFormat(pix); return ret; @@ -46189,7 +46204,7 @@ static CGLError REGAL_CALL http_CGLDestroyRendererInfo(CGLRendererInfoObj rend) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLDestroyRendererInfo(rend); return ret; @@ -46205,7 +46220,7 @@ static CGLError REGAL_CALL http_CGLDisable(CGLContextObj ctx, CGLContextEnable p } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLDisable(ctx, pname); return ret; @@ -46221,7 +46236,7 @@ static CGLError REGAL_CALL http_CGLEnable(CGLContextObj ctx, CGLContextEnable pn } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLEnable(ctx, pname); return ret; @@ -46237,7 +46252,7 @@ static const char *REGAL_CALL http_CGLErrorString(CGLError error) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLErrorString(error); return ret; @@ -46260,7 +46275,7 @@ static CGLError REGAL_CALL http_CGLFlushDrawable(CGLContextObj ctx) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLFlushDrawable(ctx); if( _context ) { @@ -46279,7 +46294,7 @@ static CGLError REGAL_CALL http_CGLGetOffScreen(CGLContextObj ctx, GLsizei *widt } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLGetOffScreen(ctx, width, height, rowbytes, baseaddr); return ret; @@ -46295,7 +46310,7 @@ static CGLError REGAL_CALL http_CGLGetOption(CGLGlobalOption pname, GLint *param } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLGetOption(pname, param); return ret; @@ -46311,7 +46326,7 @@ static CGLError REGAL_CALL http_CGLGetParameter(CGLContextObj ctx, CGLContextPar } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLGetParameter(ctx, pname, params); return ret; @@ -46326,7 +46341,7 @@ static void REGAL_CALL http_CGLGetVersion(GLint *majorvers, GLint *minorvers) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->CGLGetVersion(majorvers, minorvers); } @@ -46341,7 +46356,7 @@ static CGLError REGAL_CALL http_CGLGetVirtualScreen(CGLContextObj ctx, GLint *sc } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLGetVirtualScreen(ctx, screen); return ret; @@ -46357,7 +46372,7 @@ static CGLError REGAL_CALL http_CGLIsEnabled(CGLContextObj ctx, CGLContextEnable } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLIsEnabled(ctx, pname, enable); return ret; @@ -46373,7 +46388,7 @@ static CGLError REGAL_CALL http_CGLQueryRendererInfo(GLuint display_mask, CGLRen } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLQueryRendererInfo(display_mask, rend, nrend); return ret; @@ -46389,7 +46404,7 @@ static CGLError REGAL_CALL http_CGLSetFullScreen(CGLContextObj ctx) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLSetFullScreen(ctx); return ret; @@ -46405,7 +46420,7 @@ static CGLError REGAL_CALL http_CGLSetOffScreen(CGLContextObj ctx, GLsizei width } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLSetOffScreen(ctx, width, height, rowbytes, baseaddr); return ret; @@ -46421,7 +46436,7 @@ static CGLError REGAL_CALL http_CGLSetOption(CGLGlobalOption pname, GLint param) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLSetOption(pname, param); return ret; @@ -46437,7 +46452,7 @@ static CGLError REGAL_CALL http_CGLSetParameter(CGLContextObj ctx, CGLContextPar } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLSetParameter(ctx, pname, params); return ret; @@ -46453,7 +46468,7 @@ static CGLError REGAL_CALL http_CGLSetVirtualScreen(CGLContextObj ctx, GLint scr } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLSetVirtualScreen(ctx, screen); return ret; @@ -46471,7 +46486,7 @@ static CGLError REGAL_CALL http_CGLCreatePBuffer(GLsizei width, GLsizei height, } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLCreatePBuffer(width, height, target, internalFormat, max_level, pbuffer); return ret; @@ -46487,7 +46502,7 @@ static CGLError REGAL_CALL http_CGLDescribePBuffer(CGLPBufferObj pbuffer, GLsize } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLDescribePBuffer(pbuffer, width, height, target, internalFormat, mipmap); return ret; @@ -46503,7 +46518,7 @@ static CGLError REGAL_CALL http_CGLDestroyPBuffer(CGLPBufferObj pbuffer) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLDestroyPBuffer(pbuffer); return ret; @@ -46519,7 +46534,7 @@ static CGLError REGAL_CALL http_CGLGetPBuffer(CGLContextObj ctx, CGLPBufferObj * } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLGetPBuffer(ctx, pbuffer, face, level, screen); return ret; @@ -46535,7 +46550,7 @@ static CGLError REGAL_CALL http_CGLSetPBuffer(CGLContextObj ctx, CGLPBufferObj p } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLSetPBuffer(ctx, pbuffer, face, level, screen); return ret; @@ -46551,7 +46566,7 @@ static CGLError REGAL_CALL http_CGLTexImagePBuffer(CGLContextObj ctx, CGLPBuffer } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLTexImagePBuffer(ctx, pbuffer, source); return ret; @@ -46569,7 +46584,7 @@ static GLuint REGAL_CALL http_CGLGetContextRetainCount(CGLContextObj ctx) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLGetContextRetainCount(ctx); return ret; @@ -46585,7 +46600,7 @@ static CGLError REGAL_CALL http_CGLGetGlobalOption(CGLGlobalOption pname, GLint } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLGetGlobalOption(pname, params); return ret; @@ -46601,7 +46616,7 @@ static GLuint REGAL_CALL http_CGLGetPBufferRetainCount(CGLPBufferObj pbuffer) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLGetPBufferRetainCount(pbuffer); return ret; @@ -46617,7 +46632,7 @@ static CGLPixelFormatObj REGAL_CALL http_CGLGetPixelFormat(CGLContextObj ctx) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLGetPixelFormat(ctx); return ret; @@ -46633,7 +46648,7 @@ static GLuint REGAL_CALL http_CGLGetPixelFormatRetainCount(CGLPixelFormatObj pix } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLGetPixelFormatRetainCount(pix); return ret; @@ -46649,7 +46664,7 @@ static CGLError REGAL_CALL http_CGLLockContext(CGLContextObj ctx) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLLockContext(ctx); return ret; @@ -46664,7 +46679,7 @@ static void REGAL_CALL http_CGLReleaseContext(CGLContextObj ctx) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->CGLReleaseContext(ctx); } @@ -46678,7 +46693,7 @@ static void REGAL_CALL http_CGLReleasePBuffer(CGLPBufferObj pbuffer) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->CGLReleasePBuffer(pbuffer); } @@ -46692,7 +46707,7 @@ static void REGAL_CALL http_CGLReleasePixelFormat(CGLPixelFormatObj pix) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->CGLReleasePixelFormat(pix); } @@ -46707,7 +46722,7 @@ static CGLContextObj REGAL_CALL http_CGLRetainContext(CGLContextObj ctx) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLRetainContext(ctx); return ret; @@ -46723,7 +46738,7 @@ static CGLPBufferObj REGAL_CALL http_CGLRetainPBuffer(CGLPBufferObj pbuffer) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLRetainPBuffer(pbuffer); return ret; @@ -46739,7 +46754,7 @@ static CGLPixelFormatObj REGAL_CALL http_CGLRetainPixelFormat(CGLPixelFormatObj } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLRetainPixelFormat(pix); return ret; @@ -46755,7 +46770,7 @@ static CGLError REGAL_CALL http_CGLSetGlobalOption(CGLGlobalOption pname, const } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLSetGlobalOption(pname, params); return ret; @@ -46771,7 +46786,7 @@ static CGLError REGAL_CALL http_CGLUnlockContext(CGLContextObj ctx) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLUnlockContext(ctx); return ret; @@ -46789,7 +46804,7 @@ static CGLContextObj REGAL_CALL http_CGLGetCurrentContext(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLGetCurrentContext(); return ret; @@ -46805,7 +46820,7 @@ static CGLShareGroupObj REGAL_CALL http_CGLGetShareGroup(CGLContextObj ctx) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLGetShareGroup(ctx); return ret; @@ -46821,7 +46836,7 @@ static CGLError REGAL_CALL http_CGLGetSurface(CGLContextObj ctx, CGSConnectionID } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLGetSurface(ctx, conn, win, srf); return ret; @@ -46837,7 +46852,7 @@ static CGLError REGAL_CALL http_CGLSetCurrentContext(CGLContextObj ctx) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLSetCurrentContext(ctx); return ret; @@ -46853,7 +46868,7 @@ static CGLError REGAL_CALL http_CGLSetSurface(CGLContextObj ctx, CGSConnectionID } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLSetSurface(ctx, conn, win, srf); return ret; @@ -46869,7 +46884,7 @@ static CGLError REGAL_CALL http_CGLTexImageIOSurface2D(CGLContextObj ctx, GLenum } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLTexImageIOSurface2D(ctx, target, internal_format, width, height, format, type, ioSurface, plane); return ret; @@ -46885,7 +46900,7 @@ static CGLError REGAL_CALL http_CGLUpdateContext(CGLContextObj ctx) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->CGLUpdateContext(ctx); return ret; @@ -46907,7 +46922,7 @@ static EGLBoolean REGAL_CALL http_eglQuerySurfacePointerANGLE(EGLDisplay dpy, EG } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglQuerySurfacePointerANGLE(dpy, surface, attribute, value); return ret; @@ -46925,7 +46940,7 @@ static EGLint REGAL_CALL http_eglClientWaitSyncKHR(EGLDisplay dpy, EGLSyncKHR GL } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglClientWaitSyncKHR(dpy, GLsync, flags, timeout); return ret; @@ -46941,7 +46956,7 @@ static EGLSyncKHR REGAL_CALL http_eglCreateSyncKHR(EGLDisplay dpy, EGLenum type, } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglCreateSyncKHR(dpy, type, attrib_list); return ret; @@ -46957,7 +46972,7 @@ static EGLBoolean REGAL_CALL http_eglDestroySyncKHR(EGLDisplay dpy, EGLSyncKHR G } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglDestroySyncKHR(dpy, GLsync); return ret; @@ -46973,7 +46988,7 @@ static EGLBoolean REGAL_CALL http_eglGetSyncAttribKHR(EGLDisplay dpy, EGLSyncKHR } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglGetSyncAttribKHR(dpy, GLsync, attribute, value); return ret; @@ -46991,7 +47006,7 @@ static EGLImageKHR REGAL_CALL http_eglCreateImageKHR(EGLDisplay dpy, EGLContext } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglCreateImageKHR(dpy, ctx, target, buffer, attrib_list); return ret; @@ -47007,7 +47022,7 @@ static EGLBoolean REGAL_CALL http_eglDestroyImageKHR(EGLDisplay dpy, EGLImageKHR } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglDestroyImageKHR(dpy, image); return ret; @@ -47025,7 +47040,7 @@ static EGLBoolean REGAL_CALL http_eglLockSurfaceKHR(EGLDisplay display, EGLSurfa } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglLockSurfaceKHR(display, surface, attrib_list); return ret; @@ -47041,7 +47056,7 @@ static EGLBoolean REGAL_CALL http_eglUnlockSurfaceKHR(EGLDisplay display, EGLSur } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglUnlockSurfaceKHR(display, surface); return ret; @@ -47059,7 +47074,7 @@ static EGLBoolean REGAL_CALL http_eglStreamConsumerAcquireKHR(EGLDisplay dpy, EG } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglStreamConsumerAcquireKHR(dpy, stream); return ret; @@ -47075,7 +47090,7 @@ static EGLBoolean REGAL_CALL http_eglStreamConsumerGLTextureExternalKHR(EGLDispl } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglStreamConsumerGLTextureExternalKHR(dpy, stream); return ret; @@ -47091,7 +47106,7 @@ static EGLBoolean REGAL_CALL http_eglStreamConsumerReleaseKHR(EGLDisplay dpy, EG } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglStreamConsumerReleaseKHR(dpy, stream); return ret; @@ -47109,7 +47124,7 @@ static EGLStreamKHR REGAL_CALL http_eglCreateStreamFromFileDescriptorKHR(EGLDisp } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglCreateStreamFromFileDescriptorKHR(dpy, file_descriptor); return ret; @@ -47125,7 +47140,7 @@ static EGLNativeFileDescriptorKHR REGAL_CALL http_eglGetStreamFileDescriptorKHR( } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglGetStreamFileDescriptorKHR(dpy, stream); return ret; @@ -47143,7 +47158,7 @@ static EGLSurface REGAL_CALL http_eglCreateStreamProducerSurfaceKHR(EGLDisplay d } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglCreateStreamProducerSurfaceKHR(dpy, config, stream, attrib_list); return ret; @@ -47161,7 +47176,7 @@ static EGLint REGAL_CALL http_eglWaitSyncKHR(EGLDisplay dpy, EGLSyncKHR GLsync, } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglWaitSyncKHR(dpy, GLsync, flags); return ret; @@ -47179,7 +47194,7 @@ static EGLImageKHR REGAL_CALL http_eglCreateDRMImageMESA(EGLDisplay dpy, const E } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglCreateDRMImageMESA(dpy, attrib_list); return ret; @@ -47195,7 +47210,7 @@ static EGLBoolean REGAL_CALL http_eglExportDRMImageMESA(EGLDisplay dpy, EGLImage } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglExportDRMImageMESA(dpy, image, name, handle, stride); return ret; @@ -47212,7 +47227,7 @@ static void REGAL_CALL http_eglCoverageMaskNV(GLboolean mask) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->eglCoverageMaskNV(mask); } @@ -47226,7 +47241,7 @@ static void REGAL_CALL http_eglCoverageOperationNV(GLenum operation) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); _next->eglCoverageOperationNV(operation); } @@ -47243,7 +47258,7 @@ static EGLBoolean REGAL_CALL http_eglPostSubBufferNV(EGLDisplay dpy, EGLSurface } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglPostSubBufferNV(dpy, surface, x, y, width, height); return ret; @@ -47261,7 +47276,7 @@ static EGLint REGAL_CALL http_eglClientWaitSyncNV(EGLSyncNV GLsync, EGLint flags } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglClientWaitSyncNV(GLsync, flags, timeout); return ret; @@ -47277,7 +47292,7 @@ static EGLSyncNV REGAL_CALL http_eglCreateFenceSyncNV(EGLDisplay dpy, EGLenum co } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglCreateFenceSyncNV(dpy, condition, attrib_list); return ret; @@ -47293,7 +47308,7 @@ static EGLBoolean REGAL_CALL http_eglDestroySyncNV(EGLSyncNV GLsync) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglDestroySyncNV(GLsync); return ret; @@ -47309,7 +47324,7 @@ static EGLBoolean REGAL_CALL http_eglFenceNV(EGLSyncNV GLsync) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglFenceNV(GLsync); return ret; @@ -47325,7 +47340,7 @@ static EGLBoolean REGAL_CALL http_eglGetSyncAttribNV(EGLSyncNV GLsync, EGLint at } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglGetSyncAttribNV(GLsync, attribute, value); return ret; @@ -47341,7 +47356,7 @@ static EGLBoolean REGAL_CALL http_eglSignalSyncNV(EGLSyncNV GLsync, EGLenum mode } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglSignalSyncNV(GLsync, mode); return ret; @@ -47359,7 +47374,7 @@ static EGLuint64NV REGAL_CALL http_eglGetSystemTimeFrequencyNV(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglGetSystemTimeFrequencyNV(); return ret; @@ -47375,7 +47390,7 @@ static EGLuint64NV REGAL_CALL http_eglGetSystemTimeNV(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglGetSystemTimeNV(); return ret; @@ -47393,7 +47408,7 @@ static EGLBoolean REGAL_CALL http_eglChooseConfig(EGLDisplay dpy, const EGLint * } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglChooseConfig(dpy, attrib_list, configs, config_size, num_config); return ret; @@ -47409,7 +47424,7 @@ static EGLBoolean REGAL_CALL http_eglCopyBuffers(EGLDisplay dpy, EGLSurface surf } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglCopyBuffers(dpy, surface, target); return ret; @@ -47425,7 +47440,7 @@ static EGLContext REGAL_CALL http_eglCreateContext(EGLDisplay dpy, EGLConfig con } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglCreateContext(dpy, config, share_context, attrib_list); return ret; @@ -47441,7 +47456,7 @@ static EGLSurface REGAL_CALL http_eglCreatePbufferSurface(EGLDisplay dpy, EGLCon } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglCreatePbufferSurface(dpy, config, attrib_list); return ret; @@ -47457,7 +47472,7 @@ static EGLSurface REGAL_CALL http_eglCreatePixmapSurface(EGLDisplay dpy, EGLConf } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglCreatePixmapSurface(dpy, config, pixmap, attrib_list); return ret; @@ -47473,7 +47488,7 @@ static EGLSurface REGAL_CALL http_eglCreateWindowSurface(EGLDisplay dpy, EGLConf } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglCreateWindowSurface(dpy, config, win, attrib_list); return ret; @@ -47489,7 +47504,7 @@ static EGLBoolean REGAL_CALL http_eglDestroyContext(EGLDisplay dpy, EGLContext c } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglDestroyContext(dpy, ctx); return ret; @@ -47505,7 +47520,7 @@ static EGLBoolean REGAL_CALL http_eglDestroySurface(EGLDisplay dpy, EGLSurface s } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglDestroySurface(dpy, surface); return ret; @@ -47521,7 +47536,7 @@ static EGLBoolean REGAL_CALL http_eglGetConfigAttrib(EGLDisplay dpy, EGLConfig c } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglGetConfigAttrib(dpy, config, attribute, value); return ret; @@ -47537,7 +47552,7 @@ static EGLBoolean REGAL_CALL http_eglGetConfigs(EGLDisplay dpy, EGLConfig *confi } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglGetConfigs(dpy, configs, config_size, num_config); return ret; @@ -47553,7 +47568,7 @@ static EGLContext REGAL_CALL http_eglGetCurrentContext(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglGetCurrentContext(); return ret; @@ -47569,7 +47584,7 @@ static EGLDisplay REGAL_CALL http_eglGetCurrentDisplay(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglGetCurrentDisplay(); return ret; @@ -47585,7 +47600,7 @@ static EGLSurface REGAL_CALL http_eglGetCurrentSurface(EGLint readdraw) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglGetCurrentSurface(readdraw); return ret; @@ -47601,7 +47616,7 @@ static EGLDisplay REGAL_CALL http_eglGetDisplay(EGLNativeDisplayType display_id) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglGetDisplay(display_id); return ret; @@ -47617,7 +47632,7 @@ static EGLint REGAL_CALL http_eglGetError(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglGetError(); return ret; @@ -47633,7 +47648,7 @@ static __eglMustCastToProperFunctionPointerType REGAL_CALL http_eglGetProcAddres } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglGetProcAddress(procname); return ret; @@ -47649,7 +47664,7 @@ static EGLBoolean REGAL_CALL http_eglInitialize(EGLDisplay dpy, EGLint *major, E } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglInitialize(dpy, major, minor); return ret; @@ -47665,7 +47680,7 @@ static EGLBoolean REGAL_CALL http_eglMakeCurrent(EGLDisplay dpy, EGLSurface draw } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglMakeCurrent(dpy, draw, read, ctx); return ret; @@ -47681,7 +47696,7 @@ static EGLBoolean REGAL_CALL http_eglQueryContext(EGLDisplay dpy, EGLContext ctx } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglQueryContext(dpy, ctx, attribute, value); return ret; @@ -47697,7 +47712,7 @@ static const char *REGAL_CALL http_eglQueryString(EGLDisplay dpy, EGLint name) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglQueryString(dpy, name); return ret; @@ -47713,7 +47728,7 @@ static EGLBoolean REGAL_CALL http_eglQuerySurface(EGLDisplay dpy, EGLSurface sur } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglQuerySurface(dpy, surface, attribute, value); return ret; @@ -47736,7 +47751,7 @@ static EGLBoolean REGAL_CALL http_eglSwapBuffers(EGLDisplay dpy, EGLSurface surf } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglSwapBuffers(dpy, surface); if( _context ) { @@ -47755,7 +47770,7 @@ static EGLBoolean REGAL_CALL http_eglTerminate(EGLDisplay dpy) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglTerminate(dpy); return ret; @@ -47771,7 +47786,7 @@ static EGLBoolean REGAL_CALL http_eglWaitGL(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglWaitGL(); return ret; @@ -47787,7 +47802,7 @@ static EGLBoolean REGAL_CALL http_eglWaitNative(EGLint engine) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglWaitNative(engine); return ret; @@ -47805,7 +47820,7 @@ static EGLBoolean REGAL_CALL http_eglBindTexImage(EGLDisplay dpy, EGLSurface sur } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglBindTexImage(dpy, surface, buffer); return ret; @@ -47821,7 +47836,7 @@ static EGLBoolean REGAL_CALL http_eglReleaseTexImage(EGLDisplay dpy, EGLSurface } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglReleaseTexImage(dpy, surface, buffer); return ret; @@ -47839,7 +47854,7 @@ static EGLBoolean REGAL_CALL http_eglBindAPI(EGLenum api) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglBindAPI(api); return ret; @@ -47855,7 +47870,7 @@ static EGLSurface REGAL_CALL http_eglCreatePbufferFromClientBuffer(EGLDisplay dp } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglCreatePbufferFromClientBuffer(dpy, buftype, buffer, config, attrib_list); return ret; @@ -47871,7 +47886,7 @@ static EGLenum REGAL_CALL http_eglQueryAPI(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglQueryAPI(); return ret; @@ -47887,7 +47902,7 @@ static EGLBoolean REGAL_CALL http_eglReleaseThread(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglReleaseThread(); return ret; @@ -47903,7 +47918,7 @@ static EGLBoolean REGAL_CALL http_eglSurfaceAttrib(EGLDisplay dpy, EGLSurface su } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglSurfaceAttrib(dpy, surface, attribute, value); return ret; @@ -47919,7 +47934,7 @@ static EGLBoolean REGAL_CALL http_eglSwapInterval(EGLDisplay dpy, EGLint interva } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglSwapInterval(dpy, interval); return ret; @@ -47935,7 +47950,7 @@ static EGLBoolean REGAL_CALL http_eglWaitClient(void) } _context->http.YieldToHttpServer( _context ); } - Dispatch::Global *_next = &dispatchGlobal; + Dispatch::Global *_next = &nextGlobal; RegalAssert(_next); ret = _next->eglWaitClient(); return ret; @@ -47943,7 +47958,7 @@ static EGLBoolean REGAL_CALL http_eglWaitClient(void) #endif // REGAL_SYS_EGL -void InitDispatchTableHttp(Dispatch::GL &tbl) +void InitDispatchHttp(Dispatch::GL &tbl) { // GL_VERSION_1_0 diff --git a/src/regal/RegalDispatchHttp.h b/src/regal/RegalDispatchHttp.h index d7cdf8c..dba229a 100644 --- a/src/regal/RegalDispatchHttp.h +++ b/src/regal/RegalDispatchHttp.h @@ -186,6 +186,7 @@ public: static void Stop(); GlProcs gl; + Dispatch::GL next; static bool enabled; static int port; diff --git a/src/regal/RegalDispatchLog.cpp b/src/regal/RegalDispatchLog.cpp index 2f11f21..e31dd8e 100644 --- a/src/regal/RegalDispatchLog.cpp +++ b/src/regal/RegalDispatchLog.cpp @@ -62,7 +62,7 @@ REGAL_GLOBAL_END REGAL_NAMESPACE_BEGIN -Dispatch::Global nextGlobal; +static Dispatch::Global nextGlobal; void Log::Init( RegalContext * ctx ) { ctx->log.next = ctx->dispatchGL; diff --git a/src/regal/RegalDsa.h b/src/regal/RegalDsa.h index 20396ef..e754143 100644 --- a/src/regal/RegalDsa.h +++ b/src/regal/RegalDsa.h @@ -160,12 +160,12 @@ struct Dsa dsa.matrixMode = GL_TEXTURE; break; } - ctx->dispatchGL.glMatrixMode( dsa.matrixMode ); + ctx->emu.curr.glMatrixMode( dsa.matrixMode ); } } void RestoreMatrixMode( RegalContext * ctx ) { if( dsa.matrixMode != REGAL_DSA_INVALID ) { - ctx->dispatchGL.glMatrixMode( drv.matrixMode ); + ctx->emu.curr.glMatrixMode( drv.matrixMode ); RestoreActiveTexture( ctx ); dsa.matrixMode = REGAL_DSA_INVALID; } @@ -187,12 +187,12 @@ struct Dsa return; if( NotActiveTexture( tex ) ) { dsa.activeTexture = tex; - ctx->dispatchGL.glActiveTexture( dsa.activeTexture ); + ctx->emu.curr.glActiveTexture( dsa.activeTexture ); } } void RestoreActiveTexture( RegalContext * ctx ) { if( dsa.activeTexture != REGAL_DSA_INVALID ) { - ctx->dispatchGL.glActiveTexture( drv.activeTexture ); + ctx->emu.curr.glActiveTexture( drv.activeTexture ); dsa.activeTexture = REGAL_DSA_INVALID; } } @@ -208,12 +208,12 @@ struct Dsa void DsaClientActiveTexture( RegalContext * ctx, GLenum tex ) { if( NotClientActiveTexture( tex ) ) { dsa.clientActiveTexture = tex; - ctx->dispatchGL.glClientActiveTexture( dsa.clientActiveTexture ); + ctx->emu.curr.glClientActiveTexture( dsa.clientActiveTexture ); } } void RestoreClientActiveTexture( RegalContext * ctx ) { if( dsa.clientActiveTexture != REGAL_DSA_INVALID ) { - ctx->dispatchGL.glClientActiveTexture( drv.clientActiveTexture ); + ctx->emu.curr.glClientActiveTexture( drv.clientActiveTexture ); dsa.clientActiveTexture = REGAL_DSA_INVALID; } } @@ -229,12 +229,12 @@ struct Dsa void DsaGlslProgram( RegalContext * ctx, GLuint program ) { if( NotGlslProgram( program ) ) { dsa.glslProgram = program; - ctx->dispatchGL.glUseProgram( dsa.glslProgram ); + ctx->emu.curr.glUseProgram( dsa.glslProgram ); } } void RestoreGlslProgram( RegalContext * ctx ) { if( dsa.glslProgram != REGAL_DSA_INVALID ) { - ctx->dispatchGL.glUseProgram( drv.glslProgram ); + ctx->emu.curr.glUseProgram( drv.glslProgram ); dsa.glslProgram = REGAL_DSA_INVALID; } } @@ -261,12 +261,12 @@ struct Dsa if( NotFramebuffer( target, framebuffer ) ) { dsa.framebufferTarget = target; dsa.framebuffer = framebuffer; - ctx->dispatchGL.glBindFramebuffer( dsa.framebufferTarget, dsa.framebuffer ); + ctx->emu.curr.glBindFramebuffer( dsa.framebufferTarget, dsa.framebuffer ); } } void RestoreFramebuffer( RegalContext * ctx ) { if( dsa.framebuffer != REGAL_DSA_INVALID ) { - ctx->dispatchGL.glBindFramebuffer( drv.framebufferTarget, drv.framebuffer ); + ctx->emu.curr.glBindFramebuffer( drv.framebufferTarget, drv.framebuffer ); dsa.framebufferTarget = REGAL_DSA_INVALID; dsa.framebuffer = REGAL_DSA_INVALID; } @@ -295,12 +295,12 @@ struct Dsa if( NotRenderbuffer( target, renderbuffer ) ) { dsa.renderbufferTarget = target; dsa.renderbuffer = renderbuffer; - ctx->dispatchGL.glBindRenderbuffer( dsa.renderbufferTarget, dsa.renderbuffer ); + ctx->emu.curr.glBindRenderbuffer( dsa.renderbufferTarget, dsa.renderbuffer ); } } void RestoreRenderbuffer( RegalContext * ctx ) { if( dsa.renderbuffer != REGAL_DSA_INVALID ) { - ctx->dispatchGL.glBindRenderbuffer( drv.renderbufferTarget, drv.renderbuffer ); + ctx->emu.curr.glBindRenderbuffer( drv.renderbufferTarget, drv.renderbuffer ); dsa.renderbufferTarget = REGAL_DSA_INVALID; dsa.renderbuffer = REGAL_DSA_INVALID; } @@ -353,13 +353,13 @@ struct Dsa int idx = AsmTargetIndex( target ); if( NotAsmProgram( target, prog ) ) { dsa.asmProgram[idx] = prog; - ctx->dispatchGL.glBindProgramARB( target, dsa.asmProgram[idx] ); + ctx->emu.curr.glBindProgramARB( target, dsa.asmProgram[idx] ); } } void RestoreAsmProgram( RegalContext * ctx, GLenum target ) { int idx = AsmTargetIndex( target ); if( dsa.asmProgram[idx] != REGAL_DSA_INVALID ) { - ctx->dispatchGL.glBindProgramARB( target, drv.asmProgram[idx] ); + ctx->emu.curr.glBindProgramARB( target, drv.asmProgram[idx] ); dsa.asmProgram[idx] = REGAL_DSA_INVALID; } } @@ -386,12 +386,12 @@ struct Dsa void DsaVao( RegalContext * ctx, GLuint vao ) { if( NotVao( vao ) ) { dsa.vao = vao; - ctx->dispatchGL.glBindVertexArray( dsa.vao ); + ctx->emu.curr.glBindVertexArray( dsa.vao ); } } void RestoreVao( RegalContext * ctx ) { if( dsa.vao != REGAL_DSA_INVALID ) { - ctx->dispatchGL.glBindVertexArray( drv.vao ); + ctx->emu.curr.glBindVertexArray( drv.vao ); dsa.vao = REGAL_DSA_INVALID; } } @@ -420,12 +420,12 @@ struct Dsa void DsaBuffer( RegalContext * ctx, GLuint buf ) { if( NotBuffer( buf ) ) { dsa.buffer = buf; - ctx->dispatchGL.glBindBuffer( GL_ARRAY_BUFFER, dsa.buffer ); + ctx->emu.curr.glBindBuffer( GL_ARRAY_BUFFER, dsa.buffer ); } } void RestoreBuffer( RegalContext * ctx ) { if( dsa.buffer != REGAL_DSA_INVALID ) { - ctx->dispatchGL.glBindBuffer( GL_ARRAY_BUFFER, drv.buffer ); + ctx->emu.curr.glBindBuffer( GL_ARRAY_BUFFER, drv.buffer ); dsa.buffer = REGAL_DSA_INVALID; } } @@ -475,13 +475,13 @@ struct Dsa dsa.textureTarget = target; dsa.texture = texture; DsaActiveTexture( ctx, GL_TEXTURE0 ); - ctx->dispatchGL.glBindTexture( dsa.textureTarget, dsa.texture ); + ctx->emu.curr.glBindTexture( dsa.textureTarget, dsa.texture ); } } void RestoreTexture( RegalContext * ctx ) { if( dsa.texture != REGAL_DSA_INVALID ) { DsaActiveTexture( ctx, GL_TEXTURE0 ); - ctx->dispatchGL.glBindTexture( drv.textureTarget, drv.texture ); + ctx->emu.curr.glBindTexture( drv.textureTarget, drv.texture ); dsa.textureTarget = REGAL_DSA_INVALID; dsa.texture = REGAL_DSA_INVALID; } @@ -498,7 +498,7 @@ struct Dsa void ClientAttribDefault( RegalContext * ctx, GLbitfield mask ) { - Dispatch::GL &tbl = ctx->dispatchGL; + Dispatch::GL &tbl = ctx->emu.curr; if (mask&GL_CLIENT_PIXEL_STORE_BIT) { @@ -573,7 +573,7 @@ struct Dsa template< typename T > bool GetIndexedv( RegalContext * ctx, GLenum pname, GLuint index, T * params ) { - Dispatch::GL &tbl = ctx->dispatchGL; + Dispatch::GL &tbl = ctx->emu.curr; switch( pname ) { case GL_PROGRAM_MATRIX_EXT: ctx->dsa->DsaMatrixMode( ctx, GL_MATRIX0_ARB + index ); @@ -710,7 +710,7 @@ struct Dsa } GLboolean IsEnabledIndexed( RegalContext * ctx, GLenum pname, GLuint index ) { - Dispatch::GL &tbl = ctx->dispatchGL; + Dispatch::GL &tbl = ctx->emu.curr; switch( pname ) { case GL_TEXTURE_1D: case GL_TEXTURE_2D: diff --git a/src/regal/RegalHttp.cpp b/src/regal/RegalHttp.cpp index f731539..df6c6f1 100644 --- a/src/regal/RegalHttp.cpp +++ b/src/regal/RegalHttp.cpp @@ -887,7 +887,7 @@ struct ProgramHandler : public RequestHandler { if( count > 1 ) { json +=string( indent, ' ' ) + print_string( "\"count\" :", count, ",\n" ); } - json +=string( indent, ' ' ) + print_string( "\"value\": ", PrintUniformValue( ctx->dispatchGL, prog, loc, count, type, indent ), ",\n" ); + json +=string( indent, ' ' ) + print_string( "\"value\": ", PrintUniformValue( ctx->http.next, prog, loc, count, type, indent ), ",\n" ); EraseLastComma( json ); indent -= 2; json += string( indent, ' ' ) + "},\n"; @@ -1310,11 +1310,6 @@ Http::Http() : runState( RS_Run ), debugGroupStackDepth( -1 ), stepOverGroupDept */ } -void Http::Init( RegalContext * ctx ) -{ - gl.Initialize( & ctx->dispatchGL ); -} - bool Http::enabled = REGAL_HTTP; int Http::port = REGAL_HTTP_PORT; diff --git a/src/regal/RegalIff.cpp b/src/regal/RegalIff.cpp index 76f7c8d..feae225 100644 --- a/src/regal/RegalIff.cpp +++ b/src/regal/RegalIff.cpp @@ -1818,7 +1818,7 @@ void Program::Init( RegalContext * ctx, const Store & sstore, GLuint vshd, GLuin ver = ::std::numeric_limits::max(); progcount = 0; RegalAssert(ctx); - Dispatch::GL & tbl = ctx->dispatchGL; + Dispatch::GL & tbl = ctx->emu.curr; store = sstore; pg = tbl.glCreateProgram(); vs = vshd; @@ -1875,7 +1875,7 @@ void Program::Attribs( RegalContext * ctx ) { Internal("Regal::Iff::Program::Attribs","()"); - Dispatch::GL & tbl = ctx->dispatchGL; + Dispatch::GL & tbl = ctx->emu.curr; RegalAssertArrayIndex( ctx->iff->ffAttrMap, RFF2A_Vertex ); tbl.glBindAttribLocation( pg, ctx->iff->ffAttrMap[ RFF2A_Vertex ], "rglVertex" ); @@ -1922,7 +1922,7 @@ void Program::UserShaderModeAttribs( RegalContext * ctx ) { Internal("Regal::Iff::Program::UserShaderModeAttribs","()"); - Dispatch::GL & tbl = ctx->dispatchGL; + Dispatch::GL & tbl = ctx->emu.curr; RegalAssertArrayIndex( ctx->iff->ffAttrMap, RFF2A_Vertex ); RegalAssertArrayIndex( ctx->iff->ffAttrMap, RFF2A_Normal ); @@ -2054,7 +2054,7 @@ void Iff::Cleanup( RegalContext &ctx ) Internal("Regal::Iff::Cleanup","()"); RestoreVao(&ctx); - Dispatch::GL &tbl = ctx.dispatchGL; + Dispatch::GL &tbl = ctx.emu.curr; tbl.glDeleteBuffers(1, &immVbo); tbl.glDeleteVertexArrays(1, &immVao); @@ -2165,7 +2165,7 @@ void Iff::EnableClientState( RegalContext * ctx, GLenum state ) RegalAssert( idx < max_vertex_attribs ); if ( idx < max_vertex_attribs ) { - ctx->dispatchGL.glEnableVertexAttribArray( idx ); + ctx->emu.curr.glEnableVertexAttribArray( idx ); EnableArray( ctx, idx ); // keep ffn up to date } } @@ -2179,7 +2179,7 @@ void Iff::DisableClientState( RegalContext * ctx, GLenum state ) RegalAssert( idx < max_vertex_attribs ); if ( idx < max_vertex_attribs ) { - ctx->dispatchGL.glDisableVertexAttribArray( idx ); + ctx->emu.curr.glDisableVertexAttribArray( idx ); DisableArray( ctx, idx ); // keep ffn up to date } } @@ -2211,34 +2211,34 @@ void Iff::VertexPointer( RegalContext * ctx, GLint size, GLenum type, GLsizei st return; RestoreVao( ctx ); - ctx->dispatchGL.glVertexAttribPointer( ffAttrMap[ RFF2A_Vertex ], size, type, GL_FALSE, stride, pointer ); + ctx->emu.curr.glVertexAttribPointer( ffAttrMap[ RFF2A_Vertex ], size, type, GL_FALSE, stride, pointer ); } void Iff::NormalPointer( RegalContext * ctx, GLenum type, GLsizei stride, const GLvoid *pointer ) { RestoreVao( ctx ); GLboolean n = type == GL_FLOAT ? GL_FALSE : GL_TRUE; - ctx->dispatchGL.glVertexAttribPointer( ffAttrMap[ RFF2A_Normal ], 3, type, n, stride, pointer ); + ctx->emu.curr.glVertexAttribPointer( ffAttrMap[ RFF2A_Normal ], 3, type, n, stride, pointer ); } void Iff::ColorPointer( RegalContext * ctx, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer ) { RestoreVao( ctx ); GLboolean n = type == GL_FLOAT ? GL_FALSE : GL_TRUE; - ctx->dispatchGL.glVertexAttribPointer( ffAttrMap[ RFF2A_Color ], size, type, n, stride, pointer ); + ctx->emu.curr.glVertexAttribPointer( ffAttrMap[ RFF2A_Color ], size, type, n, stride, pointer ); } void Iff::SecondaryColorPointer( RegalContext * ctx, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer ) { RestoreVao( ctx ); GLboolean n = type == GL_FLOAT ? GL_FALSE : GL_TRUE; - ctx->dispatchGL.glVertexAttribPointer( ffAttrMap[ RFF2A_SecondaryColor ], size, type, n, stride, pointer ); + ctx->emu.curr.glVertexAttribPointer( ffAttrMap[ RFF2A_SecondaryColor ], size, type, n, stride, pointer ); } void Iff::FogCoordPointer( RegalContext * ctx, GLenum type, GLsizei stride, const GLvoid *pointer ) { RestoreVao( ctx ); - ctx->dispatchGL.glVertexAttribPointer( ffAttrMap[ RFF2A_FogCoord ], 1, type, GL_FALSE, stride, pointer ); + ctx->emu.curr.glVertexAttribPointer( ffAttrMap[ RFF2A_FogCoord ], 1, type, GL_FALSE, stride, pointer ); } void Iff::EdgeFlagPointer( RegalContext * ctx, GLsizei stride, const GLvoid *pointer ) @@ -2247,7 +2247,7 @@ void Iff::EdgeFlagPointer( RegalContext * ctx, GLsizei stride, const GLvoid *poi GLuint index = ffAttrMap[ RFF2A_EdgeFlag ]; if (index == RFF2A_Invalid) return; - ctx->dispatchGL.glVertexAttribPointer( index, 1, GL_UNSIGNED_BYTE, GL_FALSE, stride, pointer ); + ctx->emu.curr.glVertexAttribPointer( index, 1, GL_UNSIGNED_BYTE, GL_FALSE, stride, pointer ); } void Iff::TexCoordPointer( RegalContext * ctx, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer ) @@ -2258,22 +2258,22 @@ void Iff::TexCoordPointer( RegalContext * ctx, GLint size, GLenum type, GLsizei return; } RestoreVao( ctx ); - ctx->dispatchGL.glVertexAttribPointer( ffAttrTexBegin + catIndex, size, type, GL_FALSE, stride, pointer ); + ctx->emu.curr.glVertexAttribPointer( ffAttrTexBegin + catIndex, size, type, GL_FALSE, stride, pointer ); } void Iff::GetAttrib( RegalContext * ctx, GLuint index, GLenum pname, GLdouble * d ) { - ctx->dispatchGL.glGetVertexAttribdv( index, pname, d ); + ctx->emu.curr.glGetVertexAttribdv( index, pname, d ); } void Iff::GetAttrib( RegalContext * ctx, GLuint index, GLenum pname, GLfloat * f ) { - ctx->dispatchGL.glGetVertexAttribfv( index, pname, f ); + ctx->emu.curr.glGetVertexAttribfv( index, pname, f ); } void Iff::GetAttrib( RegalContext * ctx, GLuint index, GLenum pname, GLint * i ) { - ctx->dispatchGL.glGetVertexAttribiv( index, pname, i ); + ctx->emu.curr.glGetVertexAttribiv( index, pname, i ); } bool Iff::IsEnabled( RegalContext * ctx, GLenum pname, GLboolean &enabled ) @@ -2364,7 +2364,7 @@ bool Iff::IsEnabled( RegalContext * ctx, GLenum pname, GLboolean &enabled ) void Iff::InitImmediate(RegalContext &ctx) { - Dispatch::GL &tbl = ctx.dispatchGL; + Dispatch::GL &tbl = ctx.emu.curr; tbl.glGenVertexArrays( 1, & immVao ); tbl.glBindVertexArray( immVao ); BindVertexArray( &ctx, immVao ); // to keep ffn current @@ -2420,7 +2420,7 @@ void Iff::glDeleteVertexArrays( RegalContext * ctx, GLsizei n, const GLuint * ar { GLuint name = arrays[ i ]; if (name != immVao) - ctx->dispatchGL.glDeleteVertexArrays( 1, &name ); + ctx->emu.curr.glDeleteVertexArrays( 1, &name ); } } @@ -2431,7 +2431,7 @@ void Iff::glDeleteBuffers( RegalContext * ctx, GLsizei n, const GLuint * buffers { GLuint name = buffers[ i ]; if (name != immVbo) - ctx->dispatchGL.glDeleteBuffers( 1, &name ); + ctx->emu.curr.glDeleteBuffers( 1, &name ); } } @@ -2440,7 +2440,7 @@ GLboolean Iff::IsVertexArray( RegalContext * ctx, GLuint name ) RegalAssert( ctx != NULL ); if (name == immVao ) return GL_FALSE; - return ctx->dispatchGL.glIsVertexArray( name ); + return ctx->emu.curr.glIsVertexArray( name ); } void Iff::glBindVertexArray( RegalContext *ctx, GLuint vao ) @@ -2467,7 +2467,7 @@ void Iff::Begin( RegalContext * ctx, GLenum mode ) if (immActive == false) { immActive = true; - ctx->dispatchGL.glBindVertexArray( immVao ); + ctx->emu.curr.glBindVertexArray( immVao ); BindVertexArray( ctx, immVao ); // keep ffn current } PreDraw( ctx ); @@ -2484,7 +2484,7 @@ void Iff::RestoreVao( RegalContext * ctx ) { if (immActive) { - ctx->dispatchGL.glBindVertexArray( immShadowVao ); + ctx->emu.curr.glBindVertexArray( immShadowVao ); BindVertexArray( ctx, immShadowVao ); immActive = false; } @@ -2494,7 +2494,7 @@ void Iff::Flush( RegalContext * ctx ) { if (immCurrent>0) // Do nothing for empty buffer { - Dispatch::GL &tbl = ctx->dispatchGL; + Dispatch::GL &tbl = ctx->emu.curr; tbl.glBufferData( GL_ARRAY_BUFFER, immCurrent * max_vertex_attribs * sizeof(Float4), immArray, GL_DYNAMIC_DRAW ); GLenum derivedPrim = immPrim; @@ -3412,7 +3412,7 @@ void Iff::WindowPos( RegalContext * ctx, GLdouble x, GLdouble y, GLdouble z ) // todo - cache rasterpos and implement glDrawPixels and glBitmap return; } - ctx->dispatchGL.glWindowPos3d( x, y, z ); + ctx->emu.curr.glWindowPos3d( x, y, z ); } void Iff::BindVertexArray( RegalContext * ctx, GLuint vao ) @@ -3440,7 +3440,7 @@ void Iff::DisableArray( RegalContext * ctx, GLuint index ) GLuint Iff::CreateShader( RegalContext *ctx, GLenum shaderType ) { - GLuint sh = ctx->dispatchGL.glCreateShader( shaderType ); + GLuint sh = ctx->emu.curr.glCreateShader( shaderType ); shaderTypeMap[ sh ] = shaderType; return sh; } @@ -3563,7 +3563,7 @@ void Iff::UpdateUniforms( RegalContext * ctx ) { Internal("Regal::Iff::UpdateUniforms", boost::print::optional(ctx,Logging::pointers)); - Dispatch::GL & tbl = ctx->dispatchGL; + Dispatch::GL & tbl = ctx->emu.curr; UniformMap * umap = NULL; if( currinst ) { if( currinst->prevInstance == NULL ) { @@ -4096,7 +4096,7 @@ void Iff::UseFixedFunctionProgram( RegalContext * ctx ) // delete this program if ( p->pg != 0 ) { - Dispatch::GL & tbl = ctx->dispatchGL; + Dispatch::GL & tbl = ctx->emu.curr; tbl.glDeleteShader( p->vs ); tbl.glDeleteShader( p->fs ); tbl.glDeleteProgram( p->pg ); @@ -4109,7 +4109,7 @@ void Iff::UseFixedFunctionProgram( RegalContext * ctx ) } RegalAssertArrayIndex( ffprogs, base + match ); currprog = & ffprogs[ base + match ]; - ctx->dispatchGL.glUseProgram( currprog->pg ); + ctx->emu.curr.glUseProgram( currprog->pg ); UpdateUniforms( ctx ); } @@ -4118,7 +4118,7 @@ GLuint Iff::CreateFixedFunctionVertexShader( RegalContext * ctx ) { string_list vsSrc; GenerateVertexShaderSource( this, ffstate, vsSrc ); GLuint vs; - Program::Shader( ctx, ctx->dispatchGL, GL_VERTEX_SHADER, vs, vsSrc.str().c_str() ); + Program::Shader( ctx, ctx->emu.curr, GL_VERTEX_SHADER, vs, vsSrc.str().c_str() ); return vs; } @@ -4127,7 +4127,7 @@ GLuint Iff::CreateFixedFunctionFragmentShader( RegalContext * ctx ) { string_list fsSrc; GenerateFragmentShaderSource( this, fsSrc ); GLuint fs; - Program::Shader( ctx, ctx->dispatchGL, GL_FRAGMENT_SHADER, fs, fsSrc.str().c_str() ); + Program::Shader( ctx, ctx->emu.curr, GL_FRAGMENT_SHADER, fs, fsSrc.str().c_str() ); return fs; } @@ -4163,7 +4163,7 @@ void Iff::UseShaderProgram( RegalContext * ctx ) } // if instanced, update per-instance uniforms if necessary - Dispatch::GL & tbl = ctx->dispatchGL; + Dispatch::GL & tbl = ctx->emu.curr; if( currprog->instanced ) { if( currinst == NULL ) { currinst = & inst[ currprog->pg ]; @@ -4483,7 +4483,7 @@ void Iff::ShaderSource( RegalContext *ctx, GLuint shader, GLsizei count, const G const GLchar * dumb = static_cast( src.c_str() ); const GLchar ** dumber = & dumb; - ctx->dispatchGL.glShaderSource( shader, 1, dumber, NULL ); + ctx->emu.curr.glShaderSource( shader, 1, dumber, NULL ); } void Iff::LinkProgram( RegalContext *ctx, GLuint program ) @@ -4500,7 +4500,7 @@ void Iff::LinkProgram( RegalContext *ctx, GLuint program ) p.UserShaderModeAttribs(ctx); } } - Dispatch::GL & tbl = ctx->dispatchGL; + Dispatch::GL & tbl = ctx->emu.curr; tbl.glLinkProgram( program ); Program & p = shprogmap[ program ]; diff --git a/src/regal/RegalObj.h b/src/regal/RegalObj.h index abf31b3..c05f7a7 100644 --- a/src/regal/RegalObj.h +++ b/src/regal/RegalObj.h @@ -152,12 +152,12 @@ struct Obj textureNames.drv2app = sharingWith->obj->textureNames.drv2app; } - bufferNames.gen = ctx.dispatchGL.glGenBuffers; - bufferNames.del = ctx.dispatchGL.glDeleteBuffers; - vaoNames.gen = ctx.dispatchGL.glGenVertexArrays; - vaoNames.del = ctx.dispatchGL.glDeleteVertexArrays; - textureNames.gen = ctx.dispatchGL.glGenTextures; - textureNames.del = ctx.dispatchGL.glDeleteTextures; + bufferNames.gen = ctx.emu.curr.glGenBuffers; + bufferNames.del = ctx.emu.curr.glDeleteBuffers; + vaoNames.gen = ctx.emu.curr.glGenVertexArrays; + vaoNames.del = ctx.emu.curr.glDeleteVertexArrays; + textureNames.gen = ctx.emu.curr.glGenTextures; + textureNames.del = ctx.emu.curr.glDeleteTextures; } void Cleanup(RegalContext &ctx) @@ -167,7 +167,7 @@ struct Obj void BindBuffer(RegalContext &ctx, GLenum target, GLuint bufferBinding) { - Dispatch::GL &tbl = ctx.dispatchGL; + Dispatch::GL &tbl = ctx.emu.curr; tbl.glBindBuffer( target, bufferNames.ToDriverName( bufferBinding ) ); } @@ -195,7 +195,7 @@ struct Obj void BindVertexArray(RegalContext &ctx, GLuint vao) { - Dispatch::GL &tbl = ctx.dispatchGL; + Dispatch::GL &tbl = ctx.emu.curr; tbl.glBindVertexArray( vaoNames.ToDriverName( vao ) ); } @@ -223,7 +223,7 @@ struct Obj void BindTexture(RegalContext &ctx, GLenum target, GLuint name) { - Dispatch::GL &tbl = ctx.dispatchGL; + Dispatch::GL &tbl = ctx.emu.curr; tbl.glBindTexture( target, textureNames.ToDriverName( name ) ); } diff --git a/src/regal/RegalPpa.h b/src/regal/RegalPpa.h index 568172c..fe82072 100644 --- a/src/regal/RegalPpa.h +++ b/src/regal/RegalPpa.h @@ -173,7 +173,7 @@ struct Ppa : public State::Stencil, State::Depth, State::Polygon, State::Transfo { Internal("Regal::Ppa::PushAttrib GL_SCISSOR_BIT ",State::Scissor::toString()); if (!State::Scissor::fullyDefined()) - State::Scissor::getUndefined(ctx->dispatchGL); + State::Scissor::getUndefined(ctx->emu.curr); scissorStack.push_back(State::Scissor()); scissorStack.back() = *this; mask &= ~GL_SCISSOR_BIT; @@ -183,7 +183,7 @@ struct Ppa : public State::Stencil, State::Depth, State::Polygon, State::Transfo { Internal("Regal::Ppa::PushAttrib GL_VIEWPORT_BIT ",State::Viewport::toString()); if (!State::Viewport::fullyDefined()) - State::Viewport::getUndefined(ctx->dispatchGL); + State::Viewport::getUndefined(ctx->emu.curr); viewportStack.push_back(State::Viewport()); viewportStack.back() = *this; mask &= ~GL_VIEWPORT_BIT; @@ -241,7 +241,7 @@ struct Ppa : public State::Stencil, State::Depth, State::Polygon, State::Transfo { Internal("Regal::Ppa::PushAttrib GL_COLOR_BUFFER_BIT ",State::ColorBuffer::toString()); if (!State::ColorBuffer::fullyDefined()) - State::ColorBuffer::getUndefined(ctx->dispatchGL); + State::ColorBuffer::getUndefined(ctx->emu.curr); colorBufferStack.push_back(State::ColorBuffer()); colorBufferStack.back() = *this; mask &= ~GL_COLOR_BUFFER_BIT; @@ -251,7 +251,7 @@ struct Ppa : public State::Stencil, State::Depth, State::Polygon, State::Transfo { Internal("Regal::Ppa::PushAttrib GL_PIXEL_MODE_BIT ",State::PixelMode::toString()); if (!State::PixelMode::fullyDefined()) - State::PixelMode::getUndefined(ctx->dispatchGL); + State::PixelMode::getUndefined(ctx->emu.curr); pixelModeStack.push_back(State::PixelMode()); pixelModeStack.back() = *this; mask &= ~GL_PIXEL_MODE_BIT; @@ -273,7 +273,7 @@ struct Ppa : public State::Stencil, State::Depth, State::Polygon, State::Transfo return; if (mask) - ctx->dispatchGL.glPushAttrib(mask); + ctx->emu.curr.glPushAttrib(mask); } void PopAttrib(RegalContext *ctx) @@ -297,7 +297,7 @@ struct Ppa : public State::Stencil, State::Depth, State::Polygon, State::Transfo // Ideally we'd only set the state that has changed // since the glPushAttrib() - revisit - State::Depth::set(ctx->dispatchGL); + State::Depth::set(ctx->emu.curr); mask &= ~GL_DEPTH_BUFFER_BIT; } @@ -313,7 +313,7 @@ struct Ppa : public State::Stencil, State::Depth, State::Polygon, State::Transfo // Ideally we'd only set the state that has changed // since the glPushAttrib() - revisit - State::Stencil::set(ctx->dispatchGL); + State::Stencil::set(ctx->emu.curr); mask &= ~GL_STENCIL_BUFFER_BIT; } @@ -329,7 +329,7 @@ struct Ppa : public State::Stencil, State::Depth, State::Polygon, State::Transfo // Ideally we'd only set the state that has changed // since the glPushAttrib() - revisit - State::Polygon::set(ctx->dispatchGL); + State::Polygon::set(ctx->emu.curr); mask &= ~GL_POLYGON_BIT; } @@ -341,7 +341,7 @@ struct Ppa : public State::Stencil, State::Depth, State::Polygon, State::Transfo Internal("Regal::Ppa::PopAttrib GL_TRANSFORM_BIT ",State::Transform::toString()); - State::Transform::transition(ctx->dispatchGL, transformStack.back()); + State::Transform::transition(ctx->emu.curr, transformStack.back()); transformStack.pop_back(); mask &= ~GL_TRANSFORM_BIT; @@ -358,7 +358,7 @@ struct Ppa : public State::Stencil, State::Depth, State::Polygon, State::Transfo // Ideally we'd only set the state that has changed // since the glPushAttrib() - revisit - State::Hint::set(ctx->dispatchGL); + State::Hint::set(ctx->emu.curr); mask &= ~GL_HINT_BIT; } @@ -390,7 +390,7 @@ struct Ppa : public State::Stencil, State::Depth, State::Polygon, State::Transfo // Ideally we'd only set the state that has changed // since the glPushAttrib() - revisit - State::List::set(ctx->dispatchGL); + State::List::set(ctx->emu.curr); mask &= ~GL_LIST_BIT; } @@ -406,7 +406,7 @@ struct Ppa : public State::Stencil, State::Depth, State::Polygon, State::Transfo // Ideally we'd only set the state that has changed // since the glPushAttrib() - revisit - State::AccumBuffer::set(ctx->dispatchGL); + State::AccumBuffer::set(ctx->emu.curr); mask &= ~GL_ACCUM_BUFFER_BIT; } @@ -423,8 +423,8 @@ struct Ppa : public State::Stencil, State::Depth, State::Polygon, State::Transfo // since the glPushAttrib() - revisit if (!State::Scissor::fullyDefined()) - State::Scissor::getUndefined(ctx->dispatchGL); - State::Scissor::set(ctx->dispatchGL); + State::Scissor::getUndefined(ctx->emu.curr); + State::Scissor::set(ctx->emu.curr); mask &= ~GL_SCISSOR_BIT; } @@ -441,8 +441,8 @@ struct Ppa : public State::Stencil, State::Depth, State::Polygon, State::Transfo // since the glPushAttrib() - revisit if (!State::Viewport::fullyDefined()) - State::Viewport::getUndefined(ctx->dispatchGL); - State::Viewport::set(ctx->dispatchGL); + State::Viewport::getUndefined(ctx->emu.curr); + State::Viewport::set(ctx->emu.curr); mask &= ~GL_VIEWPORT_BIT; } @@ -458,7 +458,7 @@ struct Ppa : public State::Stencil, State::Depth, State::Polygon, State::Transfo // Ideally we'd only set the state that has changed // since the glPushAttrib() - revisit - State::Line::set(ctx->dispatchGL); + State::Line::set(ctx->emu.curr); mask &= ~GL_LINE_BIT; } @@ -490,7 +490,7 @@ struct Ppa : public State::Stencil, State::Depth, State::Polygon, State::Transfo // Ideally we'd only set the state that has changed // since the glPushAttrib() - revisit - State::Eval::set(ctx->dispatchGL); + State::Eval::set(ctx->emu.curr); mask &= ~GL_EVAL_BIT; } @@ -506,7 +506,7 @@ struct Ppa : public State::Stencil, State::Depth, State::Polygon, State::Transfo // Ideally we'd only set the state that has changed // since the glPushAttrib() - revisit - State::Fog::set(ctx->dispatchGL); + State::Fog::set(ctx->emu.curr); mask &= ~GL_FOG_BIT; } @@ -522,7 +522,7 @@ struct Ppa : public State::Stencil, State::Depth, State::Polygon, State::Transfo // Ideally we'd only set the state that has changed // since the glPushAttrib() - revisit - State::Point::set(ctx->dispatchGL); + State::Point::set(ctx->emu.curr); mask &= ~GL_POINT_BIT; } @@ -538,7 +538,7 @@ struct Ppa : public State::Stencil, State::Depth, State::Polygon, State::Transfo // Ideally we'd only set the state that has changed // since the glPushAttrib() - revisit - State::PolygonStipple::set(ctx->dispatchGL); + State::PolygonStipple::set(ctx->emu.curr); mask &= ~GL_POLYGON_STIPPLE_BIT; } @@ -555,8 +555,8 @@ struct Ppa : public State::Stencil, State::Depth, State::Polygon, State::Transfo // since the glPushAttrib() - revisit if (!State::ColorBuffer::fullyDefined()) - State::ColorBuffer::getUndefined(ctx->dispatchGL); - State::ColorBuffer::set(ctx->dispatchGL); + State::ColorBuffer::getUndefined(ctx->emu.curr); + State::ColorBuffer::set(ctx->emu.curr); mask &= ~GL_COLOR_BUFFER_BIT; } @@ -573,8 +573,8 @@ struct Ppa : public State::Stencil, State::Depth, State::Polygon, State::Transfo // since the glPushAttrib() - revisit if (!State::PixelMode::fullyDefined()) - State::PixelMode::getUndefined(ctx->dispatchGL); - State::PixelMode::set(ctx->dispatchGL); + State::PixelMode::getUndefined(ctx->emu.curr); + State::PixelMode::set(ctx->emu.curr); mask &= ~GL_PIXEL_MODE_BIT; } @@ -590,7 +590,7 @@ struct Ppa : public State::Stencil, State::Depth, State::Polygon, State::Transfo // Ideally we'd only set the state that has changed // since the glPushAttrib() - revisit - State::Lighting::set(ctx->dispatchGL); + State::Lighting::set(ctx->emu.curr); mask &= ~GL_LIGHTING_BIT; } @@ -601,7 +601,7 @@ struct Ppa : public State::Stencil, State::Depth, State::Polygon, State::Transfo return; if (mask) - ctx->dispatchGL.glPopAttrib(); + ctx->emu.curr.glPopAttrib(); } } @@ -749,7 +749,7 @@ struct Ppa : public State::Stencil, State::Depth, State::Polygon, State::Transfo if ( index < array_size( State::ColorBuffer::drawBuffers )) { if (!State::ColorBuffer::fullyDefined()) - State::ColorBuffer::getUndefined(ctx->dispatchGL); + State::ColorBuffer::getUndefined(ctx->emu.curr); RegalAssertArrayIndex( State::ColorBuffer::drawBuffers, index ); params[0] = static_cast(State::ColorBuffer::drawBuffers[index]); } @@ -976,7 +976,7 @@ struct Ppa : public State::Stencil, State::Depth, State::Polygon, State::Transfo case GL_READ_BUFFER: { if (!State::PixelMode::fullyDefined()) - State::PixelMode::getUndefined(ctx->dispatchGL); + State::PixelMode::getUndefined(ctx->emu.curr); params[0] = static_cast(State::PixelMode::readBuffer); } break; @@ -1130,7 +1130,7 @@ struct Ppa : public State::Stencil, State::Depth, State::Polygon, State::Transfo if (index < ctx->emuInfo->gl_max_viewports) { if (!State::Scissor::fullyDefined()) - State::Scissor::getUndefined(ctx->dispatchGL); + State::Scissor::getUndefined(ctx->emu.curr); params[0] = static_cast(State::Scissor::scissorBox[index][0]); params[1] = static_cast(State::Scissor::scissorBox[index][1]); params[2] = static_cast(State::Scissor::scissorBox[index][2]); @@ -1142,7 +1142,7 @@ struct Ppa : public State::Stencil, State::Depth, State::Polygon, State::Transfo if (index < ctx->emuInfo->gl_max_viewports) { if (!State::Viewport::fullyDefined()) - State::Viewport::getUndefined(ctx->dispatchGL); + State::Viewport::getUndefined(ctx->emu.curr); params[0] = static_cast(State::Viewport::viewport[index][0]); params[1] = static_cast(State::Viewport::viewport[index][1]); params[2] = static_cast(State::Viewport::viewport[index][2]); diff --git a/src/regal/RegalPpca.h b/src/regal/RegalPpca.h index 62ace76..490c6d3 100644 --- a/src/regal/RegalPpca.h +++ b/src/regal/RegalPpca.h @@ -143,7 +143,7 @@ struct Ppca : public ClientState::VertexArray, ClientState::PixelStore return; if (mask) - ctx.dispatchGL.glPushClientAttrib(mask); + ctx.emu.curr.glPushClientAttrib(mask); } void glPopClientAttrib(RegalContext &ctx) @@ -164,7 +164,7 @@ struct Ppca : public ClientState::VertexArray, ClientState::PixelStore if (mask&GL_CLIENT_VERTEX_ARRAY_BIT) { RegalAssert(vertexArrayStack.size()); - ClientState::VertexArray::transition(ctx.dispatchGL, vertexArrayStack.back(), driverAllowsVertexAttributeArraysWithoutBoundBuffer); + ClientState::VertexArray::transition(ctx.emu.curr, vertexArrayStack.back(), driverAllowsVertexAttributeArraysWithoutBoundBuffer); vertexArrayStack.pop_back(); Internal("Regal::Ppca::PopClientAttrib GL_CLIENT_VERTEX_ARRAY_BIT ",ClientState::VertexArray::toString()); @@ -175,7 +175,7 @@ struct Ppca : public ClientState::VertexArray, ClientState::PixelStore if (mask&GL_CLIENT_PIXEL_STORE_BIT) { RegalAssert(pixelStoreStack.size()); - ClientState::PixelStore::transition(ctx.dispatchGL, pixelStoreStack.back()); + ClientState::PixelStore::transition(ctx.emu.curr, pixelStoreStack.back()); pixelStoreStack.pop_back(); Internal("Regal::Ppca::PopClientAttrib GL_CLIENT_PIXEL_STORE_BIT ",ClientState::PixelStore::toString()); @@ -189,7 +189,7 @@ struct Ppca : public ClientState::VertexArray, ClientState::PixelStore return; if (mask) - ctx.dispatchGL.glPopClientAttrib(); + ctx.emu.curr.glPopClientAttrib(); } void glClientAttribDefaultEXT(RegalContext &ctx, GLbitfield mask) @@ -202,7 +202,7 @@ struct Ppca : public ClientState::VertexArray, ClientState::PixelStore // Ideally we'd only set the state that has changed - revisit - ClientState::VertexArray::set(ctx.dispatchGL,driverAllowsVertexAttributeArraysWithoutBoundBuffer); + ClientState::VertexArray::set(ctx.emu.curr,driverAllowsVertexAttributeArraysWithoutBoundBuffer); mask &= ~GL_CLIENT_VERTEX_ARRAY_BIT; } @@ -215,7 +215,7 @@ struct Ppca : public ClientState::VertexArray, ClientState::PixelStore // Ideally we'd only set the state that has changed - revisit - ClientState::PixelStore::set(ctx.dispatchGL); + ClientState::PixelStore::set(ctx.emu.curr); mask &= ~GL_CLIENT_PIXEL_STORE_BIT; } @@ -226,7 +226,7 @@ struct Ppca : public ClientState::VertexArray, ClientState::PixelStore return; if (mask) - ctx.dispatchGL.glClientAttribDefaultEXT(mask); + ctx.emu.curr.glClientAttribDefaultEXT(mask); } void glPushClientAttribDefaultEXT(RegalContext &ctx, GLbitfield mask) diff --git a/src/regal/RegalQuads.cpp b/src/regal/RegalQuads.cpp index 91342f7..aca2171 100644 --- a/src/regal/RegalQuads.cpp +++ b/src/regal/RegalQuads.cpp @@ -95,7 +95,7 @@ namespace Emu void Quads::Init(RegalContext &ctx) { elementArrayBuffer = 0; - Dispatch::GL & dt = ctx.dispatchGL; + Dispatch::GL & dt = ctx.emu.curr; dt.glGenBuffers(1, &quadIndexBuffer); windingMode = GL_CCW; frontFaceMode = backFaceMode = GL_FILL; @@ -178,7 +178,7 @@ bool Quads::glDrawArrays(RegalContext *ctx, GLenum mode, GLint first, GLsizei co Internal("Regal::Emu::Quads: drawLines =", drawLines); Internal("Regal::Emu::Quads: drawPoints =", drawPoints); - Dispatch::GL &dt = ctx->dispatchGL; + Dispatch::GL &dt = ctx->emu.curr; #define EMU_QUADS_BUFFER_SIZE 1024 diff --git a/src/regal/RegalRect.h b/src/regal/RegalRect.h index b342e97..450f0fa 100644 --- a/src/regal/RegalRect.h +++ b/src/regal/RegalRect.h @@ -102,7 +102,7 @@ struct Rect if (ctx->depthBeginEnd) return; - Dispatch::GL &dt = ctx->dispatchGL; + Dispatch::GL &dt = ctx->emu.curr; // incrementing context->depthBeginEnd here avoids an assert in log_glBegin and // also keeps the log indentation as it should be diff --git a/src/regal/RegalSo.cpp b/src/regal/RegalSo.cpp index 542d535..8a2843f 100644 --- a/src/regal/RegalSo.cpp +++ b/src/regal/RegalSo.cpp @@ -121,7 +121,7 @@ So::BindSampler(GLuint unit, GLuint so) void So::GenTextures(RegalContext &ctx, GLsizei count, GLuint *textures) { - ctx.dispatchGL.glGenTextures(count, textures); + ctx.emu.curr.glGenTextures(count, textures); for (GLsizei ii=0; iidispatchGL; + Dispatch::GL & tbl = ctx->emu.curr; for (GLsizei i = 0; i < levels; i++) { tbl.glTexImage1D( target, i, internalformat, width, 0, GL_RGBA, GL_UNSIGNED_BYTE, NULL); @@ -105,7 +105,7 @@ namespace Emu { void TextureStorage( RegalContext * ctx, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height ) { - Dispatch::GL & tbl = ctx->dispatchGL; + Dispatch::GL & tbl = ctx->emu.curr; for (GLsizei i = 0; i < levels; i++) { if (target == GL_TEXTURE_CUBE_MAP) @@ -131,7 +131,7 @@ namespace Emu { void TextureStorage( RegalContext * ctx, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth ) { - Dispatch::GL & tbl = ctx->dispatchGL; + Dispatch::GL & tbl = ctx->emu.curr; for (GLsizei i = 0; i < levels; i++) { tbl.glTexImage3D( target, i, internalformat, width, height, depth, 0, GL_RGBA, GL_UNSIGNED_BYTE, NULL); @@ -152,7 +152,7 @@ namespace Emu { if (pname != GL_TEXTURE_IMMUTABLE_FORMAT) return false; - Dispatch::GL & tbl = ctx->dispatchGL; + Dispatch::GL & tbl = ctx->emu.curr; GLint id; tbl.glGetIntegerv( BindingFromTarget(target), &id ); diff --git a/src/regal/RegalVao.h b/src/regal/RegalVao.h index 3ea4d64..7dda280 100644 --- a/src/regal/RegalVao.h +++ b/src/regal/RegalVao.h @@ -168,9 +168,9 @@ struct Vao if( ctx.info->core ) { maxName = 1; - ctx.dispatchGL.glGenVertexArrays( 1, & coreVao ); + ctx.emu.curr.glGenVertexArrays( 1, & coreVao ); RegalAssert( coreVao != 0 ); - ctx.dispatchGL.glBindVertexArray( coreVao ); + ctx.emu.curr.glBindVertexArray( coreVao ); } else coreVao = 0; @@ -213,7 +213,7 @@ struct Vao { maxName = current; } - Dispatch::GL &tbl = ctx.dispatchGL; + Dispatch::GL &tbl = ctx.emu.curr; tbl.glBindBuffer( GL_ARRAY_BUFFER, vao.vertexBuffer ); tbl.glBindBuffer( GL_ELEMENT_ARRAY_BUFFER, vao.indexBuffer ); GLuint lastBuffer = vao.vertexBuffer; @@ -289,7 +289,7 @@ struct Vao if (index >= max_vertex_attribs || index >= REGAL_EMU_MAX_VERTEX_ATTRIBS) return; - Dispatch::GL &tbl = ctx.dispatchGL; + Dispatch::GL &tbl = ctx.emu.curr; Array &a = objects[current].a[index]; a.enabled = enable; if( a.enabled == GL_TRUE ) @@ -400,7 +400,7 @@ struct Vao RegalAssert( a.buffer == 0 || GLuint64( a.pointer ) < ( 1 << 22 ) ); - ctx.dispatchGL.glVertexAttribPointer( index, size, type, normalized, stride, pointer ); + ctx.emu.curr.glVertexAttribPointer( index, size, type, normalized, stride, pointer ); } void Validate( RegalContext &ctx ) diff --git a/src/regal/RegalXfer.cpp b/src/regal/RegalXfer.cpp index 2358e36..fd1e6c8 100644 --- a/src/regal/RegalXfer.cpp +++ b/src/regal/RegalXfer.cpp @@ -127,7 +127,7 @@ namespace Emu { Internal("Regal::Xfer::SubImage2D","ctx=",ctx," target=",Token::GLenumToString(target)," internalFormat=",Token::GLenumToString(internalFormat)," level=",level," format=",Token::GLenumToString(format)," type=",Token::GLenumToString(type)); RegalAssert(ctx); - Dispatch::GL & tbl = ctx->dispatchGL; + Dispatch::GL & tbl = ctx->emu.curr; int complex = 0; int tgttype = 0; if ( format == GL_RGBA8 ) { @@ -269,7 +269,7 @@ namespace Emu { Internal("Regal::Xfer::CompressedSubImage2D","target=", Token::GLenumToString(target), " level=", level, " format=", Token::GLenumToString(format)); RegalAssert(ctx); - Dispatch::GL & tbl = ctx->dispatchGL; + Dispatch::GL & tbl = ctx->emu.curr; #if !REGAL_NO_SQUISH if( ShouldDecompress( ctx, format ) ) @@ -339,7 +339,7 @@ void Xfer::TexImage2D( RegalContext * ctx, GLenum target, GLint level, GLint int { Internal("Regal::Xfer::TexImage2D","ctx=",ctx," target=",Token::GLenumToString(target)," level=",level," internalFormat=",Token::GLenumToString(internalFormat)); RegalAssert(ctx); - Dispatch::GL &tbl = ctx->dispatchGL; + Dispatch::GL &tbl = ctx->emu.curr; if (ctx->isCore() || ctx->isES2()) { @@ -422,7 +422,7 @@ void Xfer::CompressedTexImage2D( RegalContext * ctx, GLenum target, GLint level, " format=", Token::GLenumToString(internalFormat)); RegalAssert(ctx); - Dispatch::GL & tbl = ctx->dispatchGL; + Dispatch::GL & tbl = ctx->emu.curr; if( ShouldDecompress( ctx, internalFormat ) ) { Internal("Regal::Xfer::CompressedTexImage2D","decompressing texture data"); GLenum ifmt = GL_RGBA;