Lines Matching refs:pCharPos
566 FXTEXT_CHARPOS* pCharPos = nullptr; in DrawString() local
592 FX_Free(pCharPos); in DrawString()
593 pCharPos = FX_Alloc(FXTEXT_CHARPOS, iChars); in DrawString()
596 memset(pCharPos, 0, iCharCount * sizeof(FXTEXT_CHARPOS)); in DrawString()
597 RenderString(pFxDevice, pPieceLine, j, pCharPos, tmDoc2Device); in DrawString()
600 RenderPath(pFxDevice, pPieceLine, j, pCharPos, tmDoc2Device); in DrawString()
603 FX_Free(pCharPos); in DrawString()
1140 FXTEXT_CHARPOS* pCharPos, in RenderString() argument
1143 int32_t iCount = GetDisplayPos(pPiece, pCharPos); in RenderString()
1145 CFDE_TextOut::DrawString(pDevice, pPiece->dwColor, pPiece->pFont, pCharPos, in RenderString()
1154 FXTEXT_CHARPOS* pCharPos, in RenderPath() argument
1163 int32_t iChars = GetDisplayPos(pPiece, pCharPos); in RenderPath()
1166 float fEndY = pCharPos[0].m_Origin.y + 1.05f; in RenderPath()
1170 pt1.x = pCharPos[j].m_Origin.x; in RenderPath()
1172 pt1.x + pCharPos[j].m_FontCharWidth * pPiece->fFontSize / 1000.0f; in RenderPath()
1179 pt1.x = pCharPos[0].m_Origin.x; in RenderPath()
1181 pCharPos[iChars - 1].m_Origin.x + in RenderPath()
1182 pCharPos[iChars - 1].m_FontCharWidth * pPiece->fFontSize / 1000.0f; in RenderPath()
1189 fEndY = pCharPos[0].m_Origin.y - pPiece->rtPiece.height * 0.25f; in RenderPath()
1190 pt1.x = pCharPos[0].m_Origin.x; in RenderPath()
1191 pt2.x = pCharPos[iChars - 1].m_Origin.x + in RenderPath()
1192 pCharPos[iChars - 1].m_FontCharWidth * pPiece->fFontSize / 1000.0f; in RenderPath()
1229 iChars = GetDisplayPos(pPiece, pCharPos); in RenderPath()
1233 fOrgX = pCharPos[iChars - 1].m_Origin.x + in RenderPath()
1234 pCharPos[iChars - 1].m_FontCharWidth * pPiece->fFontSize / 1000.0f; in RenderPath()
1236 iChars = GetDisplayPos(pPiece, pCharPos); in RenderPath()
1240 fEndX = pCharPos[0].m_Origin.x; in RenderPath()
1245 float fEndY = pCharPos[0].m_Origin.y + 1.05f; in RenderPath()
1252 fEndY = pCharPos[0].m_Origin.y - pPiece->rtPiece.height * 0.25f; in RenderPath()
1271 FXTEXT_CHARPOS* pCharPos, in GetDisplayPos() argument
1279 return m_pBreak->GetDisplayPos(&tr, pCharPos, bCharCode); in GetDisplayPos()