Home | History | Annotate | Download | only in fpdf_render

Lines Matching refs:dest_pos

1326     int dest_pos = i * dest_Bpp;
1329 dest_scan[dest_pos] = (uint8_t)set_argb;
1331 dest_scan[dest_pos] = FXARGB_B(set_argb);
1332 dest_scan[dest_pos + 1] = FXARGB_G(set_argb);
1333 dest_scan[dest_pos + 2] = FXARGB_R(set_argb);
1335 *(FX_DWORD*)(dest_scan + dest_pos) = set_argb;
1339 dest_scan[dest_pos] = (uint8_t)reset_argb;
1341 dest_scan[dest_pos] = FXARGB_B(reset_argb);
1342 dest_scan[dest_pos + 1] = FXARGB_G(reset_argb);
1343 dest_scan[dest_pos + 2] = FXARGB_R(reset_argb);
1345 *(FX_DWORD*)(dest_scan + dest_pos) = reset_argb;
1408 int dest_pos = i * dest_Bpp;
1410 dest_scan[dest_pos] = FXARGB_B(argb);
1411 dest_scan[dest_pos + 1] = FXARGB_G(argb);
1412 dest_scan[dest_pos + 2] = FXARGB_R(argb);