Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: data/branches/Shader_HS18/programs/Example/Cg/PassthroughFP.cg @ 12083

Last change on this file since 12083 was 12083, checked in by wiesep, 6 years ago

Reorganised shader programs

File size: 327 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.