aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar Mike Reed <reed@google.com>2017-04-28 13:53:21 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-04-28 18:25:17 +0000
commit736a9cc88d623f1c309b70554f02f0f111a30766 (patch)
tree44179aecaea55e9a3c6b9d59ca7358de84adcea7 /include
parent185ba21bffc2df9ddfc1e351505a7a622821df1f (diff)
remove unused yuv methods
Bug: skia: Change-Id: Ie1e6c905d8989b49c2cf5c9e5fd1f383268f6480 Reviewed-on: https://skia-review.googlesource.com/14645 Reviewed-by: Brian Salomon <bsalomon@google.com> Commit-Queue: Mike Reed <reed@google.com>
Diffstat (limited to 'include')
-rw-r--r--include/core/SkImage.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/include/core/SkImage.h b/include/core/SkImage.h
index 1e5df0b116..c58a6243bd 100644
--- a/include/core/SkImage.h
+++ b/include/core/SkImage.h
@@ -243,13 +243,6 @@ public:
bool isAlphaOnly() const;
bool isOpaque() const { return SkAlphaTypeIsOpaque(this->alphaType()); }
- /**
- * Extracts YUV planes from the SkImage and stores them in client-provided memory. The sizes
- * planes and rowBytes arrays are ordered [y, u, v].
- */
- bool readYUV8Planes(const SkISize[3], void* const planes[3], const size_t rowBytes[3],
- SkYUVColorSpace) const;
-
sk_sp<SkShader> makeShader(SkShader::TileMode, SkShader::TileMode,
const SkMatrix* localMatrix = nullptr) const;
/**