Searched refs:copy_height (Results 1 – 5 of 5) sorted by relevance
/external/mesa3d/src/gallium/drivers/radeonsi/ |
D | cik_sdma.c | 74 unsigned copy_height = DIV_ROUND_UP(src_box->height, ssrc->surface.blk_h); in si_sdma_v4_copy_texture() local 101 dst_slice_pitch <= (1 << 28) && copy_width <= (1 << 14) && copy_height <= (1 << 14) && in si_sdma_v4_copy_texture() 128 radeon_emit(cs, (copy_width - 1) | ((copy_height - 1) << 16)); 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() 193 radeon_emit(cs, (copy_width - 1) | ((copy_height - 1) << 16)); in si_sdma_v4_copy_texture() 236 unsigned copy_height = DIV_ROUND_UP(src_box->height, ssrc->surface.blk_h); in cik_sdma_copy_texture() local 265 dst_slice_pitch <= (1 << 28) && copy_width <= (1 << 14) && copy_height <= (1 << 14) && in cik_sdma_copy_texture() 269 (copy_width < (1 << 14) && copy_height < (1 << 14) && copy_depth < (1 << 11))) && in cik_sdma_copy_texture() 272 (srcx + copy_width != (1 << 14) && srcy + copy_height != (1 << 14)))) { in cik_sdma_copy_texture() 291 radeon_emit(cs, copy_width | (copy_height << 16)); in cik_sdma_copy_texture() [all …]
|
/external/mesa3d/src/gallium/frontends/nine/ |
D | surface9.c | 639 int src_x, src_y, dst_x, dst_y, copy_width, copy_height; in NineSurface9_CopyMemToDefault() local 656 copy_height = pSourceRect->bottom - pSourceRect->top; in NineSurface9_CopyMemToDefault() 661 copy_height = From->desc.Height; in NineSurface9_CopyMemToDefault() 665 copy_width, copy_height, &dst_box); in NineSurface9_CopyMemToDefault() 667 copy_width, copy_height, &src_box); in NineSurface9_CopyMemToDefault() 701 copy_width, copy_height); in NineSurface9_CopyMemToDefault()
|
D | device9.c | 1356 int copy_width, copy_height; in NineDevice9_UpdateSurface() local 1385 copy_height = pSourceRect->bottom - pSourceRect->top; in NineDevice9_UpdateSurface() 1391 copy_height > 0 && in NineDevice9_UpdateSurface() 1396 copy_height = src->desc.Height; in NineDevice9_UpdateSurface() 1400 destRect.bottom = copy_height; in NineDevice9_UpdateSurface() 1428 copy_height == src->desc.Height && in NineDevice9_UpdateSurface() 1429 copy_height == dst->desc.Height)) { in NineDevice9_UpdateSurface() 1430 user_assert(!(copy_width % w) && !(copy_height % h), in NineDevice9_UpdateSurface()
|
/external/mesa3d/src/gallium/drivers/r600/ |
D | r600_state.c | 2853 unsigned copy_height, in r600_dma_copy_tile() argument 2920 ncopy = (copy_height / cheight) + !!(copy_height % cheight); in r600_dma_copy_tile() 2924 cheight = cheight > copy_height ? copy_height : cheight; in r600_dma_copy_tile() 2938 copy_height -= cheight; in r600_dma_copy_tile() 2956 unsigned dst_pitch, src_pitch, bpp, dst_mode, src_mode, copy_height; in r600_dma_copy() local 2988 copy_height = src_box->height / rsrc->surface.blk_h; in r600_dma_copy() 3025 copy_height, dst_pitch, bpp)) { in r600_dma_copy()
|
D | evergreen_state.c | 3775 unsigned copy_height, in evergreen_dma_copy_tile() argument 3853 size = (copy_height * pitch) / 4; in evergreen_dma_copy_tile() 3858 cheight = copy_height; in evergreen_dma_copy_tile() 3879 copy_height -= cheight; in evergreen_dma_copy_tile() 3896 unsigned dst_pitch, src_pitch, bpp, dst_mode, src_mode, copy_height; in evergreen_dma_copy() local 3930 copy_height = src_box->height / rsrc->surface.blk_h; in evergreen_dma_copy() 3975 copy_height, dst_pitch, bpp); in evergreen_dma_copy()
|