From 2eaf9bc5892d537413e962f423c6c7ed248fcf87 Mon Sep 17 00:00:00 2001 From: Igor Oliveira Date: Mon, 19 Jul 2010 15:57:00 -0400 Subject: DRM/Gallium3D: remove debug messages --- src/drm/cairo-drm-gallium-surface.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/drm/cairo-drm-gallium-surface.c b/src/drm/cairo-drm-gallium-surface.c index 9e36e14b..cb2fdbdb 100644 --- a/src/drm/cairo-drm-gallium-surface.c +++ b/src/drm/cairo-drm-gallium-surface.c @@ -730,8 +730,6 @@ _gallium_append_point (gallium_path_t *path, double x, double y) path->points[path->count] = x; path->points[path->count + 1] = y; - printf("%f %f", path->points[path->count], path->points[path->count +1]); - path->minx = MIN2(path->points[path->count], path->minx); path->maxx = MAX2(path->points[path->count], path->maxx); @@ -879,7 +877,6 @@ _gallium_close_path (void *closure) cairo_status_t status = CAIRO_STATUS_NO_MEMORY; gallium_stroke_t *stroker = closure; - printf("close path\n"); if (stroker->current_path->count != 0) { _gallium_append_point(stroker->current_path, stroker->current_path->points[0], @@ -962,7 +959,6 @@ add_triangle_fan (void *closure, int i; gallium_stroke_t *stroke = closure; - printf("\n number points:%d\n", npoints); for (i = 0; i < npoints; i++) { if (i == 0) @@ -979,8 +975,6 @@ add_convex_quad (void *closure, const cairo_point_t quad[4]) { gallium_stroke_t *stroke = closure; - printf("\n convex quad\n"); - _gallium_move_to(stroke, &quad[0]); _gallium_line_to(stroke, &quad[1]); _gallium_line_to(stroke, &quad[2]); @@ -1192,7 +1186,6 @@ _gallium_fill (void *abstract_surface, gallium_surface_flush(abstract_surface); cso_restore_depth_stencil_alpha(device->cso); - printf("filling"); return CAIRO_STATUS_SUCCESS; } -- cgit v1.2.3