blob: 5c66d85734038baf90697b6682a002b89ef1015d [file] [log] [blame]
uniform float unknownInput;
half4 main() {
@switch (int(unknownInput)) {
case 1:
return half4(1);
default:
return half4(0);
}
}