Home
last modified time | relevance | path

Searched refs:PixelSnapH (Results 1 – 10 of 10) sorted by relevance

/third_party/flutter/skia/third_party/externals/imgui/misc/freetype/
Dimgui_freetype.cpp541 …char_off_x += cfg.PixelSnapH ? (float)(int)((char_advance_x_mod - char_advance_x_org) * 0.5f) : (c… in ImFontAtlasBuildWithFreeType()
/third_party/mesa3d/src/imgui/
Dimgui_draw.cpp1366 PixelSnapH = false; in ImFontConfig()
1595 font_cfg.PixelSnapH = true; in AddFontDefault()
2025 …char_off_x += cfg.PixelSnapH ? (float)(int)((char_advance_x_mod - char_advance_x_org) * 0.5f) : (c… in ImFontAtlasBuildWithStbTruetype()
2499 if (ConfigData->PixelSnapH) in AddGlyph()
Dimgui.h1921 …bool PixelSnapH; // false // Align every glyph to pixel boundary. Useful… member
/third_party/flutter/skia/third_party/externals/imgui/
Dimgui_draw.cpp1357 PixelSnapH = false; in ImFontConfig()
1586 font_cfg.PixelSnapH = true; in AddFontDefault()
2014 …char_off_x += cfg.PixelSnapH ? (float)(int)((char_advance_x_mod - char_advance_x_org) * 0.5f) : (c… in ImFontAtlasBuildWithStbTruetype()
2487 if (ConfigData->PixelSnapH) in AddGlyph()
Dimgui.h1912 …bool PixelSnapH; // false // Align every glyph to pixel boundary. Useful… member
Dimgui_demo.cpp2886 …%d,%d), PixelSnapH: %d", config_i, cfg->Name, cfg->OversampleH, cfg->OversampleV, cfg->PixelSnapH); in ShowStyleEditor()
/third_party/skia/third_party/externals/imgui/
Dimgui_draw.cpp2122 font_cfg.PixelSnapH = true; in AddFontDefault()
3255 …float char_off_x = cfg->PixelSnapH ? ImFloor((advance_x - advance_x_original) * 0.5f) : (advance_x… in AddGlyph()
3261 if (cfg->PixelSnapH) in AddGlyph()
Dimgui.h2549 …bool PixelSnapH; // false // Align every glyph to pixel boundary. Useful… member
Dimgui.cpp11828 …config_i, cfg->Name, cfg->OversampleH, cfg->OversampleV, cfg->PixelSnapH, cfg->GlyphOffset.x, cfg-… in DebugNodeFont()
/third_party/skia/third_party/externals/imgui/docs/
DCHANGELOG.txt806 - Fonts: Fixed ImFontConfig::GlyphExtraSpacing and ImFontConfig::PixelSnapH settings being pulled
3081 …ling (ImFontConfig: OversampleH, OversampleV) and sub-pixel positioning (ImFontConfig: PixelSnapH).