blob: 6715c30d203536d030f96565537729af14b74f3c [file] [log] [blame]
void main() {
float a = 1, b = 2, c = 3;
float d = c;
float e = d;
b++;
d++;
sk_FragColor = half4(half(b), half(b), half(d), half(d));
}