1 2 3 4 5 6 7 8
# vertex [[builtin position]] var<out> o_position : vec4<f32>; fn main() -> void { o_position = vec4<f32>(1); return; } entry_point vertex as "main" = main;