From: Brian Date: Fri, 13 Jul 2007 03:32:35 +0000 (-0600) Subject: fix width/depth mix-up (bug 11577) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7c4c82fc6d5301e27643868517aeb23fcb5c40e6;p=mesa.git fix width/depth mix-up (bug 11577) --- diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c index 1656b228b9b..3420d8e2baf 100644 --- a/src/mesa/main/teximage.c +++ b/src/mesa/main/teximage.c @@ -1476,7 +1476,7 @@ texture_error_check( GLcontext *ctx, GLenum target, if (target == GL_PROXY_TEXTURE_1D || target == GL_TEXTURE_1D) { proxy_target = GL_PROXY_TEXTURE_1D; height = 1; - width = 1; + depth = 1; } else { _mesa_error( ctx, GL_INVALID_ENUM, "glTexImage1D(target)" );