summaryrefslogtreecommitdiff
path: root/src/Fl.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/Fl.cxx')
-rw-r--r--src/Fl.cxx18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/Fl.cxx b/src/Fl.cxx
index 9e421f0ff..52208b58f 100644
--- a/src/Fl.cxx
+++ b/src/Fl.cxx
@@ -46,6 +46,7 @@
#endif
#include <FL/Fl.H>
+#include <FL/Fl_Screen_Driver.H>
#include <FL/Fl_Window.H>
#include <FL/Fl_Tooltip.H>
#include <FL/x.H>
@@ -208,6 +209,21 @@ Fl_Window *Fl::modal_; // topmost modal() window
char const * const Fl::clipboard_plain_text = "text/plain";
char const * const Fl::clipboard_image = "image";
+
+//
+// Drivers
+//
+
+Fl_Screen_Driver *Fl::screen_driver_ = Fl_Screen_Driver::newScreenDriver();
+
+Fl_Screen_Driver *Fl::screen_driver()
+{
+ if (!screen_driver_)
+ screen_driver_ = Fl_Screen_Driver::newScreenDriver();
+ return screen_driver_;
+}
+
+
//
// 'Fl::version()' - Return the API version number...
//
@@ -2350,6 +2366,8 @@ Fl_Widget_Tracker::~Fl_Widget_Tracker()
}
int Fl::use_high_res_GL_ = 0;
+
+
//
// End of "$Id$".
//