Index: include/gpu/GrFragmentProcessor.h |
diff --git a/include/gpu/GrFragmentProcessor.h b/include/gpu/GrFragmentProcessor.h |
index 571139578a632497da226e409fc272010d3db483..428466212cd28780da74fbd8b2dc3b3e71c3e6da 100644 |
--- a/include/gpu/GrFragmentProcessor.h |
+++ b/include/gpu/GrFragmentProcessor.h |
@@ -12,7 +12,7 @@ |
class GrCoordTransform; |
class GrGLSLCaps; |
-class GrGLFragmentProcessor; |
+class GrGLSLFragmentProcessor; |
class GrInvariantOutput; |
class GrProcessorKeyBuilder; |
@@ -63,7 +63,7 @@ public: |
~GrFragmentProcessor() override; |
- GrGLFragmentProcessor* createGLInstance() const; |
+ GrGLSLFragmentProcessor* createGLInstance() const; |
void getGLProcessorKey(const GrGLSLCaps& caps, GrProcessorKeyBuilder* b) const { |
this->onGetGLProcessorKey(caps, b); |
@@ -166,7 +166,7 @@ private: |
/** Returns a new instance of the appropriate *GL* implementation class |
for the given GrFragmentProcessor; caller is responsible for deleting |
the object. */ |
- virtual GrGLFragmentProcessor* onCreateGLInstance() const = 0; |
+ virtual GrGLSLFragmentProcessor* onCreateGLInstance() const = 0; |
/** Implemented using GLFragmentProcessor::GenKey as described in this class's comment. */ |
virtual void onGetGLProcessorKey(const GrGLSLCaps& caps, |