diff options
| -rw-r--r-- | src/gallium/auxiliary/util/u_clear.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/gallium/auxiliary/util/u_clear.h b/src/gallium/auxiliary/util/u_clear.h index 7c16b32cf9..7035c68aed 100644 --- a/src/gallium/auxiliary/util/u_clear.h +++ b/src/gallium/auxiliary/util/u_clear.h @@ -45,7 +45,7 @@ util_clear(struct pipe_context *pipe,  {     if (buffers & PIPE_CLEAR_COLOR) {        struct pipe_surface *ps = framebuffer->cbufs[0]; -      unsigned color; +      unsigned color = 0;        util_pack_color(rgba, ps->format, &color);        pipe->surface_fill(pipe, ps, 0, 0, ps->width, ps->height, color); | 
