Home | History | Annotate | Download | only in radeon

Lines Matching defs:dst_pitch

41 unsigned r100_check_blit(gl_format mesa_format, uint32_t dst_pitch)
61 if (dst_pitch < 32)
183 uint32_t dst_pitch = pitch;
212 dst_pitch |= RADEON_COLOR_TILE_ENABLE;
215 dst_pitch |= RADEON_COLOR_MICROTILE_ENABLE;
228 OUT_BATCH_RELOC(dst_pitch, bo, dst_pitch, 0, RADEON_GEM_DOMAIN_GTT|RADEON_GEM_DOMAIN_VRAM, 0);
332 * @param[in] dst_pitch aligned destination image width
353 unsigned dst_pitch,
364 if (!r100_check_blit(dst_mesaformat, dst_pitch))
368 if (dst_pitch % 2 > 0)
369 ++dst_pitch;
400 dst_pitch, dst_offset, dst_x_offset, dst_y_offset,
418 emit_cb_setup(r100, dst_bo, dst_offset, dst_mesaformat, dst_pitch, dst_width, dst_height);