| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 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 | 8 |
| 9 #ifndef GrVkProgram_DEFINED | 9 #ifndef GrVkProgram_DEFINED |
| 10 #define GrVkProgram_DEFINED | 10 #define GrVkProgram_DEFINED |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 // Processors in the program | 175 // Processors in the program |
| 176 SkAutoTDelete<GrGLSLPrimitiveProcessor> fGeometryProcessor; | 176 SkAutoTDelete<GrGLSLPrimitiveProcessor> fGeometryProcessor; |
| 177 SkAutoTDelete<GrGLSLXferProcessor> fXferProcessor; | 177 SkAutoTDelete<GrGLSLXferProcessor> fXferProcessor; |
| 178 GrGLSLFragProcs fFragmentProcessors; | 178 GrGLSLFragProcs fFragmentProcessors; |
| 179 | 179 |
| 180 GrVkProgramDataManager fProgramDataManager; | 180 GrVkProgramDataManager fProgramDataManager; |
| 181 | 181 |
| 182 DescriptorPoolManager fSamplerPoolManager; | 182 DescriptorPoolManager fSamplerPoolManager; |
| 183 DescriptorPoolManager fUniformPoolManager; | 183 DescriptorPoolManager fUniformPoolManager; |
| 184 | 184 |
| 185 #ifdef SK_DEBUG | |
| 186 int fNumSamplers; | 185 int fNumSamplers; |
| 187 #endif | |
| 188 | 186 |
| 189 friend class GrVkProgramBuilder; | 187 friend class GrVkProgramBuilder; |
| 190 }; | 188 }; |
| 191 | 189 |
| 192 #endif | 190 #endif |
| OLD | NEW |