aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrPrimitiveProcessor.h
diff options
context:
space:
mode:
authorGravatar egdaniel <egdaniel@google.com>2015-11-13 09:55:43 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2015-11-13 09:55:43 -0800
commite659a581f63fdccb64dce2dc8a478cf56831feea (patch)
treeefef38bff117135e343b7b2b192af10b1f2262e3 /src/gpu/GrPrimitiveProcessor.h
parent60795d99fff8caedc2e82bebcfa8bd4fa07231b7 (diff)
Move GrGLPrimitive/GeometryProc to GLSL
Diffstat (limited to 'src/gpu/GrPrimitiveProcessor.h')
-rw-r--r--src/gpu/GrPrimitiveProcessor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gpu/GrPrimitiveProcessor.h b/src/gpu/GrPrimitiveProcessor.h
index 54155a6d5f..e15d2daa9a 100644
--- a/src/gpu/GrPrimitiveProcessor.h
+++ b/src/gpu/GrPrimitiveProcessor.h
@@ -43,7 +43,7 @@
*/
class GrGLSLCaps;
-class GrGLPrimitiveProcessor;
+class GrGLSLPrimitiveProcessor;
struct GrInitInvariantOutput;
@@ -197,7 +197,7 @@ public:
/** Returns a new instance of the appropriate *GL* implementation class
for the given GrProcessor; caller is responsible for deleting
the object. */
- virtual GrGLPrimitiveProcessor* createGLInstance(const GrGLSLCaps& caps) const = 0;
+ virtual GrGLSLPrimitiveProcessor* createGLInstance(const GrGLSLCaps& caps) const = 0;
bool isPathRendering() const { return fIsPathRendering; }