Files
wgpu/test-data/simple/simple.vert
Pelle Johnsen 92c1ffb588 Add initial Rosetta testing (#148)
* Add initial Rosetta testing

* Make rosetta tests run as part of cargo test

* Fix rosetta test failure
2020-08-24 00:09:37 -04:00

10 lines
161 B
GLSL

#version 450 core
layout(location = 0) in vec2 a_pos;
layout(location = 0) out vec4 o_pos;
void main() {
float w = 1.0;
o_pos = vec4(a_pos, 0.0, w);
}