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

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: 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
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 VulkanDescriptorSet;
18 class VulkanDeviceQueue;
19
20 class VulkanDescriptorPool {
21 public:
22 explicit VulkanDescriptorPool(VulkanDeviceQueue* device_queue);
23 ~VulkanDescriptorPool();
24
25 bool Initialize(uint32_t max_descriptor_sets,
26 const std::vector<VkDescriptorPoolSize>& pool_sizes);
27 void Destroy();
28
29 std::unique_ptr<VulkanDescriptorSet> CreateDescriptorSet(
30 const std::vector<VkDescriptorSetLayoutBinding>& layout);
31 VkDescriptorPool handle() { return handle_; }
32
33 private:
34 friend class VulkanDescriptorSet;
35
36 void IncrementDescriptorSetCount();
37 void DecrementDescriptorSetCount();
38
39 VulkanDeviceQueue* device_queue_ = nullptr;
40 VkDescriptorPool handle_ = VK_NULL_HANDLE;
41 uint32_t max_descriptor_sets_ = 0;
42 uint32_t descriptor_count_ = 0;
43
44 DISALLOW_COPY_AND_ASSIGN(VulkanDescriptorPool);
45 };
46
47 } // namespace gpu
48
49 #endif // GPU_VULKAN_VULKAN_DESCRIPTOR_POOL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698