[Piglit] [PATCH] glsl: test for LLVM Error: Terminator found in the middle of a basic block

2018-04-02 Thread Timothy Arceri
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=105317
---
 ...fs-nested-loop-unrolled-with-return.shader_test | 40 ++
 1 file changed, 40 insertions(+)
 create mode 100644 
tests/spec/glsl-1.10/execution/fs-nested-loop-unrolled-with-return.shader_test

diff --git 
a/tests/spec/glsl-1.10/execution/fs-nested-loop-unrolled-with-return.shader_test
 
b/tests/spec/glsl-1.10/execution/fs-nested-loop-unrolled-with-return.shader_test
new file mode 100644
index 0..3d110f2ad
--- /dev/null
+++ 
b/tests/spec/glsl-1.10/execution/fs-nested-loop-unrolled-with-return.shader_test
@@ -0,0 +1,40 @@
+# This test for a bug in LLVM based drivers where the LLVM validator cannot
+# handle a break that is not the last instruction in the block. radeonsi
+# in order to speed up compilation only runs GLSL IR optimisation passes a
+# limit number of times. So we need to make sure it successfully removed any
+# instructions following a break before creating the LLVM IR.
+#
+[require]
+GLSL >= 1.10
+
+[vertex shader]
+void main(void)
+{
+  gl_Position = gl_Vertex;
+}
+
+[fragment shader]
+uniform int a;
+
+vec4 getColour() {
+  /* We use a uniform in the outer loop comparision so it's not immediately
+   * unrolled.
+   */
+  for(int v124 = 0; v124 != a; v124++) {
+for(int v229 = 1; v229 > 0; v229--) {
+  return vec4(0.0, 1.0, 0.0, 1.0);
+}
+  }
+
+  return vec4(1.0, 0.0, 0.0, 1.0);
+}
+
+void main(void) {
+  gl_FragColor = getColour();
+}
+
+[test]
+uniform int a 1
+
+draw rect -1 -1 2 2
+probe all rgba 0.0 1.0 0.0 1.0
-- 
2.14.3

___
Piglit mailing list
Piglit@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/piglit


Re: [Piglit] [PATCH] tests: add nvidia conservative rasterization tests

2018-04-02 Thread Dylan Baker
Quoting Pending Chaos (2018-03-31 03:13:58)
> GL_NV_conservative_raster, GL_NV_conservative_raster_dilate and
> GL_NV_conservative_raster_pre_snap_triangles are three separate extensions.

Thanks for clarifying :)

Dylan


signature.asc
Description: signature
___
Piglit mailing list
Piglit@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/piglit