// // "$Id: doublebuffer.cxx 8864 2011-07-19 04:49:30Z greg.ercolano $" // // Double-buffering test program for the Fast Light Tool Kit (FLTK). // // This demo shows how double buffering helps, by drawing the // window in a particularily bad way. // // The single-buffered window will blink as it updates. The // double buffered one will not. It will take just as long // (or longer) to update, but often it will appear to be faster. // // This demo should work for both the GL and X versions of Fl, // even though the double buffering mechanism is totally different. // // Copyright 1998-2010 by Bill Spitzak and others. // // This library is free software. Distribution and use rights are outlined in // the file "COPYING" which should have been included with this file. If this // file is missing or damaged, see the license at: // // http://www.fltk.org/COPYING.php // // Please report all bugs and problems on the following page: // // http://www.fltk.org/str.php // #include #include #include #include #include #include #include #include #include // this purposely draws each line 10 times to be slow: void star(int w, int h, int n) { fl_push_matrix(); fl_translate(w/2, h/2); fl_scale(w/2, h/2); for (int i = 0; i < n; i++) { for (int j = i+1; j < n; j++)/* for (int k=0; k<10; k++)*/ { fl_begin_line(); fl_vertex(cos(2*M_PI*i/n+.1), sin(2*M_PI*i/n+.1)); fl_vertex(cos(2*M_PI*j/n+.1), sin(2*M_PI*j/n+.1)); fl_end_line(); } } fl_pop_matrix(); } int sides[2] = {20,20}; void slider_cb(Fl_Widget* o, long v) { sides[v] = int(((Fl_Slider*)o)->value()); o->parent()->redraw(); } void bad_draw(int w,int h,int which) { // for (int i=0; i<10; i++) { // fl_color(7); fl_rectf(0,0,w,h); fl_color(0); star(w,h); // fl_color(0); fl_rectf(0,0,w,h); fl_color(7); star(w,h); // } fl_color(FL_BLACK); fl_rectf(0,0,w,h); fl_color(FL_WHITE); star(w,h,sides[which]); // for (int x=0; x