From: Marta Lofstedt Date: Mon, 10 Aug 2015 10:48:11 +0000 (+0300) Subject: mesa/es3.1: Allow Multisampled FrameBufferTextures X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=08f2dfe3430789085c165ce7c546d5afd2e295c2;p=mesa.git mesa/es3.1: Allow Multisampled FrameBufferTextures GLES 3.1 must be allowed to use multisampled framebuffer textures. Signed-off-by: Marta Lofstedt Reviewed-by: Tapani Pälli --- diff --git a/src/mesa/main/fbobject.c b/src/mesa/main/fbobject.c index cc342c23c03..841834030df 100644 --- a/src/mesa/main/fbobject.c +++ b/src/mesa/main/fbobject.c @@ -2944,8 +2944,9 @@ check_textarget(struct gl_context *ctx, int dims, GLenum target, break; case GL_TEXTURE_2D_MULTISAMPLE: case GL_TEXTURE_2D_MULTISAMPLE_ARRAY: - err = _mesa_is_gles(ctx) - || !ctx->Extensions.ARB_texture_multisample; + err = (_mesa_is_gles(ctx) || + !ctx->Extensions.ARB_texture_multisample) && + !_mesa_is_gles31(ctx); break; default: err = true;