问题 Closed. This question needs debugging details. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . Improve this question I am trying to texture a glutSolidTorus() . Here is my code: glColor3f(1.0f, 1.0f, 1.0f); glEnable(GL_TEXTURE_2D); glBindTexture(GL_TEXTURE_2D, tiring); glutSolidTorus(.55, 1.8, 25, 25); glDisable(GL_TEXTURE_2D); But it does not work. How can I texture glutSolidTorus() ? 回答1: