[Piglit] [PATCH] glsl-es-3.10: add a test for helper invocations

Ilia Mirkin imirkin at alum.mit.edu
Thu Nov 12 11:54:08 PST 2015


Tested on my nouveau implementation. Based on a suggestion from GlennK.

Signed-off-by: Ilia Mirkin <imirkin at alum.mit.edu>
---
 .../execution/helper-invocation.shader_test        | 28 ++++++++++++++++++++++
 1 file changed, 28 insertions(+)
 create mode 100644 tests/spec/glsl-es-3.10/execution/helper-invocation.shader_test

diff --git a/tests/spec/glsl-es-3.10/execution/helper-invocation.shader_test b/tests/spec/glsl-es-3.10/execution/helper-invocation.shader_test
new file mode 100644
index 0000000..0c8b889
--- /dev/null
+++ b/tests/spec/glsl-es-3.10/execution/helper-invocation.shader_test
@@ -0,0 +1,28 @@
+[require]
+GL ES >= 3.1
+GLSL ES >= 3.10
+
+[vertex shader passthrough]
+
+[fragment shader]
+#version 310 es
+precision highp float;
+out vec4 color;
+void main() {
+  float helper = float(gl_HelperInvocation);
+  color = vec4(dFdx(helper), dFdy(helper), 0, 1);
+}
+
+[test]
+clear color 0.2 0.2 0.2 0.2
+clear
+
+# A single pixel being drawn, guaranteed that both the X and Y
+# derivatives will be 1.
+draw rect ortho 0 0 1 1 probe rect rgba (0, 0,
+1, 1) (1, 1, 0, 1)
+
+# A larger rect being drawn, check that the first 2x2 quad, all of
+# which is definitely going to be covered, actually ended up as all 0's
+draw rect ortho 2 2 10 10
+probe rect rgba (2, 2, 2, 2) (0, 0, 0, 1)
-- 
2.4.10



More information about the Piglit mailing list