From: Sean D'Epagnier Date: Tue, 21 Nov 2006 08:48:44 +0000 (+0000) Subject: glTexCoord3dv was not using third coordinate X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0337e5635f8d18fdf9dac734141e5302db6d1d49;p=mesa.git glTexCoord3dv was not using third coordinate --- diff --git a/src/mesa/main/api_loopback.c b/src/mesa/main/api_loopback.c index 51d5af6f5f0..717ef1fc8f0 100644 --- a/src/mesa/main/api_loopback.c +++ b/src/mesa/main/api_loopback.c @@ -510,7 +510,7 @@ loopback_TexCoord2sv( const GLshort *v ) static void GLAPIENTRY loopback_TexCoord3dv( const GLdouble *v ) { - TEXCOORD2((GLfloat) v[0],(GLfloat) v[1]); + TEXCOORD3((GLfloat) v[0],(GLfloat) v[1],(GLfloat) v[2]); } static void GLAPIENTRY