Home | History | Annotate | Download | only in fpdf_render

Lines Matching refs:orig_x

956                 FX_FLOAT orig_x, orig_y;

957 orig_x = col * pPattern->m_XStep;
959 mtPattern2Device.Transform(orig_x, orig_y);
961 matrix.Translate(orig_x - mtPattern2Device.e, orig_y - mtPattern2Device.f);
976 int orig_x = FXSYS_round(mtPattern2Device.e);
978 min_col = (clip_box.left - orig_x) / width;
979 if (clip_box.left < orig_x) {
982 max_col = (clip_box.right - orig_x) / width;
983 if (clip_box.right <= orig_x) {
1028 FX_FLOAT orig_x = col * pPattern->m_XStep;
1030 mtPattern2Device.Transform(orig_x, orig_y);
1031 start_x = FXSYS_round(orig_x + left_offset) - clip_box.left;