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,6 +327,17 @@ 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(
|
||||
IUnknown* pDevice,
|
||||
const DXGI_SWAP_CHAIN_DESC1* pDesc,
|
||||
|
@ -334,8 +345,21 @@ namespace dxvk {
|
|||
IDXGISwapChain1** ppSwapChain) {
|
||||
InitReturnPtr(ppSwapChain);
|
||||
|
||||
Logger::err("DxgiFactory::CreateSwapChainForComposition: Not implemented");
|
||||
return E_NOTIMPL;
|
||||
WNDCLASSEXW wc = { };
|
||||
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