| 786 | } |
| 787 | |
| 788 | NanoVG::Paint NanoVG::boxGradient(float x, float y, float w, float h, float r, float f, const Color& icol, const Color& ocol) |
| 789 | { |
| 790 | if (fContext == nullptr) return Paint(); |
| 791 | return nvgBoxGradient(fContext, x, y, w, h, r, f, icol, ocol); |
| 792 | } |
| 793 | |
| 794 | NanoVG::Paint NanoVG::radialGradient(float cx, float cy, float inr, float outr, const Color& icol, const Color& ocol) |
| 795 | { |
nothing calls this directly
no test coverage detected