/third_party/mesa3d/src/gallium/auxiliary/util/ |
D | u_compute.c | 87 struct pipe_sampler_view src_templ = {0}, *src_view; in util_compute_blit() local 141 src_view = ctx->create_sampler_view(ctx, src, &src_templ); in util_compute_blit() 142 ctx->set_sampler_views(ctx, PIPE_SHADER_COMPUTE, 0, 1, 0, false, &src_view); in util_compute_blit() 164 pipe_sampler_view_reference(&src_view, NULL); in util_compute_blit()
|
D | u_blitter.c | 1783 struct pipe_sampler_view src_templ, *src_view; in util_blitter_copy_texture() local 1798 src_view = pipe->create_sampler_view(pipe, src, &src_templ); in util_blitter_copy_texture() 1802 src_view, srcbox, src->width0, src->height0, in util_blitter_copy_texture() 1807 pipe_sampler_view_reference(&src_view, NULL); in util_blitter_copy_texture() 2247 struct pipe_sampler_view src_templ, *src_view; in util_blitter_blit() local 2258 src_view = pipe->create_sampler_view(pipe, src, &src_templ); in util_blitter_blit() 2262 src_view, &info->src.box, src->width0, src->height0, in util_blitter_blit() 2269 pipe_sampler_view_reference(&src_view, NULL); in util_blitter_blit() 2281 struct pipe_sampler_view src_templ, *src_view; in util_blitter_generate_mipmap() local 2359 src_view = pipe->create_sampler_view(pipe, tex, &src_templ); in util_blitter_generate_mipmap() [all …]
|
/third_party/mesa3d/src/amd/vulkan/ |
D | radv_meta_bufimage.c | 1361 struct radv_image_view src_view; in radv_meta_image_to_buffer() local 1364 create_iview(cmd_buffer, src, &src_view, VK_FORMAT_UNDEFINED, src->aspect_mask); in radv_meta_image_to_buffer() 1366 itob_bind_descriptors(cmd_buffer, &src_view, &dst_view); in radv_meta_image_to_buffer() 1383 radv_image_view_finish(&src_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 1435 create_bview(cmd_buffer, src->buffer, src->offset, src->format, &src_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() 1460 radv_buffer_view_finish(&src_view); in radv_meta_buffer_to_image_cs_r32g32b32() 1504 struct radv_buffer_view src_view; in radv_meta_buffer_to_image_cs() local 1514 create_bview(cmd_buffer, src->buffer, src->offset, src->format, &src_view); in radv_meta_buffer_to_image_cs() [all …]
|
/third_party/mesa3d/src/gallium/frontends/xa/ |
D | xa_composite.c | 452 struct pipe_sampler_view *src_view; in bind_samplers() local 477 src_view = pipe->create_sampler_view(pipe, src_pic->srf->tex, in bind_samplers() 479 ctx->bound_sampler_views[0] = src_view; in bind_samplers() 499 src_view = pipe->create_sampler_view(pipe, mask_pic->srf->tex, in bind_samplers() 501 ctx->bound_sampler_views[num_samplers] = src_view; in bind_samplers()
|
D | xa_renderer.c | 444 struct pipe_sampler_view *src_view; in renderer_copy_prepare() local 448 src_view = pipe->create_sampler_view(pipe, src_texture, &templ); in renderer_copy_prepare() 449 pipe->set_sampler_views(pipe, PIPE_SHADER_FRAGMENT, 0, 1, 0, false, &src_view); in renderer_copy_prepare() 450 pipe_sampler_view_reference(&src_view, NULL); in renderer_copy_prepare()
|
/third_party/mesa3d/src/gallium/drivers/freedreno/ |
D | freedreno_blitter.c | 126 struct pipe_sampler_view src_templ, *src_view; in fd_blitter_blit() local 163 src_view = pipe->create_sampler_view(pipe, src, &src_templ); in fd_blitter_blit() 167 ctx->blitter, dst_view, &info->dst.box, src_view, &info->src.box, in fd_blitter_blit() 172 pipe_sampler_view_reference(&src_view, NULL); in fd_blitter_blit()
|
/third_party/mesa3d/src/gallium/drivers/i915/ |
D | i915_surface.c | 86 struct pipe_sampler_view src_templ, *src_view; in i915_surface_copy_render() local 113 src_view = i915_create_sampler_view_custom(pipe, src, &src_templ, src_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/r600/ |
D | r600_blit.c | 675 struct pipe_sampler_view src_templ, *src_view; in r600_resource_copy_region() local 793 src_view = evergreen_create_sampler_view_custom(ctx, src, &src_templ, in r600_resource_copy_region() 797 src_view = r600_create_sampler_view_custom(ctx, src, &src_templ, in r600_resource_copy_region() 807 src_view, src_box, src_width0, src_height0, in r600_resource_copy_region() 813 pipe_sampler_view_reference(&src_view, NULL); in r600_resource_copy_region()
|
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/codecparsers/ |
D | gsth264parser.c | 299 const GstH264SPSExtMVCView *const src_view = &src_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() 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() 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() 313 dst_view->non_anchor_ref_l0[j] = src_view->non_anchor_ref_l0[j]; in gst_h264_sps_mvc_copy() 315 dst_view->num_non_anchor_refs_l1 = src_view->num_non_anchor_refs_l1; in gst_h264_sps_mvc_copy() 317 dst_view->non_anchor_ref_l1[j] = src_view->non_anchor_ref_l1[j]; in gst_h264_sps_mvc_copy()
|
/third_party/mesa3d/src/gallium/drivers/r300/ |
D | r300_blit.c | 560 struct pipe_sampler_view src_templ, *src_view; in r300_resource_copy_region() local 679 src_view = r300_create_sampler_view_custom(pipe, src, &src_templ, src_width0, src_height0); in r300_resource_copy_region() 686 src_view, src_box, src_width0, src_height0, in r300_resource_copy_region() 692 pipe_sampler_view_reference(&src_view, NULL); in r300_resource_copy_region()
|
/third_party/mesa3d/src/gallium/drivers/zink/ |
D | zink_render_pass.c | 693 struct pipe_sampler_view src_templ, *src_view; in zink_begin_render_pass() local 701 src_view = ctx->base.create_sampler_view(&ctx->base, src, &src_templ); in zink_begin_render_pass() 705 src_view, &dstbox, ctx->fb_state.width, ctx->fb_state.height, in zink_begin_render_pass() 709 pipe_sampler_view_reference(&src_view, NULL); in zink_begin_render_pass()
|
/third_party/mesa3d/src/gallium/drivers/d3d12/ |
D | d3d12_blit.cpp | 776 struct pipe_sampler_view src_templ, *src_view; in resolve_stencil_to_temp() local 780 src_view = pctx->create_sampler_view(pctx, info->src.resource, &src_templ); in resolve_stencil_to_temp() 785 pctx->set_sampler_views(pctx, PIPE_SHADER_FRAGMENT, 0, 1, 0, false, &src_view); in resolve_stencil_to_temp() 792 pipe_sampler_view_reference(&src_view, NULL); in resolve_stencil_to_temp()
|
/third_party/mesa3d/src/gallium/drivers/v3d/ |
D | v3d_blit.c | 188 struct pipe_sampler_view *src_view = in v3d_stencil_blit() local 193 src_view, &info->src.box, in v3d_stencil_blit() 201 pipe_sampler_view_reference(&src_view, NULL); in v3d_stencil_blit()
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/ |
D | si_blit.c | 905 struct pipe_sampler_view src_templ, *src_view; in si_resource_copy_region() local 974 src_view = ctx->create_sampler_view(ctx, src, &src_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() 987 pipe_sampler_view_reference(&src_view, NULL); in si_resource_copy_region()
|