10 lines
151 B
C++
10 lines
151 B
C++
#pragma once
|
|
|
|
#include <volk.h>
|
|
|
|
struct RenderPassLayout {
|
|
VkRenderPass renderpass;
|
|
VkDescriptorSetLayout setLayout[4];
|
|
VkPipelineLayout layout;
|
|
};
|