Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(142)

Side by Side Diff: src/gpu/vk/GrVkPipelineState.h

Issue 1834903003: Add WSI functions to GrVkInterface (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Add Android and Xlib Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 "GrVkImage.h" 12 #include "GrVkImage.h"
13 #include "GrVkProgramDesc.h" 13 #include "GrVkProgramDesc.h"
14 #include "GrVkPipelineStateDataManager.h" 14 #include "GrVkPipelineStateDataManager.h"
15 #include "glsl/GrGLSLProgramBuilder.h" 15 #include "glsl/GrGLSLProgramBuilder.h"
16 16
17 #include "vulkan/vulkan.h" 17 #include "vk/GrVkDefines.h"
18 18
19 class GrPipeline; 19 class GrPipeline;
20 class GrVkCommandBuffer; 20 class GrVkCommandBuffer;
21 class GrVkDescriptorPool; 21 class GrVkDescriptorPool;
22 class GrVkGpu; 22 class GrVkGpu;
23 class GrVkImageView; 23 class GrVkImageView;
24 class GrVkPipeline; 24 class GrVkPipeline;
25 class GrVkSampler; 25 class GrVkSampler;
26 class GrVkUniformBuffer; 26 class GrVkUniformBuffer;
27 27
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 277
278 DescriptorPoolManager fSamplerPoolManager; 278 DescriptorPoolManager fSamplerPoolManager;
279 DescriptorPoolManager fUniformPoolManager; 279 DescriptorPoolManager fUniformPoolManager;
280 280
281 int fNumSamplers; 281 int fNumSamplers;
282 282
283 friend class GrVkPipelineStateBuilder; 283 friend class GrVkPipelineStateBuilder;
284 }; 284 };
285 285
286 #endif 286 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698