mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-28 21:50:48 -07:00
Move solution and projects to src
This commit is contained in:
14
src/Ryujinx.Graphics.GAL/BufferAssignment.cs
Normal file
14
src/Ryujinx.Graphics.GAL/BufferAssignment.cs
Normal file
@ -0,0 +1,14 @@
|
||||
namespace Ryujinx.Graphics.GAL
|
||||
{
|
||||
public readonly struct BufferAssignment
|
||||
{
|
||||
public readonly int Binding;
|
||||
public readonly BufferRange Range;
|
||||
|
||||
public BufferAssignment(int binding, BufferRange range)
|
||||
{
|
||||
Binding = binding;
|
||||
Range = range;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user