64fc15a279
Ideally the optimizer should be able to detect and remove this loop. This CL establishes a baseline. Change-Id: I6aba0b52fe49552f170fca25d81c29c515044ef5 Bug: skia:10737 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/317861 Commit-Queue: John Stiles <johnstiles@google.com> Commit-Queue: Brian Osman <brianosman@google.com> Auto-Submit: John Stiles <johnstiles@google.com> Reviewed-by: Brian Osman <brianosman@google.com>
6 lines
79 B
Plaintext
6 lines
79 B
Plaintext
void main() {
|
|
do {
|
|
sk_FragColor = half4(1);
|
|
} while (false);
|
|
}
|