summaryrefslogtreecommitdiffstats
path: root/third_party/rust/naga/test-data/simple.vert
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/naga/test-data/simple.vert')
-rw-r--r--third_party/rust/naga/test-data/simple.vert8
1 files changed, 8 insertions, 0 deletions
diff --git a/third_party/rust/naga/test-data/simple.vert b/third_party/rust/naga/test-data/simple.vert
new file mode 100644
index 0000000000..3aa56b2e95
--- /dev/null
+++ b/third_party/rust/naga/test-data/simple.vert
@@ -0,0 +1,8 @@
+#version 450 core
+
+layout(location = 0) in vec2 position;
+
+void main() {
+ float w = 1.0;
+ gl_Position = vec4(position, 0.0, w);
+}