65 lines
2.2 KiB
C++
65 lines
2.2 KiB
C++
/*
|
|
* All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or
|
|
* its licensors.
|
|
*
|
|
* For complete copyright and license terms please see the LICENSE at the root of this
|
|
* distribution (the "License"). All use of this software is governed by the License,
|
|
* or, if provided, by the license below or the license accompanying this file. Do not
|
|
* remove or modify any license notices. This file is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
*
|
|
*/
|
|
// Original file Copyright Crytek GMBH or its affiliates, used under license.
|
|
|
|
#pragma once
|
|
#ifndef __CCRYDX12RENDERTARGETVIEW__
|
|
#define __CCRYDX12RENDERTARGETVIEW__
|
|
|
|
#include "DX12/Resource/CCryDX12View.hpp"
|
|
|
|
class CCryDX12RenderTargetView
|
|
: public CCryDX12View<ID3D11RenderTargetView>
|
|
{
|
|
public:
|
|
DX12_OBJECT(CCryDX12RenderTargetView, CCryDX12View<ID3D11RenderTargetView>);
|
|
|
|
static CCryDX12RenderTargetView* Create(CCryDX12Device* pDevice, ID3D11Resource* pResource, const D3D11_RENDER_TARGET_VIEW_DESC* pDesc);
|
|
|
|
virtual ~CCryDX12RenderTargetView();
|
|
|
|
#pragma region /* ID3D11RenderTargetView implementation */
|
|
|
|
virtual void STDMETHODCALLTYPE GetDesc(
|
|
_Out_ D3D11_RENDER_TARGET_VIEW_DESC* pDesc) final
|
|
{
|
|
if (pDesc)
|
|
{
|
|
*pDesc = m_Desc11;
|
|
}
|
|
}
|
|
|
|
#pragma endregion
|
|
|
|
template<class T>
|
|
void BeginResourceStateTransition([[maybe_unused]] T* pCmdList)
|
|
{
|
|
//pCmdList->QueueTransitionBarrierBegin(GetDX12View().GetDX12Resource(), D3D12_RESOURCE_STATE_RENDER_TARGET);
|
|
}
|
|
|
|
template<class T>
|
|
void EndResourceStateTransition(T* pCmdList)
|
|
{
|
|
pCmdList->QueueTransitionBarrier(GetDX12View().GetDX12Resource(), D3D12_RESOURCE_STATE_RENDER_TARGET);
|
|
}
|
|
|
|
protected:
|
|
CCryDX12RenderTargetView(ID3D11Resource* pResource11, const D3D11_RENDER_TARGET_VIEW_DESC& rDesc11, ID3D12Resource* pResource12, const D3D12_RENDER_TARGET_VIEW_DESC& rDesc12);
|
|
|
|
CCryDX12RenderTargetView(ID3D11Resource* pResource11, const D3D11_RENDER_TARGET_VIEW_DESC& rDesc11, ID3D12Resource* pResource12);
|
|
|
|
private:
|
|
D3D11_RENDER_TARGET_VIEW_DESC m_Desc11;
|
|
};
|
|
|
|
#endif // __CCRYDX12RENDERTARGETVIEW__
|