[Piglit] [PATCH v2] ext_texture_norm16-render: support EXT_render_snorm interactions

2018-06-06 Thread Tapani Pälli
v2: EXT_render_snorm does not add new formats for glTexBuffer, add separate flag to indicate glTexBuffer support (separate from req_render that matched before) Signed-off-by: Tapani Pälli --- tests/spec/ext_texture_norm16/render.c | 39 ++ 1 file changed,

Re: [Piglit] [PATCH] Expand ARB_bindless_texture tests with new shader tests

2018-06-06 Thread Ilia Mirkin
On Wed, Jun 6, 2018 at 3:53 PM, Rhys Perry wrote: > These test a compiler's handling of bound image handles used as l-values r-values, not l-value l = r You can't do bound = asdf. > or being cast and it's handling of constant bindless handles. > > They were created in response to issues found

[Piglit] [PATCH] Expand ARB_bindless_texture tests with new shader tests

2018-06-06 Thread Rhys Perry
These test a compiler's handling of bound image handles used as l-values or being cast and it's handling of constant bindless handles. They were created in response to issues found in Mesa. Signed-off-by: Rhys Perry --- .../execution/images/bound-image-array.shader_test | 46 +

Re: [Piglit] [PATCH] Use _exit() instead of exit() in child processes

2018-06-06 Thread Ian Romanick
On 06/06/2018 02:43 AM, Michel Dänzer wrote: > From: Michel Dänzer > > A child process which doesn't call exec() shouldn't use exit(), as that > will attempt to run any atexit handlers of the parent, which may break. I did not know that. The manual page for exit does say, "All functions registe

Re: [Piglit] [PATCH] Use _exit() instead of exit() in child processes

2018-06-06 Thread Eric Anholt
Michel Dänzer writes: > From: Michel Dänzer > > A child process which doesn't call exec() shouldn't use exit(), as that > will attempt to run any atexit handlers of the parent, which may break. > It actually results in crashing with the Mesa radeonsi driver. Reviewed-by: Eric Anholt signatur

Re: [Piglit] [PATCH] general/draw: Test that checks propper render order in mixed draw setups.

2018-06-06 Thread Dylan Baker
Quoting mathias.froehl...@gmx.net (2018-06-04 23:05:27) > From: Mathias Fröhlich > > Hi all, > > The description below, > Please review!! > > best > Mathias > > > > The test checks for propper immediate mode flushes when array draws > are mixed with immediate mode draws. > The test abstracts

[Piglit] [PATCH v2] GL_ARB_texture_buffer_object: New test for error behavior.

2018-06-06 Thread Illia Iorin
This test checks that if we allocate more memory for the buffer than possible, we get GL_OUT_OF_MEMORY error. V2: - check GL_ARB_texture_buffer_object extension - change storage format to GL_RGBA32I - check gl compat version 3.1 because function glTexBuffer() require that version S

[Piglit] [PATCH] Use _exit() instead of exit() in child processes

2018-06-06 Thread Michel Dänzer
From: Michel Dänzer A child process which doesn't call exec() shouldn't use exit(), as that will attempt to run any atexit handlers of the parent, which may break. It actually results in crashing with the Mesa radeonsi driver. Signed-off-by: Michel Dänzer --- .../spec/glx_ext_import_context/im