mesa: Disallow CopyTexSubImage on stencil formats in ES.

Fixes
- ES31-CTS.gtf.GL31Tests.texture_stencil8.texture_stencil8
- ES31-CTS.gtf.GL31Tests.texture_stencil8.texture_stencil8_multisample

Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
Reviewed-by: Brian Paul <brianp@vmware.com>
Reviewed-by: Chris Forbes <chrisf@ijw.co.nz>
This commit is contained in:
Kenneth Graunke 2016-04-26 02:29:44 -07:00
parent 1e44599a43
commit 027c6c1222
1 changed files with 9 additions and 0 deletions

View File

@ -2530,6 +2530,15 @@ copytexsubimage_error_check(struct gl_context *ctx, GLuint dimensions,
}
}
/* In the ES 3.2 specification's Table 8.13 (Valid CopyTexImage source
* framebuffer/destination texture base internal format combinations),
* all the entries for stencil are left blank (unsupported).
*/
if (_mesa_is_gles(ctx) && _mesa_is_stencil_format(texImage->_BaseFormat)) {
_mesa_error(ctx, GL_INVALID_OPERATION, "%s(stencil disallowed)", caller);
return GL_TRUE;
}
/* if we get here, the parameters are OK */
return GL_FALSE;
}