Re: [Piglit] [PATCH 1/2] tox: Remove testing of end-of-life Python 3.3

2018-07-23 Thread Eric Engestrom
On Friday, 2018-07-20 09:41:12 +0300, Andres Gomez wrote: > On Mon, 2018-06-11 at 12:15 +0100, Eric Engestrom wrote: > > On Monday, 2018-06-11 06:39:46 -0400, Rhys Kidd wrote: > > > On 11 June 2018 at 05:40, Eric Engestrom wrote: > > > > > > > On Saturday, 2018-06-09 15:45:36 -0400, Rhys Kidd

[Piglit] [PATCH 2/2] Test glMultiDrawElementsIndirect with non-VBO attribs

2018-07-23 Thread Marek Olšák
From: Marek Olšák --- tests/opengl.py | 3 +- .../multidrawelements.c | 69 +-- 2 files changed, 50 insertions(+), 22 deletions(-) diff --git a/tests/opengl.py b/tests/opengl.py index ce67d485b..3ca4ee74b 100644 ---

[Piglit] [PATCH 1/2] Test glMultiDrawArraysIndirect with non-VBO attribs

2018-07-23 Thread Marek Olšák
From: Marek Olšák --- tests/opengl.py | 6 ++ tests/spec/gl-3.0/multidrawarrays-vertexid.c | 64 +++- 2 files changed, 56 insertions(+), 14 deletions(-) diff --git a/tests/opengl.py b/tests/opengl.py index 6944fd79d..ce67d485b 100644 ---

[Piglit] [PATCH v3] arb_shader_image_load_store: Test format incompatible texture buffer

2018-07-23 Thread Danylo Piliaiev
Test for the regression which happened when GL_TEXTURE_BUFFER was allowed to have incompatible format. v2: Removed unnecessary code duplication - use upload_image instead of init_level. (Francisco Jerez) v3: Removed upload_image call because image is already called by init_image.

[Piglit] [PATCH] ext_texture_norm16-render: add more API coverage

2018-07-23 Thread Tapani Pälli
Add tests for glRenderbufferStorage and glCopyTexImage2D. Signed-off-by: Tapani Pälli --- tests/spec/ext_texture_norm16/render.c | 53 -- 1 file changed, 50 insertions(+), 3 deletions(-) diff --git a/tests/spec/ext_texture_norm16/render.c

Re: [Piglit] [PATCH v2] arb_shader_image_load_store: Test format incompatible texture buffer

2018-07-23 Thread Danylo Piliaiev
On 20.07.18 23:19, Francisco Jerez wrote: Danylo Piliaiev writes: On 20.07.18 17:04, Danylo Piliaiev wrote: On 20.07.18 02:26, Francisco Jerez wrote: Danylo Piliaiev writes: Test for the regression which happened when GL_TEXTURE_BUFFER was allowed to have incompatible format. v2: