summaryrefslogtreecommitdiff
path: root/src/Fl_Graphics_Driver.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/Fl_Graphics_Driver.cxx')
-rw-r--r--src/Fl_Graphics_Driver.cxx22
1 files changed, 19 insertions, 3 deletions
diff --git a/src/Fl_Graphics_Driver.cxx b/src/Fl_Graphics_Driver.cxx
index 61ff76cfd..72f52427f 100644
--- a/src/Fl_Graphics_Driver.cxx
+++ b/src/Fl_Graphics_Driver.cxx
@@ -69,21 +69,37 @@ void Fl_Graphics_Driver::copy_offscreen(int x, int y, int w, int h, Fl_Offscreen
delete[] img;
}
+
void Fl_Graphics_Driver::set_spot(int font, int size, int X, int Y, int W, int H, Fl_Window *win)
{
- // nothing to do
+ // nothing to do, reimplement in driver if needed
}
+
void Fl_Graphics_Driver::reset_spot()
{
- // nothing to do
+ // nothing to do, reimplement in driver if needed
}
+
void Fl_Graphics_Driver::global_gc()
{
- // nothing to do
+ // nothing to do, reimplement in driver if needed
+}
+
+
+void Fl_Graphics_Driver::set_color(Fl_Color i, unsigned int c)
+{
+ // nothing to do, reimplement in driver if needed
+}
+
+
+void Fl_Graphics_Driver::free_color(Fl_Color i, int overlay)
+{
+ // nothing to do, reimplement in driver if needed
}
+
//
// End of "$Id$".
//