fix memory leak

This commit is contained in:
Adam D. Ruppe 2018-10-15 20:17:26 -04:00
parent 73cfe69300
commit 0f77d8f380
1 changed files with 1 additions and 0 deletions

1
ttf.d
View File

@ -92,6 +92,7 @@ struct TtfFont {
stbtt_GetCodepointHMetrics(&font, ch, &advance, &lsb);
int cw, cheight;
auto c = renderCharacter(ch, size, cw, cheight, x_shift, 0.0);
scope(exit) stbtt_FreeBitmap(c.ptr, null);
int x0, y0, x1, y1;
stbtt_GetCodepointBitmapBoxSubpixel(&font, ch, scale,scale,x_shift,0, &x0,&y0,&x1,&y1);