mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
wip dummy window for swapchain composition shenanigans
This commit is contained in:
parent
357484bd4b
commit
ba70ff9b62
1 changed files with 27 additions and 3 deletions
|
@ -327,15 +327,39 @@ namespace dxvk {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
LRESULT CALLBACK WindowProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) {
|
||||||
|
switch (message) {
|
||||||
|
case WM_CLOSE:
|
||||||
|
PostQuitMessage(0);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
return DefWindowProcW(hWnd, message, wParam, lParam);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
HRESULT STDMETHODCALLTYPE DxgiFactory::CreateSwapChainForComposition(
|
HRESULT STDMETHODCALLTYPE DxgiFactory::CreateSwapChainForComposition(
|
||||||
IUnknown* pDevice,
|
IUnknown* pDevice,
|
||||||
const DXGI_SWAP_CHAIN_DESC1* pDesc,
|
const DXGI_SWAP_CHAIN_DESC1* pDesc,
|
||||||
IDXGIOutput* pRestrictToOutput,
|
IDXGIOutput* pRestrictToOutput,
|
||||||
IDXGISwapChain1** ppSwapChain) {
|
IDXGISwapChain1** ppSwapChain) {
|
||||||
InitReturnPtr(ppSwapChain);
|
InitReturnPtr(ppSwapChain);
|
||||||
|
|
||||||
Logger::err("DxgiFactory::CreateSwapChainForComposition: Not implemented");
|
WNDCLASSEXW wc = { };
|
||||||
return E_NOTIMPL;
|
wc.cbSize = sizeof(wc);
|
||||||
|
wc.style = CS_HREDRAW | CS_VREDRAW;
|
||||||
|
wc.lpfnWndProc = WindowProc;
|
||||||
|
wc.hInstance = GetModuleHandle(NULL);
|
||||||
|
wc.hCursor = LoadCursor(nullptr, IDC_ARROW);
|
||||||
|
wc.hbrBackground = HBRUSH(COLOR_WINDOW);
|
||||||
|
wc.lpszClassName = L"WindowClass";
|
||||||
|
RegisterClassExW(&wc);
|
||||||
|
|
||||||
|
HWND hWnd = CreateWindowExW(0, L"WindowClass", L"D3D11 triangle",
|
||||||
|
WS_OVERLAPPEDWINDOW, 300, 300, 1024, 600,
|
||||||
|
nullptr, nullptr, wc.hInstance, nullptr);
|
||||||
|
|
||||||
|
return CreateSwapChainForHwndBase(pDevice, hWnd, pDesc, nullptr, pRestrictToOutput, ppSwapChain);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue