diff options
author | Alyssa Rosenzweig <[email protected]> | 2019-08-19 14:47:50 -0700 |
---|---|---|
committer | Alyssa Rosenzweig <[email protected]> | 2019-08-21 08:40:53 -0700 |
commit | 897110a5669ececd60d4a1b8f525aa550ac31e6b (patch) | |
tree | 69ddab5f0ec77c726b48e3d1e4bd84ab3e2b752a /src/gallium/drivers | |
parent | f5c293425fa457d91be8e689501619dfb16ccefe (diff) |
pan/decode: Check for a number of potential issues
Verify sizes / masks / etc against something logical to cull down the
trace space and automatically guard against a number of potential
hazards.
Signed-off-by: Alyssa Rosenzweig <[email protected]>
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/panfrost/pan_context.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/panfrost/pan_context.c b/src/gallium/drivers/panfrost/pan_context.c index a07273c7da1..d2bb6bf6716 100644 --- a/src/gallium/drivers/panfrost/pan_context.c +++ b/src/gallium/drivers/panfrost/pan_context.c @@ -93,8 +93,8 @@ panfrost_emit_midg_tiler( /* Use a dummy polygon list */ t.polygon_list = ctx->tiler_dummy.bo->gpu; - /* Also, set a "tiler disabled?" flag? */ - t.hierarchy_mask |= 0x1000; + /* Disable the tiler */ + t.hierarchy_mask |= MALI_TILER_DISABLED; } t.polygon_list_body = |