• Home
  • Raw
  • Download

Lines Matching refs:uiIdx

298 	PVRTuint32 uiIdx = (PVRTuint32) (pItem - m_pszCharacterList);  in FindCharacter()  local
299 return uiIdx; in FindCharacter()
729 PVRTuint32 uiIdx; in MeasureText() local
740 uiIdx = FindCharacter(utf32[uiIndex]); in MeasureText()
741 if(uiIdx == PVRTPRINT3D_INVALID_CHAR) // No character found. Add a space. in MeasureText()
751 fLength += m_pCharMatrics[uiIdx].nAdv + fKernOffset; // Add on this characters width in MeasureText()
882 PVRTuint32 uiIdx = FindCharacter(Text[uiIndex]); in UpdateLine() local
885 if(uiIdx == PVRTPRINT3D_INVALID_CHAR) // No character found. Add a space. 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()
905 pVertices[VertexCount+0].tu = f2vt(m_pUVs[uiIdx].fUL); in UpdateLine()
906 pVertices[VertexCount+0].tv = f2vt(m_pUVs[uiIdx].fVT); in UpdateLine()
908 pVertices[VertexCount+1].sx = f2vt(XPos + fAOff + PVRTMakeWhole(m_pRects[uiIdx].nW * fScale)); in UpdateLine()
912 pVertices[VertexCount+1].tu = f2vt(m_pUVs[uiIdx].fUR); in UpdateLine()
913 pVertices[VertexCount+1].tv = f2vt(m_pUVs[uiIdx].fVT); in UpdateLine()
916 pVertices[VertexCount+2].sy = f2vt(YPos + fYOffset - PVRTMakeWhole(m_pRects[uiIdx].nH * fScale)); in UpdateLine()
919 pVertices[VertexCount+2].tu = f2vt(m_pUVs[uiIdx].fUL); in UpdateLine()
920 pVertices[VertexCount+2].tv = f2vt(m_pUVs[uiIdx].fVB); 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()
926 pVertices[VertexCount+3].tu = f2vt(m_pUVs[uiIdx].fUR); in UpdateLine()
927 pVertices[VertexCount+3].tv = f2vt(m_pUVs[uiIdx].fVB); in UpdateLine()
934 …XPos = XPos + PVRTMakeWhole((m_pCharMatrics[uiIdx].nAdv + fKernOffset) * fScale); // Add on this … in UpdateLine()