mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-09-27 14:51:57 +00:00
21 lines
521 B
C#
21 lines
521 B
C#
using Ryujinx.Graphics.GAL;
|
|
|
|
namespace Ryujinx.Graphics.Vulkan
|
|
{
|
|
readonly struct ResourceBindingSegment
|
|
{
|
|
public readonly int Binding;
|
|
public readonly int Count;
|
|
public readonly ResourceType Type;
|
|
public readonly ResourceStages Stages;
|
|
|
|
public ResourceBindingSegment(int binding, int count, ResourceType type, ResourceStages stages)
|
|
{
|
|
Binding = binding;
|
|
Count = count;
|
|
Type = type;
|
|
Stages = stages;
|
|
}
|
|
}
|
|
}
|