diff options
author | Christian König <[email protected]> | 2011-12-12 15:27:34 +0100 |
---|---|---|
committer | Christian König <[email protected]> | 2011-12-14 14:19:41 +0100 |
commit | 167b1b32c5ff30d514253072ce54513112c03d4d (patch) | |
tree | 2b49f67962ec5afc5050834f87b8fe08197cab5d /src/gallium/state_trackers/vdpau/output.c | |
parent | 606d3a3c3de94665e47df47b48596293d588a420 (diff) |
g3dvl/compositor: improve dirty area handling
Take viewport and scissors into account and make
the dirty area a parameter instead of a member.
Signed-off-by: Christian König <[email protected]>
Diffstat (limited to 'src/gallium/state_trackers/vdpau/output.c')
-rw-r--r-- | src/gallium/state_trackers/vdpau/output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/state_trackers/vdpau/output.c b/src/gallium/state_trackers/vdpau/output.c index 0d2f35a433c..d83831e5dd2 100644 --- a/src/gallium/state_trackers/vdpau/output.c +++ b/src/gallium/state_trackers/vdpau/output.c @@ -312,7 +312,7 @@ vlVdpOutputSurfacePutBitsIndexed(VdpOutputSurface surface, vl_compositor_clear_layers(compositor); vl_compositor_set_palette_layer(compositor, 0, sv_idx, sv_tbl, NULL, NULL, false); vl_compositor_render(compositor, vlsurface->surface, - RectToPipe(destination_rect, &dst_rect), NULL, false); + RectToPipe(destination_rect, &dst_rect), NULL, NULL); pipe_sampler_view_reference(&sv_idx, NULL); pipe_sampler_view_reference(&sv_tbl, NULL); |