anv: allow getting the address of the beginning of the batch

There is no reason not to be able to get it.

Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Fixes: 34a0ce58c7 ("anv: add a new execution mode for secondary command buffers")
Reviewed-by: Marcin Ślusarz <marcin.slusarz@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/15968>
(cherry picked from commit 184084e21c)
This commit is contained in:
Lionel Landwerlin 2022-04-13 11:08:44 +03:00 committed by Dylan Baker
parent c849ae36e0
commit df6dc532d2
2 changed files with 2 additions and 2 deletions

View file

@ -769,7 +769,7 @@
"description": "anv: allow getting the address of the beginning of the batch",
"nominated": true,
"nomination_type": 1,
"resolution": 0,
"resolution": 1,
"main_sha": null,
"because_sha": "34a0ce58c7f85ea3ec3f1026469ce06602f38a5b"
},

View file

@ -298,7 +298,7 @@ anv_batch_emit_dwords(struct anv_batch *batch, int num_dwords)
struct anv_address
anv_batch_address(struct anv_batch *batch, void *batch_location)
{
assert(batch->start < batch_location);
assert(batch->start <= batch_location);
/* Allow a jump at the current location of the batch. */
assert(batch->next >= batch_location);