Ignore:
Timestamp:
01/16/08 23:32:51 (16 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/QtInterface/QtGlRenderer.h

    r2591 r2604  
    1414#include "QtPreprocessorThread.h" 
    1515#include "LogReader.h" 
     16#include "Material.h" 
     17 
    1618 
    1719 
     
    127129  void SetShowRenderCost(bool); 
    128130  void SetShowPvsSizes(bool); 
     131  void SetShowWireFrame(bool); 
    129132  void SetShowPiercingRays(bool); 
    130133  void SetShowWeightedRays(bool); 
    131    void SetShowComparison(bool); 
     134  void SetShowComparison(bool); 
    132135  void SetShowWeightedCost(bool); 
    133136  
     
    176179        bool mShowPiercingRays; 
    177180        bool mShowWeightedRays; 
     181        bool mUseStandardColors; 
    178182        bool mShowRays; 
    179183 
     
    215219 
    216220        ViewCellInfoContainer mCompareInfo; 
     221 
     222        vector<RgbColor> mColors; 
     223 
     224        bool mUseRandomColorPerPvsObject; 
    217225 
    218226        QtGlRendererWidget(SceneGraph *sceneGraph, 
     
    392400                updateGL(); 
    393401        } 
     402 
     403        void SetShowWireFrame(bool b) { 
     404                mUseStandardColors = b; 
     405                updateGL(); 
     406        } 
     407         
    394408 
    395409        void SetShowWeightedRays(bool b) { 
Note: See TracChangeset for help on using the changeset viewer.