| 480 | } |
| 481 | |
| 482 | void NanoVG::fillColor(const Color& color) |
| 483 | { |
| 484 | if (fContext != nullptr) |
| 485 | nvgFillColor(fContext, color); |
| 486 | } |
| 487 | |
| 488 | void NanoVG::fillColor(const int red, const int green, const int blue, const int alpha) |
| 489 | { |
no test coverage detected