From: Mikko Juola Date: Tue, 30 Jul 2013 17:39:00 +0000 (+0300) Subject: mesa: fix multisampling proxy textures not being queryable X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8624a514c21e00ec51d4d9d2f4aee315378357ae;p=mesa.git mesa: fix multisampling proxy textures not being queryable The code that checks if some texture target is valid for glGetTexLevelParameter*() was not programmed to check for multisampling proxy textures. This made it impossible(?) to use the proxy textures for their intended purpose as glGetTexLevelParameter*() would just fail on you. Reviewed-by: Brian Paul Cc: mesa-stable@lists.freedesktop.org --- diff --git a/src/mesa/main/texparam.c b/src/mesa/main/texparam.c index 141cbe3ab33..32109951cb5 100644 --- a/src/mesa/main/texparam.c +++ b/src/mesa/main/texparam.c @@ -1048,6 +1048,8 @@ legal_get_tex_level_parameter_target(struct gl_context *ctx, GLenum target) return ctx->API == API_OPENGL_CORE && ctx->Version >= 31; case GL_TEXTURE_2D_MULTISAMPLE: case GL_TEXTURE_2D_MULTISAMPLE_ARRAY: + case GL_PROXY_TEXTURE_2D_MULTISAMPLE: + case GL_PROXY_TEXTURE_2D_MULTISAMPLE_ARRAY: return ctx->Extensions.ARB_texture_multisample; default: return GL_FALSE;