Ignore:
Timestamp:
10/19/08 00:29:45 (16 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

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

    r3040 r3041  
    1 //-------------------------------------------------------------------------------------- 
    2 // Input and Output structs 
    3 //-------------------------------------------------------------------------------------- 
    4  
    5  
    6  
    71struct vtxin 
    82{ 
     
    1711struct vtxout 
    1812{ 
    19         float4 position: POSITION; // eye space 
     13        float4 color: COLOR0;   
     14        float4 position: POSITION;  
     15 
    2016        float4 texCoord: TEXCOORD0;     
    21  
    22         float4 color: COLOR0;   
    23         float4 worldPos: TEXCOORD1; // world position 
    24         float3 normal: TEXCOORD2; 
    25         float4 mypos: TEXCOORD3; 
    26         float4 hdrColor: TEXCOORD4; 
     17        float3 normal: TEXCOORD1; 
     18        float4 hdrColor: TEXCOORD2; 
    2719}; 
    2820 
     
    3224{ 
    3325        float4 color: COLOR0;   
    34         float4 position: POSITION; // eye space 
     26        //float4 projPos: WPOS; 
     27        //float4 position: POSITION; 
     28 
    3529        float4 texCoord: TEXCOORD0;     
    36  
    37         float4 projPos: WPOS; 
    38         float3 normal: TEXCOORD2; 
    39         float4 hdrColor: TEXCOORD4; 
     30        float3 normal: TEXCOORD1; 
     31        float4 hdrColor: TEXCOORD2; 
    4032}; 
    4133 
    4234 
    43 struct fragout 
     35struct pixel 
    4436{ 
    4537        float4 col: COLOR0; 
    46         float4 norm: COLOR1; 
     38        float3 norm: COLOR1; 
    4739        float3 pos: COLOR2; 
    4840}; 
     
    10496 
    10597 
    106 fragout frag_skydome(fragin IN) 
     98pixel frag_skydome(fragin IN) 
    10799{ 
    108         fragout pix; 
     100        pixel pix; 
    109101 
    110102        pix.col = IN.hdrColor; 
Note: See TracChangeset for help on using the changeset viewer.