aboutsummaryrefslogtreecommitdiff
path: root/Test/iomap.variableOutBlockIn.frag
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-04-28 03:05:39 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-04-28 03:05:39 +0000
commitba4fb26c192bca675a334fdab4a46285c7cd5232 (patch)
tree6f2dd3d1fefacccdeecfa74317972d9c7e36c114 /Test/iomap.variableOutBlockIn.frag
parent20e9adfc02fe14a057fd270fe2f06d36ad0e6e37 (diff)
parentb775dea081bb2e671628125b23a6705a866822ef (diff)
downloadglslang-ndk-r25-release.tar.gz
Snap for 8508678 from b775dea081bb2e671628125b23a6705a866822ef to ndk-r25-releasendk-r25cndk-r25bndk-r25ndk-r25-release
Change-Id: Iceb7a342c32e98df7127df2e52e7d051eb3518f5
Diffstat (limited to 'Test/iomap.variableOutBlockIn.frag')
-rw-r--r--Test/iomap.variableOutBlockIn.frag13
1 files changed, 13 insertions, 0 deletions
diff --git a/Test/iomap.variableOutBlockIn.frag b/Test/iomap.variableOutBlockIn.frag
new file mode 100644
index 00000000..967d7698
--- /dev/null
+++ b/Test/iomap.variableOutBlockIn.frag
@@ -0,0 +1,13 @@
+#version 440
+
+layout(location = 0) in Inputs {
+ vec4 a1;
+ vec2 a2;
+};
+
+layout(location = 0) out vec4 color;
+
+void main()
+{
+ color = vec4(a1.xy, a2);
+}