unplugged-vendor/external/skia/resources/sksl/errors/StaticSwitchWithConditionalContinue.sksl

4 lines
121 B
Plaintext

uniform half4 testInputs;
void test_continue() { for (;;) { @switch (1) { case 1: if (testInputs.x > 3) continue; } } }