aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar vandebo@chromium.org <vandebo@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-03-28 20:29:38 +0000
committerGravatar vandebo@chromium.org <vandebo@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-03-28 20:29:38 +0000
commita728e35edcffd99216e3965a4b908ad0df7f69c2 (patch)
treef9c2668a0aeae6d649bfcdd86d275edbb548dfed /include
parent802eee956c0dcc0c30f29911b9254d1dcd92088e (diff)
Fix a bunch of Coverity defects - class members not initialized in the constructor.
CID=14533,14036,9275,9271,4156,4153,4151,1666,1665,1618,1617,1616,1615 Review URL: https://codereview.appspot.com/5940049 git-svn-id: http://skia.googlecode.com/svn/trunk@3532 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include')
-rw-r--r--include/core/SkScalerContext.h1
-rw-r--r--include/effects/SkPaintFlagsDrawFilter.h1
2 files changed, 0 insertions, 2 deletions
diff --git a/include/core/SkScalerContext.h b/include/core/SkScalerContext.h
index 29679d67c7..2cb171b119 100644
--- a/include/core/SkScalerContext.h
+++ b/include/core/SkScalerContext.h
@@ -328,7 +328,6 @@ private:
SkPathEffect* fPathEffect;
SkMaskFilter* fMaskFilter;
SkRasterizer* fRasterizer;
- SkScalar fDevFrameWidth;
// if this is set, we draw the image from a path, rather than
// calling generateImage.
diff --git a/include/effects/SkPaintFlagsDrawFilter.h b/include/effects/SkPaintFlagsDrawFilter.h
index 66a43cc75a..d8cc3ba657 100644
--- a/include/effects/SkPaintFlagsDrawFilter.h
+++ b/include/effects/SkPaintFlagsDrawFilter.h
@@ -20,7 +20,6 @@ public:
virtual void filter(SkPaint*, Type);
private:
- uint32_t fPrevFlags; // local cache for filter/restore
uint16_t fClearFlags; // user specified
uint16_t fSetFlags; // user specified
};