[Piglit] [PATCH] arb_shader_storage_buffer_object: global scope binding qualifier test

Tapani Pälli tapani.palli at intel.com
Mon Oct 5 02:49:56 PDT 2015


Signed-off-by: Tapani Pälli <tapani.palli at intel.com>
---
 .../compiler/global-scope-binding-qualifier.frag     | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 tests/spec/arb_shader_storage_buffer_object/compiler/global-scope-binding-qualifier.frag

diff --git a/tests/spec/arb_shader_storage_buffer_object/compiler/global-scope-binding-qualifier.frag b/tests/spec/arb_shader_storage_buffer_object/compiler/global-scope-binding-qualifier.frag
new file mode 100644
index 0000000..249663a
--- /dev/null
+++ b/tests/spec/arb_shader_storage_buffer_object/compiler/global-scope-binding-qualifier.frag
@@ -0,0 +1,20 @@
+// [config]
+// expect_result: fail
+// glsl_version: 1.50
+// require_extensions: GL_ARB_shader_storage_buffer_object
+// [end config]
+
+/* From the GL_ARB_shader_storage_buffer_object spec:
+ *
+ *  "It is an error to specify the binding identifier for the global
+ *  scope or for block member declarations."
+ */
+
+#version 150
+#extension GL_ARB_shader_storage_buffer_object: require
+
+layout(binding=1) buffer;
+
+void main()
+{
+}
-- 
2.4.3



More information about the Piglit mailing list