mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-18 06:56:39 +00:00
24 lines
883 B
C#
24 lines
883 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Ryujinx.Graphics.GAL
|
|
{
|
|
public readonly struct ShaderBindings
|
|
{
|
|
public IReadOnlyCollection<int> UniformBufferBindings { get; }
|
|
public IReadOnlyCollection<int> StorageBufferBindings { get; }
|
|
public IReadOnlyCollection<int> TextureBindings { get; }
|
|
public IReadOnlyCollection<int> ImageBindings { get; }
|
|
|
|
public ShaderBindings(
|
|
IReadOnlyCollection<int> uniformBufferBindings,
|
|
IReadOnlyCollection<int> storageBufferBindings,
|
|
IReadOnlyCollection<int> textureBindings,
|
|
IReadOnlyCollection<int> imageBindings)
|
|
{
|
|
UniformBufferBindings = uniformBufferBindings;
|
|
StorageBufferBindings = storageBufferBindings;
|
|
TextureBindings = textureBindings;
|
|
ImageBindings = imageBindings;
|
|
}
|
|
}
|
|
}
|