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 <mary@mary.zone>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/40019>
This commit is contained in:
Mel Henning 2026-02-20 18:17:42 -05:00 committed by Marge Bot
parent 0658e5e141
commit 84a44ad17d

View file

@ -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,