mirror of
https://github.com/Drezil/imgui.git
synced 2024-11-15 01:17:00 +00:00
fix uninitialized atlas packing context
This commit is contained in:
parent
834fa52c8e
commit
f5871c0b92
@ -1566,7 +1566,7 @@ bool ImFontAtlasBuildWithStbTruetype(ImFontAtlas* atlas)
|
||||
|
||||
// Start packing
|
||||
const int max_tex_height = 1024*32;
|
||||
stbtt_pack_context spc;
|
||||
stbtt_pack_context spc = {};
|
||||
stbtt_PackBegin(&spc, NULL, atlas->TexWidth, max_tex_height, 0, atlas->TexGlyphPadding, NULL);
|
||||
stbtt_PackSetOversampling(&spc, 1, 1);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user