[Piglit] [PATCH] sso: add test for linking gs without explicit locations

2016-01-21 Thread Ilia Mirkin
Mesa treats each GS input as taking up 3 locations instead of 1, because it doesn't de-array the vars. This causes it to take col3 from VS instead of col1. Signed-off-by: Ilia Mirkin --- .../execution/vs-gs-linking.shader_test| 57 ++ 1 file

[Piglit] [PATCH] arb_enhanced_layouts: xfb_buffer layout qualifier compile tests

2016-01-21 Thread Timothy Arceri
--- ...ck-larger-than-gl_TransformFeedbackBuffers.vert | 22 ++ .../xfb-buffer/xfb_buffer-block-max.vert | 22 ++ .../xfb_buffer-block-member-global-mismatch.vert | 35 ++ .../xfb_buffer-block-member-mismatch.vert | 33

[Piglit] [Bug 93783] [regression, bisected] arb_shader_image_load_store.compiler.declaration-format-qualifier-duplicate

2016-01-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=93783 --- Comment #7 from Mark Janes --- Created attachment 121192 --> https://bugs.freedesktop.org/attachment.cgi?id=121192=edit output from arb_shader_image_size -- You are receiving this mail because: You are the QA

[Piglit] [Bug 93783] [regression, bisected] arb_shader_image_load_store.compiler.declaration-format-qualifier-duplicate

2016-01-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=93783 --- Comment #8 from Ilia Mirkin --- Looks like there's some left-over IMAGE_T usage... pushed a fix. commit 1e7ca7fc900fbf59a37e84b46c2a2fb69686dc1f Author: Ilia Mirkin Date: Thu Jan 21 13:51:21

[Piglit] [PATCH] Test that cubemaps with non-matching faces are incomplete

2016-01-21 Thread Neil Roberts
This creates a cubemap where one of the faces either has a different size or a different format from the other faces and then checks that it is incomplete by rendering with it and veryifying that the sampler returns solid black. The format test currently fails on Mesa. --- tests/all.py

[Piglit] [PATCH v2] Add glsl-fs-discard-only.shader_test

2016-01-21 Thread Nicolai Hähnle
From: Nicolai Hähnle Test a pure depth write with conditional discard in the fragment shader. This currently fails in radeonsi. v2: use vertex shader passthrough and move to tests/spec/glsl-1.10 (Ilia Mirkin) Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=93761

Re: [Piglit] [PATCH v2] Add glsl-fs-discard-only.shader_test

2016-01-21 Thread Ilia Mirkin
Reviewed-by: Ilia Mirkin On Thu, Jan 21, 2016 at 2:53 PM, Nicolai Hähnle wrote: > From: Nicolai Hähnle > > Test a pure depth write with conditional discard in the fragment shader. > This currently fails in radeonsi. > > v2: use

[Piglit] [PATCH v2 2/5] Add piglit_equal_images_update_rgba8 to piglit-util-gl

2016-01-21 Thread Nicolai Hähnle
From: Nicolai Hähnle This is a slightly extended variant of equal_images from texsubimage which will also be used in the new texsubimage-unpack test. I've decided to call it "equal" instead of "compare", since I feel that makes the meaning of the return value more

[Piglit] [PATCH v2 3/5] fbo-formats: include information about number of bits in sized formats

2016-01-21 Thread Nicolai Hähnle
From: Nicolai Hähnle The idea is that tests can get an idea of how much precision to expect when using these formats. v2: clarify that min_bits is for the depth component (Ian Romanick) --- tests/fbo/fbo-formats.h | 396

[Piglit] [PATCH v2 0/5] Add texturing/texsubimage-unpack

2016-01-21 Thread Nicolai Hähnle
Hi, this is a restructuring of the first part of the PBO coverage series I sent recently, based on Ian's feedback. There's a bit more code sharing, the run_concurrent business is cleared up, and bunch of other cleanups. Cheers, Nicolai -- tests/all.py | 4 +-

[Piglit] [PATCH v2 5/5] all.py: mark the last variant of texsubimage as running concurrently

2016-01-21 Thread Nicolai Hähnle
From: Nicolai Hähnle All other variants (array, cube_map-array, and pbo variants) are already running concurrently --- tests/all.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/all.py b/tests/all.py index bb174cb..28aba13 100644 ---

[Piglit] [PATCH v2 1/5] piglit_num_components: add more pixel unpack formats

2016-01-21 Thread Nicolai Hähnle
From: Nicolai Hähnle --- tests/util/piglit-util-gl.c | 5 + 1 file changed, 5 insertions(+) diff --git a/tests/util/piglit-util-gl.c b/tests/util/piglit-util-gl.c index bbc174d..61764fb 100644 --- a/tests/util/piglit-util-gl.c +++ b/tests/util/piglit-util-gl.c @@

[Piglit] [PATCH v2 4/5] Add texturing/texsubimage-unpack

2016-01-21 Thread Nicolai Hähnle
From: Nicolai Hähnle This is similar to the texsubimage test, but checks various type and format conversions as well as a different set of pixel unpack settings. v2: cleanups and share some code with texsubimage --- tests/all.py | 2 +

Re: [Piglit] [PATCH v2 1/5] piglit_num_components: add more pixel unpack formats

2016-01-21 Thread Ilia Mirkin
On Thu, Jan 21, 2016 at 3:33 PM, Nicolai Hähnle wrote: > From: Nicolai Hähnle > > --- > tests/util/piglit-util-gl.c | 5 + > 1 file changed, 5 insertions(+) > > diff --git a/tests/util/piglit-util-gl.c b/tests/util/piglit-util-gl.c > index

Re: [Piglit] [PATCH] sso: add test for linking gs without explicit locations

2016-01-21 Thread Timothy Arceri
On Thu, 2016-01-21 at 08:45 -0500, Ilia Mirkin wrote: > Mesa treats each GS input as taking up 3 locations instead of 1, > because > it doesn't de-array the vars. This causes it to take col3 from VS > instead of col1. > > Signed-off-by: Ilia Mirkin As discussed on IRC the

[Piglit] [PATCH] xts: Add a rendercheck case for a bug I made in glamor.

2016-01-21 Thread Eric Anholt
Drawing to a8 is special now, and I missed it in the CA path. --- tests/xts.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/xts.py b/tests/xts.py index c7d55e3..6798e70 100644 --- a/tests/xts.py +++ b/tests/xts.py @@ -227,6 +227,7 @@ def _populate_profile_rendercheck(profile):

Re: [Piglit] [PATCH] xts: Add a rendercheck case for a bug I made in glamor.

2016-01-21 Thread Dave Airlie
On 22 January 2016 at 12:37, Eric Anholt wrote: > Drawing to a8 is special now, and I missed it in the CA path. > --- Reviewed-by: Dave Airlie ___ Piglit mailing list Piglit@lists.freedesktop.org

Re: [Piglit] [PATCH] Test that cubemaps with non-matching faces are incomplete

2016-01-21 Thread Ian Romanick
On 01/21/2016 10:44 AM, Neil Roberts wrote: > This creates a cubemap where one of the faces either has a different > size or a different format from the other faces and then checks that > it is incomplete by rendering with it and veryifying that the sampler

[Piglit] [Bug 93783] [regression, bisected] arb_shader_image_load_store.compiler.declaration-format-qualifier-duplicate

2016-01-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=93783 Mark Janes changed: What|Removed |Added Status|RESOLVED|CLOSED -- You are

[Piglit] [Bug 93783] [regression, bisected] arb_shader_image_load_store.compiler.declaration-format-qualifier-duplicate

2016-01-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=93783 Ilia Mirkin changed: What|Removed |Added Status|REOPENED|RESOLVED