summaryrefslogtreecommitdiffstats
path: root/third_party/rust/naga/test-data/simple.wgsl
blob: 35afac0878f4c073a9759f3b6122401ff0d1569e (plain)
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;