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

Unified Diff: src/gpu/GrProcessor.cpp

Issue 659803005: Last round of effect->processor (for now) (Closed) Base URL: https://skia.googlesource.com/skia.git@factory
Patch Set: fixed Created 6 years, 2 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/gpu/GrCoordTransform.h ('k') | src/gpu/gl/GrGLProgramDesc.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/gpu/GrProcessor.cpp
diff --git a/src/gpu/GrProcessor.cpp b/src/gpu/GrProcessor.cpp
index bf65cb0fb98ff66828d5c51c084ad96093487dc1..4e171fc99b0faf3ff93e8f35f3e6be1bb109b1ec 100644
--- a/src/gpu/GrProcessor.cpp
+++ b/src/gpu/GrProcessor.cpp
@@ -92,8 +92,8 @@ private:
}
};
-int32_t GrBackendProcessorFactory::fCurrEffectClassID =
- GrBackendProcessorFactory::kIllegalEffectClassID;
+int32_t GrBackendProcessorFactory::fCurrProcessorClassID =
+ GrBackendProcessorFactory::kIllegalProcessorClassID;
///////////////////////////////////////////////////////////////////////////////
@@ -170,5 +170,5 @@ bool GrProcessor::InvariantOutput::validPreMulColor() const {
void GrFragmentProcessor::addCoordTransform(const GrCoordTransform* transform) {
fCoordTransforms.push_back(transform);
- SkDEBUGCODE(transform->setInEffect();)
+ SkDEBUGCODE(transform->setInProcessor();)
}
« no previous file with comments | « include/gpu/GrCoordTransform.h ('k') | src/gpu/gl/GrGLProgramDesc.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698