Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3605 in orxonox.OLD for orxonox/branches/levelloader/src/glmenu


Ignore:
Timestamp:
Mar 18, 2005, 11:52:15 AM (20 years ago)
Author:
bensch
Message:

orxonox/trunk: merged trunk back to levelloader
merged with command:
svn merge -r 3499:HEAD trunk branches/levelloader

Conflicts in
C track_manager.h
C world_entities/player.cc
C world_entities/player.h
C world_entities/environment.h
C lib/coord/p_node.cc
C defs/debug.h
C track_manager.cc
C story_entities/campaign.h

solved in merge-favouring. It was quite easy because Chris only worked on the headers, and he didi it quite clean. Thats the spirit :)

Conflits in world.cc are a MESS: fix it

Location:
orxonox/branches/levelloader/src/glmenu
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/levelloader/src/glmenu/glmenu_imagescreen.cc

    r3499 r3605  
    1919#include "glmenu_imagescreen.h"
    2020
     21#include "stdincl.h"
    2122#include "material.h"
    2223
     
    2728GLMenuImageScreen* GLMenuImageScreen::getInstance()
    2829{
    29   if( singletonRef == NULL)
     30  if(!singletonRef)
    3031    singletonRef = new GLMenuImageScreen ();
    3132  return singletonRef;
     
    4546/**
    4647   \brief standard deconstructor
    47 
    4848   \todo this deconstructor is not jet implemented - do it
    4949*/
     
    5353    delete backMat;
    5454}
    55 
    5655
    5756/**
     
    171170  glDisable(GL_LIGHTING);
    172171
    173   backMat->select();
    174172  glBegin(GL_QUADS);
    175173  glColor3f(0.96, 0.84, 0.34);
     
    210208  glEnd();
    211209
    212   glEnable(GL_TEXTURE_2D);
     210  backMat->select();
    213211  glBegin(GL_QUADS);
    214212  glTexCoord2i(0, 0); glVertex2i(offsetX, offsetY);
  • orxonox/branches/levelloader/src/glmenu/glmenu_imagescreen.h

    r3499 r3605  
    88#define _GLMENU_IMAGESCREEN_H
    99
    10 #include "stdincl.h"
    11 class Texture;
     10#include "base_object.h"
     11
    1212class Material;
    1313
     
    1818
    1919 public:
    20   ~GLMenuImageScreen ();
    21 
     20  virtual ~GLMenuImageScreen ();
     21 
    2222  static GLMenuImageScreen* getInstance();
    2323
Note: See TracChangeset for help on using the changeset viewer.