mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2025-02-17 20:31:57 -05:00
Merge pull request #281 from dariomanesku/master
Added missing toggleFullscreen() in entry_windows.cpp.
This commit is contained in:
commit
3b2d636744
1 changed files with 5 additions and 0 deletions
|
@ -1067,6 +1067,11 @@ namespace entry
|
|||
PostMessage(s_ctx.m_hwnd[0], WM_USER_WINDOW_TOGGLE_FRAME, _handle.idx, 0);
|
||||
}
|
||||
|
||||
void toggleFullscreen(WindowHandle _handle)
|
||||
{
|
||||
BX_UNUSED(_handle);
|
||||
}
|
||||
|
||||
void setMouseLock(WindowHandle _handle, bool _lock)
|
||||
{
|
||||
PostMessage(s_ctx.m_hwnd[0], WM_USER_WINDOW_MOUSE_LOCK, _handle.idx, _lock);
|
||||
|
|
Loading…
Reference in a new issue