OLD | NEW |
---|---|
(Empty) | |
1 /* | |
2 * Copyright 2016 Google Inc. | |
3 * | |
4 * Use of this source code is governed by a BSD-style license that can be | |
5 * found in the LICENSE file. | |
6 */ | |
7 | |
8 #ifndef GrVkDescriptorSet_DEFINED | |
9 #define GrVkDescriptorSet_DEFINED | |
10 | |
11 #include "GrVkDescriptorSetManager.h" | |
12 #include "GrVkResource.h" | |
13 #include "vk/GrVkDefines.h" | |
14 | |
15 class GrVkDescriptorPool; | |
16 class GrVkGpu; | |
17 | |
18 class GrVkDescriptorSet : public GrVkRecycledResource { | |
19 public: | |
20 GrVkDescriptorSet(VkDescriptorSet descSet, | |
21 GrVkDescriptorPool* pool, | |
22 GrVkDescriptorSetManager::Handle handle); | |
23 | |
24 ~GrVkDescriptorSet() override {} | |
25 | |
26 VkDescriptorSet descriptorSet() const { return fDescSet; } | |
27 | |
28 #ifdef SK_TRACE_VK_RESOURCES | |
29 void dumpInfo() const override { | |
jvanverth1
2016/07/21 15:30:06
Indented too far.
egdaniel
2016/07/21 17:27:11
Done.
| |
30 SkDebugf("GrVkDescriptorSet: %d (%d refs)\n", fDescSet, this->getRef Cnt()); | |
31 } | |
32 #endif | |
33 | |
34 private: | |
35 void freeGPUData(const GrVkGpu* gpu) const override; | |
36 void abandonSubResources() const override; | |
37 void onRecycle(GrVkGpu* gpu) const override; | |
38 | |
39 VkDescriptorSet fDescSet; | |
40 SkDEBUGCODE(mutable) GrVkDescriptorPool* fPool; | |
41 GrVkDescriptorSetManager::Handle fHandle; | |
42 }; | |
43 | |
44 #endif | |
OLD | NEW |