Ignore:
Timestamp:
04/24/07 14:10:34 (18 years ago)
Author:
szirmay
Message:
 
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 hlsl 
    2 { 
    3    source PathMap.hlsl 
    4    entry_point vsWalk 
    5    target vs_2_0    
    6 } 
    7  
    8 fragment_program GTP/PathMap_PS hlsl 
    9 { 
    10    source PathMap.hlsl 
    11    entry_point psWalk 
    12    target ps_3_0 
    13    flow_control prefer 
    14 } 
    15  
    161material PRMDemo/Base 
    172{ 
     
    131116  } 
    132117} 
    133  
    134  
    135 vertex_program GTP/PathMap_ComputeWeights_VS hlsl 
    136 { 
    137    source PathMapWeightCompute.hlsl 
    138    entry_point vsComputeWeights 
    139    target vs_2_0    
    140 } 
    141  
    142 fragment_program GTP/PathMap_ComputeWeights_PS hlsl 
    143 { 
    144    source PathMapWeightCompute.hlsl 
    145    entry_point psComputeWeights 
    146    target ps_3_0    
    147 } 
    148  
    149 material GTP/PathMap_ComputeWeights 
    150 { 
    151         technique 
    152         { 
    153                 pass 
    154                 { 
    155                         depth_check off 
    156                         cull_harware none 
    157                         vertex_program_ref GTP/PathMap_ComputeWeights_VS 
    158                         { 
    159                                  
    160                         } 
    161                         fragment_program_ref GTP/PathMap_ComputeWeights_PS 
    162                         { 
    163                         } 
    164                         texture_unit //entrypoint texture 
    165                         { 
    166                                 filtering off 
    167                         } 
    168                         texture_unit shadow_map //stores distances 
    169                         { 
    170                          
    171                 } 
    172                 } 
    173                  
    174         } 
    175 } 
    176  
    177 fragment_program GTP/PathMap_SumWeights_PS hlsl 
    178 { 
    179    source PathMapWeightCompute.hlsl 
    180    entry_point psSumWeights 
    181    target ps_3_0 
    182    flow_control prefer      
    183 } 
    184  
    185 material GTP/PathMap_SumWeights 
    186 { 
    187         technique 
    188         { 
    189                 pass 
    190                 { 
    191                          
    192                         depth_check off 
    193                         cull_harware none 
    194                         lighting off 
    195                         vertex_program_ref GTP/PathMap_ComputeWeights_VS 
    196                         { 
    197                                  
    198                         } 
    199                         fragment_program_ref GTP/PathMap_SumWeights_PS 
    200                         { 
    201                         } 
    202                         texture_unit //entrypoint texture 
    203                         { 
    204                                 filtering none 
    205                         } 
    206                         texture_unit //entrypoint weight texture 
    207                         { 
    208                                 filtering none 
    209                         } 
    210                         texture_unit //cluster length 
    211                         { 
    212                                 filtering none 
    213                         } 
    214                 } 
    215                  
    216         } 
    217 } 
    218  
    219 vertex_program GTP/EPDisplayVS hlsl 
    220 { 
    221    source PathMapWeightCompute.hlsl 
    222    entry_point EntryPointDisplayVS 
    223    target vs_2_0    
    224 } 
    225 fragment_program GTP/EPDisplayPS hlsl 
    226 { 
    227    source PathMapWeightCompute.hlsl 
    228    entry_point EntryPointDisplayPS 
    229    target ps_2_0    
    230 } 
    231  
    232 material GTP/PM/EPBillboards 
    233 { 
    234  technique 
    235  { 
    236    pass 
    237    { 
    238                 polygon_mode points 
    239                 point_size 10 
    240                 vertex_program_ref GTP/EPDisplayVS 
    241                 { 
    242                         param_named_auto worldViewProj worldviewproj_matrix      
    243                 } 
    244                 fragment_program_ref GTP/EPDisplayPS 
    245                 { 
    246                 } 
    247         texture_unit 
    248         {   
    249                 filtering none    
    250         } 
    251    } 
    252   } 
    253 } 
Note: See TracChangeset for help on using the changeset viewer.