--------------------------------------------------------------------
| 59 | |
| 60 | //-------------------------------------------------------------------- |
| 61 | void signature(const char* font_signature) |
| 62 | { |
| 63 | m_font_signature = (char*)m_allocator.allocate(strlen(font_signature) + 1); |
| 64 | strcpy(m_font_signature, font_signature); |
| 65 | memset(m_glyphs, 0, sizeof(m_glyphs)); |
| 66 | } |
| 67 | |
| 68 | //-------------------------------------------------------------------- |
| 69 | bool font_is(const char* font_signature) const |