mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-01-19 05:52:11 +01:00
46 lines
1.3 KiB
C++
46 lines
1.3 KiB
C++
|
#include "d3d11_device.h"
|
||
|
#include "d3d11_view_rtv.h"
|
||
|
|
||
|
namespace dxvk {
|
||
|
|
||
|
D3D11RenderTargetView::D3D11RenderTargetView(
|
||
|
D3D11Device* device,
|
||
|
ID3D11Resource* resource,
|
||
|
const D3D11_RENDER_TARGET_VIEW_DESC& desc,
|
||
|
const Rc<DxvkImageView>& view)
|
||
|
: m_device(device), m_resource(resource),
|
||
|
m_desc(desc), m_view(view) { }
|
||
|
|
||
|
|
||
|
D3D11RenderTargetView::~D3D11RenderTargetView() {
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
HRESULT STDMETHODCALLTYPE D3D11RenderTargetView::QueryInterface(REFIID riid, void** ppvObject) {
|
||
|
COM_QUERY_IFACE(riid, ppvObject, IUnknown);
|
||
|
COM_QUERY_IFACE(riid, ppvObject, ID3D11DeviceChild);
|
||
|
COM_QUERY_IFACE(riid, ppvObject, ID3D11View);
|
||
|
COM_QUERY_IFACE(riid, ppvObject, ID3D11RenderTargetView);
|
||
|
|
||
|
Logger::warn("D3D11RenderTargetView::QueryInterface: Unknown interface query");
|
||
|
return E_NOINTERFACE;
|
||
|
}
|
||
|
|
||
|
|
||
|
void STDMETHODCALLTYPE D3D11RenderTargetView::GetDevice(ID3D11Device** ppDevice) {
|
||
|
*ppDevice = m_device.ref();
|
||
|
}
|
||
|
|
||
|
|
||
|
void STDMETHODCALLTYPE D3D11RenderTargetView::GetResource(ID3D11Resource** ppResource) {
|
||
|
*ppResource = m_resource.ref();
|
||
|
}
|
||
|
|
||
|
|
||
|
void STDMETHODCALLTYPE D3D11RenderTargetView::GetDesc(D3D11_RENDER_TARGET_VIEW_DESC* pDesc) {
|
||
|
*pDesc = m_desc;
|
||
|
}
|
||
|
|
||
|
}
|