summaryrefslogtreecommitdiff
path: root/source/modules/asura-core/Graphics/VertexBuffer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/modules/asura-core/Graphics/VertexBuffer.cpp')
-rw-r--r--source/modules/asura-core/Graphics/VertexBuffer.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/source/modules/asura-core/Graphics/VertexBuffer.cpp b/source/modules/asura-core/Graphics/VertexBuffer.cpp
new file mode 100644
index 0000000..c44e9be
--- /dev/null
+++ b/source/modules/asura-core/Graphics/VertexBuffer.cpp
@@ -0,0 +1,16 @@
+#include "VertexBuffer.h"
+
+namespace_begin(AsuraEngine)
+namespace_begin(Graphics)
+
+VertexBuffer::VertexBuffer(BufferUsage usage, BufferDataType datatype, size_t size)
+ : GPUBuffer(BUFFER_TYPE_VERTEX, usage, datatype, size)
+{
+}
+
+VertexBuffer::~VertexBuffer()
+{
+}
+
+namespace_end
+namespace_end