[Piglit] [PATCH 0/5] glut_waffle: Cleanups and add input support for X11

2012-08-29 Thread Chad Versace
This series lives on my glut_waffle branch. Patches 1-2 kill some dead code. Patches 3-5 add support for input when using glut_waffle's GLX and X11/EGL backends. Tested with fbo-clean-formats; I cycled through the tests with the keyboard and then quit with the escape key. Chad Versace (5): tes

[Piglit] [PATCH 5/5] glut_waffle: Add input support for X11

2012-08-29 Thread Chad Versace
Add support for input when using glut_waffle's GLX and X11/EGL backends. Tested with fbo-clean-formats; I cycled through the tests with the keyboard and then quit with the escape key. Signed-off-by: Chad Versace --- CMakeLists.txt| 1 + src/glut_waffle/CMakeLists.no_api.

[Piglit] [PATCH 3/5] glut_waffle: Refactor some code into common.[ch]

2012-08-29 Thread Chad Versace
This is in preparation for adding support for input to glut_waffle. Input for each platform (X11, Wayland, etc) will be implemented in a separate file. This patch moves common code needed for each platform from glut_waffle.c into common.[ch]. Signed-off-by: Chad Versace --- src/glut_waffle/CMake

[Piglit] [PATCH 4/5] cmake: If using Waffle, require version 1.0.1

2012-08-29 Thread Chad Versace
A following patch adds support for X11 input to glut_waffle. waffle-1.0.1 contains required bugfixes for that patch to work. Signed-off-by: Chad Versace --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 893a14d..a717b84 1

[Piglit] [PATCH 2/5] glut_waffle: Remove unused code

2012-08-29 Thread Chad Versace
I created glut_waffle by forking Piglit's (now extinct) glut_egl. Much of the code that glut_waffle inherited from glut_egl has never been used. This patch kills it. Signed-off-by: Chad Versace --- src/glut_waffle/glut_waffle.c | 56 --- src/glut_waffle/gl

[Piglit] [PATCH 1/5] tests: Remove all uses of glutGet

2012-08-29 Thread Chad Versace
I'm trying to transition Piglit from using GLUT to using Waffle. This requires killing all uses of GLUT functions, one-by-one. glutGet was only used in one test: fp-fragment-position. Signed-off-by: Chad Versace --- tests/shaders/fp-fragment-position.c | 6 -- 1 file changed, 6 deletions(-)

[Piglit] [ANNOUNCE] waffle-1.0.1

2012-08-29 Thread Chad Versace
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Waffle 1.0.1 - 29 Aug 2012 == Waffle 1.0.1 is a bugfix release. It fixes bugs discovered since the 1.0.0 release. Downloads and documentation are available at http://people.freedesktop.org/~chadversary/waffle/releases.html#

[Piglit] [PATCH] Add OpenCL support

2012-08-29 Thread Blaž Tomažič
I have implemented an OpenCL testing framework for Piglit which I would like to merge upstream. Here is a summary of its functionality: The framework implements OpenCL utilities which are used for quicker and easier writing of tests. Test that are written against t

[Piglit] [PATCH] Remove multiple shader files per section facility from shader_runner.

2012-08-29 Thread Stuart Abercrombie
This is part of the effort to make version handling more flexible for GLES. --- tests/shaders/shader_runner.c | 67 +++-- 1 files changed, 31 insertions(+), 36 deletions(-) diff --git a/tests/shaders/shader_runner.c b/tests/shaders/shader_runner.c index aa60a

[Piglit] [PATCH] tex3d-depth1: test that a 3D texture w/ depth=1 works properly

2012-08-29 Thread Brian Paul
--- tests/all.tests |1 + tests/texturing/CMakeLists.gl.txt |1 + tests/texturing/tex3d-depth1.c| 133 + 3 files changed, 135 insertions(+), 0 deletions(-) create mode 100644 tests/texturing/tex3d-depth1.c diff --git a/tests/all.

Re: [Piglit] [PATCH] egl-util: Add call to piglit_dispatch_default_init()

2012-08-29 Thread Paul Berry
On 27 August 2012 18:35, Matt Turner wrote: > Fixes egl-nok-swap-region and makes egl-nok-texture-from-pixmap not > crash (but still fails). > Reviewed-by: Paul Berry > --- > tests/egl/egl-util.c |2 ++ > 1 files changed, 2 insertions(+), 0 deletions(-) > > diff --git a/tests/egl/egl-uti