mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 13:48:06 +02:00
mesa: Allows querying GL_SAMPLER_BINDING on GLES3 profile
From GLES3 specification (page 123), "The currently bound sampler may be queried by calling GetIntegerv with pname set to SAMPLER_BINDINGGL_SAMPLER_BINDING". Fixes 4 dEQP tests: * dEQP-GLES3.functional.state_query.integers.sampler_binding_getboolean * dEQP-GLES3.functional.state_query.integers.sampler_binding_getinteger * dEQP-GLES3.functional.state_query.integers.sampler_binding_getinteger64 * dEQP-GLES3.functional.state_query.integers.sampler_binding_getfloat Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
This commit is contained in:
parent
719e3f016e
commit
f408c333e2
1 changed files with 5 additions and 4 deletions
|
|
@ -403,6 +403,11 @@ descriptor=[
|
|||
[ "TEXTURE_EXTERNAL_OES", "LOC_CUSTOM, TYPE_BOOLEAN, 0, extra_OES_EGL_image_external" ],
|
||||
]},
|
||||
|
||||
{ "apis": ["GL", "GL_CORE", "GLES3"], "params": [
|
||||
# GL_ARB_sampler_objects / GL 3.3 / GLES 3.0
|
||||
[ "SAMPLER_BINDING", "LOC_CUSTOM, TYPE_INT, GL_SAMPLER_BINDING, NO_EXTRA" ],
|
||||
]},
|
||||
|
||||
# Remaining enums are only in OpenGL
|
||||
{ "apis": ["GL", "GL_CORE"], "params": [
|
||||
[ "ACCUM_RED_BITS", "BUFFER_INT(Visual.accumRedBits), NO_EXTRA" ],
|
||||
|
|
@ -695,10 +700,6 @@ descriptor=[
|
|||
[ "SAMPLE_MASK", "CONTEXT_BOOL(Multisample.SampleMask), extra_ARB_texture_multisample" ],
|
||||
[ "MAX_SAMPLE_MASK_WORDS", "CONST(1), extra_ARB_texture_multisample" ],
|
||||
|
||||
|
||||
# GL_ARB_sampler_objects / GL 3.3
|
||||
[ "SAMPLER_BINDING", "LOC_CUSTOM, TYPE_INT, GL_SAMPLER_BINDING, NO_EXTRA" ],
|
||||
|
||||
# GL 3.0
|
||||
[ "CONTEXT_FLAGS", "CONTEXT_INT(Const.ContextFlags), extra_version_30" ],
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue