From 12e36c88719c8915edc2f25c8c796d2dc300ba07 Mon Sep 17 00:00:00 2001 From: Erik Faye-Lund Date: Tue, 2 Sep 2025 11:51:56 +0200 Subject: [PATCH] panvk: expose missed vulkan 1.4 properties AFAICT, we support these. So let's expose the properties here! Reviewed-by: Yiwei Zhang Reviewed-by: Christoph Pillmayer Part-of: --- src/panfrost/vulkan/panvk_vX_physical_device.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/panfrost/vulkan/panvk_vX_physical_device.c b/src/panfrost/vulkan/panvk_vX_physical_device.c index b96772afb95..7f86e8f6a04 100644 --- a/src/panfrost/vulkan/panvk_vX_physical_device.c +++ b/src/panfrost/vulkan/panvk_vX_physical_device.c @@ -963,11 +963,11 @@ panvk_per_arch(get_physical_device_properties)( .maxVertexAttribDivisor = UINT32_MAX, .supportsNonZeroFirstInstance = true, .maxPushDescriptors = MAX_PUSH_DESCS, - .dynamicRenderingLocalReadDepthStencilAttachments = false, - .dynamicRenderingLocalReadMultisampledAttachments = false, + .dynamicRenderingLocalReadDepthStencilAttachments = true, + .dynamicRenderingLocalReadMultisampledAttachments = true, .earlyFragmentMultisampleCoverageAfterSampleCounting = true, .earlyFragmentSampleMaskTestBeforeSampleCounting = true, - .depthStencilSwizzleOneSupport = false, + .depthStencilSwizzleOneSupport = true, .polygonModePointSize = false, .nonStrictSinglePixelWideLinesUseParallelogram = false, .nonStrictWideLinesUseParallelogram = false,