1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-02-05 22:42:56 -06:00
ryujinx/Ryujinx.Graphics.Gpu/State/UniformBufferState.cs

10 lines
169 B
C#
Raw Normal View History

2019-10-13 03:02:07 -03:00
namespace Ryujinx.Graphics.Gpu.State
{
struct UniformBufferState
{
public int Size;
public GpuVa Address;
public int Offset;
}
}