| 813 | } |
| 814 | |
| 815 | void Renderer::AddCharacterSet( std::uint32_t low_bound, std::uint32_t high_bound ) { |
| 816 | if( high_bound <= low_bound ) { |
| 817 | return; |
| 818 | } |
| 819 | |
| 820 | m_character_sets.emplace_back( std::make_pair( low_bound, high_bound ) ); |
| 821 | } |
| 822 | |
| 823 | void Renderer::InvalidateImpl( unsigned char /*datasets*/ ) { |
| 824 | } |
nothing calls this directly
no outgoing calls
no test coverage detected