From: Brian Date: Tue, 17 Apr 2007 14:29:37 +0000 (-0600) Subject: don't set GL_TEXTURE_MAX_LEVEL for GL_TEXTURE_RECTANGLE_ARB as that generates an... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=41fc55dd81ebf1def2d4a8df8fee849d6e97eaab;p=mesa.git don't set GL_TEXTURE_MAX_LEVEL for GL_TEXTURE_RECTANGLE_ARB as that generates an error --- diff --git a/src/mesa/main/attrib.c b/src/mesa/main/attrib.c index 0df8d230500..e2cfb8a1f66 100644 --- a/src/mesa/main/attrib.c +++ b/src/mesa/main/attrib.c @@ -765,7 +765,8 @@ pop_texture_group(GLcontext *ctx, const struct gl_texture_attrib *texAttrib) _mesa_TexParameterf(target, GL_TEXTURE_MIN_LOD, obj->MinLod); _mesa_TexParameterf(target, GL_TEXTURE_MAX_LOD, obj->MaxLod); _mesa_TexParameteri(target, GL_TEXTURE_BASE_LEVEL, obj->BaseLevel); - _mesa_TexParameteri(target, GL_TEXTURE_MAX_LEVEL, obj->MaxLevel); + if (target != GL_TEXTURE_RECTANGLE_ARB) + _mesa_TexParameteri(target, GL_TEXTURE_MAX_LEVEL, obj->MaxLevel); if (ctx->Extensions.EXT_texture_filter_anisotropic) { _mesa_TexParameterf(target, GL_TEXTURE_MAX_ANISOTROPY_EXT, obj->MaxAnisotropy);