Ignore:
Timestamp:
06/05/06 23:14:04 (18 years ago)
Author:
mattausch
Message:

added mesh instance support
improved support for occlusion queries + other extensions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/main.cpp

    r997 r1001  
    1515#include "PreprocessorThread.h" 
    1616#include "RenderSampler.h" 
     17#include "ResourceManager.h" 
    1718 
    1819#include <QApplication> 
     
    143144   
    144145 
     146  int returnCode = 0; 
     147 
    145148  if (app) 
    146         return app->exec(); 
     149         returnCode = app->exec(); 
    147150 
    148   // clean up 
     151   // clean up 
    149152  DEL_PTR(p); 
    150153  DEL_PTR(environment); 
     154  MeshManager::DelSingleton(); 
     155  MaterialManager::DelSingleton(); 
    151156 
    152   return 0; 
     157 
     158  return returnCode; 
    153159} 
    154160 
Note: See TracChangeset for help on using the changeset viewer.