Home
last modified time | relevance | path

Searched refs:dst_surface (Results 1 – 12 of 12) sorted by relevance

/third_party/mesa3d/src/gallium/auxiliary/vl/
Dvl_compositor_cs.c777 struct pipe_surface *dst_surface, in vl_compositor_cs_render() argument
782 assert(dst_surface); in vl_compositor_cs_render()
784 c->fb_state.width = dst_surface->width; in vl_compositor_cs_render()
785 c->fb_state.height = dst_surface->height; in vl_compositor_cs_render()
786 c->fb_state.cbufs[0] = dst_surface; in vl_compositor_cs_render()
791 s->scissor.maxx = dst_surface->width; in vl_compositor_cs_render()
792 s->scissor.maxy = dst_surface->height; in vl_compositor_cs_render()
798 c->pipe->clear_render_target(c->pipe, dst_surface, &s->clear_color, in vl_compositor_cs_render()
799 0, 0, dst_surface->width, dst_surface->height, false); in vl_compositor_cs_render()
Dvl_compositor_gfx.c688 struct pipe_surface *dst_surface, in vl_compositor_gfx_render() argument
693 assert(dst_surface); in vl_compositor_gfx_render()
695 c->fb_state.width = dst_surface->width; in vl_compositor_gfx_render()
696 c->fb_state.height = dst_surface->height; in vl_compositor_gfx_render()
697 c->fb_state.cbufs[0] = dst_surface; in vl_compositor_gfx_render()
702 s->scissor.maxx = dst_surface->width; in vl_compositor_gfx_render()
703 s->scissor.maxy = dst_surface->height; in vl_compositor_gfx_render()
712 c->pipe->clear_render_target(c->pipe, dst_surface, &s->clear_color, in vl_compositor_gfx_render()
713 0, 0, dst_surface->width, dst_surface->height, false); in vl_compositor_gfx_render()
Dvl_compositor_cs.h48 struct pipe_surface *dst_surface,
Dvl_compositor_gfx.h85 struct pipe_surface *dst_surface,
Dvl_compositor.h311 struct pipe_surface *dst_surface,
Dvl_compositor.c755 struct pipe_surface *dst_surface, in vl_compositor_render() argument
762 vl_compositor_cs_render(s, c, dst_surface, dirty_area, clear_dirty); in vl_compositor_render()
764 vl_compositor_gfx_render(s, c, dst_surface, dirty_area, clear_dirty); in vl_compositor_render()
/third_party/mesa3d/src/gallium/frontends/omx/
Dvid_dec_common.c95 struct pipe_surface **dst_surface = NULL; in vid_dec_FillOutput() local
105 dst_surface = dst_buf->get_surfaces(dst_buf); in vid_dec_FillOutput()
122 vl_compositor_render(s, compositor, dst_surface[0], NULL, false); in vid_dec_FillOutput()
Dvid_enc_common.c217 struct pipe_surface **dst_surface; in enc_ScaleInput_common() local
224 dst_surface = priv->scale_buffer[priv->current_scale_buffer]->get_surfaces in enc_ScaleInput_common()
230 if (!views[i] || !dst_surface[i]) in enc_ScaleInput_common()
241 vl_compositor_render(s, compositor, dst_surface[i], NULL, false); in enc_ScaleInput_common()
/third_party/mesa3d/src/gallium/frontends/va/
Dpostproc.c289 vlVaSurface *src_surface, *dst_surface; in vlVaHandleVAProcPipelineParameterBufferType() local
304 dst_surface = handle_table_get(drv->htab, context->target_id); in vlVaHandleVAProcPipelineParameterBufferType()
310 dst = dst_surface->buffer; in vlVaHandleVAProcPipelineParameterBufferType()
316 surf = dst_surface; in vlVaHandleVAProcPipelineParameterBufferType()
368 dst_region = vlVaRegionDefault(param->output_region, dst_surface, &def_dst_region); in vlVaHandleVAProcPipelineParameterBufferType()
/third_party/mesa3d/src/gallium/frontends/xa/
Dxa_renderer.c394 struct pipe_surface *dst_surface, in renderer_copy_prepare() argument
404 assert(screen->is_format_supported(screen, dst_surface->format, in renderer_copy_prepare()
409 renderer_bind_destination(r, dst_surface); in renderer_copy_prepare()
457 if (dst_surface->format == PIPE_FORMAT_L8_UNORM || in renderer_copy_prepare()
458 dst_surface->format == PIPE_FORMAT_R8_UNORM) in renderer_copy_prepare()
Dxa_priv.h263 struct pipe_surface *dst_surface,
/third_party/flutter/skia/third_party/externals/sdl/src/video/
DSDL_surface.c1061 SDL_Surface src_surface, dst_surface; in SDL_ConvertPixels() local
1135 &dst_surface, &dst_fmt, &dst_blitmap)) { in SDL_ConvertPixels()
1144 return SDL_LowerBlit(&src_surface, &rect, &dst_surface, &rect); in SDL_ConvertPixels()