diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2014-06-18 18:47:14 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2014-06-18 18:47:40 +0100 |
commit | 273c82a574896885f9f4a78a7463cc4620803624 (patch) | |
tree | 24cbd01d086564e2282c2a2a7404e64dd6c92648 /src/sna/sna_display.c | |
parent | 62aaf2ff4f8597067cf387865707baa00ed9a123 (diff) |
sna: Fix DBG compilation
Missed updaing the DBG message in
commit 83c0f034454ef0f474126a3398e5e790ac5ef842
Author: Chris Wilson <chris@chris-wilson.co.uk>
Date: Wed Jun 18 16:51:46 2014 +0100
sna: Pass desired CRTC viewport for completing single CRTC flips
References: https://bugs.freedesktop.org/show_bug.cgi?id=80157
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src/sna/sna_display.c')
-rw-r--r-- | src/sna/sna_display.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sna/sna_display.c b/src/sna/sna_display.c index f97e83e1..b62fda15 100644 --- a/src/sna/sna_display.c +++ b/src/sna/sna_display.c @@ -6331,7 +6331,7 @@ fixup_shadow: DBG(("%s: changing pitch (%d == %d) or offset (%x == %x)\n", __FUNCTION__, flip_bo->pitch, crtc->bo->pitch, - crtc_offset, crtc->offset)); + y << 16 | x, crtc->offset)); fixup_flip: if (sna_crtc_flip(sna, crtc, flip_bo, x, y)) { assert(flip_bo != crtc->bo); |