summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Oliveira <igor.oliveira@openbossa.org>2010-07-19 15:57:00 -0400
committerIgor Oliveira <igor.oliveira@openbossa.org>2010-07-19 15:57:00 -0400
commit2eaf9bc5892d537413e962f423c6c7ed248fcf87 (patch)
treecab806ee2355ff01d35234886964b365d63f42fb
parent944b6ec3fa87aaeb98885728f8e4a291d7e78909 (diff)
DRM/Gallium3D: remove debug messages
-rw-r--r--src/drm/cairo-drm-gallium-surface.c7
1 files changed, 0 insertions, 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;
}