Hi,
I have a question about the glut functions in opengl.
For example, glutSolidTeapot (GLdouble size)
Can anyone tell me if the rendered teapot can be textured and how?
I applied textures on gluCylinder or gluSphere very easily :
GLUquadricObj *quadratic; // Storage For Our Quadratic Objects
quadratic=gluNewQuadric(); // Create A Pointer To The Quadric Object
gluQuadricDrawStyle (quadratic, GLU_FILL);
gluQuadricNormals(quadratic, GLU_SMOOTH); // Create Smooth Normals
[B] gluQuadricTexture(quadratic, GL_TRUE); [/B] // Create Texture Coords
glBindTexture(GL_TEXTURE_2D,m_textureNames[0]);
gluSphere(quadratic,radium,32,32);
So i created texture coords with the glu functions, but on the glut teapot i don't know how to do it because glut doesn't contain such options:(
Thanks in advance for your help.