Retrieve list of range (2 int per range, values are inclusive)
| 2808 | |
| 2809 | // Retrieve list of range (2 int per range, values are inclusive) |
| 2810 | const ImWchar* ImFontAtlas::GetGlyphRangesDefault() |
| 2811 | { |
| 2812 | static const ImWchar ranges[] = |
| 2813 | { |
| 2814 | 0x0020, 0x00FF, // Basic Latin + Latin Supplement |
| 2815 | 0, |
| 2816 | }; |
| 2817 | return &ranges[0]; |
| 2818 | } |
| 2819 | |
| 2820 | const ImWchar* ImFontAtlas::GetGlyphRangesKorean() |
| 2821 | { |
no outgoing calls
no test coverage detected