/external/mesa3d/src/mesa/state_tracker/ |
D | st_cb_copyimage.c | 257 unsigned dstx, unsigned dsty, unsigned dstz, in blit() argument 272 u_box_3d(dstx, dsty, dstz, src_box->width, src_box->height, in blit() 284 unsigned dstx, unsigned dsty, unsigned dstz, in swizzled_copy() argument 334 blit(pipe, dst, blit_dst_format, dst_level, dstx, dsty, dstz, in swizzled_copy() 403 unsigned dstx, unsigned dsty, unsigned dstz, in handle_complex_copy() argument 432 blit(pipe, dst, noncanon_format, dst_level, dstx, dsty, dstz, src, in handle_complex_copy() 439 blit(pipe, dst, canon_format, dst_level, dstx, dsty, dstz, src, in handle_complex_copy() 456 swizzled_copy(pipe, dst, dst_level, dstx, dsty, dstz, temp, 0, in handle_complex_copy() 465 blit(pipe, dst, noncanon_format, dst_level, dstx, dsty, dstz, src, in handle_complex_copy() 480 blit(pipe, dst, noncanon_format, dst_level, dstx, dsty, dstz, temp, in handle_complex_copy() [all …]
|
/external/mesa3d/src/gallium/drivers/radeonsi/ |
D | cik_sdma.c | 56 unsigned dst_level, unsigned dstx, unsigned dsty, unsigned dstz, in si_sdma_v4_copy_texture() argument 80 assert(sdst->surface.u.gfx9.surf_offset + dst_slice_pitch * bpp * (dstz + src_box->depth) <= in si_sdma_v4_copy_texture() 85 if (!si_prepare_for_dma_blit(sctx, sdst, dst_level, dstx, dsty, dstz, ssrc, src_level, src_box)) in si_sdma_v4_copy_texture() 92 dsty >= (1 << 14) || dstz >= (1 << 11)) in si_sdma_v4_copy_texture() 126 radeon_emit(cs, dstz | ((dst_pitch - 1) << 13)); in si_sdma_v4_copy_texture() 143 unsigned tiled_z = tiled == ssrc ? srcz : dstz; in si_sdma_v4_copy_texture() 144 unsigned linear_z = linear == ssrc ? srcz : dstz; in si_sdma_v4_copy_texture() 202 unsigned dst_level, unsigned dstx, unsigned dsty, unsigned dstz, in cik_sdma_copy_texture() argument 242 dst_slice_pitch * bpp * (dstz + src_box->depth) <= in cik_sdma_copy_texture() 248 if (!si_prepare_for_dma_blit(sctx, sdst, dst_level, dstx, dsty, dstz, ssrc, src_level, src_box)) in cik_sdma_copy_texture() [all …]
|
D | si_test_dma.c | 305 int srcx, srcy, srcz, dstx, dsty, dstz; in si_test_dma() local 317 srcx = srcy = srcz = dstx = dsty = dstz = 0; in si_test_dma() 322 dstz = rand() % (tdst.array_size - depth + 1); in si_test_dma() 360 sctx->dma_copy(ctx, dst, 0, dstx, dsty, dstz, src, 0, &box); in si_test_dma() 369 dstz, width, height, depth, src_cpu.ptr, src_cpu.stride, in si_test_dma()
|
D | si_compute_blit.c | 424 unsigned dsty, unsigned dstz, const struct pipe_box *src_box, in si_compute_copy_image() argument 475 si_decompress_subresource(ctx, dst, PIPE_MASK_RGBAZS, dst_level, dstz, in si_compute_copy_image() 476 dstz + src_box->depth - 1); in si_compute_copy_image() 495 unsigned data[] = {src_box->x, src_box->y, src_box->z, 0, dstx, dsty, dstz, 0}; in si_compute_copy_image()
|
D | si_blit.c | 850 unsigned dst_level, unsigned dstx, unsigned dsty, unsigned dstz, in si_resource_copy_region() argument 876 si_compute_copy_image(sctx, dst, dst_level, src, src_level, dstx, dsty, dstz, in si_resource_copy_region() 895 util_blitter_default_dst_texture(&dst_templ, dst, dst_level, dstz); in si_resource_copy_region() 992 u_box_3d(dstx, dsty, dstz, abs(src_box->width), abs(src_box->height), abs(src_box->depth), in si_resource_copy_region()
|
/external/mesa3d/src/gallium/drivers/freedreno/ |
D | freedreno_blitter.c | 41 unsigned dstlevel, unsigned dstz) in default_dst_texture() argument 45 dst_templ->u.tex.first_layer = dstz; in default_dst_texture() 46 dst_templ->u.tex.last_layer = dstz; in default_dst_texture() 295 unsigned dstx, unsigned dsty, unsigned dstz, in fd_blitter_pipe_copy_region() argument 310 dst, dst_level, dstx, dsty, dstz, in fd_blitter_pipe_copy_region() 325 unsigned dstx, unsigned dsty, unsigned dstz, in fd_resource_copy_region() argument 340 info.dst.box.z = dstz; in fd_resource_copy_region() 366 dst, dst_level, dstx, dsty, dstz, in fd_resource_copy_region() 372 dst, dst_level, dstx, dsty, dstz, in fd_resource_copy_region()
|
D | freedreno_blitter.h | 43 unsigned dstx, unsigned dsty, unsigned dstz,
|
/external/mesa3d/src/gallium/drivers/i915/ |
D | i915_surface.c | 80 unsigned dstx, unsigned dsty, unsigned dstz, in i915_surface_copy_render() argument 107 util_blitter_default_dst_texture(&dst_templ, dst, dst_level, dstz); in i915_surface_copy_render() 118 u_box_3d(dstx, dsty, dstz, abs(src_box->width), abs(src_box->height), in i915_surface_copy_render() 128 util_resource_copy_region(pipe, dst, dst_level, dstx, dsty, dstz, in i915_surface_copy_render() 206 unsigned dstx, unsigned dsty, unsigned dstz, in i915_surface_copy_blitter() argument 218 util_resource_copy_region(pipe, dst, dst_level, dstx, dsty, dstz, in i915_surface_copy_blitter() 227 assert(dstz == 0); in i915_surface_copy_blitter() 228 dst_offset = i915_texture_offset(dst_tex, dst_level, dstz); in i915_surface_copy_blitter()
|
/external/mesa3d/src/gallium/drivers/r600/ |
D | r600_test_dma.c | 305 int srcx, srcy, srcz, dstx, dsty, dstz; in r600_test_dma() local 316 srcx = srcy = srcz = dstx = dsty = dstz = 0; in r600_test_dma() 321 dstz = rand() % (tdst.array_size - depth + 1); in r600_test_dma() 363 rctx->dma_copy(ctx, dst, 0, dstx, dsty, dstz, src, 0, &box); in r600_test_dma() 372 dstx, dsty, dstz, width, height, depth, in r600_test_dma()
|
D | r600_blit.c | 675 unsigned dstx, unsigned dsty, unsigned dstz, in r600_resource_copy_region() argument 714 util_blitter_default_dst_texture(&dst_templ, dst, dst_level, dstz); in r600_resource_copy_region() 808 u_box_3d(dstx, dsty, dstz, abs(src_box->width), abs(src_box->height), in r600_resource_copy_region()
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_surface.c | 42 unsigned dstx, unsigned dsty, unsigned dstz, in lp_resource_copy_ms() argument 50 dst_box.z = dstz; in lp_resource_copy_ms() 87 unsigned dstx, unsigned dsty, unsigned dstz, in lp_resource_copy() argument 107 lp_resource_copy_ms(pipe, dst, dst_level, dstx, dsty, dstz, in lp_resource_copy() 111 util_resource_copy_region(pipe, dst, dst_level, dstx, dsty, dstz, in lp_resource_copy()
|
/external/mesa3d/src/gallium/drivers/iris/ |
D | iris_blit.c | 653 unsigned dstx, unsigned dsty, unsigned dstz, in iris_copy_region() argument 711 dstz, src_box->depth, in iris_copy_region() 726 &dst_surf, dst_level, dstz + slice, in iris_copy_region() 733 iris_resource_finish_write(ice, dst_res, dst_level, dstz, in iris_copy_region() 764 unsigned dstx, unsigned dsty, unsigned dstz, in iris_resource_copy_region() argument 794 iris_copy_region(&ice->blorp, batch, p_dst, dst_level, dstx, dsty, dstz, in iris_resource_copy_region() 804 dsty, dstz, &s_src_res->base, src_level, src_box); in iris_resource_copy_region()
|
/external/mesa3d/src/gallium/drivers/etnaviv/ |
D | etnaviv_clear_blit.c | 153 unsigned dstz, struct pipe_resource *src, in etna_resource_copy_region() argument 169 util_blitter_copy_texture(ctx->blitter, dst, dst_level, dstx, dsty, dstz, in etna_resource_copy_region() 172 util_resource_copy_region(pctx, dst, dst_level, dstx, dsty, dstz, src, in etna_resource_copy_region()
|
/external/mesa3d/src/gallium/drivers/svga/ |
D | svga_pipe_blit.c | 153 unsigned dstx, unsigned dsty, unsigned dstz, in copy_region_fallback() argument 161 dsty, dstz, src_tex, src_level, src_box); in copy_region_fallback() 819 unsigned dstx, unsigned dsty, unsigned dstz, in svga_resource_copy_region() argument 848 dsty, dstz, src_tex, src_level, src_box); in svga_resource_copy_region() 853 build_blit_info(dst_tex, dst_level, dstx, dsty, dstz, in svga_resource_copy_region() 871 copy_region_fallback(svga, dst_tex, dst_level, dstx, dsty, dstz, in svga_resource_copy_region()
|
/external/mesa3d/src/gallium/drivers/nouveau/nv30/ |
D | nv30_resource.h | 64 unsigned dstx, unsigned dsty, unsigned dstz,
|
/external/mesa3d/src/gallium/frontends/nine/ |
D | volume9.c | 426 unsigned dstx, unsigned dsty, unsigned dstz, in NineVolume9_CopyMemToDefault() argument 434 This, From, dstx, dsty, dstz, pSrcBox); in NineVolume9_CopyMemToDefault() 441 dst_box.z = dstz; in NineVolume9_CopyMemToDefault() 474 dstx, dsty, dstz, in NineVolume9_CopyMemToDefault()
|
D | volume9.h | 90 unsigned dstx, unsigned dsty, unsigned dstz,
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_surface.c | 352 unsigned dstx, unsigned dsty, unsigned dstz, in util_clear_color_texture() argument 362 dstx, dsty, dstz, in util_clear_color_texture() 549 unsigned dstx, unsigned dsty, unsigned dstz, in util_clear_depth_stencil_texture() argument 566 dstx, dsty, dstz, in util_clear_depth_stencil_texture()
|
D | u_blitter.h | 241 unsigned dstx, unsigned dsty, unsigned dstz, 291 unsigned dstz);
|
/external/mesa3d/src/gallium/drivers/r300/ |
D | r300_blit.c | 536 unsigned dstx, unsigned dsty, unsigned dstz, in r300_resource_copy_region() argument 557 util_resource_copy_region(pipe, dst, dst_level, dstx, dsty, dstz, in r300_resource_copy_region() 571 util_blitter_default_dst_texture(&dst_templ, dst, dst_level, dstz); in r300_resource_copy_region() 656 util_resource_copy_region(pipe, dst, dst_level, dstx, dsty, dstz, in r300_resource_copy_region() 672 u_box_3d(dstx, dsty, dstz, abs(src_box->width), abs(src_box->height), in r300_resource_copy_region()
|
/external/mesa3d/src/gallium/auxiliary/driver_ddebug/ |
D | dd_pipe.h | 87 unsigned dstx, dsty, dstz; member
|
/external/virglrenderer/src/gallium/include/pipe/ |
D | p_context.h | 283 unsigned dstx, unsigned dsty, unsigned dstz,
|
/external/virglrenderer/tests/ |
D | testvirgl_encode.h | 231 unsigned dstx, unsigned dsty, unsigned dstz,
|
/external/mesa3d/src/gallium/drivers/virgl/ |
D | virgl_encode.h | 232 unsigned dstx, unsigned dsty, unsigned dstz,
|
/external/mesa3d/src/gallium/drivers/swr/ |
D | swr_context.cpp | 245 unsigned dstz, in swr_resource_copy() argument 263 pipe, dst, dst_level, dstx, dsty, dstz, src, src_level, src_box); in swr_resource_copy()
|