aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/effects/SkLayerDrawLooper.h
diff options
context:
space:
mode:
authorGravatar Mike Reed <reed@google.com>2016-11-18 17:19:54 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2016-11-22 15:22:00 +0000
commit71fecc32b1b4f71ef3c6467b1f5e0b55c2a12428 (patch)
treec5c94b1d7beb937466e7a7e17d4f2f8507ce2442 /include/effects/SkLayerDrawLooper.h
parent1fc83b131afa7c29e971dd3ccc7906006bde6c09 (diff)
don't memtion SkXfermode in public
BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=5070 Change-Id: Ia9527bfd0f13146669df5e71098af903e14bae3a Reviewed-on: https://skia-review.googlesource.com/5070 Reviewed-by: Mike Reed <reed@google.com> Commit-Queue: Mike Reed <reed@google.com>
Diffstat (limited to 'include/effects/SkLayerDrawLooper.h')
-rw-r--r--include/effects/SkLayerDrawLooper.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/effects/SkLayerDrawLooper.h b/include/effects/SkLayerDrawLooper.h
index 2c0b68de8c..df112c8394 100644
--- a/include/effects/SkLayerDrawLooper.h
+++ b/include/effects/SkLayerDrawLooper.h
@@ -11,7 +11,7 @@
#include "SkDrawLooper.h"
#include "SkPaint.h"
#include "SkPoint.h"
-#include "SkXfermode.h"
+#include "SkBlendMode.h"
class SK_API SkLayerDrawLooper : public SkDrawLooper {
public:
@@ -51,9 +51,9 @@ public:
* The layer's paint's color is treated as the SRC
* The draw's paint's color is treated as the DST
* final-color = Mode(layers-color, draws-color);
- * Any SkXfermode::Mode will work. Two common choices are:
- * kSrc_Mode: to use the layer's color, ignoring the draw's
- * kDst_Mode: to just keep the draw's color, ignoring the layer's
+ * Any SkBlendMode will work. Two common choices are:
+ * kSrc: to use the layer's color, ignoring the draw's
+ * kDst: to just keep the draw's color, ignoring the layer's
*/
struct SK_API LayerInfo {
BitFlags fPaintBits;