Add RegalPlugin private API for plugin dispatch layers to call back into Regal. Resolve snappy library Windows compilation warnings. Improvements for filtering emulation. Support EXT_framebuffer_object on ES 2
48 lines
983 B
Python
48 lines
983 B
Python
#!/usr/bin/python -B
|
|
|
|
formulae = {
|
|
|
|
# GLX
|
|
|
|
'glXCreateNewContext' : {
|
|
'entries' : [ 'glXCreateNewContext' ],
|
|
'suffix' : [
|
|
'if (ret && share_list)',
|
|
' Init::shareContext(ret,share_list);'
|
|
]
|
|
},
|
|
|
|
'glXCreateContext' : {
|
|
'entries' : [ 'glXCreateContext' ],
|
|
'suffix' : [
|
|
'if (ret && shareList)',
|
|
' Init::shareContext(ret,shareList);'
|
|
]
|
|
},
|
|
|
|
'glXCreateContextAttribsARB' : {
|
|
'entries' : [ 'glXCreateContextAttribsARB' ],
|
|
'suffix' : [
|
|
'if (ret && share_context)',
|
|
' Init::shareContext(ret,share_context);'
|
|
]
|
|
},
|
|
|
|
# WGL
|
|
|
|
'wglCreateContextAttribsARB' : {
|
|
'entries' : [ 'wglCreateContextAttribsARB' ],
|
|
'suffix' : [
|
|
'if (ret && hShareContext)',
|
|
' Init::shareContext(ret,hShareContext);'
|
|
]
|
|
},
|
|
|
|
'wglShareLists' : {
|
|
'entries' : [ 'wglShareLists' ],
|
|
'suffix' : [
|
|
'if (ret && hglrcShare && hglrcSrc)',
|
|
' Init::shareContext(hglrcShare,hglrcSrc);'
|
|
]
|
|
},
|
|
}
|