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

Side by Side Diff: gpu/vulkan/vulkan_descriptor_pool.h

Issue 1989013002: Added Vulkan Descriptor Sets and Samplers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Separated out descriptor layout Created 4 years, 7 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
« no previous file with comments | « gpu/vulkan/vulkan_descriptor_layout.cc ('k') | gpu/vulkan/vulkan_descriptor_pool.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef GPU_VULKAN_VULKAN_DESCRIPTOR_POOL_H_
6 #define GPU_VULKAN_VULKAN_DESCRIPTOR_POOL_H_
7
8 #include <vulkan/vulkan.h>
9
10 #include <memory>
11 #include <vector>
12
13 #include "base/macros.h"
14
15 namespace gpu {
16
17 class VulkanDescriptorLayout;
18 class VulkanDescriptorSet;
19 class VulkanDeviceQueue;
20
21 class VulkanDescriptorPool {
22 public:
23 explicit VulkanDescriptorPool(VulkanDeviceQueue* device_queue);
24 ~VulkanDescriptorPool();
25
26 bool Initialize(uint32_t max_descriptor_sets,
27 const std::vector<VkDescriptorPoolSize>& pool_sizes);
28 void Destroy();
29
30 std::unique_ptr<VulkanDescriptorSet> CreateDescriptorSet(
31 const VulkanDescriptorLayout* layout);
32 VkDescriptorPool handle() { return handle_; }
33
34 private:
35 friend class VulkanDescriptorSet;
36
37 void IncrementDescriptorSetCount();
38 void DecrementDescriptorSetCount();
39
40 VulkanDeviceQueue* device_queue_ = nullptr;
41 VkDescriptorPool handle_ = VK_NULL_HANDLE;
42 uint32_t max_descriptor_sets_ = 0;
43 uint32_t descriptor_count_ = 0;
44
45 DISALLOW_COPY_AND_ASSIGN(VulkanDescriptorPool);
46 };
47
48 } // namespace gpu
49
50 #endif // GPU_VULKAN_VULKAN_DESCRIPTOR_POOL_H_
OLDNEW
« no previous file with comments | « gpu/vulkan/vulkan_descriptor_layout.cc ('k') | gpu/vulkan/vulkan_descriptor_pool.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698