forked from Mirror/Ryujinx
12 lines
208 B
C#
12 lines
208 B
C#
namespace Ryujinx.Graphics.Gpu.Engine
|
|
{
|
|
/// <summary>
|
|
/// Conditional rendering enable.
|
|
/// </summary>
|
|
enum ConditionalRenderEnabled
|
|
{
|
|
False,
|
|
True,
|
|
Host
|
|
}
|
|
}
|