| 3599 | //----------------------------------------------------------------------------------------------------------------------------- |
| 3600 | |
| 3601 | bool ImFontAtlasFontSourceInit(ImFontAtlas* atlas, ImFontConfig* src) |
| 3602 | { |
| 3603 | const ImFontLoader* loader = src->FontLoader ? src->FontLoader : atlas->FontLoader; |
| 3604 | if (loader->FontSrcInit != NULL && !loader->FontSrcInit(atlas, src)) |
| 3605 | return false; |
| 3606 | return true; |
| 3607 | } |
| 3608 | |
| 3609 | void ImFontAtlasFontSourceAddToFont(ImFontAtlas* atlas, ImFont* font, ImFontConfig* src) |
| 3610 | { |
no outgoing calls
no test coverage detected