mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-03-21 07:30:33 +01:00
radv: allow VK_NV_device_generated_commands_{compute} with LLVM
DGC was disabled for LLVM due to 5/8 components SSBO stores but they
were not expected to work and this has been changed since a977a51a21
("radv: stop using 5/8 component SSBO stores"). No strong reason to
not enable it.
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/29714>
This commit is contained in:
parent
d9af1633a9
commit
10bd300b68
1 changed files with 2 additions and 2 deletions
|
|
@ -698,8 +698,8 @@ radv_physical_device_get_supported_extensions(const struct radv_physical_device
|
|||
.INTEL_shader_integer_functions2 = true,
|
||||
.MESA_image_alignment_control = pdev->info.gfx_level >= GFX9 && pdev->info.gfx_level <= GFX11_5,
|
||||
.NV_compute_shader_derivatives = true,
|
||||
.NV_device_generated_commands = !pdev->use_llvm && instance->drirc.enable_dgc,
|
||||
.NV_device_generated_commands_compute = !pdev->use_llvm && instance->drirc.enable_dgc,
|
||||
.NV_device_generated_commands = instance->drirc.enable_dgc,
|
||||
.NV_device_generated_commands_compute = instance->drirc.enable_dgc,
|
||||
/* Undocumented extension purely for vkd3d-proton. This check is to prevent anyone else from
|
||||
* using it.
|
||||
*/
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue