diff options
author | Vinson Lee <[email protected]> | 2009-11-20 14:20:15 -0800 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2009-12-03 17:55:59 -0800 |
commit | 905e12f3cce7f1bd8cfa990e4d6d7c0b14610f84 (patch) | |
tree | 0a0db2dce290104cbddc1d54ad3c08b1ae2be571 | |
parent | 56de7e222ee0f5e44b87ce05dc94733fdd41e4ed (diff) |
gallium/util: Initialize variables in u_pack_color.h.
(cherry picked from commit 36e2074b63e3e5bc489eb74cad0cd97eafcedb40)
-rw-r--r-- | src/gallium/auxiliary/util/u_pack_color.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/u_pack_color.h b/src/gallium/auxiliary/util/u_pack_color.h index eda883b3b92..9dacc6d83db 100644 --- a/src/gallium/auxiliary/util/u_pack_color.h +++ b/src/gallium/auxiliary/util/u_pack_color.h @@ -302,7 +302,10 @@ util_unpack_color_ub(enum pipe_format format, const void *src, static INLINE void util_pack_color(const float rgba[4], enum pipe_format format, void *dest) { - ubyte r, g, b, a; + ubyte r = 0; + ubyte g = 0; + ubyte b = 0; + ubyte a = 0; if (pf_size_x(format) <= 8) { /* format uses 8-bit components or less */ |