summaryrefslogtreecommitdiff
path: root/source/modules/asura-core/graphics/index_buffer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/modules/asura-core/graphics/index_buffer.cpp')
-rw-r--r--source/modules/asura-core/graphics/index_buffer.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/source/modules/asura-core/graphics/index_buffer.cpp b/source/modules/asura-core/graphics/index_buffer.cpp
index e69de29..fd0295d 100644
--- a/source/modules/asura-core/graphics/index_buffer.cpp
+++ b/source/modules/asura-core/graphics/index_buffer.cpp
@@ -0,0 +1,18 @@
+#include "index_buffer.h"
+
+namespace AsuraEngine
+{
+ namespace Graphics
+ {
+
+ IndexBuffer::IndexBuffer(BufferUsage usage, BufferDataType datatype, size_t size)
+ : GPUBuffer(BUFFER_TYPE_INDEX, usage, datatype, size)
+ {
+ }
+
+ IndexBuffer::~IndexBuffer()
+ {
+ }
+
+ }
+}