| Index: src/gpu/gl/GrGLProgram.h
|
| diff --git a/src/gpu/gl/GrGLProgram.h b/src/gpu/gl/GrGLProgram.h
|
| index e8aef35f1decd9e26885dde35d303ada4d564b30..95763d6fada0e7323bfe19fe31f0265c5afb1258 100644
|
| --- a/src/gpu/gl/GrGLProgram.h
|
| +++ b/src/gpu/gl/GrGLProgram.h
|
| @@ -47,7 +47,7 @@ public:
|
| */
|
| void abandon();
|
|
|
| - const GrGLProgramDesc& getDesc() { return fDesc; }
|
| + const GrProgramDesc& getDesc() { return fDesc; }
|
|
|
| /**
|
| * Gets the GL program ID for this program.
|
| @@ -160,7 +160,7 @@ protected:
|
| typedef GrGLProgramDataManager::UniformInfoArray UniformInfoArray;
|
|
|
| GrGLProgram(GrGpuGL*,
|
| - const GrGLProgramDesc&,
|
| + const GrProgramDesc&,
|
| const BuiltinUniformHandles&,
|
| GrGLuint programID,
|
| const UniformInfoArray&,
|
| @@ -206,7 +206,7 @@ protected:
|
| SkAutoTDelete<GrGLInstalledGeoProc> fGeometryProcessor;
|
| SkAutoTUnref<GrGLInstalledFragProcs> fFragmentProcessors;
|
|
|
| - GrGLProgramDesc fDesc;
|
| + GrProgramDesc fDesc;
|
| GrGpuGL* fGpu;
|
| GrGLProgramDataManager fProgramDataManager;
|
|
|
| @@ -225,7 +225,7 @@ protected:
|
| class GrGLNvprProgramBase : public GrGLProgram {
|
| protected:
|
| GrGLNvprProgramBase(GrGpuGL*,
|
| - const GrGLProgramDesc&,
|
| + const GrProgramDesc&,
|
| const BuiltinUniformHandles&,
|
| GrGLuint programID,
|
| const UniformInfoArray&,
|
| @@ -243,7 +243,7 @@ private:
|
| typedef GrGLNvprProgramBuilder::SeparableVaryingInfo SeparableVaryingInfo;
|
| typedef GrGLNvprProgramBuilder::SeparableVaryingInfoArray SeparableVaryingInfoArray;
|
| GrGLNvprProgram(GrGpuGL*,
|
| - const GrGLProgramDesc&,
|
| + const GrProgramDesc&,
|
| const BuiltinUniformHandles&,
|
| GrGLuint programID,
|
| const UniformInfoArray&,
|
| @@ -271,7 +271,7 @@ public:
|
|
|
| private:
|
| GrGLLegacyNvprProgram(GrGpuGL* gpu,
|
| - const GrGLProgramDesc& desc,
|
| + const GrProgramDesc& desc,
|
| const BuiltinUniformHandles&,
|
| GrGLuint programID,
|
| const UniformInfoArray&,
|
|
|