From 00e6ff460035a1db4485b174c749b9fda6d205c7 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Wed, 17 Feb 2010 15:02:17 -0800 Subject: glamor: Fix up the fallback message for no texture present on compositing. --- glamor/glamor_render.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/glamor/glamor_render.c b/glamor/glamor_render.c index 6d8dd9797..421aa3530 100644 --- a/glamor/glamor_render.c +++ b/glamor/glamor_render.c @@ -618,7 +618,7 @@ glamor_composite_with_shader(CARD8 op, goto fail; } if (!source_pixmap_priv || source_pixmap_priv->tex == 0) { - glamor_fallback("glamor_composite(): no FBO in source\n"); + glamor_fallback("glamor_composite(): no texture in source\n"); goto fail; } if (!good_source_format(source)) @@ -633,7 +633,7 @@ glamor_composite_with_shader(CARD8 op, goto fail; } if (!mask_pixmap_priv || mask_pixmap_priv->tex == 0) { - glamor_fallback("glamor_composite(): no FBO in mask\n"); + glamor_fallback("glamor_composite(): no texture in mask\n"); goto fail; } if (!good_mask_format(mask)) -- cgit v1.2.3