diff options
Diffstat (limited to 'src/Ryujinx.Graphics.Shader/IGpuAccessor.cs')
-rw-r--r-- | src/Ryujinx.Graphics.Shader/IGpuAccessor.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Ryujinx.Graphics.Shader/IGpuAccessor.cs b/src/Ryujinx.Graphics.Shader/IGpuAccessor.cs index 2207156c..3be5088e 100644 --- a/src/Ryujinx.Graphics.Shader/IGpuAccessor.cs +++ b/src/Ryujinx.Graphics.Shader/IGpuAccessor.cs @@ -368,6 +368,15 @@ namespace Ryujinx.Graphics.Shader } /// <summary> + /// Queries whether the host supports depth clip control. + /// </summary> + /// <returns>True if the GPU and driver supports depth clip control, false otherwise</returns> + bool QueryHostSupportsDepthClipControl() + { + return true; + } + + /// <summary> /// Queries the point size from the GPU state, used when it is not explicitly set on the shader. /// </summary> /// <returns>Current point size</returns> |