diff options
author | chai <chaifix@163.com> | 2021-10-27 19:30:06 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-10-27 19:30:06 +0800 |
commit | 51ced5a191078ce4ef08d57e343e91db007f556f (patch) | |
tree | 72dce341b2019e5b14c789a9edfb47d5b31900a6 /Runtime/Graphics/Device.cpp | |
parent | e6a15decac22912900d2cbd2e5525229b92bb55a (diff) |
*misc
Diffstat (limited to 'Runtime/Graphics/Device.cpp')
-rw-r--r-- | Runtime/Graphics/Device.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Runtime/Graphics/Device.cpp b/Runtime/Graphics/Device.cpp index 8136a54..9ba2e23 100644 --- a/Runtime/Graphics/Device.cpp +++ b/Runtime/Graphics/Device.cpp @@ -16,7 +16,7 @@ Device::~Device() void Device::Initialize(DeviceSetting& setting) { - GPU::BufferPool::Instance()->Initialize(); + //GPU::BufferPool::Instance()->Initialize(); } void Device::Enable(DeviceEnable enabled) @@ -72,7 +72,7 @@ void Device::BeginFrame() void Device::EndFrame() { - GPU::BufferPool::Instance()->OnEndFrame(); + //GPU::BufferPool::Instance()->OnEndFrame(); m_IsInsideFrame = false; } |