Home | History | Annotate | Download | only in layout

Lines Matching refs:pCharPos

666                                     FXTEXT_CHARPOS* pCharPos,
711 if (pCharPos) {
730 pCharPos->m_GlyphIndex = wch;
732 pCharPos->m_GlyphIndex = pFont->GetGlyphIndex(wForm);
733 if (pCharPos->m_GlyphIndex == 0xFFFF)
734 pCharPos->m_GlyphIndex = pFont->GetGlyphIndex(wch);
737 pCharPos->m_ExtGID = pCharPos->m_GlyphIndex;
739 pCharPos->m_FontCharWidth = iCharWidth;
747 pCharPos->m_Origin = CFX_PointF(fX, fY);
752 pCharPos->m_bGlyphAdjust = true;
753 pCharPos->m_AdjustMatrix[0] = -1;
754 pCharPos->m_AdjustMatrix[1] = 0;
755 pCharPos->m_AdjustMatrix[2] = 0;
756 pCharPos->m_AdjustMatrix[3] = 1;
757 pCharPos->m_Origin.y += fAscent * iVerScale / 100.0f;
758 pCharPos->m_Origin.y -= fAscent;
761 pCharPos->m_AdjustMatrix[0] =
762 pCharPos->m_AdjustMatrix[0] * iHorScale / 100.0f;
763 pCharPos->m_AdjustMatrix[1] =
764 pCharPos->m_AdjustMatrix[1] * iHorScale / 100.0f;
765 pCharPos->m_AdjustMatrix[2] =
766 pCharPos->m_AdjustMatrix[2] * iVerScale / 100.0f;
767 pCharPos->m_AdjustMatrix[3] =
768 pCharPos->m_AdjustMatrix[3] * iVerScale / 100.0f;
770 ++pCharPos;