Fix instanced indexed inline draw index count (#3389)

This commit is contained in:
gdkchan
2022-06-10 23:44:49 -03:00
committed by GitHub
parent 46cc7b55f0
commit 9a9349f0f4
2 changed files with 19 additions and 16 deletions

View File

@@ -20,6 +20,11 @@ namespace Ryujinx.Graphics.Gpu.Engine.Threed
/// </summary>
public bool HasInlineIndexData => _inlineIndexCount != 0;
/// <summary>
/// Total numbers of indices that have been pushed.
/// </summary>
public int InlineIndexCount => _inlineIndexCount;
/// <summary>
/// Gets the handle for the host buffer currently holding the inline index buffer data.
/// </summary>