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

Side by Side Diff: gpu/vulkan/vulkan_descriptor_set.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_SET_H_
6 #define GPU_VULKAN_VULKAN_DESCRIPTOR_SET_H_
7
8 #include <vulkan/vulkan.h>
9
10 #include <memory>
11 #include <vector>
12
13 #include "base/macros.h"
14 #include "gpu/vulkan/vulkan_export.h"
15
16 namespace gpu {
17
18 class VulkanDescriptorPool;
19 class VulkanDeviceQueue;
20
21 class VULKAN_EXPORT VulkanDescriptorSet {
22 public:
23 ~VulkanDescriptorSet();
24
25 bool Initialize(const std::vector<VkDescriptorSetLayoutBinding>& layout);
26 void Destroy();
27
28 void WriteToDescriptorSet(uint32_t dst_binding,
29 uint32_t dst_array_element,
30 uint32_t descriptor_count,
31 VkDescriptorType descriptor_type,
32 const VkDescriptorImageInfo* image_info,
33 const VkDescriptorBufferInfo* buffer_info,
34 const VkBufferView* texel_buffer_view);
35
36 void CopyFromDescriptorSet(const VulkanDescriptorSet* source_set,
37 uint32_t src_binding,
38 uint32_t src_array_element,
39 uint32_t dst_binding,
40 uint32_t dst_array_element,
41 uint32_t descriptor_count);
42
43 VkDescriptorSet handle() const { return handle_; }
44 VkDescriptorSetLayout layout() const { return layout_; }
45
46 private:
47 friend class VulkanDescriptorPool;
48 explicit VulkanDescriptorSet(VulkanDeviceQueue* device_queue,
49 VulkanDescriptorPool* descriptor_pool);
50
51 VulkanDeviceQueue* device_queue_ = nullptr;
52 VulkanDescriptorPool* descriptor_pool_ = nullptr;
53 VkDescriptorSet handle_ = VK_NULL_HANDLE;
54 VkDescriptorSetLayout layout_ = VK_NULL_HANDLE;
55
56 DISALLOW_COPY_AND_ASSIGN(VulkanDescriptorSet);
57 };
58
59 } // namespace gpu
60
61 #endif // GPU_VULKAN_VULKAN_DESCRIPTOR_SET_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698