From 84a44ad17d027cc6fc69288dc5c64b86d939ebc5 Mon Sep 17 00:00:00 2001 From: Mel Henning Date: Fri, 20 Feb 2026 18:17:42 -0500 Subject: [PATCH] nvk: Disable descriptorBufferCaptureReplay for now This gets renderdoc working again. We can turn this back on once we figure out the issues around replay addresses. See also: https://gitlab.freedesktop.org/mesa/mesa/-/issues/14518 Reviewed-by: Mary Guillemard Part-of: --- src/nouveau/vulkan/nvk_physical_device.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/nouveau/vulkan/nvk_physical_device.c b/src/nouveau/vulkan/nvk_physical_device.c index ff298271bf5..35e1910610f 100644 --- a/src/nouveau/vulkan/nvk_physical_device.c +++ b/src/nouveau/vulkan/nvk_physical_device.c @@ -598,7 +598,11 @@ nvk_get_device_features(const struct nv_device_info *info, /* VK_EXT_descriptor_buffer */ .descriptorBuffer = info->cls_eng3d >= MAXWELL_A, - .descriptorBufferCaptureReplay = info->cls_eng3d >= MAXWELL_A, + /* + * CaptureReplay is disabled until we fix + * https://gitlab.freedesktop.org/mesa/mesa/-/issues/14518 + */ + .descriptorBufferCaptureReplay = false, /* info->cls_eng3d >= MAXWELL_A, */ .descriptorBufferImageLayoutIgnored = info->cls_eng3d >= MAXWELL_A, .descriptorBufferPushDescriptors = info->cls_eng3d >= MAXWELL_A,