[Piglit] [PATCH] gles2: add linker test for shader not writing to gl_Position

Tapani Pälli tapani.palli at intel.com
Thu Oct 2 01:53:32 PDT 2014


Signed-off-by: Tapani Pälli <tapani.palli at intel.com>
---
 tests/spec/gles-2.0/glsl-no-glposition.shader_test | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)
 create mode 100644 tests/spec/gles-2.0/glsl-no-glposition.shader_test

diff --git a/tests/spec/gles-2.0/glsl-no-glposition.shader_test b/tests/spec/gles-2.0/glsl-no-glposition.shader_test
new file mode 100644
index 0000000..63fe20a
--- /dev/null
+++ b/tests/spec/gles-2.0/glsl-no-glposition.shader_test
@@ -0,0 +1,21 @@
+#
+# Tests that we can link a shader program on OpenGL ES 2.0 where
+# vertex shader does not write to gl_Position
+#
+[require]
+GL ES >= 2.0
+GLSL ES >= 1.00
+
+[vertex shader]
+void main()
+{
+}
+
+[fragment shader]
+void main()
+{
+   gl_FragColor = vec4(0.0, 1.0, 0.0, 1.0);
+}
+
+[test]
+link success
-- 
1.9.3



More information about the Piglit mailing list