blob: 2fc8e2633ee62ad3559484be414fee39f8663473 [file] [log] [blame]
inline half4 adjust(half4 v) {
return v + half4(0.125);
}
void main() {
sk_FragColor = half4(0);
for (int x=0; x<4; ++x)
sk_FragColor = adjust(sk_FragColor);
}