Removing obsolete color parameters from gwinFillDualCircle()
Fixes T27
This commit is contained in:
parent
7a896c2917
commit
8d760acc0c
@ -282,7 +282,7 @@ void gwinBlitArea(GHandle gh, coord_t x, coord_t y, coord_t cx, coord_t cy, coor
|
||||
#endif
|
||||
|
||||
#if GDISP_NEED_DUALCIRCLE
|
||||
void gwinFillDualCircle(GHandle gh, coord_t x, coord_t y, coord_t radius1, color_t color1, coord_t radius2, color_t color2) {
|
||||
void gwinFillDualCircle(GHandle gh, coord_t x, coord_t y, coord_t radius1, coord_t radius2) {
|
||||
if (!_gwinDrawStart(gh)) return;
|
||||
gdispGFillDualCircle(gh->display, gh->x+x, gh->y+y, radius1, gh->bgcolor, radius2, gh->color);
|
||||
_gwinDrawEnd(gh);
|
||||
|
@ -729,13 +729,11 @@ extern "C" {
|
||||
* @param[in] gh The window handle
|
||||
* @param[in] x,y The center of the circle
|
||||
* @param[in] radius1 The radius of the larger circle
|
||||
* @param[in] color1 The color to use for the larger circle
|
||||
* @param[in] radius2 The radius of the smaller circle
|
||||
* @param[in] color2 The color to use for the smaller circle
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
void gwinFillDualCircle(GHandle gh, coord_t x, coord_t y, coord_t radius1, color_t color1, coord_t radius2, color_t color2);
|
||||
void gwinFillDualCircle(GHandle gh, coord_t x, coord_t y, coord_t radius1, coord_t radius2);
|
||||
#endif
|
||||
|
||||
#if GDISP_NEED_ELLIPSE || defined(__DOXYGEN__)
|
||||
|
Loading…
Reference in New Issue
Block a user