| 283 | }; |
| 284 | |
| 285 | struct Paint { |
| 286 | float xform[6]; |
| 287 | float extent[2]; |
| 288 | float radius; |
| 289 | float feather; |
| 290 | Color innerColor; |
| 291 | Color outerColor; |
| 292 | int imageId; |
| 293 | |
| 294 | Paint() noexcept; |
| 295 | |
| 296 | /** |
| 297 | @internal |
| 298 | */ |
| 299 | Paint(const NVGpaint&) noexcept; |
| 300 | operator NVGpaint() const noexcept; |
| 301 | }; |
| 302 | |
| 303 | struct GlyphPosition { |
| 304 | const char* str; // Position of the glyph in the input string. |
no outgoing calls
no test coverage detected