[Intel-gfx] [PATCH] testdisplay: for tiled mode test, the height should be aligned

Hai Lan hai.lan at intel.com
Fri Aug 5 06:47:25 CEST 2011


Signed-off-by: Hai Lan <hai.lan at intel.com>
---
 tests/testdisplay.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/tests/testdisplay.c b/tests/testdisplay.c
index dae52ca..1d85acd 100644
--- a/tests/testdisplay.c
+++ b/tests/testdisplay.c
@@ -414,7 +414,7 @@ allocate_surface(int fd, int width, int height, uint32_t depth, uint32_t bpp,
 
 	if (tiled) {
 		stride = (width * (bpp / 8) + 511) & ~511;
-		size = stride * height;
+		size = stride * (height + 7) & ~7;
 	} else {
 		/* Scan-out has a 64 byte alignment restriction */
 		stride = (width * (bpp / 8) + 63) & ~63;
-- 
1.7.3.4




More information about the Intel-gfx mailing list