mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-10 12:30:11 +01:00
radv/winsys: Support vm_always_valid in the NULL winsys
A few device features (most importantly bufferDeviceAddress) are behind
a check for has_vm_always_valid. When replaying fossilize captures using
SPIR-V capabilities like PhysicalStorageBuffer addresses (which itself
depends on bufferDeviceAddress) on a null device, these features will be
hidden and replay will fail. Claim vm_always_valid support in the null
winsys - it's not like we'll ever create any BOs anyway.
Fixes: df1224c8 ("radv: rework VM_ALWAYS_VALID handling")
Cc: mesa-stable
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/36221>
This commit is contained in:
parent
f065c2f0ac
commit
87ebe6b31a
1 changed files with 1 additions and 0 deletions
|
|
@ -117,6 +117,7 @@ radv_null_winsys_query_info(struct radeon_winsys *rws, struct radeon_info *gpu_i
|
|||
gpu_info->num_physical_sgprs_per_simd = 512;
|
||||
|
||||
gpu_info->has_timeline_syncobj = true;
|
||||
gpu_info->has_vm_always_valid = true;
|
||||
gpu_info->has_3d_cube_border_color_mipmap = true;
|
||||
gpu_info->has_image_opcodes = true;
|
||||
gpu_info->has_attr_ring = gpu_info->gfx_level >= GFX11;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue