blob: 6bfe091a5af8299b846a63a421e212fb97a5e38f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* Fl_Single_Window.H
A window with a single-buffered context
This is provided for systems where the base class is double
buffered. You can turn it off using this subclass in case
your display looks better without it.
*/
#include <FL/Fl_Single_Window.H>
void Fl_Single_Window::show() {Fl_Window::show();}
void Fl_Single_Window::flush() {Fl_Window::flush();}
|