feat(engine): basic attribute implementation
This commit is contained in:
25
src/Engine/Types.h
Normal file
25
src/Engine/Types.h
Normal file
@@ -0,0 +1,25 @@
|
||||
#pragma once
|
||||
|
||||
namespace enzo
|
||||
{
|
||||
|
||||
namespace ga
|
||||
{
|
||||
enum class AttributeOwner
|
||||
{
|
||||
POINT,
|
||||
VERTEX,
|
||||
PRIMITIVE,
|
||||
GLOBAL
|
||||
};
|
||||
enum class AttributeType
|
||||
{
|
||||
intT,
|
||||
floatT,
|
||||
listT,
|
||||
vectorT,
|
||||
};
|
||||
using AttrType = AttributeType;
|
||||
using AttrOwner = AttributeOwner;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user