diff options
author | Marta Lofstedt <[email protected]> | 2015-05-11 15:03:53 +0200 |
---|---|---|
committer | Tapani Pälli <[email protected]> | 2015-08-03 12:31:38 +0300 |
commit | 0fe81a25f7102d78dbe8f7e89d2b024b1741da1c (patch) | |
tree | 95240a750bf01f4c9221ebfed4a47d18aac332bf /src/mesa/main/enable.c | |
parent | d74645d3acc815f6129b4cb20e6570c127d5ab2b (diff) |
mesa/es3.1: Allow enable of GL_SAMPLE_MASK
GLES 3.1 must be able to enable GL_SAMPLE_MASK.
Signed-off-by: Marta Lofstedt <[email protected]>
Reviewed-by: Tapani Pälli <[email protected]>
Diffstat (limited to 'src/mesa/main/enable.c')
-rw-r--r-- | src/mesa/main/enable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/enable.c b/src/mesa/main/enable.c index adba03576c1..42f67990784 100644 --- a/src/mesa/main/enable.c +++ b/src/mesa/main/enable.c @@ -1603,7 +1603,7 @@ _mesa_IsEnabled( GLenum cap ) /* ARB_texture_multisample */ case GL_SAMPLE_MASK: - if (!_mesa_is_desktop_gl(ctx)) + if (!_mesa_is_desktop_gl(ctx) && !_mesa_is_gles31(ctx)) goto invalid_enum_error; CHECK_EXTENSION(ARB_texture_multisample); return ctx->Multisample.SampleMask; |