Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(103)

Unified Diff: src/gpu/glsl/GrGLSLGeometryProcessor.h

Issue 1441683008: Move GrGLPrimitive/GeometryProc to GLSL (Closed) Base URL: https://skia.googlesource.com/skia.git@xferProcs
Patch Set: nits Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/gpu/gl/builders/GrGLProgramBuilder.cpp ('k') | src/gpu/glsl/GrGLSLGeometryProcessor.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « src/gpu/gl/builders/GrGLProgramBuilder.cpp ('k') | src/gpu/glsl/GrGLSLGeometryProcessor.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698