mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-08-30 07:25:05 +00:00
allow null depth stencil render targets
This commit is contained in:
parent
eb7ec713ec
commit
0abbbdc277
1 changed files with 3 additions and 0 deletions
|
|
@ -298,6 +298,9 @@ namespace Ryujinx.Graphics.Metal
|
|||
if (depthStencil is Texture depthTexture)
|
||||
{
|
||||
_currentState.DepthStencil = depthTexture;
|
||||
} else if (depthStencil == null)
|
||||
{
|
||||
_currentState.DepthStencil = null;
|
||||
}
|
||||
|
||||
// Requires recreating pipeline
|
||||
|
|
|
|||
Loading…
Reference in a new issue