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,