aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Shader/IGpuAccessor.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.Shader/IGpuAccessor.cs')
-rw-r--r--Ryujinx.Graphics.Shader/IGpuAccessor.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Shader/IGpuAccessor.cs b/Ryujinx.Graphics.Shader/IGpuAccessor.cs
index 2cdc81fb..4f800a14 100644
--- a/Ryujinx.Graphics.Shader/IGpuAccessor.cs
+++ b/Ryujinx.Graphics.Shader/IGpuAccessor.cs
@@ -169,6 +169,15 @@ namespace Ryujinx.Graphics.Shader
}
/// <summary>
+ /// Queries whenever the current draw has written the base vertex and base instance into Constant Buffer 0.
+ /// </summary>
+ /// <returns>True if the shader translator can assume that the constant buffer contains the base IDs, false otherwise</returns>
+ bool QueryHasConstantBufferDrawParameters()
+ {
+ return false;
+ }
+
+ /// <summary>
/// Queries host about the presence of the FrontFacing built-in variable bug.
/// </summary>
/// <returns>True if the bug is present on the host device used, false otherwise</returns>