| 951 | } |
| 952 | |
| 953 | void NanoVG::fontSize(float size) |
| 954 | { |
| 955 | if (fContext == nullptr) return; |
| 956 | DISTRHO_SAFE_ASSERT_RETURN(size > 0.0f,); |
| 957 | |
| 958 | nvgFontSize(fContext, size); |
| 959 | } |
| 960 | |
| 961 | void NanoVG::fontBlur(float blur) |
| 962 | { |
no test coverage detected