blob: 61daa8dd75df257c532e3f3dfb3047c1999b3418 [file] [log] [blame]
in fragmentProcessor fp1, fp2;
half4 main() {
const float2 coords = float2(0.5);
const half4 inColor = half4(0.75);
return sample(fp1) *
sample(fp2, coords) *
sample(fp1, inColor) *
sample(fp2, coords, inColor);
}