Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3339 in orxonox.OLD for orxonox/branches/parenting/src/world.cc


Ignore:
Timestamp:
Jan 5, 2005, 4:16:14 AM (19 years ago)
Author:
patrick
Message:

orxonox/branches/parenting: some little changes of the LoadScreen, delay and Mipmaping filter

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/parenting/src/world.cc

    r3338 r3339  
    217217  /* Build Mipmaps (builds different versions of the picture for distances - looks better) */
    218218  gluBuild2DMipmaps (GL_TEXTURE_2D, 3, pBitmap[0]->w, pBitmap[0]->h, GL_RGB, GL_UNSIGNED_BYTE, newData);
    219   //glTexParameteri (GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);   
     219  glTexParameteri (GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);   
    220220  glTexParameteri (GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR_MIPMAP_NEAREST);
    221221
     
    270270  glDisable (GL_TEXTURE_2D);
    271271  glDeleteTextures (1, &textureArray[textureID]);
    272   SDL_Delay (5000);
     272  SDL_Delay (1000);
    273273  printf ("World::displayLoadScreen - end\n");
    274274}
Note: See TracChangeset for help on using the changeset viewer.