From 0781f921354a3f7a9eefd7aaab557a89cb14baea Mon Sep 17 00:00:00 2001 From: Cory McWilliams Date: Tue, 2 Jan 2018 10:53:30 -0500 Subject: [PATCH] Make struct ImFontConfig match imgui's. Fixes problems using custom fonts. --- cimgui/cimgui.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cimgui/cimgui.h b/cimgui/cimgui.h index 15e482b..54d4a30 100644 --- a/cimgui/cimgui.h +++ b/cimgui/cimgui.h @@ -516,6 +516,8 @@ struct ImFontConfig struct ImVec2 GlyphOffset; CONST ImWchar *GlyphRanges; bool MergeMode; + unsigned int RasterizerFlags; + float RasterizerMultiply; char Name[32]; struct ImFont *DstFont; };