mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 06:58:05 +02:00
softpipe: Silence unintialized variable warnings.
This commit is contained in:
parent
180ccffe55
commit
3a2f96f18a
1 changed files with 1 additions and 1 deletions
|
|
@ -229,7 +229,7 @@ blend_quad(struct quad_stage *qs,
|
|||
static const float zero[4] = { 0, 0, 0, 0 };
|
||||
static const float one[4] = { 1, 1, 1, 1 };
|
||||
struct softpipe_context *softpipe = qs->softpipe;
|
||||
float source[4][QUAD_SIZE];
|
||||
float source[4][QUAD_SIZE] = { { 0 } };
|
||||
|
||||
/*
|
||||
* Compute src/first term RGB
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue