Ignore:
Timestamp:
11/06/08 13:31:58 (16 years ago)
Author:
mattausch
Message:

updated shader programs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/App/Demos/Vis/FriendlyCulling/src/shaders/globillum.cg

    r3103 r3104  
    254254 
    255255pixel combine(fragment IN,  
    256                           uniform sampler2D colors, 
     256                          uniform sampler2D colorsTex, 
    257257                          uniform sampler2D ssaoTex, 
    258258                          uniform sampler2D illumTex 
     
    261261        pixel OUT; 
    262262 
    263         float4 col = tex2Dlod(colors, float4(IN.texCoord, 0, 0)); 
     263        float4 col = tex2Dlod(colorsTex, float4(IN.texCoord, 0, 0)); 
    264264        float ao = tex2Dlod(ssaoTex, float4(IN.texCoord, 0, 0)).x; 
    265265 
Note: See TracChangeset for help on using the changeset viewer.