anv: rename total_batch_size

This name is confusing, the real thing it represents is the allocated
amount of batch space.

Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Tapani Pälli <tapani.palli@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24628>
This commit is contained in:
Lionel Landwerlin
2023-08-11 12:04:18 +03:00
committed by Marge Bot
parent b492f73f87
commit 94e3e05b93
2 changed files with 9 additions and 9 deletions

View File

@@ -1491,7 +1491,7 @@ struct anv_batch {
* Sum of all the anv_batch_bo sizes allocated for this command buffer.
* Used to increase allocation size for long command buffers.
*/
size_t total_batch_size;
size_t allocated_batch_size;
struct anv_address start_addr;