OSDN Git Service

modetest: align fb pitch to 64 bytes
authorJesse Barnes <jbarnes@virtuousgeek.org>
Thu, 9 Sep 2010 17:27:22 +0000 (10:27 -0700)
committerJesse Barnes <jbarnes@virtuousgeek.org>
Thu, 9 Sep 2010 17:27:22 +0000 (10:27 -0700)
Docs say this is necessary, and the kernel now enforces this.

tests/modetest/modetest.c

index 177b9c0..820f8a5 100644 (file)
@@ -438,6 +438,7 @@ create_test_buffer(drm_intel_bufmgr *bufmgr,
 
        /* Mode size at 32 bpp */
        stride = width * 4;
+       stride = (stride + 63) & ~63;
        size = stride * height;
 
        bo = drm_intel_bo_alloc(bufmgr, "frontbuffer", size, 4096);