Re: [Piglit] [PATCH] piglit-util-gl-common: fix ES1 / ES2 build error

2012-10-08 Thread Brian Paul
On Mon, Oct 8, 2012 at 6:17 PM, Jordan Justen wrote: > Signed-off-by: Jordan Justen > Cc: Brian Paul > Cc: Chad Versace > --- > tests/util/piglit-util-gl-common.c |7 +++ > 1 file changed, 7 insertions(+) > > diff --git a/tests/util/piglit-util-gl-common.c > b/tests/util/piglit-util-g

[Piglit] [PATCH] piglit-util-gl-common: fix ES1 / ES2 build error

2012-10-08 Thread Jordan Justen
Signed-off-by: Jordan Justen Cc: Brian Paul Cc: Chad Versace --- tests/util/piglit-util-gl-common.c |7 +++ 1 file changed, 7 insertions(+) diff --git a/tests/util/piglit-util-gl-common.c b/tests/util/piglit-util-gl-common.c index 62b5312..4f9fe5f 100644 --- a/tests/util/piglit-util-g

[Piglit] [PATCH 4/4] egl_khr_create_context_profile: Verify that the profile is ignored pre-3.2

2012-10-08 Thread Matt Turner
--- tests/all_egl.tests|1 + .../spec/egl_khr_create_context/CMakeLists.gl.txt |1 + .../spec/egl_khr_create_context/pre-GL3-profile.c | 115 3 files changed, 117 insertions(+), 0 deletions(-) create mode 100644 tests/egl/spec/egl_kh

[Piglit] [PATCH 3/4] egl_khr_create_context: Verify that the core profile is supported for Desktop GL 3.2

2012-10-08 Thread Matt Turner
--- We fail this test for an undiagnosed reason currently. Requesting major=3 minor>=4 is rejected immediately by the EGL code, but requesting 3.2 and 3.3 contexts (which the driver doesn't currently support) does not return the correct error. tests/all_egl.tests

[Piglit] [PATCH 2/4] egl_khr_create_context_profile: Verify that invalid profiles are rejected

2012-10-08 Thread Matt Turner
--- tests/all_egl.tests|1 + .../spec/egl_khr_create_context/CMakeLists.gl.txt |1 + .../spec/egl_khr_create_context/invalid-profile.c | 105 3 files changed, 107 insertions(+), 0 deletions(-) create mode 100644 tests/egl/spec/egl_kh

[Piglit] [PATCH 1/4] egl: Fix typo in piglit_expect_egl_error

2012-10-08 Thread Matt Turner
--- tests/util/piglit-util-egl.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tests/util/piglit-util-egl.c b/tests/util/piglit-util-egl.c index 5de290a..a7d37e5 100644 --- a/tests/util/piglit-util-egl.c +++ b/tests/util/piglit-util-egl.c @@ -69,7 +69,7 @@ void piglit_e

Re: [Piglit] [PATCH] gtf: Update EGLConfig ID

2012-10-08 Thread Kenneth Graunke
On 10/08/2012 03:21 PM, Chad Versace wrote: The mesa commit 7dc0be8 changed the EGLConfig ID's for the Intel driver, and piglit's GTF integration hardcodes the EGLConfig ID. (Apparently, this implies that piglit's GTF integration only works the Intel driver... hmm). Most people don't have a co

[Piglit] [PATCH] gtf: Update EGLConfig ID

2012-10-08 Thread Chad Versace
The mesa commit 7dc0be8 changed the EGLConfig ID's for the Intel driver, and piglit's GTF integration hardcodes the EGLConfig ID. (Apparently, this implies that piglit's GTF integration only works the Intel driver... hmm). The old -id=10 and new -id=7 should be the same underlying DRIConfig. Anyw