Hi All!
I use this code:
Qt Code:
  1. ...
  2. GLUquadric *quadObj = gluNewQuadric();
  3. gluQuadricTexture( quadObj, GL_TRUE );
  4. gluQuadricDrawStyle( quadObj, GLU_FILL );
  5. gluQuadricNormals( quadObj, GLU_SMOOTH );
  6.  
  7. glPushMatrix();
  8. glBindTexture( GL_TEXTURE_2D, text[1] );
  9. glEnable( GL_TEXTURE_2D );
  10. gluDisk( quadObj, 0, radius, quad, quad );
  11. glDisable( GL_TEXTURE_2D );
  12. glPopMatrix();
To copy to clipboard, switch view to plain text mode 
When I set option glEnable( GL_CULL_FACE ) draw this:
1.jpg
Back side:
3.jpg
Texture drawing inside.
I need to draw outside:
2.jpg
How can I do this?
Thanks!!!