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

Unified Diff: src/gpu/gl/GrGLPathRendering.h

Issue 808593003: Rename GrGpuGL to GrGLGpu for consistency (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 6 years 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/GrGLPathRange.cpp ('k') | src/gpu/gl/GrGLPathRendering.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/gpu/gl/GrGLPathRendering.h
diff --git a/src/gpu/gl/GrGLPathRendering.h b/src/gpu/gl/GrGLPathRendering.h
index 1f1a33cbbbc9d14f9b50c0fd8172040e4de26d52..ee4011d3ac95ae2a24a341e598bb40e798fe62e5 100644
--- a/src/gpu/gl/GrGLPathRendering.h
+++ b/src/gpu/gl/GrGLPathRendering.h
@@ -15,11 +15,11 @@
#include "gl/GrGLProgram.h"
class GrGLNameAllocator;
-class GrGpuGL;
+class GrGLGpu;
/**
* This class wraps the NV_path_rendering extension and manages its various
- * API versions. If a method is not present in the GrGLInterface of the GrGpuGL
+ * API versions. If a method is not present in the GrGLInterface of the GrGLGpu
* (because the driver version is old), it tries to provide a backup
* implementation. But if a backup implementation is not practical, it marks the
* method as not supported.
@@ -27,9 +27,9 @@ class GrGpuGL;
class GrGLPathRendering : public GrPathRendering {
public:
/**
- * Create a new GrGLPathRendering object from a given GrGpuGL.
+ * Create a new GrGLPathRendering object from a given GrGLGpu.
*/
- GrGLPathRendering(GrGpuGL* gpu);
+ GrGLPathRendering(GrGLGpu* gpu);
virtual ~GrGLPathRendering();
// GrPathRendering implementations.
@@ -126,7 +126,7 @@ private:
GrGLuint pathBase, GrGLint reference, GrGLuint mask, GrGLenum coverMode,
GrGLenum transformType, const GrGLfloat *transformValues);
- GrGpuGL* fGpu;
+ GrGLGpu* fGpu;
SkAutoTDelete<GrGLNameAllocator> fPathNameAllocator;
Caps fCaps;
GrGLProgram::MatrixState fHWProjectionMatrixState;
« no previous file with comments | « src/gpu/gl/GrGLPathRange.cpp ('k') | src/gpu/gl/GrGLPathRendering.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698