skia2/resources/sksl/shared/DeadLoopVariable.sksl

9 lines
132 B
Plaintext
Raw Normal View History

uniform half4 colorGreen;
half4 main(float2 coords) {
for (int x = 0; x < 4; ) {
break;
}
return colorGreen;
}