Re: [Piglit] [PATCH 0/8] Add GBM support

2012-10-19 Thread Jordan Justen
On Fri, Oct 19, 2012 at 9:54 AM, Chad Versace wrote: > This series looks good to me. > Reviewed-by: Chad Versace > > I wanted to test the series, but the python patches wouldn't apply :( I rebased the changes to master here: git://people.freedesktop.org/~jljusten/piglit gbm Let me know if you a

[Piglit] [PATCH 2/2] etc2: Add testing for signed-r11 and signed-rg11 formats

2012-10-19 Thread Anuj Phogat
Verifies texturing with following etc2 formats: GL_COMPRESSED_SIGNED_R11_EAC GL_COMPRESSED_SIGNED_RG11_EAC Each format requires a compressed and decompressed texture data file, which are added as a part of this commit. Note: Currently test for above listed formats fails using my etc2-v9 branch (h

[Piglit] [PATCH 1/2] etc2: Add test to verify texturing with etc2 miptree

2012-10-19 Thread Anuj Phogat
This test make use of code from an existing etc1 test in tests/spec/oes_compressed_etc1_rgb8_texture Verifies texturing with following etc2 formats: GL_COMPRESSED_RGB8_ETC2 GL_COMPRESSED_SRGB8_ETC2 GL_COMPRESSED_RGBA8_ETC2_EAC GL_COMPRESSED_SRGB8_ALPHA8_ETC2_EAC GL_COMPRESSED_R11_EAC GL_COMPRESSED

Re: [Piglit] [PATCH 3/4] glx_arb_create_context/core-profile: Remove extra newline

2012-10-19 Thread Ian Romanick
On 10/12/2012 01:42 PM, Matt Turner wrote: --- tests/spec/glx_arb_create_context/core-profile.c |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/tests/spec/glx_arb_create_context/core-profile.c b/tests/spec/glx_arb_create_context/core-profile.c index 833c5ee..9892a36

Re: [Piglit] [PATCH 2/2] GL_ARB_occlusion_query2: Add tests for the API.

2012-10-19 Thread Brian Paul
On 10/19/2012 12:13 PM, Eric Anholt wrote: Apparently I added Mesa support for it without adding tests, and shockingly the Mesa support was broken. --- tests/all.tests |6 + tests/spec/CMakeLists.txt |1 + tests/spec/arb_occlus

Re: [Piglit] [PATCH 1/2] GLX_OML_sync_control: Add new tests.

2012-10-19 Thread Ian Romanick
On 10/19/2012 11:13 AM, Eric Anholt wrote: I was going to go touch this code in Mesa, then I realised that we didn't have a single test for it. v2: Rebase on Chad's BUILD_* sedjob, and explicitly test various swap intervals. A couple comments below... --- tests/all.tests

Re: [Piglit] [PATCH 2/2] GL_ARB_occlusion_query2: Add tests for the API.

2012-10-19 Thread Ian Romanick
On 10/19/2012 11:13 AM, Eric Anholt wrote: Apparently I added Mesa support for it without adding tests, and shockingly the Mesa support was broken. Of course. :) Other than a small nit below, this patch is Reviewed-by: Ian Romanick --- tests/all.tests |

Re: [Piglit] [PATCH] util: Fix visual selection when using waffle

2012-10-19 Thread Ian Romanick
On 10/17/2012 09:42 AM, Chad Versace wrote: On 10/16/2012 05:12 PM, Ian Romanick wrote: On 10/16/2012 03:37 PM, Marek Olšák wrote: There is one test fdo25614-genmipmap which reproduces a bug only occuring with a framebuffer without alpha. If we enforce RGBA everywhere, not only would the test b

[Piglit] [PATCH] glx: Sanity check the various GLX extension strings that an app can query

2012-10-19 Thread Ian Romanick
From: Ian Romanick Signed-off-by: Ian Romanick Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=56057 --- tests/all.tests | 2 + tests/glx/CMakeLists.gl.txt | 2 + tests/glx/glx-string-sanity.c | 187 ++ 3 files changed, 191 inse

[Piglit] [PATCH 1/2] GLX_OML_sync_control: Add new tests.

2012-10-19 Thread Eric Anholt
I was going to go touch this code in Mesa, then I realised that we didn't have a single test for it. v2: Rebase on Chad's BUILD_* sedjob, and explicitly test various swap intervals. --- tests/all.tests|8 ++ tests/spec/CMakeLists.txt

[Piglit] [PATCH 2/2] GL_ARB_occlusion_query2: Add tests for the API.

2012-10-19 Thread Eric Anholt
Apparently I added Mesa support for it without adding tests, and shockingly the Mesa support was broken. --- tests/all.tests |6 + tests/spec/CMakeLists.txt |1 + tests/spec/arb_occlusion_query2/CMakeLists.gl.txt | 13 ++ tests/sp

Re: [Piglit] [PATCH 0/8] Add GBM support

2012-10-19 Thread Chad Versace
This series looks good to me. Reviewed-by: Chad Versace I wanted to test the series, but the python patches wouldn't apply :( I still want to discuss with you how to get the gbm tests running under X and Wayland when we're in the office at the same time. -Chad On 10/09/2012 04:42 PM, Jordan Ju