really fixed memory issue, bumped version, remove tabs

This commit is contained in:
Ron Aaron 2020-03-06 13:05:56 +02:00
parent ae6deb7965
commit 8513b632a2
2 changed files with 3 additions and 2 deletions

View File

@ -16343,7 +16343,7 @@ nk_font_baker_memory(nk_size *temp, int *glyph_count,
} while ((i = i->n) != iter);
}
*temp = (nk_size)*glyph_count * sizeof(struct stbrp_rect);
*temp += (nk_size)*glyph_count * sizeof(stbtt_pack_range);
*temp += (nk_size)total_range_count * sizeof(stbtt_pack_range);
*temp += (nk_size)*glyph_count * sizeof(stbtt_packedchar);
*temp += (nk_size)count * sizeof(struct nk_font_bake_data);
*temp += sizeof(struct nk_font_baker);
@ -17384,6 +17384,7 @@ nk_font_atlas_bake(struct nk_font_atlas *atlas, int *width, int *height,
tmp = atlas->temporary.alloc(atlas->temporary.userdata,0, tmp_size);
NK_ASSERT(tmp);
if (!tmp) goto failed;
memset(tmp,0,tmp_size);
/* allocate glyph memory for all fonts */
baker = nk_font_baker(tmp, atlas->glyph_count, atlas->font_num, &atlas->temporary);

View File

@ -1,6 +1,6 @@
{
"name": "nuklear",
"version": "4.01.5",
"version": "4.01.6",
"repo": "Immediate-Mode-UI/Nuklear",
"description": "A small ANSI C gui toolkit",
"keywords": ["gl", "ui", "toolkit"],