<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
</head>
<body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">
Reviewed-by: Tim Rowley <<a href="mailto:timothy.o.rowley@intel.com" class="">timothy.o.rowley@intel.com</a>>
<div class=""><br class="">
<div>
<blockquote type="cite" class="">
<div class="">On Nov 17, 2016, at 10:56 PM, Ilia Mirkin <<a href="mailto:imirkin@alum.mit.edu" class="">imirkin@alum.mit.edu</a>> wrote:</div>
<br class="Apple-interchange-newline">
<div class="">
<div class="">There's no guarantee that mip width/height will be a multiple of the<br class="">
compressed block size. Doing a divide by the block size first yields<br class="">
different results than GL expects, so we do the divide at the end.<br class="">
<br class="">
Signed-off-by: Ilia Mirkin <<a href="mailto:imirkin@alum.mit.edu" class="">imirkin@alum.mit.edu</a>><br class="">
---<br class="">
.../swr/rasterizer/memory/TilingFunctions.h        | 36 +++++++++++++++-------<br class="">
1 file changed, 25 insertions(+), 11 deletions(-)<br class="">
<br class="">
diff --git a/src/gallium/drivers/swr/rasterizer/memory/TilingFunctions.h b/src/gallium/drivers/swr/rasterizer/memory/TilingFunctions.h<br class="">
index 0694a99..11ed451 100644<br class="">
--- a/src/gallium/drivers/swr/rasterizer/memory/TilingFunctions.h<br class="">
+++ b/src/gallium/drivers/swr/rasterizer/memory/TilingFunctions.h<br class="">
@@ -274,9 +274,12 @@ INLINE void ComputeLODOffset1D(<br class="">
    else<br class="">
    {<br class="">
        uint32_t curWidth = baseWidth;<br class="">
-        // translate mip width from pixels to blocks for block compressed formats<br class="">
-        // @note hAlign is already in blocks for compressed formats so no need to convert<br class="">
-        if (info.isBC) curWidth /= info.bcWidth;<br class="">
+        // @note hAlign is already in blocks for compressed formats so upconvert<br class="">
+        //       so that we have the desired alignment post-divide.<br class="">
+        if (info.isBC)<br class="">
+        {<br class="">
+            hAlign *= info.bcWidth;<br class="">
+        }<br class="">
<br class="">
        offset = GFX_ALIGN(curWidth, hAlign);<br class="">
        for (uint32_t l = 1; l < lod; ++l)<br class="">
@@ -285,7 +288,7 @@ INLINE void ComputeLODOffset1D(<br class="">
            offset += curWidth;<br class="">
        }<br class="">
<br class="">
-        if (info.isSubsampled)<br class="">
+        if (info.isSubsampled || info.isBC)<br class="">
        {<br class="">
            offset /= info.bcWidth;<br class="">
        }<br class="">
@@ -312,14 +315,17 @@ INLINE void ComputeLODOffsetX(<br class="">
    else<br class="">
    {<br class="">
        uint32_t curWidth = baseWidth;<br class="">
-        // convert mip width from pixels to blocks for block compressed formats<br class="">
-        // @note hAlign is already in blocks for compressed formats so no need to convert<br class="">
-        if (info.isBC) curWidth /= info.bcWidth;<br class="">
+        // @note hAlign is already in blocks for compressed formats so upconvert<br class="">
+        //       so that we have the desired alignment post-divide.<br class="">
+        if (info.isBC)<br class="">
+        {<br class="">
+            hAlign *= info.bcWidth;<br class="">
+        }<br class="">
<br class="">
        curWidth = std::max<uint32_t>(curWidth >> 1, 1U);<br class="">
        curWidth = GFX_ALIGN(curWidth, hAlign);<br class="">
<br class="">
-        if (info.isSubsampled)<br class="">
+        if (info.isSubsampled || info.isBC)<br class="">
        {<br class="">
            curWidth /= info.bcWidth;<br class="">
        }<br class="">
@@ -350,9 +356,12 @@ INLINE void ComputeLODOffsetY(<br class="">
        offset = 0;<br class="">
        uint32_t mipHeight = baseHeight;<br class="">
<br class="">
-        // translate mip height from pixels to blocks for block compressed formats<br class="">
-        // @note VAlign is already in blocks for compressed formats so no need to convert<br class="">
-        if (info.isBC) mipHeight /= info.bcHeight;<br class="">
+        // @note vAlign is already in blocks for compressed formats so upconvert<br class="">
+        //       so that we have the desired alignment post-divide.<br class="">
+        if (info.isBC)<br class="">
+        {<br class="">
+            vAlign *= info.bcHeight;<br class="">
+        }<br class="">
<br class="">
        for (uint32_t l = 1; l <= lod; ++l)<br class="">
        {<br class="">
@@ -360,6 +369,11 @@ INLINE void ComputeLODOffsetY(<br class="">
            offset += ((l != 2) ? alignedMipHeight : 0);<br class="">
            mipHeight = std::max<uint32_t>(mipHeight >> 1, 1U);<br class="">
        }<br class="">
+<br class="">
+        if (info.isBC)<br class="">
+        {<br class="">
+            offset /= info.bcHeight;<br class="">
+        }<br class="">
    }<br class="">
}<br class="">
<br class="">
-- <br class="">
2.7.3<br class="">
<br class="">
</div>
</div>
</blockquote>
</div>
<br class="">
</div>
</body>
</html>