modetest: align fb pitch to 64 bytes

Docs say this is necessary, and the kernel now enforces this.
main
Jesse Barnes 2010-09-09 10:27:22 -07:00
parent b8abe6139e
commit 0da84f89c2
1 changed files with 1 additions and 0 deletions

View 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);