mirror of
https://github.com/KeatonTheBot/Ryujinx.git
synced 2026-04-11 19:20:19 +00:00
11 lines
242 B
C#
11 lines
242 B
C#
namespace Ryujinx.Graphics.Gpu.State
|
|
{
|
|
/// <summary>
|
|
/// Condition parameters for conditional rendering.
|
|
/// </summary>
|
|
struct ConditionState
|
|
{
|
|
public GpuVa Address;
|
|
public Condition Condition;
|
|
}
|
|
}
|