Retrieve list of range (2 int per range, values are inclusive)
| 2800 | |
| 2801 | // Retrieve list of range (2 int per range, values are inclusive) |
| 2802 | const ImWchar* ImFontAtlas::GetGlyphRangesDefault() |
| 2803 | { |
| 2804 | static const ImWchar ranges[] = |
| 2805 | { |
| 2806 | 0x0020, 0x00FF, // Basic Latin + Latin Supplement |
| 2807 | 0, |
| 2808 | }; |
| 2809 | return &ranges[0]; |
| 2810 | } |
| 2811 | |
| 2812 | const ImWchar* ImFontAtlas::GetGlyphRangesGreek() |
| 2813 | { |
no outgoing calls
no test coverage detected