Changeset 1131 for GTP/trunk/App/Demos/Illum/Ogre/Media/materials/scripts
- Timestamp:
- 07/13/06 08:17:27 (18 years ago)
- Location:
- GTP/trunk/App/Demos/Illum/Ogre/Media/materials/scripts
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/App/Demos/Illum/Ogre/Media/materials/scripts/GameTools.material
r1118 r1131 148 148 vertex_program_ref GameTools/FocusingVS 149 149 { 150 param_named_auto worldView worldview_matrix151 param_named_auto worldViewProj worldviewproj_matrix 152 150 param_named_auto world world_matrix 151 param_named_auto worldViewProj worldviewproj_matrix 152 param_named lightTransform matrix4x4 153 153 } 154 154 fragment_program_ref GameTools/FocusingPS … … 171 171 { 172 172 //cull_hardware anticlockwise 173 //cull_hardware none 173 174 174 175 vertex_program_ref GameTools/ShadowMap/DepthVS 175 176 { 176 param_named_auto viewProj viewproj_matrix 177 param_named_auto worldViewProj worldviewproj_matrix 177 param_named_auto worldViewProj worldviewproj_matrix 178 178 } 179 179 fragment_program_ref GameTools/ShadowMap/DepthPS … … 185 185 } 186 186 } 187 188 189 material GameTools/Blur 190 { 191 192 technique 193 { 194 195 pass 196 { 197 vertex_program_ref GameTools/BlurVS 198 { 199 200 } 201 fragment_program_ref GameTools/BlurPS 202 { 203 param_named_auto width viewport_width 204 param_named_auto height viewport_height 205 } 206 texture_unit 207 { 208 filtering bilinear 209 } 210 211 } 212 } 213 } -
GTP/trunk/App/Demos/Illum/Ogre/Media/materials/scripts/GameTools.program
r1118 r1131 1 vertex_program GameTools/BlurVS hlsl 2 { 3 source GameTools_Blur.hlsl 4 entry_point BlurVS 5 target vs_2_0 6 } 7 8 fragment_program GameTools/BlurPS hlsl 9 { 10 source GameTools_Blur.hlsl 11 entry_point BlurPS 12 target ps_3_0 13 } 14 1 15 vertex_program GameTools/FocusingVS hlsl 2 16 {
Note: See TracChangeset
for help on using the changeset viewer.