| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2016 Google Inc. | 2 * Copyright 2016 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 GrVkPipelineState_DEFINED | 9 #ifndef GrVkPipelineState_DEFINED |
| 10 #define GrVkPipelineState_DEFINED | 10 #define GrVkPipelineState_DEFINED |
| 11 | 11 |
| 12 #include "GrStencilSettings.h" | |
| 13 #include "GrVkImage.h" | 12 #include "GrVkImage.h" |
| 14 #include "GrVkProgramDesc.h" | 13 #include "GrVkProgramDesc.h" |
| 15 #include "GrVkPipelineStateDataManager.h" | 14 #include "GrVkPipelineStateDataManager.h" |
| 16 #include "glsl/GrGLSLProgramBuilder.h" | 15 #include "glsl/GrGLSLProgramBuilder.h" |
| 17 | 16 |
| 18 #include "vk/GrVkDefines.h" | 17 #include "vk/GrVkDefines.h" |
| 19 | 18 |
| 20 class GrPipeline; | 19 class GrPipeline; |
| 21 class GrVkCommandBuffer; | 20 class GrVkCommandBuffer; |
| 22 class GrVkDescriptorPool; | 21 class GrVkDescriptorPool; |
| (...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 | 281 |
| 283 DescriptorPoolManager fSamplerPoolManager; | 282 DescriptorPoolManager fSamplerPoolManager; |
| 284 const GrVkDescriptorPool* fCurrentUniformDescPool; | 283 const GrVkDescriptorPool* fCurrentUniformDescPool; |
| 285 | 284 |
| 286 int fNumSamplers; | 285 int fNumSamplers; |
| 287 | 286 |
| 288 friend class GrVkPipelineStateBuilder; | 287 friend class GrVkPipelineStateBuilder; |
| 289 }; | 288 }; |
| 290 | 289 |
| 291 #endif | 290 #endif |
| OLD | NEW |