| 20 | struct TintWidget : widget::Widget { |
| 21 | NVGcolor color = color::WHITE; |
| 22 | void draw(const DrawArgs& args) override { |
| 23 | nvgTint(args.vg, color); |
| 24 | Widget::draw(args); |
| 25 | } |
| 26 | }; |
| 27 | |
| 28 |
nothing calls this directly
no outgoing calls
no test coverage detected