Searched refs:dst_view (Results 1 – 5 of 5) sorted by relevance
/external/mesa3d/src/gallium/state_trackers/xorg/ |
D | xorg_xv.c | 186 struct pipe_sampler_view **dst_view = priv->yuv_views[priv->current_set]; in check_yuv_textures() local 194 pipe_sampler_view_reference(&dst_view[0], NULL); in check_yuv_textures() 200 pipe_sampler_view_reference(&dst_view[1], NULL); in check_yuv_textures() 206 pipe_sampler_view_reference(&dst_view[2], NULL); in check_yuv_textures() 215 dst_view[0] = pipe->create_sampler_view(pipe, dst[0], &view_templ); in check_yuv_textures() 225 dst_view[1] = pipe->create_sampler_view(pipe, dst[1], &view_templ); in check_yuv_textures() 235 dst_view[2] = pipe->create_sampler_view(pipe, dst[2], &view_templ); in check_yuv_textures() 239 if (!dst[0] || !dst[1] || !dst[2] || !dst_view[0] || !dst_view[1] || !dst_view[2] ) in check_yuv_textures()
|
/external/mesa3d/src/gallium/drivers/r300/ |
D | r300_blit.c | 466 struct pipe_surface dst_templ, *dst_view; in r300_resource_copy_region() local 576 dst_view = r300_create_surface_custom(pipe, dst, &dst_templ, dst_width0, dst_height0); in r300_resource_copy_region() 580 util_blitter_copy_texture_view(r300->blitter, dst_view, ~0, dstx, dsty, in r300_resource_copy_region() 585 pipe_surface_reference(&dst_view, NULL); in r300_resource_copy_region()
|
/external/mesa3d/src/gallium/drivers/r600/ |
D | r600_blit.c | 339 struct pipe_surface *dst_view, dst_templ; in r600_copy_first_sample() local 368 dst_view = ctx->create_surface(ctx, info->dst.res, &dst_templ); in r600_copy_first_sample() 376 util_blitter_copy_texture_view(rctx->blitter, dst_view, ~0, info->dst.x0, in r600_copy_first_sample() 382 pipe_surface_reference(&dst_view, NULL); in r600_copy_first_sample()
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
D | mask.c | 279 struct pipe_sampler_view *dst_view = vg_get_surface_mask(ctx); in mask_using_texture() local 280 struct pipe_resource *dst = dst_view->texture; in mask_using_texture()
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_blitter.c | 1092 struct pipe_surface *dst_view, dst_templ; in util_blitter_copy_texture() local 1100 dst_view = pipe->create_surface(pipe, dst, &dst_templ); in util_blitter_copy_texture() 1107 util_blitter_copy_texture_view(blitter, dst_view, dst_sample_mask, dstx, in util_blitter_copy_texture() 1111 pipe_surface_reference(&dst_view, NULL); in util_blitter_copy_texture()
|