OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2014 Google Inc. | 2 * Copyright 2014 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #ifndef GrGLLegacyNvprProgramBuilder_DEFINED | 8 #ifndef GrGLLegacyNvprProgramBuilder_DEFINED |
9 #define GrGLLegacyNvprProgramBuilder_DEFINED | 9 #define GrGLLegacyNvprProgramBuilder_DEFINED |
10 | 10 |
11 #include "GrGLProgramBuilder.h" | 11 #include "GrGLProgramBuilder.h" |
12 | 12 |
13 class GrGLLegacyNvprProgramBuilder : public GrGLProgramBuilder { | 13 class GrGLLegacyNvprProgramBuilder : public GrGLProgramBuilder { |
14 public: | 14 public: |
15 GrGLLegacyNvprProgramBuilder(GrGLGpu*, const GrOptDrawState&); | 15 GrGLLegacyNvprProgramBuilder(GrGLGpu*, const GrOptDrawState&); |
16 | 16 |
17 virtual GrGLProgram* createProgram(GrGLuint programID) SK_OVERRIDE; | 17 GrGLProgram* createProgram(GrGLuint programID) SK_OVERRIDE; |
18 | 18 |
19 private: | 19 private: |
20 int addTexCoordSets(int count); | 20 int addTexCoordSets(int count); |
21 void emitTransforms(const GrPendingFragmentStage&, | 21 void emitTransforms(const GrPendingFragmentStage&, |
22 GrGLProcessor::TransformedCoordsArray* outCoords, | 22 GrGLProcessor::TransformedCoordsArray* outCoords, |
23 GrGLInstalledFragProc*) SK_OVERRIDE; | 23 GrGLInstalledFragProc*) SK_OVERRIDE; |
24 | 24 |
25 int fTexCoordSetCnt; | 25 int fTexCoordSetCnt; |
26 | 26 |
27 typedef GrGLProgramBuilder INHERITED; | 27 typedef GrGLProgramBuilder INHERITED; |
28 }; | 28 }; |
29 | 29 |
30 #endif | 30 #endif |
OLD | NEW |