22dcb5fd7e
Convert to use the newer MakeForShader factory, which requires this. Change-Id: Ifaf6054054027c78f3f3fe15596e435e0f79b877 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/399336 Commit-Queue: Brian Osman <brianosman@google.com> Reviewed-by: John Stiles <johnstiles@google.com>
22 lines
384 B
Plaintext
22 lines
384 B
Plaintext
uniform half4 colorGreen;
|
|
|
|
inline half4 initLoopVar() {
|
|
return half4(0.0625);
|
|
}
|
|
|
|
inline bool shouldLoop(half4 v) {
|
|
return v.x < 0.5;
|
|
}
|
|
|
|
inline half4 grow(half4 v) {
|
|
return v + half4(0.125);
|
|
}
|
|
|
|
half4 main(float2 coords) {
|
|
for (sk_FragColor = initLoopVar();
|
|
shouldLoop(sk_FragColor);
|
|
sk_FragColor = grow(sk_FragColor)) {
|
|
}
|
|
return colorGreen;
|
|
}
|