#pragma once #include #include struct VertexAttribute { uint32_t location; uint32_t binding; VkFormat format; uint32_t offset; VkVertexInputAttributeDescription get_vk() { return *(VkVertexInputAttributeDescription*)this; } };