source:
data/branches/Shader_HS18/programs/Example/Cg/PassthroughFP.cg
@
12091
Last change on this file since 12091 was 12083, checked in by wiesep, 6 years ago | |
---|---|
File size: 327 bytes |
Rev | Line | |
---|---|---|
[12083] | 1 | float4 main (float4 pos : POSITION, uniform float4 colour) : COLOR |
2 | { | |
3 | return colour; | |
4 | } | |
5 | ||
6 | float4 mainCg (float4 colour0 : COLOR) : COLOR | |
7 | { | |
8 | return colour0; | |
9 | } | |
10 | ||
11 | float4 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.