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.
This commit is contained in:
parent
635eaa511f
commit
cb1f7ec087
|
|
@ -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 ?
|
||||
|
|
|
|||
Loading…
Reference in New Issue