Plasma Engine  2.0
Loading...
Searching...
No Matches
RenderTargetSetup_inl.h
1
2#pragma once
3
4plUInt8 plGALRenderTargetSetup::GetRenderTargetCount() const
5{
6 return m_uiRTCount;
7}
8
9plGALRenderTargetViewHandle plGALRenderTargetSetup::GetRenderTarget(plUInt8 uiIndex) const
10{
11 PL_ASSERT_DEBUG(uiIndex < m_uiRTCount, "Render target index out of range");
12
13 return m_hRTs[uiIndex];
14}
15
16plGALRenderTargetViewHandle plGALRenderTargetSetup::GetDepthStencilTarget() const
17{
18 return m_hDSTarget;
19}
Definition RendererFoundationDLL.h:453