| 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 GrGLShaderBuilder_DEFINED | 8 #ifndef GrGLShaderBuilder_DEFINED |
| 9 #define GrGLShaderBuilder_DEFINED | 9 #define GrGLShaderBuilder_DEFINED |
| 10 | 10 |
| 11 #include "gl/GrGLProcessor.h" |
| 11 #include "gl/GrGLProgramDesc.h" | 12 #include "gl/GrGLProgramDesc.h" |
| 12 #include "gl/GrGLProgramDataManager.h" | 13 #include "gl/GrGLProgramDataManager.h" |
| 13 | 14 |
| 14 #include <stdarg.h> | 15 #include <stdarg.h> |
| 15 | 16 |
| 16 class GrGLContextInfo; | 17 class GrGLContextInfo; |
| 17 class GrGLProgramBuilder; | 18 class GrGLProgramBuilder; |
| 18 | 19 |
| 19 /** | 20 /** |
| 20 base class for all shaders builders | 21 base class for all shaders builders |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 | 142 |
| 142 SkString fCode; | 143 SkString fCode; |
| 143 SkString fFunctions; | 144 SkString fFunctions; |
| 144 SkString fExtensions; | 145 SkString fExtensions; |
| 145 | 146 |
| 146 VarArray fInputs; | 147 VarArray fInputs; |
| 147 VarArray fOutputs; | 148 VarArray fOutputs; |
| 148 uint32_t fFeaturesAddedMask; | 149 uint32_t fFeaturesAddedMask; |
| 149 }; | 150 }; |
| 150 #endif | 151 #endif |
| OLD | NEW |