HomeSort by relevance Sort by last modified time
    Searched refs:dst_x2 (Results 1 - 4 of 4) sorted by null

  /external/mesa3d/src/gallium/drivers/i915/
i915_blit.c 103 int dst_x2 = dst_x + w; local
136 if (dst_y2 < dst_y || dst_x2 < dst_x) {
153 OUT_BATCH((dst_y2 << 16) | dst_x2);
  /external/mesa3d/src/mesa/drivers/dri/i915/
intel_blit.c 234 int dst_x2 = dst_x + w; local
286 dst_x2 *= cpp / 2;
292 dst_x2 *= cpp / 4;
312 if (dst_y2 <= dst_y || dst_x2 <= dst_x) {
316 assert(dst_x < dst_x2);
324 OUT_BATCH((dst_y2 << 16) | dst_x2);
  /external/mesa3d/src/mesa/drivers/dri/i965/
intel_blit.c 535 int dst_x2 = dst_x + w; local
577 dst_x2 *= cpp / 2;
583 dst_x2 *= cpp / 4;
615 if (dst_y2 <= dst_y || dst_x2 <= dst_x)
618 assert(dst_x < dst_x2);
625 OUT_BATCH(SET_FIELD(dst_y2, BLT_Y) | SET_FIELD(dst_x2, BLT_X));
  /external/mesa3d/src/gallium/auxiliary/util/
u_blitter.c     [all...]

Completed in 1786 milliseconds