From 975bbf547ac619eece093d2dd8fc36709dfb9283 Mon Sep 17 00:00:00 2001 From: Derek Foreman Date: Thu, 29 May 2003 01:56:18 +0000 Subject: [PATCH] remove some printfs --- glft/render.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/glft/render.c b/glft/render.c index e9f2fbb2..69716183 100644 --- a/glft/render.c +++ b/glft/render.c @@ -21,7 +21,6 @@ int GlftMoveToFunc(FT_Vector *to, void *user) { state.x = TOFLOAT(to->x); state.y = TOFLOAT(to->y); - printf("move to %f:%f\n", state.x, state.y); if (state.drawing) { glEnd(); } @@ -36,7 +35,6 @@ int GlftLineToFunc(FT_Vector *to, void *user) state.x = TOFLOAT(to->x); state.y = TOFLOAT(to->y); glVertex2f(state.x, state.y); - printf("line to %f:%f\n", state.x, state.y); return 0; } @@ -52,7 +50,6 @@ int GlftConicToFunc(FT_Vector *c, FT_Vector *to, void *user) state.x = TOFLOAT(to->x); state.y = TOFLOAT(to->y); glVertex2f(state.x, state.y); - printf("conic the hedgehog!\n"); return 0; } @@ -60,7 +57,7 @@ int GlftCubicToFunc(FT_Vector *c1, FT_Vector *c2, FT_Vector *to, void *user) { GlftLineToFunc(to, user); - printf("cubic\n"); + g_message("cubic not currently rendered properly\n"); return 0; } -- 2.34.1