Missed enabling Dynamic State

This commit is contained in:
sunshineinabox 2024-05-19 10:31:53 -07:00
parent 5d5f482d57
commit 8bb369f37d
2 changed files with 9 additions and 2 deletions

View file

@ -899,8 +899,7 @@ namespace Ryujinx.Graphics.Vulkan
public void SetDepthMode(DepthMode mode)
{
bool oldMode;
bool supportsDepthClipandDynamicState = Gd.Capabilities.SupportsDepthClipControl &&
Gd.ExtendedDynamicState3Features.ExtendedDynamicState3DepthClipNegativeOneToOne;
bool supportsDepthClipandDynamicState = Gd.ExtendedDynamicState3Features.ExtendedDynamicState3DepthClipNegativeOneToOne;
if (supportsDepthClipandDynamicState)
{
oldMode = DynamicState.DepthMode;