summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/glslang/src/Test/spv.simpleMat.vert
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/glslang/src/Test/spv.simpleMat.vert')
-rw-r--r--chromium/third_party/glslang/src/Test/spv.simpleMat.vert19
1 files changed, 19 insertions, 0 deletions
diff --git a/chromium/third_party/glslang/src/Test/spv.simpleMat.vert b/chromium/third_party/glslang/src/Test/spv.simpleMat.vert
new file mode 100644
index 00000000000..22f5a379162
--- /dev/null
+++ b/chromium/third_party/glslang/src/Test/spv.simpleMat.vert
@@ -0,0 +1,19 @@
+#version 330
+
+varying mat4 mvp;
+
+in vec4 v;
+in mat3 am3;
+in mat4 arraym[3];
+
+out float f;
+out vec4 glPos;
+//out mat4 mout[2];
+
+void main()
+{
+ //needs complex output blocks to work: gl_Position = mvp * v;
+ glPos = mvp * v;
+ f = am3[2][1] + arraym[1][2][3];
+ //mout[1] = arraym[2];
+}