Home | History | Annotate | Download | only in fpdf_font

Lines Matching refs:m_CharBBox

821     FXSYS_memset8(m_CharBBox, 0xff, 256 * sizeof(FX_SMALL_RECT));

1116 if (charcode < 256 && m_CharBBox[charcode].Right != -1) {
1117 rect.bottom = m_CharBBox[charcode].Bottom;
1118 rect.left = m_CharBBox[charcode].Left;
1119 rect.right = m_CharBBox[charcode].Right;
1120 rect.top = m_CharBBox[charcode].Top;
1184 m_CharBBox[charcode].Bottom = (short)rect.bottom;
1185 m_CharBBox[charcode].Left = (short)rect.left;
1186 m_CharBBox[charcode].Right = (short)rect.right;
1187 m_CharBBox[charcode].Top = (short)rect.top;