Re: [Mesa-dev] [PATCH 08/11] freedreno: a2xx: split large draws on a20x

2018-10-08 Thread Jonathan marek
Hi, You're right, it would be easy to do. I'll include it in my next submission. On 10/08/2018 12:13 AM, Ilia Mirkin wrote: See my feedback from your earlier submission for how to make this work on more than triangles. Seems easy enough to just do it. https://patchwork.freedesktop.org/patch/25

Re: [Mesa-dev] [PATCH 08/11] freedreno: a2xx: split large draws on a20x

2018-10-07 Thread Ilia Mirkin
See my feedback from your earlier submission for how to make this work on more than triangles. Seems easy enough to just do it. https://patchwork.freedesktop.org/patch/250192/ On Mon, Oct 8, 2018 at 12:07 AM Jonathan Marek wrote: > > a20x can only draw 65535 vertices at once. this fix only applie

[Mesa-dev] [PATCH 08/11] freedreno: a2xx: split large draws on a20x

2018-10-07 Thread Jonathan Marek
a20x can only draw 65535 vertices at once. this fix only applies to triangles. Signed-off-by: Jonathan Marek --- src/gallium/drivers/freedreno/a2xx/fd2_draw.c | 30 +-- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/src/gallium/drivers/freedreno/a2xx/fd2_draw.c b