From 0927de4631cb3592ca59e4528b8bc4c4ab7eccc9 Mon Sep 17 00:00:00 2001 From: Lionel Landwerlin Date: Tue, 7 Apr 2026 09:24:43 +0300 Subject: [PATCH] anv: enable storageInputOutput16 Signed-off-by: Lionel Landwerlin Acked-by: Alyssa Rosenzweig Part-of: --- src/intel/vulkan/anv_physical_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intel/vulkan/anv_physical_device.c b/src/intel/vulkan/anv_physical_device.c index 3dc9cfc8e8e..c00d27eb190 100644 --- a/src/intel/vulkan/anv_physical_device.c +++ b/src/intel/vulkan/anv_physical_device.c @@ -491,7 +491,7 @@ get_features(const struct anv_physical_device *pdevice, .storageBuffer16BitAccess = !pdevice->instance->no_16bit, .uniformAndStorageBuffer16BitAccess = !pdevice->instance->no_16bit, .storagePushConstant16 = true, - .storageInputOutput16 = false, + .storageInputOutput16 = true, .multiview = true, .multiviewGeometryShader = true, .multiviewTessellationShader = true,