Home
last modified time | relevance | path

Searched refs:copy_depth (Results 1 – 6 of 6) sorted by relevance

/external/mesa3d/src/gallium/drivers/radeonsi/
Dcik_sdma.c183 unsigned copy_depth = src_box->depth; in cik_sdma_copy_texture() local
222 copy_depth <= (1 << 11) && in cik_sdma_copy_texture()
227 copy_depth < (1 << 11))) && in cik_sdma_copy_texture()
252 radeon_emit(cs, copy_depth); in cik_sdma_copy_texture()
255 radeon_emit(cs, (copy_depth - 1)); in cik_sdma_copy_texture()
310 copy_depth == (1 << 11))) in cik_sdma_copy_texture()
366 bpp * ((linear_z + copy_depth - 1) * linear_slice_pitch + in cik_sdma_copy_texture()
394 copy_depth <= (1 << 11)) { in cik_sdma_copy_texture()
416 radeon_emit(cs, copy_depth); in cik_sdma_copy_texture()
419 radeon_emit(cs, (copy_depth - 1)); in cik_sdma_copy_texture()
[all …]
/external/mesa3d/src/gallium/drivers/r600/
Dr600_pipe.h141 bool copy_depth, copy_stencil; member
Dr600_blit.c147 rctx->db_misc_state.copy_depth = util_format_has_depth(desc); in r600_blit_decompress_depth()
Dr600_state.c1615 assert(a->copy_depth || a->copy_stencil); in r600_emit_db_misc_state()
1617 db_render_control |= S_028D0C_DEPTH_COPY_ENABLE(a->copy_depth) | in r600_emit_db_misc_state()
Devergreen_state.c2089 assert(a->copy_depth || a->copy_stencil); in evergreen_emit_db_misc_state()
2091 db_render_control |= S_028000_DEPTH_COPY_ENABLE(a->copy_depth) | in evergreen_emit_db_misc_state()
/external/vulkan-validation-layers/layers/
Dbuffer_validation.cpp2246 uint32_t copy_depth = (slice_override ? depth_slices : src_copy_extent.depth); in ValidateImageCopyData() local
2247 …if ((SafeModulo(copy_depth, block_size.depth) != 0) && (copy_depth + region.srcOffset.z != mip_ext… in ValidateImageCopyData()
2363 uint32_t copy_depth = (slice_override ? depth_slices : dst_copy_extent.depth); in ValidateImageCopyData() local
2364 …if ((SafeModulo(copy_depth, block_size.depth) != 0) && (copy_depth + region.dstOffset.z != mip_ext… in ValidateImageCopyData()