Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: data/branches/Shader_HS18/programs/Cg/Example_TextureArrayVS.cg @ 12115

Last change on this file since 12115 was 12115, checked in by wiesep, 5 years ago

Changed folder structure, deletet some unused files and cleaned up code

File size: 273 bytes
Line 
1
2
3void textureArray_v(float4 position : POSITION,
4                                                  float3 uv               : TEXCOORD0,
5                                                 
6                                                  out float4 oPosition : POSITION,
7                                                  out float3 oUv           : TEXCOORD0,
8
9                                                  uniform float4x4 worldViewProj)
10{
11        oPosition = mul(worldViewProj, position);
12        oUv = uv;
13}
14
Note: See TracBrowser for help on using the repository browser.