| Index: src/core/SkPictureRecord.h
|
| diff --git a/src/core/SkPictureRecord.h b/src/core/SkPictureRecord.h
|
| index 21c11971c4547a455eff5aaaf83f02c550bdadc9..ef556b2e22330d0d6452d48a78eb6eec10494516 100644
|
| --- a/src/core/SkPictureRecord.h
|
| +++ b/src/core/SkPictureRecord.h
|
| @@ -10,9 +10,6 @@
|
|
|
| #include "SkCanvas.h"
|
| #include "SkFlattenable.h"
|
| -#ifdef SK_COLLAPSE_MATRIX_CLIP_STATE
|
| -#include "SkMatrixClipStateMgr.h"
|
| -#endif
|
| #include "SkPathHeap.h"
|
| #include "SkPicture.h"
|
| #include "SkPictureData.h"
|
| @@ -120,13 +117,11 @@ private:
|
| size_t recordRestoreOffsetPlaceholder(SkRegion::Op);
|
| void fillRestoreOffsetPlaceholdersForCurrentStackLevel(uint32_t restoreOffset);
|
|
|
| -#ifndef SK_COLLAPSE_MATRIX_CLIP_STATE
|
| SkTDArray<int32_t> fRestoreOffsetStack;
|
| int fFirstSavedLayerIndex;
|
| enum {
|
| kNoSavedLayerIndex = -1
|
| };
|
| -#endif
|
|
|
| SkTDArray<uint32_t> fCullOffsetStack;
|
|
|
| @@ -310,7 +305,6 @@ protected:
|
|
|
| private:
|
| friend class MatrixClipState; // for access to *Impl methods
|
| - friend class SkMatrixClipStateMgr; // for access to *Impl methods
|
|
|
| SkPictureContentInfo fContentInfo;
|
| SkAutoTUnref<SkPathHeap> fPathHeap;
|
| @@ -331,10 +325,6 @@ private:
|
| friend class SkPictureData; // for SkPictureData's SkPictureRecord-based constructor
|
| friend class SkPictureTester; // for unit testing
|
|
|
| -#ifdef SK_COLLAPSE_MATRIX_CLIP_STATE
|
| - SkMatrixClipStateMgr fMCMgr;
|
| -#endif
|
| -
|
| typedef SkCanvas INHERITED;
|
| };
|
|
|
|
|