Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(19)

Unified Diff: tools/SkBitmapRegionSampler.h

Issue 1406033007: Delete dead BitmapRegionDecoder code in tools (Closed) Base URL: https://skia.googlesource.com/skia.git@delete-dm
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/SkBitmapRegionSampler.h
diff --git a/tools/SkBitmapRegionSampler.h b/tools/SkBitmapRegionSampler.h
deleted file mode 100644
index 3c5a672e80a178556c5261743eed28c14458ef34..0000000000000000000000000000000000000000
--- a/tools/SkBitmapRegionSampler.h
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- * Copyright 2015 Google Inc.
- *
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-#include "SkBitmap.h"
-#include "SkBitmapRegionDecoder.h"
-#include "SkImageDecoder.h"
-#include "SkTemplates.h"
-
-/*
- * This class aims to duplicate the current implementation of
- * SkBitmapRegionDecoder in Android.
- */
-class SkBitmapRegionSampler : public SkBitmapRegionDecoder {
-public:
-
- /*
- * Takes ownership of pointer to decoder
- */
- SkBitmapRegionSampler(SkImageDecoder* decoder, int width, int height);
-
- bool decodeRegion(SkBitmap* bitmap, SkBitmap::Allocator* allocator,
- const SkIRect& desiredSubset, int sampleSize,
- SkColorType colorType, bool requireUnpremul) override;
-
- bool conversionSupported(SkColorType colorType) override {
- // SkBitmapRegionSampler does not allow the client to check if the conversion
- // is supported. We will return true as a default. If the conversion is in
- // fact not supported, decodeRegion() will ignore the prefColorType and choose
- // its own color type. We catch this and fail non-fatally in our test code.
- return true;
- }
-
- SkEncodedFormat getEncodedFormat() override { return (SkEncodedFormat) fDecoder->getFormat(); }
-
-private:
-
- SkAutoTDelete<SkImageDecoder> fDecoder;
-
- typedef SkBitmapRegionDecoder INHERITED;
-
-};

Powered by Google App Engine
This is Rietveld 408576698