blob: 64f3c3e368d5b5bd13f208c3177ac2c3b9686b38 [file] [log] [blame]
/*#pragma settings Default*/
uniform half4 color;
inline half4 MakeTempVar(half4 c) {
{
half4 d = c * 0.75;
return d.xxxx;
}
}
void main() {
sk_FragColor = MakeTempVar(color);
}