<div dir="ltr">Reviewed-by: <a href="mailto:soren.sandmann@gmail.com">soren.sandmann@gmail.com</a><br></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Jun 12, 2018 at 10:38 AM, Siarhei Siamashka <span dir="ltr"><<a href="mailto:siarhei.siamashka@gmail.com" target="_blank">siarhei.siamashka@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Currently the number of bits per pixel is used instead of the<br>
number of bytes per pixel when calculating image strides. This<br>
does not cause any real problems, but the gaps between scanlines<br>
are excessively large.<br>
<br>
This patch actually converts bits to bytes and rounds up the result<br>
to the nearest byte boundary.<br>
<br>
Signed-off-by: Siarhei Siamashka <<a href="mailto:siarhei.siamashka@gmail.com">siarhei.siamashka@gmail.com</a>><br>
---<br>
 test/stress-test.c | 10 +++++-----<br>
 1 file changed, 5 insertions(+), 5 deletions(-)<br>
<br>
diff --git a/test/stress-test.c b/test/stress-test.c<br>
index 1f03c75..85d1293 100644<br>
--- a/test/stress-test.c<br>
+++ b/test/stress-test.c<br>
@@ -291,7 +291,7 @@ create_random_bits_image (alpha_preference_t alpha_preference)<br>
     {<br>
     default:<br>
     case 0:<br>
-       stride = width * PIXMAN_FORMAT_BPP (format) + prng_rand_n (17);<br>
+       stride = (width * PIXMAN_FORMAT_BPP (format) + 7) / 8 + prng_rand_n (17);<br>
        stride = (stride + 3) & (~3);<br>
        bits = (uint32_t *)make_random_bytes (height * stride);<br>
        break;<br>
@@ -302,7 +302,7 @@ create_random_bits_image (alpha_preference_t alpha_preference)<br>
        break;<br>
<br>
     case 2: /* Zero-filled */<br>
-       stride = width * PIXMAN_FORMAT_BPP (format) + prng_rand_n (17);<br>
+       stride = (width * PIXMAN_FORMAT_BPP (format) + 7) / 8 + prng_rand_n (17);<br>
        stride = (stride + 3) & (~3);<br>
        bits = fence_malloc (height * stride);<br>
        if (!bits)<br>
@@ -311,7 +311,7 @@ create_random_bits_image (alpha_preference_t alpha_preference)<br>
        break;<br>
<br>
     case 3: /* Filled with 0xFF */<br>
-       stride = width * PIXMAN_FORMAT_BPP (format) + prng_rand_n (17);<br>
+       stride = (width * PIXMAN_FORMAT_BPP (format) + 7) / 8 + prng_rand_n (17);<br>
        stride = (stride + 3) & (~3);<br>
        bits = fence_malloc (height * stride);<br>
        if (!bits)<br>
@@ -327,7 +327,7 @@ create_random_bits_image (alpha_preference_t alpha_preference)<br>
        break;<br>
<br>
     case 5: /* bits is a real pointer, has read/write functions */<br>
-       stride = width * PIXMAN_FORMAT_BPP (format) + prng_rand_n (17);<br>
+       stride = (width * PIXMAN_FORMAT_BPP (format) + 7) / 8 + prng_rand_n (17);<br>
        stride = (stride + 3) & (~3);<br>
        bits = fence_malloc (height * stride);<br>
        if (!bits)<br>
@@ -338,7 +338,7 @@ create_random_bits_image (alpha_preference_t alpha_preference)<br>
        break;<br>
<br>
     case 6: /* bits is a real pointer, stride is negative */<br>
-       stride = (width * PIXMAN_FORMAT_BPP (format) + prng_rand_n (17));<br>
+       stride = (width * PIXMAN_FORMAT_BPP (format) + 7) / 8 + prng_rand_n (17);<br>
        stride = (stride + 3) & (~3);<br>
        bits = (uint32_t *)make_random_bytes (height * stride);<br>
        if (!bits)<br>
<span class="HOEnZb"><font color="#888888">-- <br>
2.16.1<br>
<br>
______________________________<wbr>_________________<br>
Pixman mailing list<br>
<a href="mailto:Pixman@lists.freedesktop.org">Pixman@lists.freedesktop.org</a><br>
<a href="https://lists.freedesktop.org/mailman/listinfo/pixman" rel="noreferrer" target="_blank">https://lists.freedesktop.org/<wbr>mailman/listinfo/pixman</a><br>
</font></span></blockquote></div><br></div>