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