diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2013-06-27 10:59:06 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2013-06-27 10:59:06 +0100 |
commit | c6ad9861f00a3166fd89a7c43d602a4c2a5bde24 (patch) | |
tree | 141f0972ba9afb29cf9fba5f85a2f26c393fb08f | |
parent | 591981a36c333cdf08a91f28fb9670a62b95d31a (diff) |
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>
-rw-r--r-- | src/sna/sna_accel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sna/sna_accel.c b/src/sna/sna_accel.c index 04128639..a0e31146 100644 --- a/src/sna/sna_accel.c +++ b/src/sna/sna_accel.c @@ -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 && |