source: GTP/trunk/App/Demos/Illum/IBRBillboardCloudTrees/OGRE/IBRTreesOGRE/media/oldgeneral/skybox_vp.cg @ 1493

Revision 1493, 366 bytes checked in by igarcia, 18 years ago (diff)
Line 
1void main_vp(
2      float4 position : POSITION,
3      float4 normal : NORMAL,
4      float2 texCoord : TEXCOORD0,
5      float2 texCoordNormalized : TEXCOORD1,
6
7      out float4 oPosition : POSITION,
8      out float2 otexCoord : TEXCOORD0,
9      uniform float4x4 worldviewproj
10      )
11{
12        oPosition = mul(worldviewproj,position);
13        otexCoord = texCoord;
14}
Note: See TracBrowser for help on using the repository browser.