Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4065 in orxonox.OLD


Ignore:
Timestamp:
May 5, 2005, 7:41:21 PM (19 years ago)
Author:
patrick
Message:

branches/md2_importer: just creted the files, started implementing a fps counter

Location:
orxonox/branches/md2_loader/src
Files:
2 added
6 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/md2_loader/src/Makefile.am

    r4063 r4065  
    7070                 lib/graphics/importer/array.cc \
    7171                 lib/graphics/importer/objModel.cc \
     72                 lib/graphics/importer/md2Model.cc \
    7273                 lib/graphics/importer/primitive_model.cc \
    7374                 lib/graphics/importer/model.cc \
     
    137138                 lib/graphics/light.h \
    138139                 lib/graphics/text_engine.h \
     140                 lib/graphics/importer/array.h \
     141                 lib/graphics/importer/abstract_model.h \
     142                 lib/graphics/importer/objModel.h \
     143                 lib/graphics/importer/md2Model.h \
     144                 lib/graphics/importer/primitive_model.h \
     145                 lib/graphics/importer/model.h \
     146                 lib/graphics/importer/material.h \
     147                 lib/graphics/importer/texture.h \
    139148                 lib/graphics/particles/particle_engine.h \
    140149                 lib/graphics/particles/particle_system.h \
  • orxonox/branches/md2_loader/src/lib/graphics/graphics_engine.cc

    r3844 r4065  
    262262      PRINT(0)(" |  %d x %d\n", this->videoModes[i]->w, this->videoModes[i]->h);
    263263  }
    264  
    265 }
     264}
     265 
     266void GraphicsEngine::displayFPS(bool dislay)
     267{
     268        PRINTF(4)("");
     269       
     270       
     271}
     272
     273 
  • orxonox/branches/md2_loader/src/lib/graphics/graphics_engine.h

    r3844 r4065  
    4444  static GLdouble projMat[16];
    4545  static GLint viewPort[4];
    46 
     46 
     47  void displayFPS(bool dislay);
    4748
    4849
  • orxonox/branches/md2_loader/src/lib/graphics/importer/Makefile.am

    r3907 r4065  
    3232                  model.cc \
    3333                  objModel.cc \
     34                  md2Model.cc \
    3435                  primitive_model.cc \
    3536                  array.cc \
     
    4647noinst_HEADERS= framework.h \
    4748                windowHandler.h \
     49                abstract_model.h \
    4850                model.h \
    4951                objModel.h \
     52                md2Model.h \
    5053                primitive_model.h \
    5154                array.h \
  • orxonox/branches/md2_loader/src/lib/graphics/importer/model.h

    r4063 r4065  
    99#include "material.h"
    1010#include "glincl.h"
     11
    1112
    1213// FORWARD DEFINITION //
  • orxonox/branches/md2_loader/src/util/resource_manager.cc

    r4063 r4065  
    2020// different resource Types
    2121#include "objModel.h"
     22#include "md2Model.h"
    2223#include "primitive_model.h"
    2324#include "texture.h"
Note: See TracChangeset for help on using the changeset viewer.