--------------------------------------------------------------------
| 72 | |
| 73 | //-------------------------------------------------------------------- |
| 74 | const glyph_cache* find_glyph(unsigned glyph_code) const |
| 75 | { |
| 76 | unsigned msb = (glyph_code >> 8) & 0xFF; |
| 77 | if (m_glyphs[msb]) |
| 78 | { |
| 79 | return m_glyphs[msb][glyph_code & 0xFF]; |
| 80 | } |
| 81 | return 0; |
| 82 | } |
| 83 | |
| 84 | //-------------------------------------------------------------------- |
| 85 | glyph_cache* cache_glyph(unsigned glyph_code, |
no outgoing calls
no test coverage detected