Changeset 2299 for GTP/trunk/Lib/Illum/IllumModule/OgreIllumModule/include
- Timestamp:
- 03/29/07 13:27:53 (18 years ago)
- Location:
- GTP/trunk/Lib/Illum/IllumModule/OgreIllumModule/include/RenderTechniques
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Illum/IllumModule/OgreIllumModule/include/RenderTechniques/OgreCausticCasterRenderTechnique.h
r2285 r2299 94 94 */ 95 95 bool blurCauCubeMap; 96 96 97 97 //inherited 98 98 void photonMapRunChanged(RenderingRun* run); … … 137 137 bool useDistance; 138 138 bool useTriangles; 139 bool blurCauCubeMap; 139 bool blurCauCubeMap; 140 140 }; -
GTP/trunk/Lib/Illum/IllumModule/OgreIllumModule/include/RenderTechniques/OgreCausticReceiverRenderTechnique.h
r2285 r2299 38 38 @param causticFragmentProgram the fragment program to be used in the caustic gathering passes. 39 39 It should have one pass and the caustic cubemap of a caster will be bound to the first sampler unit. 40 @param passBlendingSRC source blend factor of the new passes 41 @param passBlendingDEST destination blend factor of the new passes 40 42 @param pass the pass after which caustic gathering passes should be added 41 43 @param parentRenderable the object to operate on … … 46 48 String causticVertexProgram, 47 49 String causticFragmentProgram, 50 SceneBlendFactor passBlendingSRC, 51 SceneBlendFactor passBlendingDEST, 48 52 Pass* pass, 49 53 OgreRenderable* parentRenderable, … … 81 85 */ 82 86 std::vector<OgreSharedRuns*> causticCasters; 83 87 /** 88 @brief source blend factor of the new passes 89 */ 90 SceneBlendFactor passBlendingSRC; 91 /** 92 @brief destination blend factor of the new passes 93 */ 94 SceneBlendFactor passBlendingDEST; 84 95 }; 85 96 … … 102 113 String causticVertexProgram; 103 114 String causticFragmentProgram; 104 115 SceneBlendFactor passBlendingSRC; 116 SceneBlendFactor passBlendingDEST; 105 117 }; 106 118 -
GTP/trunk/Lib/Illum/IllumModule/OgreIllumModule/include/RenderTechniques/OgreDepthShadowReceiverRenderTechnique.h
r2285 r2299 47 47 @param lightViewParamName the name of the gpu program parameter the light space view matrix should be bound to 48 48 @param lightFarPlaneParamName the name of the gpu program parameter the light space projection far plane should be bound to 49 @param passBlendingSRC source blend factor of the new passes 50 @param passBlendingDEST destination blend factor of the new passes 49 51 @param pass the pass after which shadowing passes should be added 50 52 @param parentRenderable the object to operate on … … 63 65 String lightViewParamName, 64 66 String lightFarPlaneParamName, 67 SceneBlendFactor passBlendingSRC, 68 SceneBlendFactor passBlendingDEST, 65 69 Pass* pass, 66 70 OgreRenderable* parentRenderable, … … 128 132 */ 129 133 String WorldParamName; 130 134 /** 135 @brief source blend factor of the new passes 136 */ 137 SceneBlendFactor passBlendingSRC; 138 /** 139 @brief destination blend factor of the new passes 140 */ 141 SceneBlendFactor passBlendingDEST; 131 142 }; 132 143 … … 157 168 String WorldViewProjParamName; 158 169 String WorldParamName; 170 SceneBlendFactor passBlendingSRC; 171 SceneBlendFactor passBlendingDEST; 159 172 }; 160 173 -
GTP/trunk/Lib/Illum/IllumModule/OgreIllumModule/include/RenderTechniques/OgrePathMapRenderTechnique.h
r2240 r2299 25 25 @brief Constructor. 26 26 27 @param passBlendingSRC source blend factor of the new pass 28 @param passBlendingDEST destination blend factor of the new pass 27 29 @param pass the pass after which shadowing passes should be added 28 30 @param parentRenderable the object to operate on 29 31 @param parentTechniqueGroup the TechniqueGroup this RenderedTechnique is attached to 30 32 */ 31 OgrePathMapRenderTechnique(Pass* pass, 33 OgrePathMapRenderTechnique( 34 SceneBlendFactor passBlendingSRC, 35 SceneBlendFactor passBlendingDEST, 36 Pass* pass, 32 37 OgreRenderable* parentRenderable, 33 38 OgreTechniqueGroup* parentTechniqueGroup … … 58 63 */ 59 64 void createWeightIndexTexture(); 65 /** 66 @brief source blend factor of the new pass 67 */ 68 SceneBlendFactor passBlendingSRC; 69 /** 70 @brief destination blend factor of the new pass 71 */ 72 SceneBlendFactor passBlendingDEST; 60 73 }; 61 74 … … 73 86 OgreRenderable* parentRenderable, 74 87 OgreTechniqueGroup* parentTechniqueGroup); 88 89 SceneBlendFactor passBlendingSRC; 90 SceneBlendFactor passBlendingDEST; 75 91 }; 76 92
Note: See TracChangeset
for help on using the changeset viewer.