Sophie

Sophie

distrib > * > cooker > x86_64 > by-pkgid > 0243c8b7bca94179c78b9bd6ac76c033 > files > 483

cg-examples-3.0.0018-0.1.x86_64.rpm

// Simple fragment program to modulate interpolated
// color with a decal texture lookup.

float4 texmodulate(float4 color    : COLOR,
                   float2 texcoord : TEXCOORD0,

           uniform float2 scaleFactor,
           uniform sampler2D decal) : COLOR
{
  return color * tex2D(decal, texcoord * scaleFactor);
}