Initial scaffolding for GLX emulation on EGL/WGL/CGL. Ppca refinements. Add GL_NV_blend_equation_advanced and GL_NV_blend_equation_advanced_coherent support. RegalX11.cpp added for fake X11 purposes for GLX emulation. GLEW refresh. Fixups for REGAL_SYS_EMSCRIPTEN_STATIC mode.
13 lines
374 B
Python
13 lines
374 B
Python
#!/usr/bin/python -B
|
|
|
|
debugDispatchFormulae = {
|
|
'MatrixMode' : {
|
|
'entries' : [ 'glMatrixMode' ],
|
|
'prefix' : [ '_context->dbg->MatrixMode( _context, ${arg0plus} );', ],
|
|
},
|
|
'ClientActiveTexture' : {
|
|
'entries' : [ 'gl(Client|)(ActiveTexture)(ARB|)' ],
|
|
'prefix' : [ '_context->dbg->${m1}${m2}( _context, ${arg0plus} );', ],
|
|
},
|
|
}
|
|
|