Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: data/trunk/materials/programs/ToonShaderPS.cg @ 6678

Last change on this file since 6678 was 5701, checked in by rgrieder, 15 years ago

Added eol-style native to all text based files in the external data directory.

  • Property svn:eol-style set to native
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.