941fc7174f
This reverts commit 21d7778cb5
.
Reason for revert: Pinpoint absolutely hates this change
Original change's description:
> Remove inliner from IR generation stage.
>
> There is no need to inline code during IR generation, as the optimizer
> can now handle this.
>
> Change-Id: If272bfb98e945a75ec91fb4aa026e5631ac51b5b
> Reviewed-on: https://skia-review.googlesource.com/c/skia/+/315971
> Commit-Queue: John Stiles <johnstiles@google.com>
> Commit-Queue: Brian Osman <brianosman@google.com>
> Reviewed-by: Brian Osman <brianosman@google.com>
> Auto-Submit: John Stiles <johnstiles@google.com>
TBR=brianosman@google.com,ethannicholas@google.com,johnstiles@google.com
Change-Id: I62c235415bcdc92a088e2a7f9c3d7dbf7e1bf669
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/317976
Reviewed-by: John Stiles <johnstiles@google.com>
Commit-Queue: John Stiles <johnstiles@google.com>
14 lines
251 B
GLSL
14 lines
251 B
GLSL
|
|
out vec4 sk_FragColor;
|
|
bool shouldLoop(vec4 v) {
|
|
return v.x < 0.5;
|
|
}
|
|
vec4 grow(vec4 v) {
|
|
return v + vec4(0.125);
|
|
}
|
|
void main() {
|
|
for (sk_FragColor = vec4(0.0625);
|
|
shouldLoop(sk_FragColor); sk_FragColor = grow(sk_FragColor)) {
|
|
}
|
|
}
|