Fixing missing includes
This commit is contained in:
@@ -10,11 +10,11 @@ struct FramebufferDescription {
|
||||
StaticArray<VkImageView, 16> inputAttachments;
|
||||
StaticArray<VkImageView, 16> colorAttachments;
|
||||
StaticArray<VkImageView, 16> resolveAttachments;
|
||||
VkImageView depthAttachment;
|
||||
VkImageView depthResolveAttachment;
|
||||
uint32 numInputAttachments;
|
||||
uint32 numColorAttachments;
|
||||
uint32 numResolveAttachments;
|
||||
VkImageView depthAttachment = VK_NULL_HANDLE;
|
||||
VkImageView depthResolveAttachment = VK_NULL_HANDLE;
|
||||
uint32 numInputAttachments = 0;
|
||||
uint32 numColorAttachments = 0;
|
||||
uint32 numResolveAttachments = 0;
|
||||
};
|
||||
class Framebuffer {
|
||||
public:
|
||||
|
||||
Reference in New Issue
Block a user