From: Brian Paul Date: Thu, 7 Aug 2008 16:29:11 +0000 (-0600) Subject: mesa: fix glBindTexture comment/error string X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2c2d6c90fe910e9ba9f84650ce0e80c34f165eac;p=mesa.git mesa: fix glBindTexture comment/error string --- diff --git a/src/mesa/main/texobj.c b/src/mesa/main/texobj.c index b77a00dd15c..c163a8158fe 100644 --- a/src/mesa/main/texobj.c +++ b/src/mesa/main/texobj.c @@ -875,9 +875,9 @@ _mesa_BindTexture( GLenum target, GLuint texName ) if (newTexObj) { /* error checking */ if (newTexObj->Target != 0 && newTexObj->Target != target) { - /* the named texture object's dimensions don't match the target */ + /* the named texture object's target doesn't match the given target */ _mesa_error( ctx, GL_INVALID_OPERATION, - "glBindTexture(wrong dimensionality)" ); + "glBindTexture(target mismatch)" ); return; } if (newTexObj->Target == 0 && target == GL_TEXTURE_RECTANGLE_NV) {