From 95c851fda10d5305082619dc977f63aa5df0929b Mon Sep 17 00:00:00 2001 From: ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> Date: Tue, 30 Aug 2022 07:58:16 +0200 Subject: Set Fl_Graphics_Driver::set_color(Fl_Color, unsigned) used by macOS, Wayland and display-cairo. --- src/drivers/Quartz/Fl_Quartz_Graphics_Driver.H | 1 - src/drivers/Quartz/Fl_Quartz_Graphics_Driver_color.cxx | 7 ------- 2 files changed, 8 deletions(-) (limited to 'src/drivers/Quartz') diff --git a/src/drivers/Quartz/Fl_Quartz_Graphics_Driver.H b/src/drivers/Quartz/Fl_Quartz_Graphics_Driver.H index b073d633a..945ba4a78 100644 --- a/src/drivers/Quartz/Fl_Quartz_Graphics_Driver.H +++ b/src/drivers/Quartz/Fl_Quartz_Graphics_Driver.H @@ -116,7 +116,6 @@ protected: void pie(int x, int y, int w, int h, double a1, double a2); void line_style(int style, int width=0, char* dashes=0); void color(Fl_Color c); - void set_color(Fl_Color i, unsigned int c); Fl_Color color() { return color_; } void color(uchar r, uchar g, uchar b); void draw(const char *str, int n, int x, int y); diff --git a/src/drivers/Quartz/Fl_Quartz_Graphics_Driver_color.cxx b/src/drivers/Quartz/Fl_Quartz_Graphics_Driver_color.cxx index 8d826e8fb..a4cb37d73 100644 --- a/src/drivers/Quartz/Fl_Quartz_Graphics_Driver_color.cxx +++ b/src/drivers/Quartz/Fl_Quartz_Graphics_Driver_color.cxx @@ -63,10 +63,3 @@ void Fl_Quartz_Graphics_Driver::color(uchar r, uchar g, uchar b) { CGContextSetRGBFillColor(gc_, fr, fg, fb, 1.0f); CGContextSetRGBStrokeColor(gc_, fr, fg, fb, 1.0f); } - -// FIXME: this function should not be here! It's not part of the driver. -void Fl_Quartz_Graphics_Driver::set_color(Fl_Color i, unsigned c) { - if (fl_cmap[i] != c) { - fl_cmap[i] = c; - } -} -- cgit v1.2.3