From: Patrice Mandin Date: Fri, 11 Apr 2008 19:37:28 +0000 (+0200) Subject: nv30: Set pipe status on clear X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b1de9c948f9794db97ed7d34b8cbcdccc206ea77;p=mesa.git nv30: Set pipe status on clear --- diff --git a/src/gallium/drivers/nv30/nv30_clear.c b/src/gallium/drivers/nv30/nv30_clear.c index 71f413588ee..8c3ca204d58 100644 --- a/src/gallium/drivers/nv30/nv30_clear.c +++ b/src/gallium/drivers/nv30/nv30_clear.c @@ -9,4 +9,5 @@ nv30_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; }