|
@@ -2386,6 +2386,38 @@ ImFontConfig::ImFontConfig()
|
|
|
//-----------------------------------------------------------------------------
|
|
|
// [SECTION] ImFontAtlas
|
|
|
//-----------------------------------------------------------------------------
|
|
|
+// - Default texture data encoded in ASCII
|
|
|
+// - ImFontAtlas::ClearInputData()
|
|
|
+// - ImFontAtlas::ClearTexData()
|
|
|
+// - ImFontAtlas::ClearFonts()
|
|
|
+// - ImFontAtlas::Clear()
|
|
|
+// - ImFontAtlas::GetTexDataAsAlpha8()
|
|
|
+// - ImFontAtlas::GetTexDataAsRGBA32()
|
|
|
+// - ImFontAtlas::AddFont()
|
|
|
+// - ImFontAtlas::AddFontDefault()
|
|
|
+// - ImFontAtlas::AddFontFromFileTTF()
|
|
|
+// - ImFontAtlas::AddFontFromMemoryTTF()
|
|
|
+// - ImFontAtlas::AddFontFromMemoryCompressedTTF()
|
|
|
+// - ImFontAtlas::AddFontFromMemoryCompressedBase85TTF()
|
|
|
+// - ImFontAtlas::AddCustomRectRegular()
|
|
|
+// - ImFontAtlas::AddCustomRectFontGlyph()
|
|
|
+// - ImFontAtlas::CalcCustomRectUV()
|
|
|
+// - ImFontAtlas::GetMouseCursorTexData()
|
|
|
+// - ImFontAtlas::Build()
|
|
|
+// - ImFontAtlasBuildMultiplyCalcLookupTable()
|
|
|
+// - ImFontAtlasBuildMultiplyRectAlpha8()
|
|
|
+// - ImFontAtlasBuildWithStbTruetype()
|
|
|
+// - ImFontAtlasGetBuilderForStbTruetype()
|
|
|
+// - ImFontAtlasUpdateConfigDataPointers()
|
|
|
+// - ImFontAtlasBuildSetupFont()
|
|
|
+// - ImFontAtlasBuildPackCustomRects()
|
|
|
+// - ImFontAtlasBuildRender8bppRectFromString()
|
|
|
+// - ImFontAtlasBuildRender32bppRectFromString()
|
|
|
+// - ImFontAtlasBuildRenderDefaultTexData()
|
|
|
+// - ImFontAtlasBuildRenderLinesTexData()
|
|
|
+// - ImFontAtlasBuildInit()
|
|
|
+// - ImFontAtlasBuildFinish()
|
|
|
+//-----------------------------------------------------------------------------
|
|
|
|
|
|
// A work of art lies ahead! (. = white layer, X = black layer, others are blank)
|
|
|
// The 2x2 white texels on the top left are the ones we'll use everywhere in Dear ImGui to render filled shapes.
|
|
@@ -3327,6 +3359,16 @@ void ImFontAtlasBuildFinish(ImFontAtlas* atlas)
|
|
|
//-------------------------------------------------------------------------
|
|
|
// [SECTION] ImFontAtlas: glyph ranges helpers
|
|
|
//-------------------------------------------------------------------------
|
|
|
+// - GetGlyphRangesDefault()
|
|
|
+// - GetGlyphRangesGreek()
|
|
|
+// - GetGlyphRangesKorean()
|
|
|
+// - GetGlyphRangesChineseFull()
|
|
|
+// - GetGlyphRangesChineseSimplifiedCommon()
|
|
|
+// - GetGlyphRangesJapanese()
|
|
|
+// - GetGlyphRangesCyrillic()
|
|
|
+// - GetGlyphRangesThai()
|
|
|
+// - GetGlyphRangesVietnamese()
|
|
|
+//-----------------------------------------------------------------------------
|
|
|
|
|
|
// Retrieve list of range (2 int per range, values are inclusive)
|
|
|
const ImWchar* ImFontAtlas::GetGlyphRangesDefault()
|