70 lines
1.6 KiB
C++
70 lines
1.6 KiB
C++
#ifndef HGL_GRAPH_VULKAN_PRIMITIVE_INCLUDE
|
|
#define HGL_GRAPH_VULKAN_PRIMITIVE_INCLUDE
|
|
|
|
#include<hgl/graph/VKIndexBuffer.h>
|
|
#include<hgl/type/Map.h>
|
|
#include<hgl/type/String.h>
|
|
#include<hgl/math/Math.h>
|
|
#include<hgl/graph/AABB.h>
|
|
VK_NAMESPACE_BEGIN
|
|
/**
|
|
* 单一图元数据
|
|
*/
|
|
class Primitive
|
|
{
|
|
GPUDevice *device;
|
|
AnsiString prim_name;
|
|
|
|
VBOAccessMap buffer_list;
|
|
|
|
protected:
|
|
|
|
uint32_t vertex_count;
|
|
|
|
IndexBufferData index_buffer_data;
|
|
|
|
protected:
|
|
|
|
AABB BoundingBox;
|
|
|
|
protected:
|
|
|
|
friend class RenderableNode;
|
|
|
|
uint ref_count=0;
|
|
|
|
uint RefInc(){return ++ref_count;}
|
|
uint RefDec(){return --ref_count;}
|
|
|
|
public:
|
|
|
|
Primitive(GPUDevice *dev,const AnsiString &n,const uint32_t vc=0)
|
|
{
|
|
device=dev;
|
|
prim_name=n;
|
|
vertex_count=vc;
|
|
}
|
|
|
|
virtual ~Primitive()=default;
|
|
|
|
const uint GetRefCount()const{return ref_count;}
|
|
|
|
void SetBoundingBox(const AABB &aabb){BoundingBox=aabb;}
|
|
const AABB & GetBoundingBox()const {return BoundingBox;}
|
|
|
|
bool Set(const AnsiString &name,VBO *vb,VkDeviceSize offset=0);
|
|
|
|
bool Set(IndexBuffer *ib,VkDeviceSize offset=0);
|
|
|
|
public:
|
|
|
|
const uint32_t GetVertexCount ()const {return vertex_count;}
|
|
|
|
VBO * GetVBO (const AnsiString &,VkDeviceSize *);
|
|
const int GetBufferCount ()const {return buffer_list.GetCount();}
|
|
|
|
const IndexBufferData * GetIndexBufferData ()const {return &index_buffer_data;}
|
|
};//class Primitive
|
|
VK_NAMESPACE_END
|
|
#endif//HGL_GRAPH_VULKAN_PRIMITIVE_INCLUDE
|