Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 9182 in orxonox.OLD for branches/presentation/src/world_entities


Ignore:
Timestamp:
Jul 5, 2006, 3:19:43 AM (18 years ago)
Author:
amaechler
Message:

fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/presentation/src/world_entities/skydome.cc

    r9154 r9182  
    9999  glDisable(GL_LIGHTING);
    100100  glDisable(GL_BLEND);
     101  glDisable(GL_FOG);
    101102
    102103  glEnable(GL_TEXTURE_3D);
     
    108109  glTranslatef(0.0f,pRadius,0.0f);
    109110
    110 
    111111  glBegin(GL_TRIANGLES);
    112 
    113112  for (int i=0; i < numIndices; i++)
    114113  {
     
    118117    glVertex3f(planeVertices[indices[i]].x, planeVertices[indices[i]].y, planeVertices[indices[i]].z);
    119118  }
    120 
    121119  glEnd();
     120
     121  WorldEntity::draw();
    122122
    123123  glPopMatrix();
Note: See TracChangeset for help on using the changeset viewer.