raster pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=f3e6a8c9b38959f98dc0593ddf7954ea8373ee35
commit f3e6a8c9b38959f98dc0593ddf7954ea8373ee35 Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Wed Jun 17 12:17:13 2020 +0100 gl common - actually allow vertex limits fix non-commented out return that should have been commented out --- src/modules/evas/engines/gl_common/evas_gl_context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/evas/engines/gl_common/evas_gl_context.c b/src/modules/evas/engines/gl_common/evas_gl_context.c index 9ea1a86c72..313025f332 100644 --- a/src/modules/evas/engines/gl_common/evas_gl_context.c +++ b/src/modules/evas/engines/gl_common/evas_gl_context.c @@ -1845,7 +1845,7 @@ pipe_region_expand(Evas_Engine_GL_Context *gc, int n, static Eina_Bool vertex_array_size_check(Evas_Engine_GL_Context *gc, int pn, int n) { - return 1; +// return 1; // this fixup breaks for expedite test 32. why? // for reference if ((gc->pipe[pn].array.num + n) > gc->shared->info.max_vertex_elements) --
