aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/gpu/GrProcessor.h
diff options
context:
space:
mode:
authorGravatar bsalomon <bsalomon@google.com>2014-10-15 11:25:21 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2014-10-15 11:25:21 -0700
commitb762cb548bbc260f9b6f3a816bd92e4b2c07df95 (patch)
treec626363b1d156f601b482064f1154f95db2d68a4 /include/gpu/GrProcessor.h
parent98b33ebe6f66ed59b023cf16a09c0a40eb4510ce (diff)
More effect->processor cleanup
R=joshualitt@google.com Review URL: https://codereview.chromium.org/660563003
Diffstat (limited to 'include/gpu/GrProcessor.h')
-rw-r--r--include/gpu/GrProcessor.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/gpu/GrProcessor.h b/include/gpu/GrProcessor.h
index 63ab7ba6f7..c860b32c1b 100644
--- a/include/gpu/GrProcessor.h
+++ b/include/gpu/GrProcessor.h
@@ -153,15 +153,15 @@ public:
/** This object, besides creating back-end-specific helper objects, is used for run-time-type-
identification. The factory should be an instance of templated class,
- GrTBackendEffectFactory. It is templated on the subclass of GrProcessor. The subclass must
- have a nested type (or typedef) named GLProcessor which will be the subclass of
+ GrTBackendProcessorFactory. It is templated on the subclass of GrProcessor. The subclass
+ must have a nested type (or typedef) named GLProcessor which will be the subclass of
GrGLProcessor created by the factory.
Example:
class MyCustomProcessor : public GrProcessor {
...
- virtual const GrBackendEffectFactory& getFactory() const SK_OVERRIDE {
- return GrTBackendEffectFactory<MyCustomProcessor>::getInstance();
+ virtual const GrBackendProcessorFactory& getFactory() const SK_OVERRIDE {
+ return GrTBackendProcessorFactory<MyCustomProcessor>::getInstance();
}
...
};