1// Runtime shaders require specific main signatures. Test that older signatures, or those intended
2// for color filters don't work.
3
4// Expect 2 errors
5
6half4 main() { return half4(1); }
7half4 main(half4 color) { return color; }
8