Changeset 9182 in orxonox.OLD for branches/presentation/src/world_entities/skydome.cc
- Timestamp:
- Jul 5, 2006, 3:19:43 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/presentation/src/world_entities/skydome.cc
r9154 r9182 99 99 glDisable(GL_LIGHTING); 100 100 glDisable(GL_BLEND); 101 glDisable(GL_FOG); 101 102 102 103 glEnable(GL_TEXTURE_3D); … … 108 109 glTranslatef(0.0f,pRadius,0.0f); 109 110 110 111 111 glBegin(GL_TRIANGLES); 112 113 112 for (int i=0; i < numIndices; i++) 114 113 { … … 118 117 glVertex3f(planeVertices[indices[i]].x, planeVertices[indices[i]].y, planeVertices[indices[i]].z); 119 118 } 120 121 119 glEnd(); 120 121 WorldEntity::draw(); 122 122 123 123 glPopMatrix();
Note: See TracChangeset
for help on using the changeset viewer.