Retrieve list of range (2 int per range, values are inclusive)
| 4835 | |
| 4836 | // Retrieve list of range (2 int per range, values are inclusive) |
| 4837 | const ImWchar* ImFontAtlas::GetGlyphRangesDefault() |
| 4838 | { |
| 4839 | static const ImWchar ranges[] = |
| 4840 | { |
| 4841 | 0x0020, 0x00FF, // Basic Latin + Latin Supplement |
| 4842 | 0, |
| 4843 | }; |
| 4844 | return &ranges[0]; |
| 4845 | } |
| 4846 | |
| 4847 | #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS |
| 4848 | const ImWchar* ImFontAtlas::GetGlyphRangesGreek() |
no outgoing calls
no test coverage detected