mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
VideoBackends: add support to allow rendering to multiple output textures
This commit is contained in:
@ -41,7 +41,8 @@ void StateManager::Apply()
|
||||
m_pending.framebuffer->GetNumRTVs(),
|
||||
m_pending.use_integer_rtv ? m_pending.framebuffer->GetIntegerRTVArray() :
|
||||
m_pending.framebuffer->GetRTVArray(),
|
||||
m_pending.framebuffer->GetDSV(), 2, 1, &m_pending.uav, nullptr);
|
||||
m_pending.framebuffer->GetDSV(), m_pending.framebuffer->GetNumRTVs() + 1, 1,
|
||||
&m_pending.uav, nullptr);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Reference in New Issue
Block a user