mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-04 04:10:25 +01:00
radv: advertise VK_EXT_device_fault
This is only exposed if the kernel supports GPUVM fault query. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25875>
This commit is contained in:
parent
8097becc7f
commit
790fabd38e
2 changed files with 6 additions and 0 deletions
|
|
@ -1,3 +1,4 @@
|
|||
New features
|
||||
------------
|
||||
VK_EXT_image_compression_control on RADV
|
||||
VK_EXT_device_fault on RADV
|
||||
|
|
|
|||
|
|
@ -492,6 +492,7 @@ radv_physical_device_get_supported_extensions(const struct radv_physical_device
|
|||
.EXT_depth_range_unrestricted = true,
|
||||
.EXT_descriptor_buffer = true,
|
||||
.EXT_descriptor_indexing = true,
|
||||
.EXT_device_fault = device->rad_info.has_gpuvm_fault_query,
|
||||
.EXT_discard_rectangles = true,
|
||||
#ifdef VK_USE_PLATFORM_DISPLAY_KHR
|
||||
.EXT_display_control = true,
|
||||
|
|
@ -1058,6 +1059,10 @@ radv_physical_device_get_features(const struct radv_physical_device *pdevice, st
|
|||
|
||||
/* VK_EXT_image_compression_control */
|
||||
.imageCompressionControl = true,
|
||||
|
||||
/* VK_EXT_device_fault */
|
||||
.deviceFault = true,
|
||||
.deviceFaultVendorBinary = false,
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue