/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/table/truetype/ |
D | loca_table.h | 77 int32_t GlyphOffset(int32_t glyph_id); 153 int32_t GlyphOffset(int32_t glyph_id);
|
D | loca_table.cc | 26 int32_t LocaTable::GlyphOffset(int32_t glyph_id) { in GlyphOffset() function in sfntly::LocaTable 128 int32_t LocaTable::Builder::GlyphOffset(int32_t glyph_id) { in GlyphOffset() function in sfntly::LocaTable::Builder
|
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/table/bitmap/ |
D | index_sub_table.h | 66 virtual int32_t GlyphOffset(int32_t glyph_id); 138 virtual int32_t GlyphOffset(int32_t glyph_id);
|
D | bitmap_size_table.h | 101 int32_t GlyphOffset(int32_t glyph_id); 145 int32_t GlyphOffset(int32_t glyph_id);
|
D | bitmap_size_table.cc | 87 int32_t BitmapSizeTable::GlyphOffset(int32_t glyph_id) { in GlyphOffset() function in sfntly::BitmapSizeTable 92 return subtable->GlyphOffset(glyph_id); in GlyphOffset() 338 int32_t BitmapSizeTable::Builder::GlyphOffset(int32_t glyph_id) { in GlyphOffset() function in sfntly::BitmapSizeTable::Builder 343 return subtable->GlyphOffset(glyph_id); in GlyphOffset()
|
D | index_sub_table.cc | 46 int32_t IndexSubTable::GlyphOffset(int32_t glyph_id) { in GlyphOffset() function in sfntly::IndexSubTable 118 int32_t IndexSubTable::Builder::GlyphOffset(int32_t glyph_id) { in GlyphOffset() function in sfntly::IndexSubTable::Builder
|
/third_party/skia/third_party/externals/sfntly/cpp/src/test/ |
D | verify_loca.cc | 50 EXPECT_EQ(loca->GlyphOffset(i), LOCAS[i]); in VerifyLOCA()
|
D | bitmap_table_test.cc | 97 EXPECT_EQ(sub1->GlyphOffset(i), STRIKE4_SUB1_GLYPH_OFFSET[i]); in CommonReadingTest()
|
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/tools/subsetter/ |
D | glyph_table_subsetter.cc | 72 int old_offset = loca_table->GlyphOffset(*old_glyph_id); in Subset()
|
/third_party/skia/third_party/externals/sfntly/cpp/src/sample/subtly/ |
D | font_info.cc | 228 int32_t offset = loca_table_->GlyphOffset(glyph_id); in ResolveCompositeGlyphs()
|
D | font_assembler.cc | 191 int32_t offset = loca_table->GlyphOffset(resolved_glyph_id); in AssembleGlyphAndLocaTables()
|
/third_party/skia/third_party/externals/imgui/misc/freetype/ |
D | imgui_freetype.cpp | 635 const float font_off_x = cfg.GlyphOffset.x; in ImFontAtlasBuildWithFreeTypeEx() 636 const float font_off_y = cfg.GlyphOffset.y + IM_ROUND(dst_font->Ascent); in ImFontAtlasBuildWithFreeTypeEx()
|
/third_party/skia/third_party/externals/sfntly/cpp/src/sample/chromium/ |
D | subsetter_impl.cc | 197 int32_t offset = loca_table->GlyphOffset(*i); in ResolveCompositeGlyphs() 256 int32_t offset = loca_table->GlyphOffset(*i); in SetupGlyfBuilders()
|
/third_party/mesa3d/src/imgui/ |
D | imgui_draw.cpp | 1368 GlyphOffset = ImVec2(0.0f, 0.0f); in ImFontConfig() 1689 r.GlyphOffset = offset; in AddCustomRectFontGlyph() 2013 const float font_off_x = cfg.GlyphOffset.x; in ImFontAtlasBuildWithStbTruetype() 2014 const float font_off_y = cfg.GlyphOffset.y + (float)(int)(dst_font->Ascent + 0.5f); in ImFontAtlasBuildWithStbTruetype() 2140 …r.Font->AddGlyph((ImWchar)r.ID, r.GlyphOffset.x, r.GlyphOffset.y, r.GlyphOffset.x + r.Width, r.Gly… in ImFontAtlasBuildFinish()
|
D | imgui.h | 1923 ImVec2 GlyphOffset; // 0, 0 // Offset all glyphs from this font input. member 2038 …ImVec2 GlyphOffset; // Input // For custom font glyphs only (ID<0x10000): glyph dis… member 2040 … 0xFFFFFFFF; Width = Height = 0; X = Y = 0xFFFF; GlyphAdvanceX = 0.0f; GlyphOffset = ImVec2(0,0); … in CustomRect()
|
/third_party/skia/third_party/externals/imgui/ |
D | imgui_draw.cpp | 2129 …font_cfg.GlyphOffset.y = 1.0f * IM_FLOOR(font_cfg.SizePixels / 13.0f); // Add +1 offset per 13 un… in AddFontDefault() 2218 r.GlyphOffset = offset; in AddCustomRectFontGlyph() 2567 const float font_off_x = cfg.GlyphOffset.x; in ImFontAtlasBuildWithStbTruetype() 2568 const float font_off_y = cfg.GlyphOffset.y + IM_ROUND(dst_font->Ascent); in ImFontAtlasBuildWithStbTruetype() 2791 …ddGlyph(NULL, (ImWchar)r->GlyphID, r->GlyphOffset.x, r->GlyphOffset.y, r->GlyphOffset.x + r->Width… in ImFontAtlasBuildFinish()
|
D | imgui.h | 2551 ImVec2 GlyphOffset; // 0, 0 // Offset all glyphs from this font input. member 2602 ImVec2 GlyphOffset; // Input // For custom font glyphs only: glyph display offset member 2604 …Width = Height = 0; X = Y = 0xFFFF; GlyphID = 0; GlyphAdvanceX = 0.0f; GlyphOffset = ImVec2(0, 0);… in ImFontAtlasCustomRect()
|
D | imgui.cpp | 11828 …Name, cfg->OversampleH, cfg->OversampleV, cfg->PixelSnapH, cfg->GlyphOffset.x, cfg->GlyphOffset.y); in DebugNodeFont()
|
/third_party/skia/third_party/externals/imgui/docs/ |
D | FONTS.md | 351 <br>(recommended loading setting: Size = 13.0, GlyphOffset.y = +1) 356 <br>(recommended loading setting: Size = 10.0, GlyphOffset.y = +1)
|
D | FAQ.md | 566 config.GlyphOffset.y -= 1.0f; // Move everything by 1 pixels up
|
D | CHANGELOG.txt | 645 - Fonts: Removed ImFont::DisplayOffset in favor of ImFontConfig::GlyphOffset. DisplayOffset was app… 649 in which case the corresponding offset may be reported into GlyphOffset. (#1619) 2591 - Removed ImFontConfig::MergeGlyphCenterV in favor of a more multipurpose ImFontConfig::GlyphOffset. 2643 - ImFontConfig: Added GlyphOffset to explicitly offset glyphs at font build time, useful for merged…
|