summaryrefslogtreecommitdiff
path: root/tests/reflection/gh-55.glsl
diff options
context:
space:
mode:
authorTim Foley <tfoleyNV@users.noreply.github.com>2017-07-07 08:50:00 -0700
committerGitHub <noreply@github.com>2017-07-07 08:50:00 -0700
commitc47f23c2e61538c55819363f9db47ce946649027 (patch)
tree00c8e2aaf83735f86ce6bf71e6781ac579a55f64 /tests/reflection/gh-55.glsl
parentaf8c0eae90c76d2c8f745badf6f743cefe15f777 (diff)
parent54519ed70fbe154e196d04a8b62f6ea6aeded52a (diff)
Merge pull request #56 from tfoleyNV/bug-55
Bug 55
Diffstat (limited to 'tests/reflection/gh-55.glsl')
-rw-r--r--tests/reflection/gh-55.glsl13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/reflection/gh-55.glsl b/tests/reflection/gh-55.glsl
new file mode 100644
index 000000000..4ced68c9e
--- /dev/null
+++ b/tests/reflection/gh-55.glsl
@@ -0,0 +1,13 @@
+//TEST(smoke):SIMPLE:-profile ps_4_0 -target reflection-json
+
+// Confirm fix for GitHub issue #55
+
+layout(set = 0, binding = 0)
+uniform PerFrameCB
+{
+ vec2 offset;
+ vec2 scale;
+};
+
+void main()
+{}