Re: [Piglit] [PATCH] egl: add new test egl-create-largest-pbuffer-surface

2016-02-15 Thread Juha-Pekka Heikkila
{ + EGL_RENDERABLE_TYPE, EGL_OPENGL_ES_BIT, + EGL_NONE + }; + + egl_init_test(); + test.draw = draw; + test.stop_on_failure = true; + test.config_attribs = test_attribs; + + if (egl_util_run(, argc, argv) != PIGLIT_PASS) + return

Re: [Piglit] [PATCH] arb_program_interface_query: rever linker test for querying varyings

2015-10-07 Thread Juha-Pekka Heikkila
Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikk...@gmail.com> On 07.10.2015 09:34, Tapani Pälli wrote: This reverts commit e68f387df54767c177fcbf9e2f0b44a98525eb2a. This test is wrong. Varyings as GL_PROGRAM_INPUT should be in the resource list only when using SSO, not in case o

Re: [Piglit] [PATCH] sso: bind pipeline object in ValidateProgramPipeline

2015-09-15 Thread Juha-Pekka Heikkila
Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikk...@gmail.com> On 14.09.2015 12:23, Tapani Pälli wrote: > When fixing some ES 3.1 conformance issues I noticed several subtests > started to fail. Pipeline has to be bound before validation, this makes > failing subtests to pass wi

[Piglit] [PATCH 2/3] Fix egl-nok-texture-from-pixmap

2014-10-27 Thread Juha-Pekka Heikkila
Piglit egl-util nowadays require gles to be declared in test attributes, otherwise we'll get gl. Signed-off-by: Juha-Pekka Heikkila juhapekka.heikk...@gmail.com --- tests/egl/egl-nok-texture-from-pixmap.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/tests/egl/egl-nok-texture-from

[Piglit] [PATCH 1/3] Fix egl-create-pbuffer-surface test

2014-10-27 Thread Juha-Pekka Heikkila
Piglit egl-util nowadays require gles to be declared in test attributes, otherwise we'll get gl. Signed-off-by: Juha-Pekka Heikkila juhapekka.heikk...@gmail.com --- tests/egl/egl-create-pbuffer-surface.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/tests/egl/egl-create-pbuffer

[Piglit] [PATCH 0/3] Fix two egl tests and add warning into egl-util

2014-10-27 Thread Juha-Pekka Heikkila
and no EGL_RENDERABLE_TYPE is defined. /Juha-Pekka Juha-Pekka Heikkila (3): Fix egl-create-pbuffer-surface test Fix egl-nok-texture-from-pixmap egl-util.c: add warning if no EGL_RENDERABLE_TYPE is defined for test tests/egl/egl-create-pbuffer-surface.c | 6 ++ tests/egl/egl-nok-texture-from

[Piglit] [PATCH 3/3] egl-util.c: add warning if no EGL_RENDERABLE_TYPE is defined for test

2014-10-27 Thread Juha-Pekka Heikkila
Signed-off-by: Juha-Pekka Heikkila juhapekka.heikk...@gmail.com --- tests/egl/egl-util.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/egl/egl-util.c b/tests/egl/egl-util.c index 99d6840..2e880f8 100644 --- a/tests/egl/egl-util.c +++ b/tests/egl/egl-util.c @@ -241,6 +241,7

[Piglit] [PATCH] egl-create-pbuffer-surface: Add test for egl pbuffer surface

2014-10-08 Thread Juha-Pekka Heikkila
Test to create egl pbuffer surface, clear it with glClear, draw it to window and read written color back. Signed-off-by: Juha-Pekka Heikkila juhapekka.heikk...@gmail.com --- tests/all.py | 1 + tests/egl/CMakeLists.gl.txt| 2 + tests/egl/egl-create-pbuffer

[Piglit] [PATCH] egl-create-pbuffer-surface: Add test for egl pbuffer surface

2014-10-07 Thread Juha-Pekka Heikkila
Test to create egl pbuffer surface, clear it with glClear, draw it to window and read written color back. Signed-off-by: Juha-Pekka Heikkila juhapekka.heikk...@gmail.com --- tests/all.py | 1 + tests/egl/CMakeLists.gl.txt| 2 + tests/egl/egl-create