aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core/SkImageFilter.h
diff options
context:
space:
mode:
authorGravatar joshualitt <joshualitt@chromium.org>2015-07-08 09:10:03 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-07-08 09:10:03 -0700
commit85ff25e8d905502ec09d057ecc6245f487bf94ce (patch)
treefaab885cc099d13f46989ac3765742e5de96cfea /include/core/SkImageFilter.h
parent711a245dda74d92db8508c2ec835d62ed09b4d1b (diff)
Thread GrShaderDataManager through Image filters
TBR=bsalomon@google.com BUG=skia: Review URL: https://codereview.chromium.org/1229613002
Diffstat (limited to 'include/core/SkImageFilter.h')
-rw-r--r--include/core/SkImageFilter.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/core/SkImageFilter.h b/include/core/SkImageFilter.h
index 4125db3734..ea0bd22f1a 100644
--- a/include/core/SkImageFilter.h
+++ b/include/core/SkImageFilter.h
@@ -16,6 +16,7 @@
#include "SkTemplates.h"
class GrFragmentProcessor;
+class GrShaderDataManager;
class GrTexture;
class SkBaseDevice;
class SkBitmap;
@@ -340,8 +341,8 @@ protected:
* will be called with (NULL, NULL, SkMatrix::I()) to query for support,
* so returning "true" indicates support for all possible matrices.
*/
- virtual bool asFragmentProcessor(GrFragmentProcessor**, GrTexture*, const SkMatrix&,
- const SkIRect& bounds) const;
+ virtual bool asFragmentProcessor(GrFragmentProcessor**, GrShaderDataManager*, GrTexture*,
+ const SkMatrix&, const SkIRect& bounds) const;
private:
friend class SkGraphics;