Lines Matching refs:m_pFontInfo

53     m_pFontInfo(NULL),  in ResFontBase()
80 NN_ASSERT(m_pFontInfo == NULL); in SetResourceBuffer()
83 m_pFontInfo = pFontInfo; in SetResourceBuffer()
101 m_pFontInfo = NULL; in RemoveResourceBuffer()
116 NN_POINTER_ASSERT(m_pFontInfo); in GetWidth()
117 return m_pFontInfo->width; in GetWidth()
123 NN_POINTER_ASSERT(m_pFontInfo); in GetHeight()
124 return m_pFontInfo->height; in GetHeight()
130 NN_POINTER_ASSERT(m_pFontInfo); in GetAscent()
131 return m_pFontInfo->ascent; in GetAscent()
137 NN_POINTER_ASSERT(m_pFontInfo); in GetDescent()
138 return m_pFontInfo->height - m_pFontInfo->ascent; in GetDescent()
144 NN_POINTER_ASSERT(m_pFontInfo); in GetBaselinePos()
145 return m_pFontInfo->pGlyph->baselinePos; in GetBaselinePos()
151 NN_POINTER_ASSERT(m_pFontInfo); in GetCellHeight()
152 return m_pFontInfo->pGlyph->cellHeight; in GetCellHeight()
158 NN_POINTER_ASSERT(m_pFontInfo); in GetCellWidth()
159 return m_pFontInfo->pGlyph->cellWidth; in GetCellWidth()
165 NN_POINTER_ASSERT(m_pFontInfo); in GetMaxCharWidth()
166 return m_pFontInfo->pGlyph->maxCharWidth; in GetMaxCharWidth()
178 NN_POINTER_ASSERT(m_pFontInfo); in GetTextureFormat()
179 return static_cast<TexFmt>(m_pFontInfo->pGlyph->sheetFormat); in GetTextureFormat()
185 NN_POINTER_ASSERT(m_pFontInfo); in GetLineFeed()
186 return m_pFontInfo->linefeed; in GetLineFeed()
192 NN_POINTER_ASSERT(m_pFontInfo); in GetDefaultCharWidths()
193 return m_pFontInfo->defaultWidth; in GetDefaultCharWidths()
199 NN_POINTER_ASSERT(m_pFontInfo); in SetDefaultCharWidths()
201 m_pFontInfo->defaultWidth = widths; in SetDefaultCharWidths()
207 NN_POINTER_ASSERT(m_pFontInfo); in SetAlternateChar()
212 m_pFontInfo->alterCharIndex = index; in SetAlternateChar()
222 NN_POINTER_ASSERT(m_pFontInfo); in SetLineFeed()
224 m_pFontInfo->linefeed = static_cast<s8>(linefeed); in SetLineFeed()
271 NN_POINTER_ASSERT(m_pFontInfo); in GetCharacterCode()
273 return static_cast<CharacterCode>(m_pFontInfo->characterCode); in GetCharacterCode()
285 NN_POINTER_ASSERT(m_pFontInfo); in GetGlyphIndex()
287 return (index != GLYPH_INDEX_NOT_FOUND) ? index: m_pFontInfo->alterCharIndex; in GetGlyphIndex()
293 NN_POINTER_ASSERT(m_pFontInfo); in FindGlyphIndex()
302 const FontCodeMap* pMap = m_pFontInfo->pMap; in FindGlyphIndex()
390 NN_POINTER_ASSERT(m_pFontInfo); in GetCharWidthsFromIndex()
393 pWidth = m_pFontInfo->pWidth; in GetCharWidthsFromIndex()
405 return m_pFontInfo->defaultWidth; in GetCharWidthsFromIndex()
424 NN_POINTER_ASSERT(m_pFontInfo); in GetGlyphFromIndex()
425 const FontTextureGlyph& tg = *m_pFontInfo->pGlyph; in GetGlyphFromIndex()
512 NN_POINTER_ASSERT(m_pFontInfo); in GetActiveSheetNum()
513 return m_pFontInfo->pGlyph->sheetNum; in GetActiveSheetNum()
522 const FontTextureGlyph& tg = *m_pFontInfo->pGlyph; in GenTextureNames()