mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 11:38:05 +02:00
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:
parent
0658e5e141
commit
84a44ad17d
1 changed files with 5 additions and 1 deletions
|
|
@ -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,
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue