552fcb9a1b
All internal usage has migrated to MakeFor..., this removes the old program kind, and updates some tests. Bug: skia:11813 Change-Id: I56733b071270e1ae3fab5d851e23acf6c02e3361 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/402536 Commit-Queue: Brian Osman <brianosman@google.com> Reviewed-by: John Stiles <johnstiles@google.com>
32 lines
558 B
Plaintext
32 lines
558 B
Plaintext
// Should return 5
|
|
int return_loop() {
|
|
for (int i = 0; i < 10; ++i) {
|
|
if (i == 5) { return i; }
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
// Should return 35
|
|
int continue_loop() {
|
|
int sum = 0;
|
|
for (int i = 0; i < 10; ++i) {
|
|
if (i < 5) { continue; }
|
|
sum += i;
|
|
}
|
|
return sum;
|
|
}
|
|
|
|
// Should return 15
|
|
int break_loop() {
|
|
int sum = 0;
|
|
for (int i = 0; i < 10; ++i) {
|
|
if (i > 5) { break; }
|
|
sum += i;
|
|
}
|
|
return sum;
|
|
}
|
|
|
|
half4 main(float2 xy) {
|
|
return half4(return_loop(), continue_loop(), break_loop(), 1);
|
|
}
|