summaryrefslogtreecommitdiff
path: root/source/modules/asura-core/graphics/vertex_buffer.cpp
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2019-07-31 21:35:12 +0800
committerchai <chaifix@163.com>2019-07-31 21:35:12 +0800
commit084623519e95f0ab0cf4bc328b5fa736d679c5bd (patch)
tree9d409dceda50335e9fb881fc5107c9c1c561f988 /source/modules/asura-core/graphics/vertex_buffer.cpp
parent012a44bd13ab41d056e7d3884a39027b6cea62b5 (diff)
*修改名称空间风格
Diffstat (limited to 'source/modules/asura-core/graphics/vertex_buffer.cpp')
-rw-r--r--source/modules/asura-core/graphics/vertex_buffer.cpp24
1 files changed, 11 insertions, 13 deletions
diff --git a/source/modules/asura-core/graphics/vertex_buffer.cpp b/source/modules/asura-core/graphics/vertex_buffer.cpp
index 437bd48..7fcd3d4 100644
--- a/source/modules/asura-core/graphics/vertex_buffer.cpp
+++ b/source/modules/asura-core/graphics/vertex_buffer.cpp
@@ -1,18 +1,16 @@
#include "vertex_buffer.h"
-namespace AsuraEngine
-{
- namespace Graphics
- {
-
- VertexBuffer::VertexBuffer(BufferUsage usage, BufferDataType datatype, size_t size)
- : GPUBuffer(BUFFER_TYPE_VERTEX, usage, datatype, size)
- {
- }
+namespace_begin(AsuraEngine)
+namespace_begin(Graphics)
- VertexBuffer::~VertexBuffer()
- {
- }
+VertexBuffer::VertexBuffer(BufferUsage usage, BufferDataType datatype, size_t size)
+ : GPUBuffer(BUFFER_TYPE_VERTEX, usage, datatype, size)
+{
+}
- }
+VertexBuffer::~VertexBuffer()
+{
}
+
+namespace_end
+namespace_end