mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2025-02-17 20:31:57 -05:00
Merge pull request #344 from MikePopoloski/master
This MakeWindowAssociation block got moved to the wrong branch of #if.
This commit is contained in:
commit
feafe43c35
1 changed files with 5 additions and 5 deletions
|
@ -685,11 +685,6 @@ BX_PRAGMA_DIAGNOSTIC_POP();
|
||||||
, &m_swapChain
|
, &m_swapChain
|
||||||
);
|
);
|
||||||
BGFX_FATAL(SUCCEEDED(hr), Fatal::UnableToInitialize, "Failed to create swap chain.");
|
BGFX_FATAL(SUCCEEDED(hr), Fatal::UnableToInitialize, "Failed to create swap chain.");
|
||||||
|
|
||||||
DX_CHECK(m_factory->MakeWindowAssociation(g_bgfxHwnd, 0
|
|
||||||
| DXGI_MWA_NO_WINDOW_CHANGES
|
|
||||||
| DXGI_MWA_NO_ALT_ENTER
|
|
||||||
) );
|
|
||||||
#else
|
#else
|
||||||
hr = adapter->GetParent(IID_IDXGIFactory, (void**)&m_factory);
|
hr = adapter->GetParent(IID_IDXGIFactory, (void**)&m_factory);
|
||||||
BGFX_FATAL(SUCCEEDED(hr), Fatal::UnableToInitialize, "Unable to create Direct3D11 device.");
|
BGFX_FATAL(SUCCEEDED(hr), Fatal::UnableToInitialize, "Unable to create Direct3D11 device.");
|
||||||
|
@ -713,6 +708,11 @@ BX_PRAGMA_DIAGNOSTIC_POP();
|
||||||
, &m_swapChain
|
, &m_swapChain
|
||||||
);
|
);
|
||||||
BGFX_FATAL(SUCCEEDED(hr), Fatal::UnableToInitialize, "Failed to create swap chain.");
|
BGFX_FATAL(SUCCEEDED(hr), Fatal::UnableToInitialize, "Failed to create swap chain.");
|
||||||
|
|
||||||
|
DX_CHECK(m_factory->MakeWindowAssociation(g_bgfxHwnd, 0
|
||||||
|
| DXGI_MWA_NO_WINDOW_CHANGES
|
||||||
|
| DXGI_MWA_NO_ALT_ENTER
|
||||||
|
) );
|
||||||
#endif // BX_PLATFORM_WINRT
|
#endif // BX_PLATFORM_WINRT
|
||||||
|
|
||||||
m_numWindows = 1;
|
m_numWindows = 1;
|
||||||
|
|
Loading…
Reference in a new issue