Lines Matching refs:m_pFont
100 m_pFont(NULL), in CharWriter()
137 if (m_pFont) in SetupGX()
139 switch (m_pFont->GetTextureFormat()) in SetupGX()
174 NN_POINTER_ASSERT(m_pFont); in SetFontSize()
175 NW_FONT_MIN_ASSERT(m_pFont->GetWidth(), 1); in SetFontSize()
176 NW_FONT_MIN_ASSERT(m_pFont->GetHeight(), 1); in SetFontSize()
178 width / m_pFont->GetWidth(), in SetFontSize()
179 height / m_pFont->GetHeight() in SetFontSize()
186 NN_POINTER_ASSERT(m_pFont); in SetFontSize()
187 NW_FONT_MIN_ASSERT(m_pFont->GetHeight(), 1); in SetFontSize()
188 const f32 scale = height / m_pFont->GetHeight(); in SetFontSize()
195 NN_POINTER_ASSERT(m_pFont); in GetFontWidth()
196 return m_pFont->GetWidth() * m_Scale.x; in GetFontWidth()
202 NN_POINTER_ASSERT(m_pFont); in GetFontHeight()
203 return m_pFont->GetHeight() * m_Scale.y; in GetFontHeight()
209 NN_POINTER_ASSERT(m_pFont); in GetFontAscent()
210 return m_pFont->GetAscent() * m_Scale.y; in GetFontAscent()
216 NN_POINTER_ASSERT(m_pFont); in GetFontDescent()
217 return m_pFont->GetDescent() * m_Scale.y; in GetFontDescent()
227 NN_POINTER_ASSERT(m_pFont); in Print()
234 m_pFont->GetGlyph(&glyph, code); in Print()
468 m_pFont->IsLinearFilterEnableAtSmall(), in LoadTexture()
469 m_pFont->IsLinearFilterEnableAtLarge()); in LoadTexture()