svga: fix warning: ‘uc.ui’ may be used uninitialized in this function
This is safe because it's initialized if buffers & PIPE_CLEAR_COLOR and probably doesn't have any effect otherwise.
This commit is contained in:
@@ -46,7 +46,7 @@ try_clear(struct svga_context *svga,
|
||||
boolean restore_viewport = FALSE;
|
||||
SVGA3dClearFlag flags = 0;
|
||||
struct pipe_framebuffer_state *fb = &svga->curr.framebuffer;
|
||||
union util_color uc;
|
||||
union util_color uc = {0};
|
||||
|
||||
ret = svga_update_state(svga, SVGA_STATE_HW_CLEAR);
|
||||
if (ret)
|
||||
|
||||
Reference in New Issue
Block a user