diff options
author | chai <chaifix@163.com> | 2021-11-01 10:43:51 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-11-01 10:43:51 +0800 |
commit | 78417f6cdedfcf60c8ca437190975644e942e01f (patch) | |
tree | 5140fe969fe70083d20096b030dc9e944f82a5c3 /Runtime/Graphics/GfxDevice.h | |
parent | 8078aeed4e62c6b3aa48102554044768b402570c (diff) |
*rename SharedVertexBuffer -> DynamicVertexBuffer
Diffstat (limited to 'Runtime/Graphics/GfxDevice.h')
-rw-r--r-- | Runtime/Graphics/GfxDevice.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Runtime/Graphics/GfxDevice.h b/Runtime/Graphics/GfxDevice.h index 68cd6c0..437696a 100644 --- a/Runtime/Graphics/GfxDevice.h +++ b/Runtime/Graphics/GfxDevice.h @@ -13,7 +13,7 @@ #include "Texture.h" #include "DeviceDefine.h" #include "VertexBuffer.h" -#include "SharedVertexBuffer.h" +#include "DynamicVertexBuffer.h" #include "Color.h" struct GfxDeviceSetting @@ -77,7 +77,7 @@ public: bool IsInsideFrame(); - SharedVertexBuffer* GetSharedVBO() { return &m_SharedVBO; } + DynamicVertexBuffer* GetSharedVBO() { return &m_DynamicVBO; } GET_SET(Internal::Color, ClearColor, m_ClearColor); GET_SET(ETextureFilterMode, DefaultFilterMode, m_DefaultFilterMode); @@ -100,7 +100,7 @@ private: ETextureFilterMode m_DefaultFilterMode; ETextureWrapMode m_DefaultWrapMode; - SharedVertexBuffer m_SharedVBO; // 共享的VBO,用来做立即渲染 + DynamicVertexBuffer m_DynamicVBO; // 共享的VBO,用来做立即渲染 }; |