From 732db2b60cd37430869dcf58df48833a06073a15 Mon Sep 17 00:00:00 2001 From: Rohan Garg Date: Tue, 30 May 2023 18:26:01 +0200 Subject: [PATCH] hasvk: enable single texel alignment Signed-off-by: Rohan Garg Reviewed-by: Lionel Landwerlin Cc: mesa-stable Part-of: --- src/intel/vulkan_hasvk/anv_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intel/vulkan_hasvk/anv_device.c b/src/intel/vulkan_hasvk/anv_device.c index af4d759a2aa..f0263470fc6 100644 --- a/src/intel/vulkan_hasvk/anv_device.c +++ b/src/intel/vulkan_hasvk/anv_device.c @@ -2040,7 +2040,7 @@ anv_get_physical_device_properties_1_3(struct anv_physical_device *pdevice, * experience demonstrate that this is true. */ p->uniformTexelBufferOffsetAlignmentBytes = 1; - p->uniformTexelBufferOffsetSingleTexelAlignment = false; + p->uniformTexelBufferOffsetSingleTexelAlignment = true; p->maxBufferSize = pdevice->isl_dev.max_buffer_size; }