sna: Fix DBG printing of can_upload_tiled_x()

The function changed it parameters, this DBG caller did not.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
This commit is contained in:
Chris Wilson 2013-06-27 10:59:06 +01:00
parent 591981a36c
commit c6ad9861f0
1 changed files with 1 additions and 1 deletions

View File

@ -3954,7 +3954,7 @@ try_upload_tiled_x(PixmapPtr pixmap, RegionRec *region,
DBG(("%s: bo? %d, can tile? %d\n", __FUNCTION__,
priv->gpu_bo != NULL,
priv->gpu_bo ? can_upload_tiled_x(&sna->kgem, priv->gpu_bo) : 0));
priv->gpu_bo ? can_upload_tiled_x(&sna->kgem, priv) : 0));
replaces = region->data == NULL &&
w >= pixmap->drawable.width &&