summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2012-06-01 12:09:19 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2012-06-01 12:09:19 +0100
commit91419576eef562378cccf90968c4f0277139b03d (patch)
tree9852b475547385daf9c3966ee18b79d3ce272b15
parent4bdecc5b07a184ba136129e75a7fef914ac3b8d2 (diff)
sna: Tiny DBG message tweak
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
-rw-r--r--src/sna/sna_accel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sna/sna_accel.c b/src/sna/sna_accel.c
index bdaf0b58..0090639d 100644
--- a/src/sna/sna_accel.c
+++ b/src/sna/sna_accel.c
@@ -10791,7 +10791,7 @@ static inline bool sna_font_too_large(FontPtr font)
int top = max(FONTMAXBOUNDS(font, ascent), FONTASCENT(font));
int bot = max(FONTMAXBOUNDS(font, descent), FONTDESCENT(font));
int width = max(FONTMAXBOUNDS(font, characterWidth), -FONTMINBOUNDS(font, characterWidth));
- DBG(("%s: (%d + %d) x %d: %d\n", __FUNCTION__,
+ DBG(("%s? (%d + %d) x %d: %d > 124\n", __FUNCTION__,
top, bot, width, (top + bot) * (width + 7)/8));
return (top + bot) * (width + 7)/8 > 124;
}