Home | History | Annotate | Download | only in r200

Lines Matching defs:dst_pitch

41 unsigned r200_check_blit(gl_format mesa_format, uint32_t dst_pitch)
64 if (dst_pitch < 32)
305 uint32_t dst_pitch = pitch;
336 dst_pitch |= R200_COLOR_TILE_ENABLE;
338 dst_pitch |= R200_COLOR_MICROTILE_ENABLE;
353 OUT_BATCH_RELOC(dst_pitch, bo, dst_pitch, 0, RADEON_GEM_DOMAIN_GTT|RADEON_GEM_DOMAIN_VRAM, 0);
454 * @param[in] dst_pitch aligned destination image width
475 unsigned dst_pitch,
486 if (!r200_check_blit(dst_mesaformat, dst_pitch))
490 if (dst_pitch % 2 > 0)
491 ++dst_pitch;
522 dst_pitch, dst_x_offset, dst_y_offset,
540 emit_cb_setup(r200, dst_bo, dst_offset, dst_mesaformat, dst_pitch, dst_width, dst_height);