aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core/SkShader.h
diff options
context:
space:
mode:
authorGravatar Mike Reed <reed@google.com>2017-06-09 10:29:40 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-06-09 17:29:08 +0000
commita6aaa30359ea17f6bd61242695c788dc3707764f (patch)
tree31c545a0c4cd89913cf50d49dbe828c6f1f3343e /include/core/SkShader.h
parent019f6c0bcf611fec93913315708eba1633857efa (diff)
SkShader::asACompose is android-only
Bug: skia: Change-Id: Ib99a7ee4984544f342699fa6b20797c55be7d5a0 Reviewed-on: https://skia-review.googlesource.com/19268 Reviewed-by: Mike Reed <reed@google.com> Commit-Queue: Mike Reed <reed@google.com>
Diffstat (limited to 'include/core/SkShader.h')
-rw-r--r--include/core/SkShader.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/include/core/SkShader.h b/include/core/SkShader.h
index daed2ba718..61da334490 100644
--- a/include/core/SkShader.h
+++ b/include/core/SkShader.h
@@ -157,21 +157,14 @@ public:
virtual GradientType asAGradient(GradientInfo* info) const;
- /**
- * If the shader subclass is composed of two shaders, return true, and if rec is not NULL,
- * fill it out with info about the shader.
- *
- * These are bare pointers; the ownership and reference count are unchanged.
- */
-
- // TODO: clean up clients, move to SkShaderBase.
+#ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
struct ComposeRec {
const SkShader* fShaderA;
const SkShader* fShaderB;
SkBlendMode fBlendMode;
};
-
virtual bool asACompose(ComposeRec*) const { return false; }
+#endif
//////////////////////////////////////////////////////////////////////////
// Methods to create combinations or variants of shaders