From 75cd115ecf6d1db23eead25c138b9408734fce22 Mon Sep 17 00:00:00 2001 From: Yiwei Zhang Date: Mon, 5 Jun 2023 16:33:44 -0700 Subject: [PATCH] venus: temporarily disable VK_EXT_memory_budget This has confused the apps. Back out for now until further investigation is done. Signed-off-by: Yiwei Zhang Part-of: --- src/virtio/vulkan/vn_physical_device.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/virtio/vulkan/vn_physical_device.c b/src/virtio/vulkan/vn_physical_device.c index 72012e56e6b..a2d47976a09 100644 --- a/src/virtio/vulkan/vn_physical_device.c +++ b/src/virtio/vulkan/vn_physical_device.c @@ -1154,7 +1154,8 @@ vn_physical_device_get_passthrough_extensions( .EXT_index_type_uint8 = true, .EXT_line_rasterization = true, .EXT_load_store_op_none = true, - .EXT_memory_budget = true, + /* TODO: re-enable after generic app compat issues are resolved */ + .EXT_memory_budget = false, .EXT_multi_draw = true, .EXT_mutable_descriptor_type = true, .EXT_primitive_topology_list_restart = true,