mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-03 04:20:26 +01:00
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 commit184084e21c)
This commit is contained in:
parent
c849ae36e0
commit
df6dc532d2
2 changed files with 2 additions and 2 deletions
|
|
@ -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"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue