- Timestamp:
- 10/06/08 17:39:30 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/App/Demos/Vis/FriendlyCulling/src/shaders/sky_preetham.cg
r3005 r3009 30 30 struct pixel 31 31 { 32 33 float3 pos: COLOR1;34 float4 norm: COLOR2;32 float4 col: COLOR0; 33 float4 norm: COLOR1; 34 float3 pos: COLOR2; 35 35 }; 36 36 … … 112 112 113 113 pix.col = IN.color2; 114 pix.col.w = 2.0f;114 pix.col.w = 1e20f; 115 115 116 116 pix.norm.xyz = IN.normal; 117 117 pix.norm.w = IN.mypos.w; 118 118 119 pix.pos = 1e20f;119 //pix.pos = 1e20f; 120 120 121 121 return pix;
Note: See TracChangeset
for help on using the changeset viewer.