Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: data/branches/Shader_HS18/programs/OLD/ToonShaderPS.cg @ 12083

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

Reorganised shader programs

File size: 127 bytes
Line 
1float4 main(in float3 texCoord: TEXCOORD0) : COLOR
2{
3        float4 c;
4
5        c.r = 0.9;
6        c.g = 0.8;
7        c.b = 0.1;
8        c.a = 0.0;
9
10        return c;
11}
Note: See TracBrowser for help on using the repository browser.