Ignore:
Timestamp:
07/13/06 08:16:36 (18 years ago)
Author:
szirmay
Message:
 
Location:
GTP/trunk/Lib/Illum/IllumModule/OgreIllumModule/include
Files:
2 edited

Legend:

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

    r1103 r1130  
    6868        float maxRad; 
    6969        unsigned int focusingMapSize; 
     70        unsigned int shadowMapSize; 
    7071        std::map<RenderingRunType,float> maxRads; 
    7172        /** 
     
    151152        void setMaxJoinRadius(RenderingRunType type, float rad){maxRads[type] = rad;} 
    152153        void setFocusingMapSize(unsigned int size){focusingMapSize = size;} 
     154        void setShadowMapSize(unsigned int size){shadowMapSize = size;} 
    153155        /** 
    154156                @brief Returns the one and only OgreIlluminationManager instance. 
  • GTP/trunk/Lib/Illum/IllumModule/OgreIllumModule/include/RenderingRuns/OgreDepthShadowMapRenderingRun.h

    r1120 r1130  
    4242                @brief returns the depth shadow map texture created by this run 
    4343        */ 
    44         String getDepthMapTextureName(){return name;} 
     44        String getDepthMapTextureName(){return blurredname;} 
    4545        /** 
    4646                @brief Refreshes light camera matrices, called in each update. 
     
    7777        */ 
    7878        String name; 
     79        String blurredname; 
    7980        /** 
    8081                @brief a pointer to the depth shadow texture that was created by this run 
    8182        */ 
    8283        Texture* depthMapTexture; 
     84        Texture* blurredDepthMapTexture; 
    8385         
    8486        //inherited 
Note: See TracChangeset for help on using the changeset viewer.