<div dir="auto"><div><div class="gmail_extra"><div class="gmail_quote">On Dec 15, 2016 3:22 PM, "Francisco Jerez" <<a href="mailto:currojerez@riseup.net">currojerez@riseup.net</a>> wrote:<br type="attribution"><blockquote class="quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">This fixes an apparent regression in a bunch of image store vulkan CTS<br>
tests from commit ad38ba113491869ab0dffed937f7b3<wbr>dd50e8a735, which<br>
started using OWORD block read messages to implement UBO loads.  The<br>
reason for the failure is that we were giving bogus buffer alignment<br>
limits to the application (1B), so the CTS would happily come back<br>
with descriptor sets pointing at not even word-aligned uniform buffer<br>
addresses.  No idea how these tests could possibly work before while<br>
we were using the sampler to fetch pull constants.<br></blockquote></div></div></div><div dir="auto"><br></div><div dir="auto">Fun fact: the sampler has very few requirements when it comes to linear surfaces (including buffers).  One notable exception is that it doesn't seem to care about alignment... at all.  A bit surprising, I know, but I've seen other cases where it's totally fine with nonaligned offsets and strides (in the case of 2D).</div><div dir="auto"><br></div><div dir="auto">That is for fixing this!</div><div dir="auto"><br></div><div dir="auto">Reviewed-by: Jason Ekstrand <<a href="mailto:jason@jlekstrand.net">jason@jlekstrand.net</a>></div><div dir="auto"><br></div><div dir="auto"><div class="gmail_extra"><div class="gmail_quote"><blockquote class="quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
Cc: <<a href="mailto:mesa-stable@lists.freedesktop.org">mesa-stable@lists.<wbr>freedesktop.org</a>><br>
Bugzilla: <a href="https://bugs.freedesktop.org/show_bug.cgi?id=99097" rel="noreferrer" target="_blank">https://bugs.freedesktop.org/<wbr>show_bug.cgi?id=99097</a><br>
Reported-by: Mark Janes <<a href="mailto:mark.a.janes@intel.com">mark.a.janes@intel.com</a>><br>
---<br>
 src/intel/vulkan/anv_device.c | 4 ++--<br>
 1 file changed, 2 insertions(+), 2 deletions(-)<br>
<br>
diff --git a/src/intel/vulkan/anv_device.<wbr>c b/src/intel/vulkan/anv_device.<wbr>c<br>
index e3d278d..9245e5c 100644<br>
--- a/src/intel/vulkan/anv_device.<wbr>c<br>
+++ b/src/intel/vulkan/anv_device.<wbr>c<br>
@@ -582,8 +582,8 @@ void anv_<wbr>GetPhysicalDeviceProperties(<br>
       .viewportSubPixelBits                     = 13, /* We take a float? */<br>
       .minMemoryMapAlignment                    = 4096, /* A page */<br>
       .minTexelBufferOffsetAlignment            = 1,<br>
-      .<wbr>minUniformBufferOffsetAlignmen<wbr>t          = 1,<br>
-      .<wbr>minStorageBufferOffsetAlignmen<wbr>t          = 1,<br>
+      .<wbr>minUniformBufferOffsetAlignmen<wbr>t          = 16,<br>
+      .<wbr>minStorageBufferOffsetAlignmen<wbr>t          = 4,<br>
       .minTexelOffset                           = -8,<br>
       .maxTexelOffset                           = 7,<br>
       .minTexelGatherOffset                     = -32,<br>
<font color="#888888">--<br>
2.10.2<br>
<br>
______________________________<wbr>_________________<br>
mesa-dev mailing list<br>
<a href="mailto:mesa-dev@lists.freedesktop.org">mesa-dev@lists.freedesktop.org</a><br>
<a href="https://lists.freedesktop.org/mailman/listinfo/mesa-dev" rel="noreferrer" target="_blank">https://lists.freedesktop.org/<wbr>mailman/listinfo/mesa-dev</a><br>
</font></blockquote></div><br></div></div></div>