| 792 | } |
| 793 | |
| 794 | NanoVG::Paint NanoVG::radialGradient(float cx, float cy, float inr, float outr, const Color& icol, const Color& ocol) |
| 795 | { |
| 796 | if (fContext == nullptr) return Paint(); |
| 797 | return nvgRadialGradient(fContext, cx, cy, inr, outr, icol, ocol); |
| 798 | } |
| 799 | |
| 800 | NanoVG::Paint NanoVG::imagePattern(float ox, float oy, float ex, float ey, float angle, const NanoImage& image, float alpha) |
| 801 | { |
nothing calls this directly
no test coverage detected