Lines Matching refs:fScale
493 EPVRTError CPVRTPrint3D::Print3D(float fPosX, float fPosY, const float fScale, unsigned int Colour,… in Print3D() argument
524 m_nCachedNumVerts = UpdateLine(0.0f, fPosX, fPosY, fScale, Colour, UTF32, m_pPrint3dVtx); in Print3D()
546 EPVRTError CPVRTPrint3D::Print3D(float fPosX, float fPosY, const float fScale, unsigned int Colour,… in Print3D() argument
571 …tring) != 0 || m_fPrevX != fPosX || m_fPrevY != fPosY || m_fPrevScale != fScale || m_uiPrevCol != … in Print3D()
577 m_fPrevScale = fScale; in Print3D()
599 return Print3D(fPosX, fPosY, fScale, Colour, m_CachedUTF32, bUpdate); in Print3D()
616 EPVRTError CPVRTPrint3D::Print3D(float fPosX, float fPosY, const float fScale, unsigned int Colour,… in Print3D() argument
633 …tring) != 0 || m_fPrevX != fPosX || m_fPrevY != fPosY || m_fPrevScale != fScale || m_uiPrevCol != … in Print3D()
639 m_fPrevScale = fScale; in Print3D()
650 return Print3D(fPosX, fPosY, fScale, Colour, m_CachedUTF32, bUpdate); in Print3D()
713 float fScale, in MeasureText() argument
758 *pfWidth = fMaxLength * fScale; in MeasureText()
760 *pfHeight = fMaxHeight * fScale; in MeasureText()
774 float fScale, in MeasureText() argument
779 MeasureText(pfWidth,pfHeight,fScale,m_CachedUTF32); in MeasureText()
792 float fScale, in MeasureText() argument
810 MeasureText(pfWidth,pfHeight,fScale,m_CachedUTF32); in MeasureText()
843 unsigned int CPVRTPrint3D::UpdateLine(const float fZPos, float XPos, float YPos, const float fScale… in UpdateLine() argument
855 YPos -= m_uiAscent * fScale; in UpdateLine()
877 YPos -= PVRTMakeWhole(m_uiNextLineH * fScale); in UpdateLine()
887 XPos += PVRTMakeWhole(m_uiSpaceWidth * fScale); in UpdateLine()
892 fYOffset = m_pYOffsets[uiIdx] * fScale; in UpdateLine()
893 …fAOff = PVRTMakeWhole(m_pCharMatrics[uiIdx].nXOff * fScale); // The A offset. Could include o… in UpdateLine()
908 pVertices[VertexCount+1].sx = f2vt(XPos + fAOff + PVRTMakeWhole(m_pRects[uiIdx].nW * fScale)); in UpdateLine()
916 pVertices[VertexCount+2].sy = f2vt(YPos + fYOffset - PVRTMakeWhole(m_pRects[uiIdx].nH * fScale)); in UpdateLine()
922 pVertices[VertexCount+3].sx = f2vt(XPos + fAOff + PVRTMakeWhole(m_pRects[uiIdx].nW * fScale)); in UpdateLine()
923 pVertices[VertexCount+3].sy = f2vt(YPos + fYOffset - PVRTMakeWhole(m_pRects[uiIdx].nH * fScale)); in UpdateLine()
934 …XPos = XPos + PVRTMakeWhole((m_pCharMatrics[uiIdx].nAdv + fKernOffset) * fScale); // Add on this … in UpdateLine()