aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkPictureRecord.h
diff options
context:
space:
mode:
authorGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-04-14 15:02:50 +0000
committerGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-04-14 15:02:50 +0000
commitf6a5afb66b661c884cd308577431b7abf025b182 (patch)
tree88d39e225d00a801a82b55ce0a54229161aa3a32 /src/core/SkPictureRecord.h
parent567f519b942664582b268bf223e744fafcd11fa1 (diff)
Remove currently unused code
This code is currently unused and is contrary to the way in which we seem to be moving towards accomplishing this (i.e., device-specific optimization passes). This is a partial revert of r13704 (First version of bitmap use tracking in SkPictureRecord - https://codereview.chromium.org/187833003/) R=reed@google.com Author: robertphillips@google.com Review URL: https://codereview.chromium.org/237013002 git-svn-id: http://skia.googlecode.com/svn/trunk@14179 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src/core/SkPictureRecord.h')
-rw-r--r--src/core/SkPictureRecord.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/core/SkPictureRecord.h b/src/core/SkPictureRecord.h
index eca42aa57a..2614496ba6 100644
--- a/src/core/SkPictureRecord.h
+++ b/src/core/SkPictureRecord.h
@@ -20,7 +20,6 @@
#include "SkWriter32.h"
class SkBBoxHierarchy;
-class SkOffsetTable;
class SkPictureStateTree;
// These macros help with packing and unpacking a single byte value and
@@ -157,7 +156,6 @@ private:
}
// The command at 'offset' in the skp uses the specified bitmap
- void trackBitmapUse(int bitmapID, size_t offset);
int addBitmap(const SkBitmap& bitmap);
void addMatrix(const SkMatrix& matrix);
const SkFlatData* addPaint(const SkPaint& paint) { return this->addPaintPtr(&paint); }
@@ -298,8 +296,6 @@ private:
bool fOptsEnabled;
int fInitialSaveCount;
- SkAutoTUnref<SkOffsetTable> fBitmapUseOffsets;
-
friend class SkPicturePlayback;
friend class SkPictureTester; // for unit testing