1// This test is mirrored in `runtime_errors/FragCoordAccess.rts`, where we demonstrate that 2// sk_FragCoord access is disallowed in a non-private Runtime Shader. 3 4float4 main(float2 xy) { 5 return float4(sk_FragCoord); 6} 7