summaryrefslogtreecommitdiff
path: root/src/Fl_Graphics_Driver.cxx
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2020-02-03 17:30:54 +0100
committerAlbrecht Schlosser <albrechts.fltk@online.de>2020-02-03 17:30:54 +0100
commit97554a88ccaa622b98b7968da79a56b4b008e097 (patch)
tree8a458ac481b12041652fa1f8d334311761303707 /src/Fl_Graphics_Driver.cxx
parentdd3485c57a0ef7ffa5e00edc9fb9937004f3ca54 (diff)
Move fl_font(face, size) to fl_draw.cxx
I believe this is a better place. Also: add FL_EXPORT since it's no longer inline.
Diffstat (limited to 'src/Fl_Graphics_Driver.cxx')
-rw-r--r--src/Fl_Graphics_Driver.cxx16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/Fl_Graphics_Driver.cxx b/src/Fl_Graphics_Driver.cxx
index 3d1b720cd..0fbe80106 100644
--- a/src/Fl_Graphics_Driver.cxx
+++ b/src/Fl_Graphics_Driver.cxx
@@ -557,22 +557,6 @@ void Fl_Graphics_Driver::rtl_draw(const char *str, int nChars, int x, int y) {
/** Returns non-zero if the graphics driver possesses the \p feature */
int Fl_Graphics_Driver::has_feature(driver_feature feature) { return 0; }
-/**
- Sets the current font, which is then used in various drawing routines.
- You may call this outside a draw context if necessary to measure text,
- for instance by calling fl_width(), fl_measure(), or fl_text_extents(),
- but on X this will open the display.
-
- The font is identified by a \p face and a \p size.
- The size of the font is measured in pixels and not "points".
- Lines should be spaced \p size pixels apart or more.
-*/
-void fl_font(Fl_Font face, Fl_Fontsize fsize) {
- if (!fl_graphics_driver)
- fl_open_display();
- fl_graphics_driver->font(face, fsize);
-}
-
/** see fl_font(Fl_Font, Fl_Fontsize) */
void Fl_Graphics_Driver::font(Fl_Font face, Fl_Fontsize fsize) {font_ = face; size_ = fsize;}