From: Derek Foreman Date: Thu, 29 May 2003 01:56:18 +0000 (+0000) Subject: remove some printfs X-Git-Tag: gl2~41 X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=975bbf547ac619eece093d2dd8fc36709dfb9283;p=dana%2Fopenbox.git remove some printfs --- 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; }