Ignore:
Timestamp:
04/29/08 16:20:37 (16 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

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

    r2657 r2664  
    5454        Q_OBJECT 
    5555public: 
    56         QtGlRendererBuffer(const int w, 
    57                 const int h, 
    58                 SceneGraph *sceneGraph, 
    59                 ViewCellsManager *viewcells, 
    60                 KdTree *tree); 
    61  
    62   ~QtGlRendererBuffer() {} 
    63  
    64   virtual void MakeCurrent(); 
    65   virtual void DoneCurrent(); 
    66  
    67   virtual int GetWidth() const { return width(); } 
    68   virtual int GetHeight() const { return height(); } 
    69  
    70   int ComputePvs() const { return 0; } 
    71  
    72   void 
    73   RenderPvs(const ObjectPvs &pvs); 
    74  
    75   float 
    76   GetPixelError(int &pvsSize); 
    77    
    78   int ComputePvs(ObjectContainer &objects, ObjectContainer &pvs) const; 
    79       
    80    
    81    
    82    
     56        QtGlRendererBuffer(int w, int h, 
     57                                           SceneGraph *sceneGraph, 
     58                                           ViewCellsManager *viewcells, 
     59                                           KdTree *tree); 
     60 
     61        ~QtGlRendererBuffer() {} 
     62 
     63        virtual void MakeCurrent(); 
     64        virtual void DoneCurrent(); 
     65 
     66        virtual int GetWidth() const { return width(); } 
     67        virtual int GetHeight() const { return height(); } 
     68 
     69        int ComputePvs() const { return 0; } 
     70 
     71        void RenderPvs(const ObjectPvs &pvs); 
     72 
     73        float GetPixelError(int &pvsSize); 
     74 
     75        int ComputePvs(ObjectContainer &objects, ObjectContainer &pvs) const; 
     76 
    8377public: 
    84   signals: 
    85   void UpdatePvsErrorItem(int i, GlRendererBuffer::PvsErrorEntry &); 
     78 
     79signals: 
     80        void UpdatePvsErrorItem(int i, GlRendererBuffer::PvsErrorEntry &); 
    8681}; 
    8782 
Note: See TracChangeset for help on using the changeset viewer.