Lines Matching refs:m_pFont
102 m_pFont(NULL), in CharWriter()
139 if (m_pFont) in SetupGX()
141 switch (m_pFont->GetTextureFormat()) in SetupGX()
176 NN_POINTER_ASSERT(m_pFont); in SetFontSize()
177 NW_FONT_MIN_ASSERT(m_pFont->GetWidth(), 1); in SetFontSize()
178 NW_FONT_MIN_ASSERT(m_pFont->GetHeight(), 1); in SetFontSize()
180 width / m_pFont->GetWidth(), in SetFontSize()
181 height / m_pFont->GetHeight() in SetFontSize()
188 NN_POINTER_ASSERT(m_pFont); in SetFontSize()
189 NW_FONT_MIN_ASSERT(m_pFont->GetHeight(), 1); in SetFontSize()
190 const f32 scale = height / m_pFont->GetHeight(); in SetFontSize()
197 NN_POINTER_ASSERT(m_pFont); in GetFontWidth()
198 return m_pFont->GetWidth() * m_Scale.x; in GetFontWidth()
204 NN_POINTER_ASSERT(m_pFont); in GetFontHeight()
205 return m_pFont->GetHeight() * m_Scale.y; in GetFontHeight()
211 NN_POINTER_ASSERT(m_pFont); in GetFontAscent()
212 return m_pFont->GetAscent() * m_Scale.y; in GetFontAscent()
218 NN_POINTER_ASSERT(m_pFont); in GetFontDescent()
219 return m_pFont->GetDescent() * m_Scale.y; in GetFontDescent()
229 NN_POINTER_ASSERT(m_pFont); in Print()
236 m_pFont->GetGlyph(&glyph, code); in Print()
470 m_pFont->IsLinearFilterEnableAtSmall(), in LoadTexture()
471 m_pFont->IsLinearFilterEnableAtLarge()); in LoadTexture()