mirror of
https://github.com/seekrs/MacroLibX.git
synced 2026-01-11 22:53:34 +00:00
47 lines
1.7 KiB
C++
47 lines
1.7 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* vk_descriptor_set.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: maldavid <kbz_8.dev@akel-engine.com> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/01/23 18:39:36 by maldavid #+# #+# */
|
|
/* Updated: 2024/01/03 15:27:50 by maldavid ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef __VK_DESCRIPTOR_SET__
|
|
#define __VK_DESCRIPTOR_SET__
|
|
|
|
#include <mlx_profile.h>
|
|
#include <volk.h>
|
|
#include <array>
|
|
#include <renderer/core/render_core.h>
|
|
|
|
namespace mlx
|
|
{
|
|
class DescriptorSet
|
|
{
|
|
public:
|
|
void init(class Renderer* renderer, class DescriptorPool* pool, class DescriptorSetLayout* layout);
|
|
|
|
void writeDescriptor(int binding, class UBO* ubo) const noexcept;
|
|
void writeDescriptor(int binding, const class Image& image) const noexcept;
|
|
|
|
inline bool isInit() const noexcept { return _pool != nullptr && _renderer != nullptr; }
|
|
|
|
DescriptorSet duplicate();
|
|
|
|
VkDescriptorSet& operator()() noexcept;
|
|
VkDescriptorSet& get() noexcept;
|
|
|
|
private:
|
|
std::array<VkDescriptorSet, MAX_FRAMES_IN_FLIGHT> _desc_set;
|
|
class DescriptorPool* _pool = nullptr;
|
|
class DescriptorSetLayout* _layout = nullptr;
|
|
class Renderer* _renderer = nullptr;
|
|
};
|
|
}
|
|
|
|
#endif
|