diff options
author | Alyssa Rosenzweig <[email protected]> | 2019-03-31 04:26:48 +0000 |
---|---|---|
committer | Alyssa Rosenzweig <[email protected]> | 2019-03-31 04:41:54 +0000 |
commit | 0e4c321c15823b9e44598f0268ee8d69a07bd9d5 (patch) | |
tree | 83fad633fd2067005c3dbb8511ffb4c2da5c3e68 /src/gallium/drivers/panfrost/pan_context.c | |
parent | 4fcd3189aea22d3384a7d9b4920b2e0202e69594 (diff) |
panfrost: Clean index state between indexed draws
Fixes subsequent tests in
dEQP-GLES2.functional.draw.draw_elements.indices.*
Signed-off-by: Alyssa Rosenzweig <[email protected]>
Diffstat (limited to 'src/gallium/drivers/panfrost/pan_context.c')
-rw-r--r-- | src/gallium/drivers/panfrost/pan_context.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/drivers/panfrost/pan_context.c b/src/gallium/drivers/panfrost/pan_context.c index 65019f8566e..973b9c6ae93 100644 --- a/src/gallium/drivers/panfrost/pan_context.c +++ b/src/gallium/drivers/panfrost/pan_context.c @@ -1452,6 +1452,9 @@ panfrost_draw_vbo( ctx->payload_tiler.prefix.unknown_draw &= ~(0x3000 | 0x18000); ctx->payload_tiler.prefix.unknown_draw |= (mode == PIPE_PRIM_POINTS || ctx->vertex_count > 65535) ? 0x3000 : 0x18000; + /* Clean index state */ + ctx->payload_tiler.prefix.unknown_draw &= ~MALI_DRAW_INDEXED_UINT32; + if (info->index_size) { /* Calculate the min/max index used so we can figure out how * many times to invoke the vertex shader */ @@ -1500,7 +1503,6 @@ panfrost_draw_vbo( ctx->payload_tiler.prefix.index_count = MALI_POSITIVE(ctx->vertex_count); /* Reverse index state */ - ctx->payload_tiler.prefix.unknown_draw &= ~MALI_DRAW_INDEXED_UINT32; ctx->payload_tiler.prefix.indices = (uintptr_t) NULL; } |