1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-09-22 06:53:30 +01:00
Ryujinx/Ryujinx.Graphics.Gpu/State/UniformBufferState.cs

15 lines
346 B
C#
Raw Normal View History

2019-10-13 07:02:07 +01:00
namespace Ryujinx.Graphics.Gpu.State
{
/// <summary>
/// Uniform buffer state for the uniform buffer currently being modified.
/// </summary>
2019-10-13 07:02:07 +01:00
struct UniformBufferState
{
#pragma warning disable CS0649
2019-10-13 07:02:07 +01:00
public int Size;
public GpuVa Address;
public int Offset;
#pragma warning restore CS0649
2019-10-13 07:02:07 +01:00
}
}