Move that also inside the state tracker where needed.
enum pipe_mpeg12_picture_type picture_type,
struct pipe_surface *dst_surface,
struct pipe_video_rect *dst_area,
- struct pipe_video_rect *dst_clip,
- struct pipe_fence_handle **fence)
+ struct pipe_video_rect *dst_clip)
{
struct pipe_scissor_state scissor;
c->pipe->bind_rasterizer_state(c->pipe, c->rast);
draw_layers(c);
-
- c->pipe->flush(c->pipe, fence);
}
bool
enum pipe_mpeg12_picture_type picture_type,
struct pipe_surface *dst_surface,
struct pipe_video_rect *dst_area,
- struct pipe_video_rect *dst_clip,
- struct pipe_fence_handle **fence);
+ struct pipe_video_rect *dst_clip);
/**
* destroy this compositor
vl_compositor_clear_layers(&vmixer->compositor);
vl_compositor_set_buffer_layer(&vmixer->compositor, 0, surf->video_buffer, NULL, NULL);
vl_compositor_render(&vmixer->compositor, PIPE_MPEG12_PICTURE_TYPE_FRAME,
- dst->surface, NULL, NULL, NULL);
+ dst->surface, NULL, NULL);
return VDP_STATUS_OK;
}
vl_compositor_clear_layers(&pq->compositor);
vl_compositor_set_rgba_layer(&pq->compositor, 0, surf->sampler_view, NULL, NULL);
vl_compositor_render(&pq->compositor, PIPE_MPEG12_PICTURE_TYPE_FRAME,
- drawable_surface, NULL, NULL, NULL);
+ drawable_surface, NULL, NULL);
pq->device->context->pipe->screen->flush_frontbuffer
(
// Workaround for r600g, there seems to be a bug in the fence refcounting code
pipe->screen->fence_reference(pipe->screen, &surface_priv->fence, NULL);
- vl_compositor_render(compositor, PictureToPipe(flags), context_priv->drawable_surface,
- &dst_rect, NULL, &surface_priv->fence);
+ vl_compositor_render(compositor, PictureToPipe(flags), context_priv->drawable_surface, &dst_rect, NULL);
+
+ pipe->flush(pipe, &surface_priv->fence);
XVMC_MSG(XVMC_TRACE, "[XvMC] Submitted surface %p for display. Pushing to front buffer.\n", surface);