| 1375 | } |
| 1376 | |
| 1377 | bool SdCardFont::isOverflowGlyph(const EpdGlyph* glyph) const { |
| 1378 | for (uint32_t i = 0; i < overflowCount_; i++) { |
| 1379 | if (&overflow_[i].glyph == glyph) return true; |
| 1380 | } |
| 1381 | return false; |
| 1382 | } |
| 1383 | |
| 1384 | const uint8_t* SdCardFont::getOverflowBitmap(const EpdGlyph* glyph) const { |
| 1385 | for (uint32_t i = 0; i < overflowCount_; i++) { |