RDNA3 Vulkan project

This commit is contained in:
Evan Husted
2025-01-05 23:04:17 -06:00
parent 758493354f
commit b54c9c7d68
119 changed files with 38581 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
using Ryujinx.Graphics.GAL;
namespace Ryujinx.Graphics.Rdna3Vulkan
{
readonly struct ResourceBindingSegment
{
public readonly int Binding;
public readonly int Count;
public readonly ResourceType Type;
public readonly ResourceStages Stages;
public readonly bool IsArray;
public ResourceBindingSegment(int binding, int count, ResourceType type, ResourceStages stages, bool isArray)
{
Binding = binding;
Count = count;
Type = type;
Stages = stages;
IsArray = isArray;
}
}
}