Chromium Code Reviews| Index: src/core/SkPicturePlayback.h |
| =================================================================== |
| --- src/core/SkPicturePlayback.h (revision 13658) |
| +++ src/core/SkPicturePlayback.h (working copy) |
| @@ -31,6 +31,7 @@ |
| class SkWStream; |
| class SkBBoxHierarchy; |
| class SkPictureStateTree; |
| +class SkOffsetTable; |
| struct SkPictInfo { |
| enum Flags { |
| @@ -107,6 +108,8 @@ |
| virtual void postDraw(int opIndex); |
| #endif |
| + void preLoadBitmaps(const SkTDArray<void*> &results); |
|
mtklein
2014/03/06 16:20:38
we'd usually put the & with the >, no?
robertphillips
2014/03/06 20:18:26
Done.
|
| + |
| private: |
| class TextContainer { |
| public: |
| @@ -225,6 +228,7 @@ |
| SkTRefArray<SkPaint>* fPaints; |
| SkData* fOpData; // opcodes and parameters |
| + SkAutoTUnref<SkOffsetTable> fBitmapUseOffsets; |
| SkPicture** fPictureRefs; |
| int fPictureCount; |