diff options
author | Tomeu Vizoso <[email protected]> | 2020-04-27 16:49:22 +0200 |
---|---|---|
committer | Tomeu Vizoso <[email protected]> | 2020-05-01 16:52:03 +0200 |
commit | 4d581a4bc6ad51b3c5478d46dd2f52f7c86a2974 (patch) | |
tree | 15f3951a85d5b50eb0bfa7dcd60b4f5dc131e599 /src/panfrost/encoder | |
parent | 28902ba87e7166688157ea3ba0593eb1a60a5d9b (diff) |
panfrost: Create additional BO for the checksum of imported BOs (Bifrost)
Similar to what the blob does. My reason for doing this was mainly so
traces weren't as different, which makes it more work to spot
relevant differences.
Signed-off-by: Tomeu Vizoso <[email protected]>
Reviewed-by: Alyssa Rosenzweig <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4832>
Diffstat (limited to 'src/panfrost/encoder')
-rw-r--r-- | src/panfrost/encoder/pan_texture.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/panfrost/encoder/pan_texture.h b/src/panfrost/encoder/pan_texture.h index 5bcda798ac3..591efd86c68 100644 --- a/src/panfrost/encoder/pan_texture.h +++ b/src/panfrost/encoder/pan_texture.h @@ -46,6 +46,7 @@ struct panfrost_slice { * is its offset/stride? */ unsigned checksum_offset; unsigned checksum_stride; + struct panfrost_bo *checksum_bo; /* Has anything been written to this slice? */ bool initialized; |