/third_party/mesa3d/src/amd/vulkan/ |
D | radv_meta_bufimage.c | 1362 struct radv_buffer_view dst_view; in radv_meta_image_to_buffer() local 1365 create_bview(cmd_buffer, dst->buffer, dst->offset, dst->format, &dst_view); in radv_meta_image_to_buffer() 1366 itob_bind_descriptors(cmd_buffer, &src_view, &dst_view); in radv_meta_image_to_buffer() 1384 radv_buffer_view_finish(&dst_view); in radv_meta_image_to_buffer() 1424 struct radv_buffer_view src_view, dst_view; in radv_meta_buffer_to_image_cs_r32g32b32() local 1437 &dst_view); in radv_meta_buffer_to_image_cs_r32g32b32() 1438 btoi_r32g32b32_bind_descriptors(cmd_buffer, &src_view, &dst_view); in radv_meta_buffer_to_image_cs_r32g32b32() 1461 radv_buffer_view_finish(&dst_view); in radv_meta_buffer_to_image_cs_r32g32b32() 1505 struct radv_image_view dst_view; in radv_meta_buffer_to_image_cs() local 1515 create_iview(cmd_buffer, dst, &dst_view, VK_FORMAT_UNDEFINED, dst->aspect_mask); in radv_meta_buffer_to_image_cs() [all …]
|
/third_party/skia/third_party/externals/imgui/backends/ |
D | imgui_impl_wgpu.cpp | 497 WGPUImageCopyTexture dst_view = {}; in ImGui_ImplWGPU_CreateFontsTexture() local 498 dst_view.texture = g_resources.FontTexture; in ImGui_ImplWGPU_CreateFontsTexture() 499 dst_view.mipLevel = 0; in ImGui_ImplWGPU_CreateFontsTexture() 500 dst_view.origin = { 0, 0, 0 }; in ImGui_ImplWGPU_CreateFontsTexture() 501 dst_view.aspect = WGPUTextureAspect_All; in ImGui_ImplWGPU_CreateFontsTexture() 507 …wgpuQueueWriteTexture(g_defaultQueue, &dst_view, pixels, (uint32_t)(width * size_pp * height), &la… in ImGui_ImplWGPU_CreateFontsTexture()
|
/third_party/skia/modules/canvaskit/ |
D | WasmCommon.h | 95 auto dst_view = emscripten::val(typed_memory_view(len, data)); in JSSpan() local 96 dst_view.call<void>("set", src); in JSSpan()
|
/third_party/mesa3d/src/gallium/drivers/freedreno/ |
D | freedreno_blitter.c | 125 struct pipe_surface *dst_view, dst_templ; in fd_blitter_blit() local 158 dst_view = pipe->create_surface(pipe, dst, &dst_templ); in fd_blitter_blit() 167 ctx->blitter, dst_view, &info->dst.box, src_view, &info->src.box, in fd_blitter_blit() 171 pipe_surface_reference(&dst_view, NULL); in fd_blitter_blit()
|
/third_party/mesa3d/src/gallium/auxiliary/util/ |
D | u_blitter.c | 1782 struct pipe_surface *dst_view, dst_templ; in util_blitter_copy_texture() local 1794 dst_view = pipe->create_surface(pipe, dst, &dst_templ); in util_blitter_copy_texture() 1801 util_blitter_blit_generic(blitter, dst_view, &dstbox, in util_blitter_copy_texture() 1806 pipe_surface_reference(&dst_view, NULL); in util_blitter_copy_texture() 2246 struct pipe_surface *dst_view, dst_templ; in util_blitter_blit() local 2253 dst_view = pipe->create_surface(pipe, dst, &dst_templ); in util_blitter_blit() 2261 util_blitter_blit_generic(blitter, dst_view, &info->dst.box, in util_blitter_blit() 2268 pipe_surface_reference(&dst_view, NULL); in util_blitter_blit() 2280 struct pipe_surface dst_templ, *dst_view; in util_blitter_generate_mipmap() local 2354 dst_view = pipe->create_surface(pipe, tex, &dst_templ); in util_blitter_generate_mipmap() [all …]
|
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/codecparsers/ |
D | gsth264parser.c | 298 GstH264SPSExtMVCView *const dst_view = &dst_mvc->view[i]; in gst_h264_sps_mvc_copy() local 301 dst_view->view_id = src_view->view_id; in gst_h264_sps_mvc_copy() 303 dst_view->num_anchor_refs_l0 = src_view->num_anchor_refs_l0; in gst_h264_sps_mvc_copy() 304 for (j = 0; j < dst_view->num_anchor_refs_l0; j++) in gst_h264_sps_mvc_copy() 305 dst_view->anchor_ref_l0[j] = src_view->anchor_ref_l0[j]; in gst_h264_sps_mvc_copy() 307 dst_view->num_anchor_refs_l1 = src_view->num_anchor_refs_l1; in gst_h264_sps_mvc_copy() 308 for (j = 0; j < dst_view->num_anchor_refs_l1; j++) in gst_h264_sps_mvc_copy() 309 dst_view->anchor_ref_l1[j] = src_view->anchor_ref_l1[j]; in gst_h264_sps_mvc_copy() 311 dst_view->num_non_anchor_refs_l0 = src_view->num_non_anchor_refs_l0; in gst_h264_sps_mvc_copy() 312 for (j = 0; j < dst_view->num_non_anchor_refs_l0; j++) in gst_h264_sps_mvc_copy() [all …]
|
/third_party/mesa3d/src/gallium/drivers/zink/ |
D | zink_blit.c | 359 struct pipe_surface *dst_view, dst_templ; in zink_blit() local 361 dst_view = pctx->create_surface(pctx, info->dst.resource, &dst_templ); in zink_blit() 363 util_blitter_clear_depth_stencil(ctx->blitter, dst_view, PIPE_CLEAR_STENCIL, in zink_blit() 376 pipe_surface_release(pctx, &dst_view); in zink_blit()
|
D | zink_render_pass.c | 691 struct pipe_surface *dst_view = (struct pipe_surface*)csurf->transient; in zink_begin_render_pass() local 692 assert(dst_view); in zink_begin_render_pass() 698 1 + dst_view->u.tex.last_layer - dst_view->u.tex.first_layer, &dstbox); in zink_begin_render_pass() 704 util_blitter_blit_generic(ctx->blitter, dst_view, &dstbox, in zink_begin_render_pass()
|
/third_party/mesa3d/src/gallium/drivers/i915/ |
D | i915_surface.c | 87 struct pipe_surface dst_templ, *dst_view; in i915_surface_copy_render() local 111 dst_view = i915_create_surface_custom(pipe, dst, &dst_templ, dst_width0, in i915_surface_copy_render() 119 util_blitter_blit_generic(i915->blitter, dst_view, &dstbox, src_view, in i915_surface_copy_render()
|
/third_party/mesa3d/src/gallium/drivers/crocus/ |
D | crocus_blit.c | 418 struct pipe_surface *dst_view, dst_templ; in crocus_blit() local 420 dst_view = ctx->create_surface(ctx, info->dst.resource, &dst_templ); in crocus_blit() 424 util_blitter_clear_depth_stencil(ice->blitter, dst_view, PIPE_CLEAR_STENCIL, in crocus_blit() 436 pipe_surface_release(ctx, &dst_view); in crocus_blit()
|
/third_party/mesa3d/src/gallium/drivers/r300/ |
D | r300_blit.c | 561 struct pipe_surface dst_templ, *dst_view; in r300_resource_copy_region() local 678 dst_view = r300_create_surface_custom(pipe, dst, &dst_templ, dst_width0, dst_height0); in r300_resource_copy_region() 685 util_blitter_blit_generic(r300->blitter, dst_view, &dstbox, in r300_resource_copy_region() 691 pipe_surface_reference(&dst_view, NULL); in r300_resource_copy_region()
|
/third_party/mesa3d/src/gallium/drivers/r600/ |
D | r600_blit.c | 674 struct pipe_surface *dst_view, dst_templ; in r600_resource_copy_region() local 787 dst_view = r600_create_surface_custom(ctx, dst, &dst_templ, in r600_resource_copy_region() 806 util_blitter_blit_generic(rctx->blitter, dst_view, &dstbox, in r600_resource_copy_region() 812 pipe_surface_reference(&dst_view, NULL); in r600_resource_copy_region()
|
/third_party/mesa3d/src/panfrost/lib/ |
D | pan_blitter.c | 775 const struct pan_image_view *dst_view) in pan_blit_get_rsd() argument 784 views.dst_z = dst_view; in pan_blit_get_rsd() 789 views.dst_s = dst_view; in pan_blit_get_rsd() 792 views.dst_s = dst_view; in pan_blit_get_rsd() 798 views.dst_rts[0] = dst_view; in pan_blit_get_rsd()
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/ |
D | si_blit.c | 904 struct pipe_surface *dst_view, dst_templ; in si_resource_copy_region() local 971 dst_view = ctx->create_surface(ctx, dst, &dst_templ); in si_resource_copy_region() 981 util_blitter_blit_generic(sctx->blitter, dst_view, &dstbox, src_view, src_box, src->width0, in si_resource_copy_region() 986 pipe_surface_reference(&dst_view, NULL); in si_resource_copy_region()
|