mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-16 02:50:19 +01:00
st/xvmc: use the vl_screen dispatch
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> Acked-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
422356ed2f
commit
4307155127
2 changed files with 11 additions and 12 deletions
|
|
@ -240,7 +240,7 @@ Status XvMCCreateContext(Display *dpy, XvPortID port, int surface_type_id,
|
|||
pipe = vscreen->pscreen->context_create(vscreen->pscreen, vscreen, 0);
|
||||
if (!pipe) {
|
||||
XVMC_MSG(XVMC_ERR, "[XvMC] Could not create VL context.\n");
|
||||
vl_screen_destroy(vscreen);
|
||||
vscreen->destroy(vscreen);
|
||||
FREE(context_priv);
|
||||
return BadAlloc;
|
||||
}
|
||||
|
|
@ -258,7 +258,7 @@ Status XvMCCreateContext(Display *dpy, XvPortID port, int surface_type_id,
|
|||
if (!context_priv->decoder) {
|
||||
XVMC_MSG(XVMC_ERR, "[XvMC] Could not create VL decoder.\n");
|
||||
pipe->destroy(pipe);
|
||||
vl_screen_destroy(vscreen);
|
||||
vscreen->destroy(vscreen);
|
||||
FREE(context_priv);
|
||||
return BadAlloc;
|
||||
}
|
||||
|
|
@ -267,7 +267,7 @@ Status XvMCCreateContext(Display *dpy, XvPortID port, int surface_type_id,
|
|||
XVMC_MSG(XVMC_ERR, "[XvMC] Could not create VL compositor.\n");
|
||||
context_priv->decoder->destroy(context_priv->decoder);
|
||||
pipe->destroy(pipe);
|
||||
vl_screen_destroy(vscreen);
|
||||
vscreen->destroy(vscreen);
|
||||
FREE(context_priv);
|
||||
return BadAlloc;
|
||||
}
|
||||
|
|
@ -277,7 +277,7 @@ Status XvMCCreateContext(Display *dpy, XvPortID port, int surface_type_id,
|
|||
vl_compositor_cleanup(&context_priv->compositor);
|
||||
context_priv->decoder->destroy(context_priv->decoder);
|
||||
pipe->destroy(pipe);
|
||||
vl_screen_destroy(vscreen);
|
||||
vscreen->destroy(vscreen);
|
||||
FREE(context_priv);
|
||||
return BadAlloc;
|
||||
}
|
||||
|
|
@ -332,7 +332,7 @@ Status XvMCDestroyContext(Display *dpy, XvMCContext *context)
|
|||
vl_compositor_cleanup_state(&context_priv->cstate);
|
||||
vl_compositor_cleanup(&context_priv->compositor);
|
||||
context_priv->pipe->destroy(context_priv->pipe);
|
||||
vl_screen_destroy(context_priv->vscreen);
|
||||
context_priv->vscreen->destroy(context_priv->vscreen);
|
||||
FREE(context_priv);
|
||||
context->privData = NULL;
|
||||
|
||||
|
|
|
|||
|
|
@ -355,6 +355,7 @@ Status XvMCPutSurface(Display *dpy, XvMCSurface *surface, Drawable drawable,
|
|||
struct pipe_context *pipe;
|
||||
struct vl_compositor *compositor;
|
||||
struct vl_compositor_state *cstate;
|
||||
struct vl_screen *vscreen;
|
||||
|
||||
XvMCSurfacePrivate *surface_priv;
|
||||
XvMCContextPrivate *context_priv;
|
||||
|
|
@ -386,9 +387,10 @@ Status XvMCPutSurface(Display *dpy, XvMCSurface *surface, Drawable drawable,
|
|||
pipe = context_priv->pipe;
|
||||
compositor = &context_priv->compositor;
|
||||
cstate = &context_priv->cstate;
|
||||
vscreen = context_priv->vscreen;
|
||||
|
||||
tex = vl_screen_texture_from_drawable(context_priv->vscreen, drawable);
|
||||
dirty_area = vl_screen_get_dirty_area(context_priv->vscreen);
|
||||
tex = vscreen->texture_from_drawable(vscreen, (void *)drawable);
|
||||
dirty_area = vscreen->get_dirty_area(vscreen);
|
||||
|
||||
memset(&surf_templ, 0, sizeof(surf_templ));
|
||||
surf_templ.format = tex->format;
|
||||
|
|
@ -444,11 +446,8 @@ Status XvMCPutSurface(Display *dpy, XvMCSurface *surface, Drawable drawable,
|
|||
|
||||
XVMC_MSG(XVMC_TRACE, "[XvMC] Submitted surface %p for display. Pushing to front buffer.\n", surface);
|
||||
|
||||
pipe->screen->flush_frontbuffer
|
||||
(
|
||||
pipe->screen, tex, 0, 0,
|
||||
vl_screen_get_private(context_priv->vscreen), NULL
|
||||
);
|
||||
pipe->screen->flush_frontbuffer(pipe->screen, tex, 0, 0,
|
||||
vscreen->get_private(vscreen), NULL);
|
||||
|
||||
if(dump_window == -1) {
|
||||
dump_window = debug_get_num_option("XVMC_DUMP", 0);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue