Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(138)

Unified Diff: include/core/SkPaint.h

Issue 203203003: SkPaint: eliminate some dead bytes in 64-bit build. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/core/SkPaint.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/core/SkPaint.h
diff --git a/include/core/SkPaint.h b/include/core/SkPaint.h
index d1853c613c35df29680c22cdbf3788ffa2050037..80f2651ce670d495320951ada7b96a6a9d68b2b5 100644
--- a/include/core/SkPaint.h
+++ b/include/core/SkPaint.h
@@ -1040,11 +1040,14 @@ public:
};
private:
- SkTypeface* fTypeface;
SkScalar fTextSize;
SkScalar fTextScaleX;
SkScalar fTextSkewX;
+ SkColor fColor;
+ SkScalar fWidth;
+ SkScalar fMiterLimit;
+ SkTypeface* fTypeface;
reed1 2014/03/18 15:04:01 Maybe we can be even more aggressive/clear, and mo
mtklein 2014/03/18 17:00:46 SGTM. Done.
SkPathEffect* fPathEffect;
SkShader* fShader;
SkXfermode* fXfermode;
@@ -1055,10 +1058,6 @@ private:
SkImageFilter* fImageFilter;
SkAnnotation* fAnnotation;
- SkColor fColor;
- SkScalar fWidth;
- SkScalar fMiterLimit;
-
union {
struct {
// all of these bitfields should add up to 32
« no previous file with comments | « no previous file | src/core/SkPaint.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698