aboutsummaryrefslogtreecommitdiff
path: root/Test/iomap.variableOutBlockIn.vert
diff options
context:
space:
mode:
Diffstat (limited to 'Test/iomap.variableOutBlockIn.vert')
-rw-r--r--Test/iomap.variableOutBlockIn.vert11
1 files changed, 11 insertions, 0 deletions
diff --git a/Test/iomap.variableOutBlockIn.vert b/Test/iomap.variableOutBlockIn.vert
new file mode 100644
index 00000000..f9b80b46
--- /dev/null
+++ b/Test/iomap.variableOutBlockIn.vert
@@ -0,0 +1,11 @@
+#version 440
+
+layout(location = 0) out vec4 a1;
+layout(location = 1) out vec2 a2;
+
+void main()
+{
+ a1 = vec4(1.0);
+ a2 = vec2(0.5);
+ gl_Position = vec4(1.0);
+}