| OLD | NEW |
| (Empty) |
| 1 /* | |
| 2 * Copyright 2015 Google Inc. | |
| 3 * | |
| 4 * Use of this source code is governed by a BSD-style license that can be | |
| 5 * found in the LICENSE file. | |
| 6 */ | |
| 7 #ifndef GrGLPathProgramBuilder_DEFINED | |
| 8 #define GrGLPathProgramBuilder_DEFINED | |
| 9 | |
| 10 #include "GrGLProgramBuilder.h" | |
| 11 | |
| 12 class GrGLPathProgramBuilder : public GrGLProgramBuilder { | |
| 13 public: | |
| 14 GrGLPathProgramBuilder(GrGLGpu* gpu, const DrawArgs& args); | |
| 15 | |
| 16 GrGLProgram* createProgram(GrGLuint programID) override; | |
| 17 | |
| 18 SeparableVaryingHandle addSeparableVarying(const char* name, GrGLVertToFrag*
v, | |
| 19 GrSLPrecision fsPrecision) overri
de; | |
| 20 void bindProgramResourceLocations(GrGLuint programID) override; | |
| 21 void resolveProgramResourceLocations(GrGLuint programID) override; | |
| 22 | |
| 23 private: | |
| 24 typedef GrGLPathProgramDataManager::SeparableVaryingInfo SeparableVaryingInf
o; | |
| 25 typedef GrGLPathProgramDataManager::SeparableVaryingInfoArray SeparableVaryi
ngInfoArray; | |
| 26 | |
| 27 SeparableVaryingInfoArray fSeparableVaryingInfos; | |
| 28 | |
| 29 typedef GrGLProgramBuilder INHERITED; | |
| 30 }; | |
| 31 | |
| 32 #endif | |
| OLD | NEW |