Ignore:
Timestamp:
03/19/07 13:02:58 (17 years ago)
Author:
szirmay
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Illum/IllumModule/OgreIllumModule/include/RenderingRuns/OgrePhotonMapRenderingRun.h

    r1722 r2264  
    1414 
    1515/** 
    16         @brief ColorCubeMapRenderingRun used in an OGRE environment. 
     16        @brief PhotonMapRenderingRun used in an OGRE environment. 
    1717*/ 
    1818class OgrePhotonMapRenderingRun : public OgreRenderingRun, 
     
    2828                @param startFrame                       adds an offset to the current frame number to help evenly distribute updates between frames 
    2929                @param updateInterval           update frequency 
    30                 @param resolution                       color cubemap resolution 
    31                 @param materialName                     the name of the material should be used when rendering the choton hit map 
     30                @param resolution                       photon map resolution 
     31                @param materialName                     the name of the material should be used when rendering the photon hit map 
    3232                @param useDistance                      tells if a distance cubemap impostor should be used in photon hit calculation (recommended) 
    3333        */       
     
    4040                                                                bool useDistance); 
    4141        /** 
    42                 @brief returns the name of the resulting photon hit map 
     42                @brief returns the name of the resulting photon hit map texture 
    4343        */ 
    4444        String getPhotonMapTextureName(){return name;} 
     
    4747        */ 
    4848        void refreshLight(); 
    49  
     49        //inherited 
    5050        bool canJoin(RenderingRun* run) 
    5151        { 
     
    5555                return false; 
    5656        } 
     57        //inherited 
    5758        void distanceCubeMapChanged(RenderingRun* run); 
    58          
     59        //inherited      
    5960        void distanceCubeMapUpdated(RenderingRun* run); 
    6061         
    6162protected:       
    6263        /** 
    63                 @brief the name of the material should be used when rendering the choton hit map 
     64                @brief the name of the material should be used when rendering the photon hit map 
    6465        */ 
    6566        String materialName; 
     
    6970        Light* light; 
    7071        /** 
    71                 @brief the created photon hit map texture 
     72                @brief the camera used while rendering the photon hit map 
    7273        */ 
    7374        Camera* photonMapCamera; 
     
    8182        OgreSharedRuns* sharedRuns; 
    8283        /** 
    83                 @brief the name of the photonmap texture that was created by this run 
     84                @brief the name of the photon map texture that was created by this run 
    8485        */ 
    8586        String name; 
    8687        /** 
    87                 @brief a pointer to the photonmap texture that was created by this run 
     88                @brief a pointer to the photon map texture that was created by this run 
    8889        */ 
    8990        Texture* photonMapTexture; 
Note: See TracChangeset for help on using the changeset viewer.