Changeset 2337 for GTP/trunk/App/Demos/Illum/Ogre/Media/PMDemo
- Timestamp:
- 04/24/07 14:10:34 (18 years ago)
- Location:
- GTP/trunk/App/Demos/Illum/Ogre/Media/PMDemo
- Files:
-
- 2 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/App/Demos/Illum/Ogre/Media/PMDemo/PRMDemo.material
r2284 r2337 1 vertex_program GTP/PathMap_VS hlsl2 {3 source PathMap.hlsl4 entry_point vsWalk5 target vs_2_06 }7 8 fragment_program GTP/PathMap_PS hlsl9 {10 source PathMap.hlsl11 entry_point psWalk12 target ps_3_013 flow_control prefer14 }15 16 1 material PRMDemo/Base 17 2 { … … 131 116 } 132 117 } 133 134 135 vertex_program GTP/PathMap_ComputeWeights_VS hlsl136 {137 source PathMapWeightCompute.hlsl138 entry_point vsComputeWeights139 target vs_2_0140 }141 142 fragment_program GTP/PathMap_ComputeWeights_PS hlsl143 {144 source PathMapWeightCompute.hlsl145 entry_point psComputeWeights146 target ps_3_0147 }148 149 material GTP/PathMap_ComputeWeights150 {151 technique152 {153 pass154 {155 depth_check off156 cull_harware none157 vertex_program_ref GTP/PathMap_ComputeWeights_VS158 {159 160 }161 fragment_program_ref GTP/PathMap_ComputeWeights_PS162 {163 }164 texture_unit //entrypoint texture165 {166 filtering off167 }168 texture_unit shadow_map //stores distances169 {170 171 }172 }173 174 }175 }176 177 fragment_program GTP/PathMap_SumWeights_PS hlsl178 {179 source PathMapWeightCompute.hlsl180 entry_point psSumWeights181 target ps_3_0182 flow_control prefer183 }184 185 material GTP/PathMap_SumWeights186 {187 technique188 {189 pass190 {191 192 depth_check off193 cull_harware none194 lighting off195 vertex_program_ref GTP/PathMap_ComputeWeights_VS196 {197 198 }199 fragment_program_ref GTP/PathMap_SumWeights_PS200 {201 }202 texture_unit //entrypoint texture203 {204 filtering none205 }206 texture_unit //entrypoint weight texture207 {208 filtering none209 }210 texture_unit //cluster length211 {212 filtering none213 }214 }215 216 }217 }218 219 vertex_program GTP/EPDisplayVS hlsl220 {221 source PathMapWeightCompute.hlsl222 entry_point EntryPointDisplayVS223 target vs_2_0224 }225 fragment_program GTP/EPDisplayPS hlsl226 {227 source PathMapWeightCompute.hlsl228 entry_point EntryPointDisplayPS229 target ps_2_0230 }231 232 material GTP/PM/EPBillboards233 {234 technique235 {236 pass237 {238 polygon_mode points239 point_size 10240 vertex_program_ref GTP/EPDisplayVS241 {242 param_named_auto worldViewProj worldviewproj_matrix243 }244 fragment_program_ref GTP/EPDisplayPS245 {246 }247 texture_unit248 {249 filtering none250 }251 }252 }253 }
Note: See TracChangeset
for help on using the changeset viewer.