Ignore:
Timestamp:
04/17/09 17:37:38 (16 years ago)
Author:
mattausch
Message:
 
Location:
GTP/trunk/App/Demos/Vis/FriendlyCulling/src/shaders
Files:
2 edited

Legend:

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

    r3353 r3360  
    4040 
    4141        // hack: prevent to shade the sky 
    42 #if 0 
     42#if 1 
    4343        if (color.w > DEPTH_THRESHOLD) 
    4444        { 
  • GTP/trunk/App/Demos/Vis/FriendlyCulling/src/shaders/mrt.cg

    r3168 r3360  
    102102        //pix.id = glstate.fog.color.xyz; 
    103103        // the offset to the world pos from old frame 
     104        //pix.offsVec = float3(0,0,0); 
    104105        pix.offsVec = IN.oldWorldPos.xyz - IN.worldPos.xyz; 
    105106 
     
    124125        // the offset to the world pos from old frame 
    125126        pix.offsVec = IN.oldWorldPos.xyz - IN.worldPos.xyz; 
     127        //pix.offsVec = float3(0,0,0); 
    126128 
    127129        return pix; 
Note: See TracChangeset for help on using the changeset viewer.