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