From a2a026ed7489bf71d591f629b756cc50de2df72d Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Fri, 29 Jan 2021 13:56:09 +0100 Subject: Remove debug output from test/fullscreen demo Output statements commented out and modified to go to stderr if used. --- test/fullscreen.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test') diff --git a/test/fullscreen.cxx b/test/fullscreen.cxx index 54be3701b..fab06c3e1 100644 --- a/test/fullscreen.cxx +++ b/test/fullscreen.cxx @@ -77,10 +77,10 @@ Fl_Gl_Window(x,y,w,h,l) { } void shape_window::draw() { - printf("drawing size %d %d\n",w(),h()); + // fprintf(stderr, "drawing size %d %d\n", w(), h()); if (!valid()) { valid(1); -// printf("init\n"); + // fprintf(stderr, "init\n"); glLoadIdentity(); glViewport(0,0,pixel_w(),pixel_h()); } @@ -134,7 +134,7 @@ fullscreen_window::fullscreen_window(int W, int H, const char *t) : Fl_Single_Wi int fullscreen_window::handle(int e) { if (e == FL_FULLSCREEN) { - printf("Received FL_FULLSCREEN event\n"); + // fprintf(stderr, "Received FL_FULLSCREEN event\n"); b3->value(fullscreen_active()); } if (Fl_Single_Window::handle(e)) return 1; -- cgit v1.2.3