From: Pekka Paalanen Date: Sat, 31 Jan 2009 12:34:15 +0000 (+0200) Subject: nv20: set surface status in clear() X-Git-Tag: 062012170305~17580^2~496^2~21^2~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5e96feed379c89e71834f372af6ba92098874d63;p=profile%2Fivi%2Fmesa.git nv20: set surface status in clear() Other nvXX drivers seem to do this, so I do it too. Signed-off-by: Pekka Paalanen --- diff --git a/src/gallium/drivers/nv20/nv20_clear.c b/src/gallium/drivers/nv20/nv20_clear.c index 81b6f3e..29f4afd 100644 --- a/src/gallium/drivers/nv20/nv20_clear.c +++ b/src/gallium/drivers/nv20/nv20_clear.c @@ -9,4 +9,5 @@ nv20_clear(struct pipe_context *pipe, struct pipe_surface *ps, unsigned clearValue) { pipe->surface_fill(pipe, ps, 0, 0, ps->width, ps->height, clearValue); + ps->status = PIPE_SURFACE_STATUS_CLEAR; }