Re: [Mesa-dev] [PATCH 2/5] panfrost: Specify supported draw modes per-context

2019-02-10 Thread Alyssa Rosenzweig
> Might I recommend saying (PIPE_PRIM_POLYGON + 1) instead of > PIPE_PRIM_LINES_ADJACENCY? Otherwise it's a bit unclear why you're > talking about LINES_ADJ. Thanks, just pushed with this change. ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org h

Re: [Mesa-dev] [PATCH 2/5] panfrost: Specify supported draw modes per-context

2019-02-08 Thread Ilia Mirkin
On Fri, Feb 8, 2019 at 8:24 PM Alyssa Rosenzweig wrote: > > Midgard has native support for QUADS and POLYGONS; Bifrost seemingly > does not. Thus, Midgard generally skips prim_convert whereas Bifrost > needs the pass; this patch allows the setting of allowed primitives to > occur on a per-context

[Mesa-dev] [PATCH 2/5] panfrost: Specify supported draw modes per-context

2019-02-08 Thread Alyssa Rosenzweig
Midgard has native support for QUADS and POLYGONS; Bifrost seemingly does not. Thus, Midgard generally skips prim_convert whereas Bifrost needs the pass; this patch allows the setting of allowed primitives to occur on a per-context basis (for runtime hardware selection). Signed-off-by: Alyssa Rose