mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-03-26 15:04:41 +01:00
27 lines
815 B
C#
27 lines
815 B
C#
|
namespace Ryujinx.Graphics.Shader
|
||
|
{
|
||
|
readonly struct TextureDefinition
|
||
|
{
|
||
|
public int Set { get; }
|
||
|
public int Binding { get; }
|
||
|
public string Name { get; }
|
||
|
public SamplerType Type { get; }
|
||
|
public TextureFormat Format { get; }
|
||
|
public TextureUsageFlags Flags { get; }
|
||
|
|
||
|
public TextureDefinition(int set, int binding, string name, SamplerType type, TextureFormat format, TextureUsageFlags flags)
|
||
|
{
|
||
|
Set = set;
|
||
|
Binding = binding;
|
||
|
Name = name;
|
||
|
Type = type;
|
||
|
Format = format;
|
||
|
Flags = flags;
|
||
|
}
|
||
|
|
||
|
public TextureDefinition SetFlag(TextureUsageFlags flag)
|
||
|
{
|
||
|
return new TextureDefinition(Set, Binding, Name, Type, Format, Flags | flag);
|
||
|
}
|
||
|
}
|
||
|
}
|