struct VertexOutputs { @builtin(position) position : vec4, }; @vertex fn main() -> VertexOutputs { return VertexOutputs(vec4(1.0, 2.0, 3.0, 4.0)); }