diff options
author | Kristian Høgsberg <[email protected]> | 2008-02-25 17:28:09 -0500 |
---|---|---|
committer | Kristian Høgsberg <[email protected]> | 2008-02-25 19:02:06 -0500 |
commit | 54bd506c0fcfd7dffa31bea22f3c0175ec41b9b0 (patch) | |
tree | 882db70ea6f766b4119059760376811ecc911ccd /src/mesa/drivers/dri/i915 | |
parent | 61c3c2c36301671b8f913cf739e13d049ef91868 (diff) |
intel: Initialize color and spec arrays in LOCAL_VARS macro.
Avoids spamming compilation output with tons of warnings about
use of possibly uninitialized variables.
Diffstat (limited to 'src/mesa/drivers/dri/i915')
-rw-r--r-- | src/mesa/drivers/dri/i915/intel_tris.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/drivers/dri/i915/intel_tris.c b/src/mesa/drivers/dri/i915/intel_tris.c index 9d936369005..29f0b51ba63 100644 --- a/src/mesa/drivers/dri/i915/intel_tris.c +++ b/src/mesa/drivers/dri/i915/intel_tris.c @@ -465,10 +465,10 @@ do { \ #define VERT_RESTORE_SPEC( idx ) if (specoffset) v[idx]->ui[specoffset] = spec[idx] #define LOCAL_VARS(n) \ - struct intel_context *intel = intel_context(ctx); \ - GLuint color[n], spec[n]; \ - GLuint coloroffset = intel->coloroffset; \ - GLboolean specoffset = intel->specoffset; \ + struct intel_context *intel = intel_context(ctx); \ + GLuint color[n] = { 0, }, spec[n] = { 0, }; \ + GLuint coloroffset = intel->coloroffset; \ + GLboolean specoffset = intel->specoffset; \ (void) color; (void) spec; (void) coloroffset; (void) specoffset; |