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

Unified Diff: include/images/SkDecodingImageGenerator.h

Issue 1692053002: Delete SkDecodingImageGenerator (Closed) Base URL: https://skia.googlesource.com/skia.git@noble
Patch Set: Created 4 years, 10 months 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: include/images/SkDecodingImageGenerator.h
diff --git a/include/images/SkDecodingImageGenerator.h b/include/images/SkDecodingImageGenerator.h
deleted file mode 100644
index 0a5ec56fe8e2207e387f23afb42eef6a21d1d556..0000000000000000000000000000000000000000
--- a/include/images/SkDecodingImageGenerator.h
+++ /dev/null
@@ -1,119 +0,0 @@
-/*
- * Copyright 2013 Google Inc.
- *
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-#ifndef SkDecodingImageGenerator_DEFINED
-#define SkDecodingImageGenerator_DEFINED
-
-#include "SkBitmap.h"
-#include "SkImageGenerator.h"
-
-class SkData;
-class SkStreamRewindable;
-
-/**
- * An implementation of SkImageGenerator that calls into
- * SkImageDecoder.
- */
-namespace SkDecodingImageGenerator {
- /**
- * These options will be passed on to the image decoder. The
- * defaults are sensible.
- *
- * @param fSampleSize If set to > 1, tells the decoder to return a
- * smaller than original bitmap, sampling 1 pixel for
- * every size pixels. e.g. if sample size is set to 3,
- * then the returned bitmap will be 1/3 as wide and high,
- * and will contain 1/9 as many pixels as the original.
- * Note: this is a hint, and the codec may choose to
- * ignore this, or only approximate the sample size.
- *
- * @param fDitherImage Set to true if the the decoder should try to
- * dither the resulting image when decoding to a smaller
- * color-space. The default is true.
- *
- * @param fRequestedColorType If not given, then use whichever
- * config the decoder wants. Else try to use this color
- * type. If the decoder won't support this color type,
- * SkDecodingImageGenerator::Create will return
- * NULL. kIndex_8_SkColorType is not supported.
- *
- * @param fRequireUnpremul If true, the decoder will attempt to
- * decode without premultiplying the alpha. If it cannot,
- * the pixels will be set to NULL.
- */
- struct Options {
- Options()
- : fSampleSize(1)
- , fDitherImage(true)
- , fUseRequestedColorType(false)
- , fRequestedColorType()
- , fRequireUnpremul(false) { }
- Options(int sampleSize, bool dither)
- : fSampleSize(sampleSize)
- , fDitherImage(dither)
- , fUseRequestedColorType(false)
- , fRequestedColorType()
- , fRequireUnpremul(false) { }
- Options(int sampleSize, bool dither, SkColorType colorType)
- : fSampleSize(sampleSize)
- , fDitherImage(dither)
- , fUseRequestedColorType(true)
- , fRequestedColorType(colorType)
- , fRequireUnpremul(false) { }
- Options(int sampleSize, bool dither, SkColorType colorType,
- bool requireUnpremul)
- : fSampleSize(sampleSize)
- , fDitherImage(dither)
- , fUseRequestedColorType(true)
- , fRequestedColorType(colorType)
- , fRequireUnpremul(requireUnpremul) { }
- const int fSampleSize;
- const bool fDitherImage;
- const bool fUseRequestedColorType;
- const SkColorType fRequestedColorType;
- const bool fRequireUnpremul;
- };
-
- /**
- * These two functions return a SkImageGenerator that calls into
- * SkImageDecoder. They return NULL on failure.
- *
- * The SkData version of this function is preferred. If the stream
- * has an underlying SkData (such as a SkMemoryStream) pass that in.
- *
- * This object, if non-NULL, takes ownership of stream and deletes stream
- * upon deletion. If NULL is returned, stream is deleted immediately.
- *
- * @param Options (see above)
- *
- * @return NULL on failure, a new SkImageGenerator on success.
- */
- SkImageGenerator* Create(SkStreamRewindable* stream,
- const Options& opt);
-
- /**
- * @param data Contains the encoded image data that will be used by
- * the SkDecodingImageGenerator. Will be ref()ed by the
- * SkImageGenerator constructor and and unref()ed on deletion.
- */
- SkImageGenerator* Create(SkData* data, const Options& opt);
-};
-
-// // Example of most basic use case:
-//
-// bool install_data(SkData* data, SkBitmap* dst) {
-// return SkInstallDiscardablePixelRef(
-// SkDecodingImageGenerator::Create(
-// data, SkDecodingImageGenerator::Options()), dst, NULL);
-// }
-// bool install_stream(SkStreamRewindable* stream, SkBitmap* dst) {
-// return SkInstallDiscardablePixelRef(
-// SkDecodingImageGenerator::Create(
-// stream, SkDecodingImageGenerator::Options()), dst, NULL);
-// }
-
-#endif // SkDecodingImageGenerator_DEFINED
« no previous file with comments | « gyp/images.gyp ('k') | src/images/SkDecodingImageGenerator.cpp » ('j') | tests/YUVTest.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698