From d95dd7acc4af3a4bd521d151ba3576b91d8ace53 Mon Sep 17 00:00:00 2001 From: ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> Date: Fri, 28 May 2021 13:29:05 +0200 Subject: New virtual member function Fl_Graphics_Driver::colored_rectf(). --- src/drivers/Android/Fl_Android_Graphics_Driver.cxx | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'src/drivers/Android') diff --git a/src/drivers/Android/Fl_Android_Graphics_Driver.cxx b/src/drivers/Android/Fl_Android_Graphics_Driver.cxx index 1aed581de..75c4e082a 100644 --- a/src/drivers/Android/Fl_Android_Graphics_Driver.cxx +++ b/src/drivers/Android/Fl_Android_Graphics_Driver.cxx @@ -1255,16 +1255,3 @@ void Fl_Android_Graphics_Driver::color(uchar r, uchar g, uchar b) { color( (((Fl_Color)r)<<24)|(((Fl_Color)g)<<16)|(((Fl_Color)b)<<8) ); } - -/** - Draw a rectangle that may be dithered if we are in colormap mode (which in - the year 2018 is as likely has a user with a berstein colored tube TV). - FIXME: This function should be virtual as well, or should not exist at all. - */ -void fl_rectf(int x, int y, int w, int h, uchar r, uchar g, uchar b) { -#if USE_COLORMAP - // ... -#endif - fl_color(r,g,b); - fl_rectf(x,y,w,h); -} -- cgit v1.2.3