aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrPrimitiveProcessor.h
diff options
context:
space:
mode:
authorGravatar egdaniel <egdaniel@google.com>2015-11-13 11:57:27 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2015-11-13 11:57:27 -0800
commit57d3b039c635945e1dc2fcbac3462ed8bfedb068 (patch)
tree1b119d77bc2f5dbb58587484f73f9ecbc4794039 /src/gpu/GrPrimitiveProcessor.h
parent04d52f3a92bb3d72e035a7c002926953edb0b505 (diff)
Rename some processor functions from GL to GLSL
TBR=bsalomon@google.com BUG=skia: Review URL: https://codereview.chromium.org/1443743002
Diffstat (limited to 'src/gpu/GrPrimitiveProcessor.h')
-rw-r--r--src/gpu/GrPrimitiveProcessor.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gpu/GrPrimitiveProcessor.h b/src/gpu/GrPrimitiveProcessor.h
index e15d2daa9a..46136f0766 100644
--- a/src/gpu/GrPrimitiveProcessor.h
+++ b/src/gpu/GrPrimitiveProcessor.h
@@ -190,14 +190,14 @@ public:
*
* TODO: A better name for this function would be "compute" instead of "get".
*/
- virtual void getGLProcessorKey(const GrGLSLCaps& caps,
- GrProcessorKeyBuilder* b) const = 0;
+ virtual void getGLSLProcessorKey(const GrGLSLCaps& caps,
+ GrProcessorKeyBuilder* b) const = 0;
/** Returns a new instance of the appropriate *GL* implementation class
for the given GrProcessor; caller is responsible for deleting
the object. */
- virtual GrGLSLPrimitiveProcessor* createGLInstance(const GrGLSLCaps& caps) const = 0;
+ virtual GrGLSLPrimitiveProcessor* createGLSLInstance(const GrGLSLCaps& caps) const = 0;
bool isPathRendering() const { return fIsPathRendering; }