aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core/SkShader.h
diff options
context:
space:
mode:
authorGravatar Mike Klein <mtklein@chromium.org>2016-11-29 15:33:39 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2016-11-29 21:36:32 +0000
commit7a14734d2cf20e99a24949e9513d823fdfa03b8d (patch)
treec9ea1280ca64907ddb8adbf06d326b9c7c1d38ac /include/core/SkShader.h
parent5b1a7c21006175d313aad09ef40f9453a21480e2 (diff)
support a8
Most of this is plumbing through the full paint to shaders instead of just the filter quality. CQ_INCLUDE_TRYBOTS=skia.primary:Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-SKNX_NO_SIMD Change-Id: I6afde07566afa3a4391c24dca7017a9a4f5ec700 Reviewed-on: https://skia-review.googlesource.com/5317 Commit-Queue: Mike Klein <mtklein@chromium.org> Reviewed-by: Mike Reed <reed@google.com>
Diffstat (limited to 'include/core/SkShader.h')
-rw-r--r--include/core/SkShader.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/core/SkShader.h b/include/core/SkShader.h
index 0dcd11157d..9e05a38899 100644
--- a/include/core/SkShader.h
+++ b/include/core/SkShader.h
@@ -477,7 +477,7 @@ public:
SK_DECLARE_FLATTENABLE_REGISTRAR_GROUP()
bool appendStages(SkRasterPipeline*, SkColorSpace*, SkFallbackAlloc*,
- const SkMatrix& ctm, SkFilterQuality) const;
+ const SkMatrix& ctm, const SkPaint&) const;
protected:
void flatten(SkWriteBuffer&) const override;
@@ -511,7 +511,7 @@ protected:
}
virtual bool onAppendStages(SkRasterPipeline*, SkColorSpace*, SkFallbackAlloc*,
- const SkMatrix&, SkFilterQuality) const {
+ const SkMatrix&, const SkPaint&) const {
return false;
}