Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(159)

Unified Diff: src/core/SkColorFilter.cpp

Issue 1213613016: More threading of GrShaderDataManager (Closed) Base URL: https://skia.googlesource.com/skia.git@GrShaderDataManager
Patch Set: build issue Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « include/effects/SkModeColorFilter.h ('k') | src/effects/SkColorCubeFilter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/core/SkColorFilter.cpp
diff --git a/src/core/SkColorFilter.cpp b/src/core/SkColorFilter.cpp
index 8007271a3fe53d5893de1cae30073dec95ed70d5..a7072324bc4b350e086decca37b4320258b4d08a 100644
--- a/src/core/SkColorFilter.cpp
+++ b/src/core/SkColorFilter.cpp
@@ -62,10 +62,10 @@ public:
#endif
#if SK_SUPPORT_GPU
- bool asFragmentProcessors(GrContext* context,
+ bool asFragmentProcessors(GrContext* context, GrShaderDataManager* shaderDataManager,
SkTDArray<GrFragmentProcessor*>* array) const override {
- bool hasFrags = fInner->asFragmentProcessors(context, array);
- hasFrags |= fOuter->asFragmentProcessors(context, array);
+ bool hasFrags = fInner->asFragmentProcessors(context, shaderDataManager, array);
+ hasFrags |= fOuter->asFragmentProcessors(context, shaderDataManager, array);
return hasFrags;
}
#endif
« no previous file with comments | « include/effects/SkModeColorFilter.h ('k') | src/effects/SkColorCubeFilter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698