Ignore:
Timestamp:
10/06/08 17:39:30 (16 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

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

    r3005 r3009  
    3030struct pixel 
    3131{ 
    32   float4 col: COLOR0; 
    33   float3 pos: COLOR1; 
    34   float4 norm: COLOR2; 
     32        float4 col: COLOR0; 
     33        float4 norm: COLOR1; 
     34        float3 pos: COLOR2; 
    3535}; 
    3636 
     
    112112 
    113113        pix.col = IN.color2; 
    114         pix.col.w = 2.0f; 
     114        pix.col.w = 1e20f; 
    115115 
    116116        pix.norm.xyz = IN.normal; 
    117117        pix.norm.w = IN.mypos.w; 
    118118 
    119         pix.pos = 1e20f; 
     119        //pix.pos = 1e20f; 
    120120         
    121121        return pix; 
Note: See TracChangeset for help on using the changeset viewer.