Disable DXGI handling of ALT+ENTER

We manage fullscreen ourselves.
This commit is contained in:
Connor McLaughlin
2020-02-24 18:19:20 +09:00
parent bfdf343dfe
commit c68d188029
2 changed files with 9 additions and 1 deletions

View File

@ -241,6 +241,10 @@ bool D3D11DisplayWindow::createDeviceContext(QThread* worker_thread, bool debug_
}
}
hr = dxgi_factory->MakeWindowAssociation(swap_chain_desc.OutputWindow, DXGI_MWA_NO_WINDOW_CHANGES);
if (FAILED(hr))
Log_WarningPrintf("MakeWindowAssociation() to disable ALT+ENTER failed");
if (debug_device)
{
ComPtr<ID3D11InfoQueue> info;