You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: imgui.h
+2-2
Original file line number
Diff line number
Diff line change
@@ -3254,8 +3254,8 @@ struct ImFontConfig
3254
3254
bool MergeMode; // false // Merge into previous ImFont, so you can combine multiple inputs font into one ImFont (e.g. ASCII font + icons + Japanese glyphs). You may want to use GlyphOffset.y when merge font of different heights.
3255
3255
bool PixelSnapH; // false // Align every glyph AdvanceX to pixel boundaries. Useful e.g. if you are merging a non-pixel aligned font with the default font. If enabled, you can set OversampleH/V to 1.
3256
3256
int FontNo; // 0 // Index of font within TTF/OTF file
3257
-
int OversampleH; //2// Rasterize at higher quality for sub-pixel positioning. Note the difference between 2 and 3 is minimal. You can reduce this to 1 for large glyphs save memory. Read https://github.com/nothings/stb/blob/master/tests/oversample/README.md for details.
3258
-
int OversampleV; //1// Rasterize at higher quality for sub-pixel positioning. This is not really useful as we don't use sub-pixel positions on the Y axis.
3257
+
int OversampleH; //0 (2) // Rasterize at higher quality for sub-pixel positioning. 0 == auto == 1 or 2 depending on size. Note the difference between 2 and 3 is minimal. You can reduce this to 1 for large glyphs save memory. Read https://github.com/nothings/stb/blob/master/tests/oversample/README.md for details.
3258
+
int OversampleV; //0 (1) // Rasterize at higher quality for sub-pixel positioning. 0 == auto == 1. This is not really useful as we don't use sub-pixel positions on the Y axis.
3259
3259
float SizePixels; // // Size in pixels for rasterizer (more or less maps to the resulting font height).
3260
3260
ImVec2 GlyphExtraSpacing; // 0, 0 // Extra spacing (in pixels) between glyphs when rendered: essentially add to glyph->AdvanceX. Only X axis is supported for now.
3261
3261
ImVec2 GlyphOffset; // 0, 0 // Offset all glyphs from this font input.
IMGUI_API voidImFontAtlasBuildRender32bppRectFromString(ImFontAtlas* atlas, int x, int y, int w, int h, constchar* in_str, char in_marker_char, unsignedint in_marker_pixel_value);
Copy file name to clipboardexpand all lines: misc/freetype/imgui_freetype.cpp
+1-1
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@
33
33
// - For correct results you need to be using sRGB and convert to linear space in the pixel shader output.
34
34
// - The default dear imgui styles will be impacted by this change (alpha values will need tweaking).
35
35
36
-
// FIXME: cfg.OversampleH, OversampleV are not supported (but perhaps not so necessary with this rasterizer).
36
+
// FIXME: cfg.OversampleH, OversampleV are not supported, but generally not necessary with this rasterizer because Hinting makes everything look better.
0 commit comments