Merge commit 'origin/gallium-0.1' into gallium-0.2
[mesa.git] / src / glu / mesa / quadric.c
index 5d7bc8f5c6160338e0c0b6c641667612bb176e95..0f6889b284faad5001ac6f6a4276da9657e6ff17 100644 (file)
@@ -1,4 +1,3 @@
-/* $Id: quadric.c,v 1.8 2000/07/11 14:11:04 brianp Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -401,7 +400,6 @@ gluSphere(GLUquadricObj * qobj, GLdouble radius, GLint slices, GLint stacks)
         /* draw +Z end as a triangle fan */
         glBegin(GL_TRIANGLE_FAN);
         glNormal3f(0.0, 0.0, 1.0);
-        TXTR_COORD(0.5, 1.0);
         glVertex3f(0.0, 0.0, nsign * radius);
         for (j = 0; j <= slices; j++) {
            theta = (j == slices) ? 0.0 : j * dtheta;
@@ -458,7 +456,6 @@ gluSphere(GLUquadricObj * qobj, GLdouble radius, GLint slices, GLint stacks)
         /* draw -Z end as a triangle fan */
         glBegin(GL_TRIANGLE_FAN);
         glNormal3f(0.0, 0.0, -1.0);
-        TXTR_COORD(0.5, 0.0);
         glVertex3f(0.0, 0.0, -radius * nsign);
         rho = M_PI - drho;
         s = 1.0;
@@ -470,7 +467,6 @@ gluSphere(GLUquadricObj * qobj, GLdouble radius, GLint slices, GLint stacks)
            z = nsign * cos(rho);
            if (normals)
               glNormal3f(x * nsign, y * nsign, z * nsign);
-           TXTR_COORD(s, t);
            s -= ds;
            glVertex3f(x * radius, y * radius, z * radius);
         }