Initial work
This commit is contained in:
parent
f617fb542a
commit
1876b346fe
518 changed files with 15170 additions and 12486 deletions
40
Ryujinx.Graphics.Shader/TextureDescriptor.cs
Normal file
40
Ryujinx.Graphics.Shader/TextureDescriptor.cs
Normal file
|
@ -0,0 +1,40 @@
|
|||
namespace Ryujinx.Graphics.Shader
|
||||
{
|
||||
public struct TextureDescriptor
|
||||
{
|
||||
public string Name { get; }
|
||||
|
||||
public TextureTarget Target { get; }
|
||||
|
||||
public int HandleIndex { get; }
|
||||
|
||||
public bool IsBindless { get; }
|
||||
|
||||
public int CbufSlot { get; }
|
||||
public int CbufOffset { get; }
|
||||
|
||||
public TextureDescriptor(string name, TextureTarget target, int hIndex)
|
||||
{
|
||||
Name = name;
|
||||
Target = target;
|
||||
HandleIndex = hIndex;
|
||||
|
||||
IsBindless = false;
|
||||
|
||||
CbufSlot = 0;
|
||||
CbufOffset = 0;
|
||||
}
|
||||
|
||||
public TextureDescriptor(string name, TextureTarget target, int cbufSlot, int cbufOffset)
|
||||
{
|
||||
Name = name;
|
||||
Target = target;
|
||||
HandleIndex = 0;
|
||||
|
||||
IsBindless = true;
|
||||
|
||||
CbufSlot = cbufSlot;
|
||||
CbufOffset = cbufOffset;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue