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

Unified Diff: src/gpu/gl/builders/GrGLProgramBuilder.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/builders/GrGLNvprProgramBuilder.cpp ('k') | src/gpu/gl/builders/GrGLProgramBuilder.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/gpu/gl/builders/GrGLProgramBuilder.h
diff --git a/src/gpu/gl/builders/GrGLProgramBuilder.h b/src/gpu/gl/builders/GrGLProgramBuilder.h
index e4c5f3168e6dbbab8000d63e6e2855052d5e6e1b..3fdccca393693688a3fde3c78eaca66b5186b7a7 100644
--- a/src/gpu/gl/builders/GrGLProgramBuilder.h
+++ b/src/gpu/gl/builders/GrGLProgramBuilder.h
@@ -71,7 +71,7 @@ public:
virtual const GrGLContextInfo& ctxInfo() const = 0;
- virtual GrGpuGL* gpu() const = 0;
+ virtual GrGLGpu* gpu() const = 0;
/*
* *NOTE* NO MEMBERS ALLOWED, MULTIPLE INHERITANCE
@@ -205,7 +205,7 @@ public:
* to be used.
* @return true if generation was successful.
*/
- static GrGLProgram* CreateProgram(const GrOptDrawState&, GrGpuGL*);
+ static GrGLProgram* CreateProgram(const GrOptDrawState&, GrGLGpu*);
UniformHandle addUniformArray(uint32_t visibility,
GrSLType type,
@@ -224,7 +224,7 @@ public:
const GrGLContextInfo& ctxInfo() const SK_OVERRIDE;
- GrGpuGL* gpu() const SK_OVERRIDE { return fGpu; }
+ GrGLGpu* gpu() const SK_OVERRIDE { return fGpu; }
GrGLFPFragmentBuilder* getFragmentShaderBuilder() SK_OVERRIDE { return &fFS; }
GrGLVertexBuilder* getVertexShaderBuilder() SK_OVERRIDE { return &fVS; }
@@ -259,9 +259,9 @@ protected:
static GrGLProgramBuilder* CreateProgramBuilder(const GrOptDrawState&,
bool hasGeometryProcessor,
- GrGpuGL*);
+ GrGLGpu*);
- GrGLProgramBuilder(GrGpuGL*, const GrOptDrawState&);
+ GrGLProgramBuilder(GrGLGpu*, const GrOptDrawState&);
const GrOptDrawState& optState() const { return fOptState; }
const GrProgramDesc& desc() const { return fDesc; }
@@ -377,7 +377,7 @@ protected:
const GrOptDrawState& fOptState;
const GrProgramDesc& fDesc;
- GrGpuGL* fGpu;
+ GrGLGpu* fGpu;
UniformInfoArray fUniforms;
SkSTArray<16, TransformVarying, true> fCoordVaryings;
« no previous file with comments | « src/gpu/gl/builders/GrGLNvprProgramBuilder.cpp ('k') | src/gpu/gl/builders/GrGLProgramBuilder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698