aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Gpu/Engine/Threed/DrawState.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.Gpu/Engine/Threed/DrawState.cs')
-rw-r--r--Ryujinx.Graphics.Gpu/Engine/Threed/DrawState.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Gpu/Engine/Threed/DrawState.cs b/Ryujinx.Graphics.Gpu/Engine/Threed/DrawState.cs
index fd1cb0ea..42ec2442 100644
--- a/Ryujinx.Graphics.Gpu/Engine/Threed/DrawState.cs
+++ b/Ryujinx.Graphics.Gpu/Engine/Threed/DrawState.cs
@@ -18,6 +18,16 @@ namespace Ryujinx.Graphics.Gpu.Engine.Threed
public int IndexCount;
/// <summary>
+ /// First vertex used on non-indexed draws. This value is stored somewhere else on indexed draws.
+ /// </summary>
+ public int DrawFirstVertex;
+
+ /// <summary>
+ /// Vertex count used on non-indexed draws. Indexed draws have a index count instead.
+ /// </summary>
+ public int DrawVertexCount;
+
+ /// <summary>
/// Indicates if the next draw will be a indexed draw.
/// </summary>
public bool DrawIndexed;