Lines Matching defs:pitch
220 /* SP_PS_2D_SRC_PITCH has shifted pitch field */
238 /* SP_PS_2D_SRC_PITCH has shifted pitch field */
246 uint64_t va, uint32_t pitch,
263 A6XX_SP_PS_2D_SRC_PITCH(.pitch = pitch));
307 r2d_dst_buffer(struct tu_cs *cs, enum pipe_format format, uint64_t va, uint32_t pitch,
321 A6XX_RB_2D_DST_PITCH(pitch));
982 uint64_t va, uint32_t pitch,
1002 A6XX_TEX_CONST_2_PITCH(pitch) |
1107 r3d_dst_buffer(struct tu_cs *cs, enum pipe_format format, uint64_t va, uint32_t pitch,
1117 A6XX_RB_MRT_PITCH(0, pitch),
1279 uint64_t va, uint32_t pitch,
1286 void (*dst_buffer)(struct tu_cs *cs, enum pipe_format format, uint64_t va, uint32_t pitch,
1724 uint32_t pitch = src_width * util_format_get_blocksize(src_format);
1725 uint32_t layer_size = src_height * pitch;
1738 if ((src_va & 63) || (pitch & 63)) {
1741 ops->src_buffer(cmd, cs, src_format, src_va & ~63, pitch,
1746 src_va += pitch;
1749 ops->src_buffer(cmd, cs, src_format, src_va, pitch, extent.width, extent.height, dst_format);
1805 uint32_t pitch = dst_width * util_format_get_blocksize(dst_format);
1806 uint32_t layer_size = pitch * dst_height;
1818 if ((dst_va & 63) || (pitch & 63)) {
1825 dst_va += pitch;
1828 ops->dst_buffer(cs, dst_format, dst_va, pitch, src_format);
3165 A6XX_SP_PS_2D_SRC_PITCH(.pitch = cmd->state.tiling->tile0.width * cpp));