| 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 "SkTArray.h" | 11 #include "SkTArray.h" |
| 12 #include "gl/GrGLProcessor.h" | 12 #include "gl/GrGLFragmentProcessor.h" |
| 13 #include "gl/GrGLProgramDesc.h" | 13 #include "gl/GrGLProgramDesc.h" |
| 14 #include "gl/GrGLProgramDataManager.h" | 14 #include "gl/GrGLProgramDataManager.h" |
| 15 | 15 |
| 16 #include <stdarg.h> | 16 #include <stdarg.h> |
| 17 | 17 |
| 18 class GrGLContextInfo; | 18 class GrGLContextInfo; |
| 19 class GrGLProgramBuilder; | 19 class GrGLProgramBuilder; |
| 20 | 20 |
| 21 /** | 21 /** |
| 22 base class for all shaders builders | 22 base class for all shaders builders |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 VarArray fOutputs; | 199 VarArray fOutputs; |
| 200 uint32_t fFeaturesAddedMask; | 200 uint32_t fFeaturesAddedMask; |
| 201 SkSTArray<1, SkString> fLayoutParams[kLastInterfaceQualifier + 1]; | 201 SkSTArray<1, SkString> fLayoutParams[kLastInterfaceQualifier + 1]; |
| 202 int fCodeIndex; | 202 int fCodeIndex; |
| 203 bool fFinalized; | 203 bool fFinalized; |
| 204 | 204 |
| 205 friend class GrGLProgramBuilder; | 205 friend class GrGLProgramBuilder; |
| 206 friend class GrGLPathProgramBuilder; // to access fInputs. | 206 friend class GrGLPathProgramBuilder; // to access fInputs. |
| 207 }; | 207 }; |
| 208 #endif | 208 #endif |
| OLD | NEW |