From 12fc6687949c299d8c13751663217e7b37be7e43 Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Fri, 19 Sep 2014 11:00:39 +0100 Subject: [PATCH] sna/gen8: Update DBG output of surface offset Signed-off-by: Chris Wilson --- src/sna/gen8_render.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sna/gen8_render.c b/src/sna/gen8_render.c index 1eb54aaf..e251315b 100644 --- a/src/sna/gen8_render.c +++ b/src/sna/gen8_render.c @@ -1396,8 +1396,8 @@ gen8_bind_bo(struct sna *sna, kgem_bo_set_binding(bo, format | is_dst << 30 | is_scanout << 31, offset); - DBG(("[%x] bind bo(handle=%d, addr=%d), format=%d, width=%d, height=%d, pitch=%d, tiling=%d -> %s\n", - offset, bo->handle, ss[1], + DBG(("[%x] bind bo(handle=%d, addr=%lx), format=%d, width=%d, height=%d, pitch=%d, tiling=%d -> %s\n", + offset, bo->handle, *(uint64_t *)(ss+8), format, width, height, bo->pitch, bo->tiling, domains & 0xffff ? "render" : "sampler"));