[Piglit] [PATCH] arb_texture_view: convert sampling-2d-array-* to GLES compatibility

2016-09-17 Thread Ilia Mirkin
Signed-off-by: Ilia Mirkin --- tests/all.py | 6 ++ tests/spec/arb_texture_view/CMakeLists.gles3.txt | 3 + .../sampling-2d-array-as-2d-layer.c| 72 +- .../sampling-2d-array-as-cubemap-array.c

[Piglit] [PATCH] arb_texture_view: convert remainder of rendering_* to work with GLES

2016-09-17 Thread Ilia Mirkin
These tests used a mix of GL 1.x and newer functionality. This switches all of them up to require GL 3.0 to avoid annoyance. All hardware that can support texture views is GL 3.0-capable. Signed-off-by: Ilia Mirkin --- tests/spec/arb_texture_view/CMakeLists.gles3.txt | 3

[Piglit] [PATCH] arb_texture_view: start converting for GL_OES_texture_view friendliness

2016-09-17 Thread Ilia Mirkin
Signed-off-by: Ilia Mirkin --- tests/all.py | 5 + tests/spec/arb_texture_view/CMakeLists.gles3.txt | 3 + tests/spec/arb_texture_view/rendering-formats.c | 621 +-- 3 files changed, 471 insertions(+), 158

Re: [Piglit] [PATCH] arb_viewport_array: rework tests to work with GL_OES_viewport_array

2016-09-17 Thread Kenneth Graunke
On Friday, September 16, 2016 3:38:49 PM PDT Ilia Mirkin wrote: > This makes some fairly simple changes to the existing tests to also work > with GL_OES_viewport_array, which presents largely identical > functionality. All of the tests continue to pass with desktop GL, and > also work with my

Re: [Piglit] [PATCH 2/2] framework: Make driver_classifier convert to str (unicode)

2016-09-17 Thread Eric Anholt
Dylan Baker writes: > In python2 the code as is works, although there might be odd corners. In > python 3 it fails because the code tries to match bytes and strs, which > doesn't work at all. > > This patch fixes the issue by converting the output from bytes to str >