mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-12-14 00:48:44 +01:00
54ed8f0bb0
Co-authored-by: Philip Rebohle <philip.rebohle@tu-dortmund.de> Co-authored-by: Robin Kertels <robin.kertels@gmail.com> Co-authored-by: pchome <pchome@users.noreply.github.com> Co-authored-by: Christopher Egert <cme3000@gmail.com> Co-authored-by: Derek Lesho <dereklesho52@Gmail.com> Co-authored-by: Luis Cáceres <lacaceres97@gmail.com> Co-authored-by: Nelson Chen <crazysim@gmail.com> Co-authored-by: Edmondo Tommasina <edmondo.tommasina@gmail.com> Co-authored-by: Riesi <riesi@opentrash.com> Co-authored-by: gbMichelle <gbmichelle.dev@gmail.com>
148 lines
4.6 KiB
C++
148 lines
4.6 KiB
C++
#pragma once
|
|
|
|
#include "d3d9_adapter.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);
|
|
|
|
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);
|
|
|
|
const D3D9Options& GetOptions() { return m_d3d9Options; }
|
|
|
|
D3D9Adapter* GetAdapter(UINT Ordinal) {
|
|
return Ordinal < m_adapters.size()
|
|
? &m_adapters[Ordinal]
|
|
: nullptr;
|
|
}
|
|
|
|
bool IsExtended() { return m_extended; }
|
|
|
|
Rc<DxvkInstance> GetInstance() { return m_instance; }
|
|
|
|
private:
|
|
|
|
void CacheModes(D3D9Format Format);
|
|
|
|
static const char* GetDriverDllName(DxvkGpuVendor vendor);
|
|
|
|
Rc<DxvkInstance> m_instance;
|
|
|
|
bool m_extended;
|
|
|
|
D3D9Options m_d3d9Options;
|
|
|
|
std::vector<D3D9Adapter> m_adapters;
|
|
|
|
};
|
|
|
|
} |