diff options
author | Sean D'Epagnier <geckosenator@freedesktop.org> | 2006-11-21 08:48:44 +0000 |
---|---|---|
committer | Sean D'Epagnier <geckosenator@freedesktop.org> | 2006-11-21 08:48:44 +0000 |
commit | 0337e5635f8d18fdf9dac734141e5302db6d1d49 (patch) | |
tree | 79b3ee267b091abcc3503a2f7695dc5987a5397c /src/mesa/main/api_loopback.c | |
parent | 25e495d6050d3fbf2745ba78a85b0a68b3734d91 (diff) |
glTexCoord3dv was not using third coordinate
Diffstat (limited to 'src/mesa/main/api_loopback.c')
-rw-r--r-- | src/mesa/main/api_loopback.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/api_loopback.c b/src/mesa/main/api_loopback.c index 51d5af6f5f..717ef1fc8f 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 |