aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar Leon Scroggins III <scroggo@google.com>2017-03-14 11:17:17 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-03-14 15:47:45 +0000
commitdce25909ac0e84ee73640fd49dd3b82f66dd4ce1 (patch)
tree9524afb6eb017ab0951a0b844c8017ee41b19759 /include
parente411a077ec2cc018351d92e668def5da6905e4ec (diff)
Remove unused SkBitmap::RLEPixels
TBR=reed@google.com Change-Id: I14a75b7cad89aa7eb4b146a5d269856a4ad5d821 Reviewed-on: https://skia-review.googlesource.com/9646 Reviewed-by: Leon Scroggins <scroggo@google.com> Reviewed-by: Mike Reed <reed@google.com> Commit-Queue: Leon Scroggins <scroggo@google.com>
Diffstat (limited to 'include')
-rw-r--r--include/core/SkBitmap.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/include/core/SkBitmap.h b/include/core/SkBitmap.h
index e4675b0fb9..700dbc2cb4 100644
--- a/include/core/SkBitmap.h
+++ b/include/core/SkBitmap.h
@@ -751,27 +751,6 @@ public:
bool allocPixelRef(SkBitmap*, SkColorTable*) override;
};
- class RLEPixels {
- public:
- RLEPixels(int width, int height);
- virtual ~RLEPixels();
-
- uint8_t* packedAtY(int y) const {
- SkASSERT((unsigned)y < (unsigned)fHeight);
- return fYPtrs[y];
- }
-
- // called by subclasses during creation
- void setPackedAtY(int y, uint8_t* addr) {
- SkASSERT((unsigned)y < (unsigned)fHeight);
- fYPtrs[y] = addr;
- }
-
- private:
- uint8_t** fYPtrs;
- int fHeight;
- };
-
SK_TO_STRING_NONVIRT()
private: