diff options
author | Ilia Mirkin <[email protected]> | 2016-02-11 15:30:35 -0500 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2016-02-13 23:41:28 -0500 |
commit | 6411444c364f67a4a597f8e025c9025440aa054a (patch) | |
tree | 24eb71a84f4dd8dbfed82828cf00146894a0e556 /src/mesa/main/texparam.c | |
parent | 7410c609882f490e62b86a261df860a56379be96 (diff) |
mesa: default FixedSampleLocations to true when using a dummy image
GL_ARB_texture_multisample and GLES 3.1 expect the initial value to be
GL_TRUE. This fixes
dEQP-GLES31.functional.state_query.texture_level.texture_2d_multisample_array.fixed_sample_locations_integer
and a few related tests.
Signed-off-by: Ilia Mirkin <[email protected]>
Reviewed-by: Chris Forbes <[email protected]>
Diffstat (limited to 'src/mesa/main/texparam.c')
-rw-r--r-- | src/mesa/main/texparam.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/texparam.c b/src/mesa/main/texparam.c index 614c1eef504..260b3c32887 100644 --- a/src/mesa/main/texparam.c +++ b/src/mesa/main/texparam.c @@ -1310,6 +1310,7 @@ get_tex_level_parameter_image(struct gl_context *ctx, dummy_image.TexFormat = MESA_FORMAT_NONE; dummy_image.InternalFormat = GL_RGBA; dummy_image._BaseFormat = GL_NONE; + dummy_image.FixedSampleLocations = GL_TRUE; img = &dummy_image; } |