From cb1f7ec0876746c1b52b63cdb508544e9e4e32e3 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Tue, 24 Feb 2009 21:23:59 -0800 Subject: [PATCH] uxa: Fix composite fallback debug printing of main memory versus bo info. It was just printing whether it was a pixmap (it is), instead of whether the pixmap was offscreen. --- uxa/uxa-render.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uxa/uxa-render.c b/uxa/uxa-render.c index 60022cc4..b377bf53 100644 --- a/uxa/uxa-render.c +++ b/uxa/uxa-render.c @@ -69,7 +69,7 @@ static void uxa_composite_fallback_pict_desc(PicturePtr pict, char *string, int break; } - loc = uxa_get_drawable_pixmap(pict->pDrawable) ? 's' : 'm'; + loc = uxa_drawable_is_offscreen(pict->pDrawable) ? 's' : 'm'; snprintf(size, 20, "%dx%d%s", pict->pDrawable->width, pict->pDrawable->height, pict->repeat ?