Lines Matching defs:fonts
3764 fonts is best fitted for using the normal draw shape command API where you
3769 way to switch between fonts.
3845 After successfully initializing the font baker you can add Truetype(.ttf) fonts from
3849 the font baker by for example adding additional fonts you can call
3852 As soon as you added all fonts you wanted you can now start the baking process
3865 memory. Finally if you don't use the font atlas and any of it's fonts anymore
3886 how to merge fonts, configure a font with `nk_font_config` to use other languages,
4024 struct nk_font *fonts;
5458 * flags, colors, fonts and for button_behavior. Each has it's own fixed size stack
5523 struct nk_config_stack_user_font fonts;
11190 } else if (format == 4) { /* standard mapping for windows fonts: binary search collection of ranges */
13543 if (!atlas->fonts) {
13544 atlas->fonts = font;
13547 struct nk_font *i = atlas->fonts;
13558 f = atlas->fonts;
13748 /* allocate glyph memory for all fonts */
13789 for (font_iter = atlas->fonts; font_iter; font_iter = font_iter->next) {
13852 for (font_iter = atlas->fonts; font_iter; font_iter = font_iter->next) {
13919 if (atlas->fonts) {
13921 for (iter = atlas->fonts; iter; iter = next) {
13925 atlas->fonts = 0;
14825 ctx->stacks.fonts.head = 0;
14838 font_stack = &ctx->stacks.fonts;
14858 font_stack = &ctx->stacks.fonts;
25479 /// - 2019/09/08 (4.01.1) - Fixed a bug wherein re-baking of fonts caused a segmentation
25481 /// bakes of the same set of fonts.
25727 /// - 2016/08/04 (1.04.2) - Fixed changing fonts.
25749 /// arrays for fonts and font configurations to lists.