mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-12-14 00:48:44 +01:00
84 lines
1.8 KiB
C
84 lines
1.8 KiB
C
|
#pragma once
|
||
|
|
||
|
#include "d3d9_device_child.h"
|
||
|
|
||
|
#include "../util/com/com_private_data.h"
|
||
|
|
||
|
namespace dxvk {
|
||
|
|
||
|
template <typename... Type>
|
||
|
class D3D9Resource : public D3D9DeviceChild<Type...> {
|
||
|
|
||
|
public:
|
||
|
|
||
|
D3D9Resource(D3D9DeviceEx* pDevice)
|
||
|
: D3D9DeviceChild<Type...>(pDevice)
|
||
|
, m_priority ( 0 ) { }
|
||
|
|
||
|
HRESULT STDMETHODCALLTYPE SetPrivateData(
|
||
|
REFGUID refguid,
|
||
|
const void* pData,
|
||
|
DWORD SizeOfData,
|
||
|
DWORD Flags) final {
|
||
|
HRESULT hr;
|
||
|
if (Flags & D3DSPD_IUNKNOWN) {
|
||
|
IUnknown* unknown =
|
||
|
const_cast<IUnknown*>(
|
||
|
reinterpret_cast<const IUnknown*>(pData));
|
||
|
hr = m_privateData.setInterface(
|
||
|
refguid, unknown);
|
||
|
}
|
||
|
else
|
||
|
hr = m_privateData.setData(
|
||
|
refguid, SizeOfData, pData);
|
||
|
|
||
|
if (FAILED(hr))
|
||
|
return D3DERR_INVALIDCALL;
|
||
|
|
||
|
return D3D_OK;
|
||
|
}
|
||
|
|
||
|
HRESULT STDMETHODCALLTYPE GetPrivateData(
|
||
|
REFGUID refguid,
|
||
|
void* pData,
|
||
|
DWORD* pSizeOfData) final {
|
||
|
HRESULT hr = m_privateData.getData(
|
||
|
refguid, reinterpret_cast<UINT*>(pSizeOfData), pData);
|
||
|
|
||
|
if (FAILED(hr))
|
||
|
return D3DERR_INVALIDCALL;
|
||
|
|
||
|
return D3D_OK;
|
||
|
}
|
||
|
|
||
|
HRESULT STDMETHODCALLTYPE FreePrivateData(REFGUID refguid) final {
|
||
|
HRESULT hr = m_privateData.setData(refguid, 0, nullptr);
|
||
|
|
||
|
if (FAILED(hr))
|
||
|
return D3DERR_INVALIDCALL;
|
||
|
|
||
|
return D3D_OK;
|
||
|
}
|
||
|
|
||
|
DWORD STDMETHODCALLTYPE SetPriority(DWORD PriorityNew) {
|
||
|
DWORD oldPriority = m_priority;
|
||
|
m_priority = PriorityNew;
|
||
|
return oldPriority;
|
||
|
}
|
||
|
|
||
|
DWORD STDMETHODCALLTYPE GetPriority() {
|
||
|
return m_priority;
|
||
|
}
|
||
|
|
||
|
|
||
|
protected:
|
||
|
|
||
|
DWORD m_priority;
|
||
|
|
||
|
private:
|
||
|
|
||
|
ComPrivateData m_privateData;
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|