| Index: src/gpu/batches/GrAAConvexPathRenderer.cpp
|
| diff --git a/src/gpu/batches/GrAAConvexPathRenderer.cpp b/src/gpu/batches/GrAAConvexPathRenderer.cpp
|
| index f0f475e31a6183cb9e557a241bcc9be07d4f97ee..36c1abf7863b1132554590f66086a29d64fe4c0f 100644
|
| --- a/src/gpu/batches/GrAAConvexPathRenderer.cpp
|
| +++ b/src/gpu/batches/GrAAConvexPathRenderer.cpp
|
| @@ -25,7 +25,7 @@
|
| #include "SkString.h"
|
| #include "SkTraceEvent.h"
|
| #include "batches/GrVertexBatch.h"
|
| -#include "gl/GrGLGeometryProcessor.h"
|
| +#include "glsl/GrGLSLGeometryProcessor.h"
|
| #include "glsl/GrGLSLProgramBuilder.h"
|
| #include "glsl/GrGLSLProgramDataManager.h"
|
|
|
| @@ -541,7 +541,7 @@ public:
|
| const SkMatrix& localMatrix() const { return fLocalMatrix; }
|
| bool usesLocalCoords() const { return fUsesLocalCoords; }
|
|
|
| - class GLProcessor : public GrGLGeometryProcessor {
|
| + class GLProcessor : public GrGLSLGeometryProcessor {
|
| public:
|
| GLProcessor()
|
| : fColor(GrColor_ILLEGAL) {}
|
| @@ -627,14 +627,14 @@ public:
|
| GrColor fColor;
|
| UniformHandle fColorUniform;
|
|
|
| - typedef GrGLGeometryProcessor INHERITED;
|
| + typedef GrGLSLGeometryProcessor INHERITED;
|
| };
|
|
|
| void getGLProcessorKey(const GrGLSLCaps& caps, GrProcessorKeyBuilder* b) const override {
|
| GLProcessor::GenKey(*this, caps, b);
|
| }
|
|
|
| - GrGLPrimitiveProcessor* createGLInstance(const GrGLSLCaps&) const override {
|
| + GrGLSLPrimitiveProcessor* createGLInstance(const GrGLSLCaps&) const override {
|
| return new GLProcessor();
|
| }
|
|
|
|
|