#pragma once #include #include #include "dxgi_adapter.h" namespace dxvk { class DxgiFactory : public DxgiObject { public: DxgiFactory(); ~DxgiFactory(); HRESULT QueryInterface( REFIID riid, void** ppvObject) final; HRESULT GetParent( REFIID riid, void** ppParent) final; HRESULT CreateSoftwareAdapter( HMODULE Module, IDXGIAdapter** ppAdapter) final; HRESULT CreateSwapChain( IUnknown* pDevice, DXGI_SWAP_CHAIN_DESC* pDesc, IDXGISwapChain** ppSwapChain) final; HRESULT EnumAdapters( UINT Adapter, IDXGIAdapter** ppAdapter) final; HRESULT GetWindowAssociation( HWND *pWindowHandle) final; HRESULT MakeWindowAssociation( HWND WindowHandle, UINT Flags) final; private: Rc m_instance; std::vector> m_adapters; HWND m_associatedWindow = nullptr; }; }