mirror of
https://github.com/bkaradzic/bgfx.git
synced 2026-02-17 20:52:36 +01:00
Cleanup.
This commit is contained in:
@@ -831,7 +831,7 @@ namespace entry
|
||||
|
||||
WindowHandle findHandle(HWND _hwnd)
|
||||
{
|
||||
bx::LwMutexScope scope(m_lock);
|
||||
bx::MutexScope scope(m_lock);
|
||||
for (uint16_t ii = 0, num = m_windowAlloc.getNumHandles(); ii < num; ++ii)
|
||||
{
|
||||
uint16_t idx = m_windowAlloc.getHandleAt(ii);
|
||||
@@ -969,7 +969,7 @@ namespace entry
|
||||
static LRESULT CALLBACK wndProc(HWND _hwnd, UINT _id, WPARAM _wparam, LPARAM _lparam);
|
||||
|
||||
EventQueue m_eventQueue;
|
||||
bx::LwMutex m_lock;
|
||||
bx::Mutex m_lock;
|
||||
|
||||
bx::HandleAllocT<ENTRY_CONFIG_MAX_WINDOWS> m_windowAlloc;
|
||||
|
||||
@@ -1020,7 +1020,7 @@ namespace entry
|
||||
|
||||
WindowHandle createWindow(int32_t _x, int32_t _y, uint32_t _width, uint32_t _height, uint32_t _flags, const char* _title)
|
||||
{
|
||||
bx::LwMutexScope scope(s_ctx.m_lock);
|
||||
bx::MutexScope scope(s_ctx.m_lock);
|
||||
WindowHandle handle = { s_ctx.m_windowAlloc.alloc() };
|
||||
|
||||
if (UINT16_MAX != handle.idx)
|
||||
@@ -1044,7 +1044,7 @@ namespace entry
|
||||
{
|
||||
PostMessage(s_ctx.m_hwnd[0], WM_USER_WINDOW_DESTROY, _handle.idx, 0);
|
||||
|
||||
bx::LwMutexScope scope(s_ctx.m_lock);
|
||||
bx::MutexScope scope(s_ctx.m_lock);
|
||||
s_ctx.m_windowAlloc.free(_handle.idx);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user