summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/glslang/src/Test/spv.test.vert
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/glslang/src/Test/spv.test.vert')
-rw-r--r--chromium/third_party/glslang/src/Test/spv.test.vert14
1 files changed, 14 insertions, 0 deletions
diff --git a/chromium/third_party/glslang/src/Test/spv.test.vert b/chromium/third_party/glslang/src/Test/spv.test.vert
new file mode 100644
index 00000000000..e917f6d7969
--- /dev/null
+++ b/chromium/third_party/glslang/src/Test/spv.test.vert
@@ -0,0 +1,14 @@
+#version 140
+
+in mat4 transform;
+
+attribute vec4 position;
+in vec2 uv_in;
+
+out vec2 uv;
+
+void main()
+{
+ uv = uv_in;
+ gl_Position = transform * position;
+}