You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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);
|
|
}
|