aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar Mike Klein <mtklein@google.com>2014-08-18 18:35:16 -0400
committerGravatar Mike Klein <mtklein@google.com>2014-08-18 18:35:16 -0400
commit27dc17c2972421ce9c6331662fee6389b1e795a7 (patch)
tree2a1faac45bd4acc561303aa4f6a8b0ad74dc7f38 /include
parentcaa80b9a46ea00a7b582d96d73302939aa21b5ee (diff)
Revert "Move the code over using the same template type approach previously used for willPlayBackBitmaps in http://skbug.com/2702."
Diffstat (limited to 'include')
-rw-r--r--include/core/SkPicture.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/include/core/SkPicture.h b/include/core/SkPicture.h
index d6c56ac883..004f130621 100644
--- a/include/core/SkPicture.h
+++ b/include/core/SkPicture.h
@@ -305,16 +305,7 @@ private:
SkAutoTDelete<SkRecord> fRecord;
SkAutoTUnref<SkBBoxHierarchy> fBBH;
-
- struct Analysis {
- Analysis()
- : fWillPlaybackBitmaps(false)
- , fSuitableForGpuRasterization(false) { }
- Analysis(const SkRecord&);
-
- bool fWillPlaybackBitmaps;
- bool fSuitableForGpuRasterization;
- } const fAnalysis;
+ bool fRecordWillPlayBackBitmaps; // TODO: const
};
#endif