mirror of
https://gitea.windcorp.ru/Wind-Corporation/Progressia.git
synced 2025-04-21 08:00:46 +03:00
Fixes GH-5 - cppcheck replaced with clang-tidy - clang-tidy lint warnings fixed - Reworked build tools from scratch to make IDE setup easier - Added 1.5 IDE setup guides
22 lines
295 B
C++
22 lines
295 B
C++
#pragma once
|
|
|
|
#include "vulkan_common.h"
|
|
|
|
namespace progressia::desktop {
|
|
|
|
class RenderPass : public VkObjectWrapper {
|
|
|
|
private:
|
|
VkRenderPass vk;
|
|
|
|
Vulkan &vulkan;
|
|
|
|
public:
|
|
RenderPass(Vulkan &);
|
|
~RenderPass();
|
|
|
|
VkRenderPass getVk();
|
|
};
|
|
|
|
} // namespace progressia::desktop
|