diff options
author | chai <chaifix@163.com> | 2021-10-28 01:52:12 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-10-28 01:52:12 +0800 |
commit | 80dca084b568e4e77d2a4031ce8625cdabc660ab (patch) | |
tree | d8c0172aeddca648ec89cbbbda72a938f3ef7433 /Runtime/Graphics/Primitive.h | |
parent | 1b6f71b2777bdc74d63f988346a8cfee766718b0 (diff) |
+ custom vertex buffer
Diffstat (limited to 'Runtime/Graphics/Primitive.h')
-rw-r--r-- | Runtime/Graphics/Primitive.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Runtime/Graphics/Primitive.h b/Runtime/Graphics/Primitive.h new file mode 100644 index 0000000..6636221 --- /dev/null +++ b/Runtime/Graphics/Primitive.h @@ -0,0 +1,8 @@ +#pragma once + +enum EPrimitive +{ + Primitive_Triangle = 1, + Primitive_Line = 2, + Primitive_Point = 3, +}; |