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.c75 unsigned copy_depth = src_box->depth; in si_sdma_v4_copy_texture() local
102 copy_depth <= (1 << 11))) in si_sdma_v4_copy_texture()
129 radeon_emit(cs, (copy_depth - 1)); in si_sdma_v4_copy_texture()
165 copy_width <= (1 << 14) && copy_height <= (1 << 14) && copy_depth <= (1 << 11))) in si_sdma_v4_copy_texture()
194 radeon_emit(cs, (copy_depth - 1)); in si_sdma_v4_copy_texture()
237 unsigned copy_depth = src_box->depth; in cik_sdma_copy_texture() local
266 copy_depth <= (1 << 11) && in cik_sdma_copy_texture()
269 (copy_width < (1 << 14) && copy_height < (1 << 14) && copy_depth < (1 << 11))) && in cik_sdma_copy_texture()
292 radeon_emit(cs, copy_depth); in cik_sdma_copy_texture()
295 radeon_emit(cs, (copy_depth - 1)); in cik_sdma_copy_texture()
[all …]
/external/mesa3d/src/gallium/drivers/r600/
Dr600_pipe.h142 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.c1619 assert(a->copy_depth || a->copy_stencil); in r600_emit_db_misc_state()
1621 db_render_control |= S_028D0C_DEPTH_COPY_ENABLE(a->copy_depth) | in r600_emit_db_misc_state()
Devergreen_state.c2099 assert(a->copy_depth || a->copy_stencil); in evergreen_emit_db_misc_state()
2101 db_render_control |= S_028000_DEPTH_COPY_ENABLE(a->copy_depth) | in evergreen_emit_db_misc_state()
/external/vulkan-validation-layers/layers/
Dbuffer_validation.cpp2279 uint32_t copy_depth = (slice_override ? depth_slices : src_copy_extent.depth); in ValidateImageCopyData() local
2280 …if ((SafeModulo(copy_depth, block_size.depth) != 0) && (copy_depth + region.srcOffset.z != mip_ext… in ValidateImageCopyData()
2396 uint32_t copy_depth = (slice_override ? depth_slices : dst_copy_extent.depth); in ValidateImageCopyData() local
2397 …if ((SafeModulo(copy_depth, block_size.depth) != 0) && (copy_depth + region.dstOffset.z != mip_ext… in ValidateImageCopyData()