f1d1670b0b
* Implement HLE macro for DrawElementsIndirect * Shader cache version bump * Use GL_ARB_shader_draw_parameters extension on OpenGL * Fix DrawIndexedIndirectCount on Vulkan when extension is not supported * Implement DrawIndex * Alignment * Fix some validation errors * Rename BaseIds to DrawParameters * Fix incorrect index buffer and vertex buffer size in some cases * Add HLE macros for DrawArraysInstanced and DrawElementsInstanced * Perform a regular draw when indirect data is not modified * Use non-indirect draw methods if indirect buffer was not GPU modified * Only check if draw parameters match if the shader actually uses them * Expose Macro HLE setting on GUI * Reset FirstVertex and FirstInstance after draw * Update shader cache version again since some people already tested this * PR feedback Co-authored-by: riperiperi <rhy3756547@hotmail.com>
150 lines
4.6 KiB
C#
150 lines
4.6 KiB
C#
using Silk.NET.Vulkan;
|
|
|
|
namespace Ryujinx.Graphics.Vulkan
|
|
{
|
|
internal struct IndexBufferState
|
|
{
|
|
public static IndexBufferState Null => new IndexBufferState(GAL.BufferHandle.Null, 0, 0);
|
|
|
|
private readonly int _offset;
|
|
private readonly int _size;
|
|
private readonly IndexType _type;
|
|
|
|
private readonly GAL.BufferHandle _handle;
|
|
private Auto<DisposableBuffer> _buffer;
|
|
|
|
public IndexBufferState(GAL.BufferHandle handle, int offset, int size, IndexType type)
|
|
{
|
|
_handle = handle;
|
|
_offset = offset;
|
|
_size = size;
|
|
_type = type;
|
|
_buffer = null;
|
|
}
|
|
|
|
public IndexBufferState(GAL.BufferHandle handle, int offset, int size)
|
|
{
|
|
_handle = handle;
|
|
_offset = offset;
|
|
_size = size;
|
|
_type = IndexType.Uint16;
|
|
_buffer = null;
|
|
}
|
|
|
|
public void BindIndexBuffer(VulkanRenderer gd, CommandBufferScoped cbs)
|
|
{
|
|
Auto<DisposableBuffer> autoBuffer;
|
|
int offset, size;
|
|
IndexType type = _type;
|
|
|
|
if (_type == IndexType.Uint8Ext && !gd.Capabilities.SupportsIndexTypeUint8)
|
|
{
|
|
// Index type is not supported. Convert to I16.
|
|
autoBuffer = gd.BufferManager.GetBufferI8ToI16(cbs, _handle, _offset, _size);
|
|
|
|
type = IndexType.Uint16;
|
|
offset = 0;
|
|
size = _size * 2;
|
|
}
|
|
else
|
|
{
|
|
autoBuffer = gd.BufferManager.GetBuffer(cbs.CommandBuffer, _handle, false, out int bufferSize);
|
|
|
|
if (_offset >= bufferSize)
|
|
{
|
|
autoBuffer = null;
|
|
}
|
|
|
|
offset = _offset;
|
|
size = _size;
|
|
}
|
|
|
|
_buffer = autoBuffer;
|
|
|
|
if (autoBuffer != null)
|
|
{
|
|
gd.Api.CmdBindIndexBuffer(cbs.CommandBuffer, autoBuffer.Get(cbs, offset, size).Value, (ulong)offset, type);
|
|
}
|
|
}
|
|
|
|
public void BindConvertedIndexBuffer(
|
|
VulkanRenderer gd,
|
|
CommandBufferScoped cbs,
|
|
int firstIndex,
|
|
int indexCount,
|
|
int convertedCount,
|
|
IndexBufferPattern pattern)
|
|
{
|
|
Auto<DisposableBuffer> autoBuffer;
|
|
|
|
// Convert the index buffer using the given pattern.
|
|
int indexSize = GetIndexSize();
|
|
|
|
int firstIndexOffset = firstIndex * indexSize;
|
|
|
|
autoBuffer = gd.BufferManager.GetBufferTopologyConversion(cbs, _handle, _offset + firstIndexOffset, indexCount * indexSize, pattern, indexSize);
|
|
|
|
int size = convertedCount * 4;
|
|
|
|
_buffer = autoBuffer;
|
|
|
|
if (autoBuffer != null)
|
|
{
|
|
gd.Api.CmdBindIndexBuffer(cbs.CommandBuffer, autoBuffer.Get(cbs, 0, size).Value, 0, IndexType.Uint32);
|
|
}
|
|
}
|
|
|
|
public Auto<DisposableBuffer> BindConvertedIndexBufferIndirect(
|
|
VulkanRenderer gd,
|
|
CommandBufferScoped cbs,
|
|
GAL.BufferRange indirectBuffer,
|
|
GAL.BufferRange drawCountBuffer,
|
|
IndexBufferPattern pattern,
|
|
bool hasDrawCount,
|
|
int maxDrawCount,
|
|
int indirectDataStride)
|
|
{
|
|
// Convert the index buffer using the given pattern.
|
|
int indexSize = GetIndexSize();
|
|
|
|
(var indexBufferAuto, var indirectBufferAuto) = gd.BufferManager.GetBufferTopologyConversionIndirect(
|
|
gd,
|
|
cbs,
|
|
new GAL.BufferRange(_handle, _offset, _size),
|
|
indirectBuffer,
|
|
drawCountBuffer,
|
|
pattern,
|
|
indexSize,
|
|
hasDrawCount,
|
|
maxDrawCount,
|
|
indirectDataStride);
|
|
|
|
int convertedCount = pattern.GetConvertedCount(_size / indexSize);
|
|
int size = convertedCount * 4;
|
|
|
|
_buffer = indexBufferAuto;
|
|
|
|
if (indexBufferAuto != null)
|
|
{
|
|
gd.Api.CmdBindIndexBuffer(cbs.CommandBuffer, indexBufferAuto.Get(cbs, 0, size).Value, 0, IndexType.Uint32);
|
|
}
|
|
|
|
return indirectBufferAuto;
|
|
}
|
|
|
|
private int GetIndexSize()
|
|
{
|
|
return _type switch
|
|
{
|
|
IndexType.Uint32 => 4,
|
|
IndexType.Uint16 => 2,
|
|
_ => 1,
|
|
};
|
|
}
|
|
|
|
public bool BoundEquals(Auto<DisposableBuffer> buffer)
|
|
{
|
|
return _buffer == buffer;
|
|
}
|
|
}
|
|
}
|