mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-24 08:28:16 +02:00
radv: advertise VK_EXT_device_fault by default
This is can still be useful if the kernel has no GPUVM query support becuse it's possible to export GPU hang reports. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41598>
This commit is contained in:
parent
840952cc35
commit
d348e324da
1 changed files with 1 additions and 1 deletions
|
|
@ -828,7 +828,7 @@ radv_physical_device_get_supported_extensions(const struct radv_physical_device
|
|||
.EXT_descriptor_heap = instance->experimental_flags & RADV_EXPERIMENTAL_DESCRIPTOR_HEAP,
|
||||
.EXT_descriptor_indexing = true,
|
||||
.EXT_device_address_binding_report = true,
|
||||
.EXT_device_fault = pdev->info.has_gpuvm_fault_query,
|
||||
.EXT_device_fault = true,
|
||||
.EXT_device_generated_commands = pdev->info.gfx_level >= GFX8,
|
||||
.EXT_device_memory_report = true,
|
||||
.EXT_discard_rectangles = true,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue