| 179 | return color::alpha(a, alpha); |
| 180 | } |
| 181 | DEPRECATED inline NVGcolor colorFromHexString(std::string s) { |
| 182 | return color::fromHexString(s); |
| 183 | } |
| 184 | DEPRECATED inline std::string colorToHexString(NVGcolor c) { |
| 185 | return color::toHexString(c); |
| 186 | } |
nothing calls this directly
no test coverage detected