skia2/resources/sksl/inliner/ForInitializerExpressionsCanBeInlined.sksl
Brian Osman 22dcb5fd7e Add coords parameter to all .sksl test files used as runtime effects
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>
2021-04-26 18:34:38 +00:00

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;
}