Home
last modified time | relevance | path

Searched refs:copy_height (Results 1 – 5 of 5) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/radeonsi/
Dsi_sdma_copy_image.c121 unsigned copy_height = DIV_ROUND_UP(ssrc->buffer.b.b.height0, ssrc->surface.blk_h); in si_sdma_v4_v5_copy_texture() local
130 unsigned bytes = src_pitch * copy_height * bpp; in si_sdma_v4_v5_copy_texture()
172 copy_width < (1 << 14) && copy_height < (1 << 14))) in si_sdma_v4_v5_copy_texture()
197 radeon_emit((copy_width - 1) | ((copy_height - 1) << 16)); in si_sdma_v4_v5_copy_texture()
250 unsigned copy_height = DIV_ROUND_UP(ssrc->buffer.b.b.height0, ssrc->surface.blk_h); in cik_sdma_copy_texture() local
259 dst_slice_pitch <= (1 << 28) && copy_width <= (1 << 14) && copy_height <= (1 << 14) && in cik_sdma_copy_texture()
262 (copy_width < (1 << 14) && copy_height < (1 << 14))) && in cik_sdma_copy_texture()
265 (copy_width != (1 << 14) && copy_height != (1 << 14)))) { in cik_sdma_copy_texture()
282 radeon_emit(copy_width | (copy_height << 16)); in cik_sdma_copy_texture()
285 radeon_emit((copy_width - 1) | ((copy_height - 1) << 16)); in cik_sdma_copy_texture()
[all …]
/third_party/mesa3d/src/gallium/frontends/nine/
Dsurface9.c654 int src_x, src_y, dst_x, dst_y, copy_width, copy_height; in NineSurface9_CopyMemToDefault() local
671 copy_height = pSourceRect->bottom - pSourceRect->top; in NineSurface9_CopyMemToDefault()
676 copy_height = From->desc.Height; in NineSurface9_CopyMemToDefault()
680 copy_width, copy_height, &dst_box); in NineSurface9_CopyMemToDefault()
682 copy_width, copy_height, &src_box); in NineSurface9_CopyMemToDefault()
693 copy_width, copy_height); in NineSurface9_CopyMemToDefault()
Ddevice9.c1402 int copy_width, copy_height; in NineDevice9_UpdateSurface() local
1431 copy_height = pSourceRect->bottom - pSourceRect->top; in NineDevice9_UpdateSurface()
1437 copy_height > 0 && in NineDevice9_UpdateSurface()
1442 copy_height = src->desc.Height; in NineDevice9_UpdateSurface()
1446 destRect.bottom = copy_height; in NineDevice9_UpdateSurface()
1474 copy_height == src->desc.Height && in NineDevice9_UpdateSurface()
1475 copy_height == dst->desc.Height)) { in NineDevice9_UpdateSurface()
1476 user_assert(!(copy_width % w) && !(copy_height % h), in NineDevice9_UpdateSurface()
/third_party/mesa3d/src/gallium/drivers/r600/
Dr600_state.c2858 unsigned copy_height, in r600_dma_copy_tile() argument
2925 ncopy = (copy_height / cheight) + !!(copy_height % cheight); in r600_dma_copy_tile()
2929 cheight = cheight > copy_height ? copy_height : cheight; in r600_dma_copy_tile()
2943 copy_height -= cheight; in r600_dma_copy_tile()
2961 unsigned dst_pitch, src_pitch, bpp, dst_mode, src_mode, copy_height; in r600_dma_copy() local
2993 copy_height = src_box->height / rsrc->surface.blk_h; in r600_dma_copy()
3030 copy_height, dst_pitch, bpp)) { in r600_dma_copy()
Devergreen_state.c3780 unsigned copy_height, in evergreen_dma_copy_tile() argument
3858 size = (copy_height * pitch) / 4; in evergreen_dma_copy_tile()
3863 cheight = copy_height; in evergreen_dma_copy_tile()
3884 copy_height -= cheight; in evergreen_dma_copy_tile()
3901 unsigned dst_pitch, src_pitch, bpp, dst_mode, src_mode, copy_height; in evergreen_dma_copy() local
3935 copy_height = src_box->height / rsrc->surface.blk_h; in evergreen_dma_copy()
3980 copy_height, dst_pitch, bpp); in evergreen_dma_copy()