Index: src/gpu/glsl/GrGLSLGeometryProcessor.h |
diff --git a/src/gpu/gl/GrGLGeometryProcessor.h b/src/gpu/glsl/GrGLSLGeometryProcessor.h |
similarity index 94% |
rename from src/gpu/gl/GrGLGeometryProcessor.h |
rename to src/gpu/glsl/GrGLSLGeometryProcessor.h |
index 8151c32eefa18b4edb4a22370e799e2b333858a6..1064eb02c2b29d5e4d8861630883091c17ee7e48 100644 |
--- a/src/gpu/gl/GrGLGeometryProcessor.h |
+++ b/src/gpu/glsl/GrGLSLGeometryProcessor.h |
@@ -5,10 +5,10 @@ |
* found in the LICENSE file. |
*/ |
-#ifndef GrGLGeometryProcessor_DEFINED |
-#define GrGLGeometryProcessor_DEFINED |
+#ifndef GrGLSLGeometryProcessor_DEFINED |
+#define GrGLSLGeometryProcessor_DEFINED |
-#include "GrGLPrimitiveProcessor.h" |
+#include "GrGLSLPrimitiveProcessor.h" |
class GrGLSLGPBuilder; |
@@ -17,7 +17,7 @@ class GrGLSLGPBuilder; |
* from this class. Since paths don't have vertices, this class is only meant to be used internally |
* by skia, for special cases. |
*/ |
-class GrGLGeometryProcessor : public GrGLPrimitiveProcessor { |
+class GrGLSLGeometryProcessor : public GrGLSLPrimitiveProcessor { |
public: |
/* Any general emit code goes in the base class emitCode. Subclasses override onEmitCode */ |
void emitCode(EmitArgs&) override; |
@@ -104,7 +104,7 @@ private: |
virtual void onEmitCode(EmitArgs&, GrGPArgs*) = 0; |
- typedef GrGLPrimitiveProcessor INHERITED; |
+ typedef GrGLSLPrimitiveProcessor INHERITED; |
}; |
#endif |