mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 09:38:07 +02:00
anv: If softpin is supported, use it with the hiz clear value bo
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com> Reviewed-by: Jason Ekstrand <jason@jlekstrand.net> Reviewed-by: Nanley Chery <nanley.g.chery@intel.com>
This commit is contained in:
parent
2a97390552
commit
ca1d3fc538
1 changed files with 9 additions and 0 deletions
|
|
@ -1569,6 +1569,15 @@ static void
|
|||
anv_device_init_hiz_clear_value_bo(struct anv_device *device)
|
||||
{
|
||||
anv_bo_init_new(&device->hiz_clear_bo, device, 4096);
|
||||
|
||||
if (device->instance->physicalDevice.has_exec_async)
|
||||
device->hiz_clear_bo.flags |= EXEC_OBJECT_ASYNC;
|
||||
|
||||
if (device->instance->physicalDevice.use_softpin)
|
||||
device->hiz_clear_bo.flags |= EXEC_OBJECT_PINNED;
|
||||
|
||||
anv_vma_alloc(device, &device->hiz_clear_bo);
|
||||
|
||||
uint32_t *map = anv_gem_mmap(device, device->hiz_clear_bo.gem_handle,
|
||||
0, 4096, 0);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue