Fix uninit of mask var
authorbsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Wed, 18 May 2011 19:02:42 +0000 (19:02 +0000)
committerbsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Wed, 18 May 2011 19:02:42 +0000 (19:02 +0000)
git-svn-id: http://skia.googlecode.com/svn/trunk@1369 2bbb7eff-a529-9590-31e7-b0007b416f81

gpu/include/GrPaint.h

index f7ca34c..a7923f5 100644 (file)
@@ -185,7 +185,7 @@ public:
     }
 
     int getActiveMaskStageMask() const {
-        int mask;
+        int mask = 0;
         for (int i = 0; i < kMaxMasks; ++i) {
             if (NULL != fMaskTextures[i]) {
                 mask |= 1 << (i + kFirstMaskStage);