From cfb5687cb3ae6a2000635b18368ea53bca229acf Mon Sep 17 00:00:00 2001 From: Erik Faye-Lund Date: Thu, 12 Dec 2024 13:35:24 +0100 Subject: [PATCH] panvk: disable imageCubeArray on bifrost We haven't wired this up correctly on Bifrost, so let's make this V10 only for now. Fixes: 605c173fbd8 ("panvk: update feature support") Reviewed-by: Eric R. Smith Part-of: --- src/panfrost/vulkan/panvk_physical_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/panfrost/vulkan/panvk_physical_device.c b/src/panfrost/vulkan/panvk_physical_device.c index 44d1aeb302e..d73e93c46b1 100644 --- a/src/panfrost/vulkan/panvk_physical_device.c +++ b/src/panfrost/vulkan/panvk_physical_device.c @@ -272,7 +272,7 @@ get_features(const struct panvk_physical_device *device, .depthBiasClamp = true, .robustBufferAccess = true, .fullDrawIndexUint32 = true, - .imageCubeArray = true, + .imageCubeArray = arch >= 10, .independentBlend = true, .sampleRateShading = true, .logicOp = true,