mirror of
https://gitea.windcorp.ru/Wind-Corporation/Progressia.git
synced 2025-10-14 21:23:10 +03:00
Initial commit
This commit is contained in:
23
desktop/graphics/vulkan_descriptor_set.h
Normal file
23
desktop/graphics/vulkan_descriptor_set.h
Normal file
@@ -0,0 +1,23 @@
|
||||
#pragma once
|
||||
|
||||
#include "vulkan_common.h"
|
||||
|
||||
namespace progressia {
|
||||
namespace desktop {
|
||||
|
||||
class DescriptorSetInterface : public VkObjectWrapper {
|
||||
protected:
|
||||
VkDescriptorSetLayout layout;
|
||||
uint32_t setNumber;
|
||||
Vulkan &vulkan;
|
||||
|
||||
DescriptorSetInterface(uint32_t setNumber, Vulkan &);
|
||||
|
||||
public:
|
||||
VkDescriptorSetLayout getLayout() const;
|
||||
uint32_t getSetNumber() const;
|
||||
Vulkan &getVulkan();
|
||||
};
|
||||
|
||||
} // namespace desktop
|
||||
} // namespace progressia
|
Reference in New Issue
Block a user