From effa913d166e9f4896e3ce5e0240d772bcd98081 Mon Sep 17 00:00:00 2001 From: Benjamin Lee Date: Sat, 1 Feb 2025 02:47:50 -0800 Subject: [PATCH] panvk: advertise storagePushConstant16 and storageInputOutput16 Signed-off-by: Benjamin Lee Reviewed-by: Lars-Ivar Hesselberg Simonsen Part-of: --- docs/relnotes/new_features.txt | 2 ++ src/panfrost/vulkan/panvk_physical_device.c | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/relnotes/new_features.txt b/docs/relnotes/new_features.txt index 83086befee9..70f8eed4751 100644 --- a/docs/relnotes/new_features.txt +++ b/docs/relnotes/new_features.txt @@ -1 +1,3 @@ cl_khr_spirv_linkonce_odr in rusticl +storagePushConstant16 on panvk +storageInputOutput16 on panvk diff --git a/src/panfrost/vulkan/panvk_physical_device.c b/src/panfrost/vulkan/panvk_physical_device.c index 8124da9259f..f547cb46a72 100644 --- a/src/panfrost/vulkan/panvk_physical_device.c +++ b/src/panfrost/vulkan/panvk_physical_device.c @@ -287,8 +287,8 @@ get_features(const struct panvk_physical_device *device, /* Vulkan 1.1 */ .storageBuffer16BitAccess = true, .uniformAndStorageBuffer16BitAccess = true, - .storagePushConstant16 = false, - .storageInputOutput16 = false, + .storagePushConstant16 = true, + .storageInputOutput16 = true, .multiview = arch >= 10, .multiviewGeometryShader = false, .multiviewTessellationShader = false,