Files
Towards/external/loft/modules/base/include/shaders/VertexBinding.h
T

14 lines
245 B
C
Raw Normal View History

2026-07-18 14:31:15 +02:00
#pragma once
#include <volk.h>
struct VertexBinding {
uint32_t binding;
uint32_t stride;
VkVertexInputRate inputRate;
VkVertexInputBindingDescription get_vk() {
return *(VkVertexInputBindingDescription*)this;
}
};