From 7fbdc60fd4eb94c02b0b89d05cfe0243c3562ec1 Mon Sep 17 00:00:00 2001 From: Zhigang Gong Date: Thu, 7 Jul 2011 15:32:39 +0800 Subject: [PATCH] glamor: comment out the message when creating a system memory pixmap. Signed-off-by: Zhigang Gong --- glamor/glamor.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/glamor/glamor.c b/glamor/glamor.c index 6bab8c124..2eec6f536 100644 --- a/glamor/glamor.c +++ b/glamor/glamor.c @@ -130,9 +130,11 @@ glamor_create_pixmap(ScreenPtr screen, int w, int h, int depth, (((w * pixmap->drawable.bitsPerPixel + 7) / 8) + 3) & ~3, NULL); +#if 0 if (usage != GLAMOR_CREATE_PIXMAP_CPU) glamor_fallback("choose cpu memory for pixmap %p ," " %d x %d depth %d\n", pixmap, w, h, depth); +#endif } else pixmap = fbCreatePixmap (screen, 0, 0, depth, usage);