ResourceBindingSegment.cs 521 B

1234567891011121314151617181920
  1. using Ryujinx.Graphics.GAL;
  2. namespace Ryujinx.Graphics.Vulkan
  3. {
  4. readonly struct ResourceBindingSegment
  5. {
  6. public readonly int Binding;
  7. public readonly int Count;
  8. public readonly ResourceType Type;
  9. public readonly ResourceStages Stages;
  10. public ResourceBindingSegment(int binding, int count, ResourceType type, ResourceStages stages)
  11. {
  12. Binding = binding;
  13. Count = count;
  14. Type = type;
  15. Stages = stages;
  16. }
  17. }
  18. }