ULRE/inc/hgl/graph/VKPrimitiveData.h
2024-04-26 01:17:47 +08:00

23 lines
319 B
C

#pragma once
#include<hgl/graph/VKVertexAttribBuffer.h>
#include<hgl/graph/VKIndexBuffer.h>
#include<hgl/graph/AABB.h>
VK_NAMESPACE_BEGIN
struct PrimitiveData
{
uint32_t vertex_count;
uint32_t va_count;
VABAccess *vab_list;
IndexBufferAccess ib_access;
AABB BoundingBox;
};
VK_NAMESPACE_END