diff options
author | Christian König <[email protected]> | 2014-08-13 21:01:33 +0200 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2014-08-26 21:04:00 +0100 |
commit | 60f136eed9eb6d0622e44f6634162a702ba57c02 (patch) | |
tree | aab1a458c9df92f2e21a0e19b51548a8b1bc6abe | |
parent | d2fb1da46d1bf9f5f05175a0ed30919fc0c118bd (diff) |
vl/compositor: set the scissor before clearing the render target
Otherwise we clear areas that shouldn't be cleared.
Signed-off-by: Christian König <[email protected]>
Reviewed-by: Ilia Mirkin <[email protected]>
Cc: [email protected]
(cherry picked from commit 03a99ba9e41ea86355a4febbe0b1a114d5455b9f)
-rw-r--r-- | src/gallium/auxiliary/vl/vl_compositor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/vl/vl_compositor.c b/src/gallium/auxiliary/vl/vl_compositor.c index 839fd27ae9c..6bd1a886ed4 100644 --- a/src/gallium/auxiliary/vl/vl_compositor.c +++ b/src/gallium/auxiliary/vl/vl_compositor.c @@ -1060,6 +1060,7 @@ vl_compositor_render(struct vl_compositor_state *s, s->scissor.maxx = dst_surface->width; s->scissor.maxy = dst_surface->height; } + c->pipe->set_scissor_states(c->pipe, 0, 1, &s->scissor); gen_vertex_data(c, s, dirty_area); @@ -1072,7 +1073,6 @@ vl_compositor_render(struct vl_compositor_state *s, dirty_area->x1 = dirty_area->y1 = MIN_DIRTY; } - c->pipe->set_scissor_states(c->pipe, 0, 1, &s->scissor); c->pipe->set_framebuffer_state(c->pipe, &c->fb_state); c->pipe->bind_vs_state(c->pipe, c->vs); c->pipe->set_vertex_buffers(c->pipe, 0, 1, &c->vertex_buf); |