mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-01-24 05:54:56 +03:00
allow null depth stencil render targets
This commit is contained in:
parent
eb7ec713ec
commit
0abbbdc277
@ -298,6 +298,9 @@ namespace Ryujinx.Graphics.Metal
|
|||||||
if (depthStencil is Texture depthTexture)
|
if (depthStencil is Texture depthTexture)
|
||||||
{
|
{
|
||||||
_currentState.DepthStencil = depthTexture;
|
_currentState.DepthStencil = depthTexture;
|
||||||
|
} else if (depthStencil == null)
|
||||||
|
{
|
||||||
|
_currentState.DepthStencil = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Requires recreating pipeline
|
// Requires recreating pipeline
|
||||||
|
Loading…
Reference in New Issue
Block a user