Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: data/branches/Shader_HS18/programs/Cg/PassthroughFP.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: 314 bytes
Line 
1float4 main (float4 pos : POSITION, uniform float4 colour) : COLOR
2{
3        return colour;
4}
5
6float4 mainCg (float4 colour0 : COLOR) : COLOR
7{
8    return colour0;
9}
10
11float4 mainForAmbientOneTexture (float4 pos : POSITION, float2 oUv : TEXCOORD0, float4 colour0 : COLOR, uniform float4 colour) : COLOR
12{
13        return colour;
14}
Note: See TracBrowser for help on using the repository browser.