mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-11-29 01:24:11 +01:00
167 lines
5.1 KiB
C++
167 lines
5.1 KiB
C++
#pragma once
|
|
|
|
#include "d3d9_adapter.h"
|
|
#include "d3d9_bridge.h"
|
|
#include "d3d9_interop.h"
|
|
|
|
#include "../dxvk/dxvk_instance.h"
|
|
|
|
namespace dxvk {
|
|
|
|
/**
|
|
* \brief D3D9 interface implementation
|
|
*
|
|
* Implements the IDirect3DDevice9Ex interfaces
|
|
* which provides the way to get adapters and create other objects such as \ref IDirect3DDevice9Ex.
|
|
* similar to \ref DxgiFactory but for D3D9.
|
|
*/
|
|
class D3D9InterfaceEx final : public ComObjectClamp<IDirect3D9Ex> {
|
|
|
|
public:
|
|
|
|
D3D9InterfaceEx(bool bExtended);
|
|
|
|
~D3D9InterfaceEx();
|
|
|
|
HRESULT STDMETHODCALLTYPE QueryInterface(REFIID riid, void** ppvObject);
|
|
|
|
HRESULT STDMETHODCALLTYPE RegisterSoftwareDevice(void* pInitializeFunction);
|
|
|
|
UINT STDMETHODCALLTYPE GetAdapterCount();
|
|
|
|
HRESULT STDMETHODCALLTYPE GetAdapterIdentifier(
|
|
UINT Adapter,
|
|
DWORD Flags,
|
|
D3DADAPTER_IDENTIFIER9* pIdentifier);
|
|
|
|
UINT STDMETHODCALLTYPE GetAdapterModeCount(UINT Adapter, D3DFORMAT Format);
|
|
|
|
HRESULT STDMETHODCALLTYPE GetAdapterDisplayMode(UINT Adapter, D3DDISPLAYMODE* pMode);
|
|
|
|
HRESULT STDMETHODCALLTYPE CheckDeviceType(
|
|
UINT Adapter,
|
|
D3DDEVTYPE DevType,
|
|
D3DFORMAT AdapterFormat,
|
|
D3DFORMAT BackBufferFormat,
|
|
BOOL bWindowed);
|
|
|
|
HRESULT STDMETHODCALLTYPE CheckDeviceFormat(
|
|
UINT Adapter,
|
|
D3DDEVTYPE DeviceType,
|
|
D3DFORMAT AdapterFormat,
|
|
DWORD Usage,
|
|
D3DRESOURCETYPE RType,
|
|
D3DFORMAT CheckFormat);
|
|
|
|
HRESULT STDMETHODCALLTYPE CheckDeviceMultiSampleType(
|
|
UINT Adapter,
|
|
D3DDEVTYPE DeviceType,
|
|
D3DFORMAT SurfaceFormat,
|
|
BOOL Windowed,
|
|
D3DMULTISAMPLE_TYPE MultiSampleType,
|
|
DWORD* pQualityLevels);
|
|
|
|
HRESULT STDMETHODCALLTYPE CheckDepthStencilMatch(
|
|
UINT Adapter,
|
|
D3DDEVTYPE DeviceType,
|
|
D3DFORMAT AdapterFormat,
|
|
D3DFORMAT RenderTargetFormat,
|
|
D3DFORMAT DepthStencilFormat);
|
|
|
|
HRESULT STDMETHODCALLTYPE CheckDeviceFormatConversion(
|
|
UINT Adapter,
|
|
D3DDEVTYPE DeviceType,
|
|
D3DFORMAT SourceFormat,
|
|
D3DFORMAT TargetFormat);
|
|
|
|
HRESULT STDMETHODCALLTYPE GetDeviceCaps(
|
|
UINT Adapter,
|
|
D3DDEVTYPE DeviceType,
|
|
D3DCAPS9* pCaps);
|
|
|
|
HMONITOR STDMETHODCALLTYPE GetAdapterMonitor(UINT Adapter);
|
|
|
|
HRESULT STDMETHODCALLTYPE CreateDevice(
|
|
UINT Adapter,
|
|
D3DDEVTYPE DeviceType,
|
|
HWND hFocusWindow,
|
|
DWORD BehaviorFlags,
|
|
D3DPRESENT_PARAMETERS* pPresentationParameters,
|
|
IDirect3DDevice9** ppReturnedDeviceInterface);
|
|
|
|
HRESULT STDMETHODCALLTYPE EnumAdapterModes(
|
|
UINT Adapter,
|
|
D3DFORMAT Format,
|
|
UINT Mode,
|
|
D3DDISPLAYMODE* pMode);
|
|
|
|
// Ex Methods
|
|
|
|
UINT STDMETHODCALLTYPE GetAdapterModeCountEx(UINT Adapter, CONST D3DDISPLAYMODEFILTER* pFilter);
|
|
|
|
HRESULT STDMETHODCALLTYPE EnumAdapterModesEx(
|
|
UINT Adapter,
|
|
const D3DDISPLAYMODEFILTER* pFilter,
|
|
UINT Mode,
|
|
D3DDISPLAYMODEEX* pMode);
|
|
|
|
HRESULT STDMETHODCALLTYPE GetAdapterDisplayModeEx(
|
|
UINT Adapter,
|
|
D3DDISPLAYMODEEX* pMode,
|
|
D3DDISPLAYROTATION* pRotation);
|
|
|
|
HRESULT STDMETHODCALLTYPE CreateDeviceEx(
|
|
UINT Adapter,
|
|
D3DDEVTYPE DeviceType,
|
|
HWND hFocusWindow,
|
|
DWORD BehaviorFlags,
|
|
D3DPRESENT_PARAMETERS* pPresentationParameters,
|
|
D3DDISPLAYMODEEX* pFullscreenDisplayMode,
|
|
IDirect3DDevice9Ex** ppReturnedDeviceInterface);
|
|
|
|
HRESULT STDMETHODCALLTYPE GetAdapterLUID(UINT Adapter, LUID* pLUID);
|
|
|
|
HRESULT ValidatePresentationParameters(D3DPRESENT_PARAMETERS* pPresentationParameters);
|
|
|
|
const D3D9Options& GetOptions() { return m_d3d9Options; }
|
|
|
|
D3D9Adapter* GetAdapter(UINT Ordinal) {
|
|
return Ordinal < m_adapters.size()
|
|
? &m_adapters[Ordinal]
|
|
: nullptr;
|
|
}
|
|
|
|
bool IsExtended() { return m_extended; }
|
|
|
|
bool IsD3D8Compatible() const {
|
|
return m_isD3D8Compatible;
|
|
}
|
|
|
|
void SetD3D8CompatibilityMode(bool compatMode) {
|
|
if (compatMode)
|
|
Logger::info("The D3D9 interface is now operating in D3D8 compatibility mode.");
|
|
|
|
m_isD3D8Compatible = compatMode;
|
|
}
|
|
|
|
Rc<DxvkInstance> GetInstance() { return m_instance; }
|
|
|
|
private:
|
|
|
|
Rc<DxvkInstance> m_instance;
|
|
|
|
DxvkD3D8InterfaceBridge m_d3d8Bridge;
|
|
|
|
bool m_extended;
|
|
|
|
bool m_isD3D8Compatible = false;
|
|
|
|
D3D9Options m_d3d9Options;
|
|
|
|
std::vector<D3D9Adapter> m_adapters;
|
|
|
|
D3D9VkInteropInterface m_d3d9Interop;
|
|
|
|
};
|
|
|
|
} |