From 2a97a00e28db330b8061c73ea6f1a7b7ad9d245f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20K=C3=B6nig?= Date: Sat, 25 Feb 2012 12:14:58 +0100 Subject: [PATCH] vl/compositor: fix a simple typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Otherwise the dirty area tracking won't work correctly. Signed-off-by: Christian König --- src/gallium/auxiliary/vl/vl_compositor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/auxiliary/vl/vl_compositor.c b/src/gallium/auxiliary/vl/vl_compositor.c index 678909583a3..80cb5ce03a1 100644 --- a/src/gallium/auxiliary/vl/vl_compositor.c +++ b/src/gallium/auxiliary/vl/vl_compositor.c @@ -948,7 +948,7 @@ vl_compositor_render(struct vl_compositor *c, c->pipe->clear_render_target(c->pipe, dst_surface, &c->clear_color, 0, 0, dst_surface->width, dst_surface->height); dirty_area->x0 = dirty_area->y0 = MAX_DIRTY; - dirty_area->x0 = dirty_area->y1 = MIN_DIRTY; + dirty_area->x1 = dirty_area->y1 = MIN_DIRTY; } c->pipe->set_scissor_state(c->pipe, &c->scissor);