Re: [Piglit] [PATCH 4/4] Add a test for rendering to a renderbuffer sibling of a GL texture.

2013-05-13 Thread Eric Anholt
Eric Anholt e...@anholt.net writes: --- tests/all.tests| 2 + tests/spec/CMakeLists.txt | 1 + .../khr_gl_renderbuffer_image/CMakeLists.gles2.txt | 11 ++ .../spec/khr_gl_renderbuffer_image/CMakeLists.txt | 1 +

[Piglit] [PATCH] dlist-beginend: Fix up subtest names.

2013-05-13 Thread Eric Anholt
For better or worse, the / in a test name is interpreted as a group separator. --- tests/spec/gl-1.0/dlist-beginend.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/spec/gl-1.0/dlist-beginend.c b/tests/spec/gl-1.0/dlist-beginend.c index bb2f3ac..1493d12

Re: [Piglit] [PATCH] dlist-beginend: Fix up subtest names.

2013-05-13 Thread Ian Romanick
On 05/13/2013 11:37 AM, Eric Anholt wrote: For better or worse, the / in a test name is interpreted as a group separator. D'oh. Reviewed-by: Ian Romanick ian.d.roman...@intel.com --- tests/spec/gl-1.0/dlist-beginend.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-)

Re: [Piglit] [PATCH] max-samplers: use the maximum number of textures in every shader

2013-05-13 Thread Ian Romanick
On 05/08/2013 10:49 AM, Marek Olšák wrote: --- tests/all.tests |1 + tests/spec/gl-3.1/CMakeLists.gl.txt |1 + tests/spec/gl-3.1/max-samplers.c| 274 +++ 3 files changed, 276 insertions(+) create mode 100644

Re: [Piglit] [PATCH 1/4] util: Bind fixed attrib locations for piglit_vertex and piglit_texcoord

2013-05-13 Thread Eric Anholt
Ian Romanick i...@freedesktop.org writes: On 05/08/2013 02:01 PM, Eric Anholt wrote: This will let us easily use piglit_draw_rect_tex() in ES-only shader tests, and is a step toward having the same shaders usable between ES and desktop without going to full VBO setup in shader_runner. The