mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-12-18 00:12:41 +00:00
13 lines
208 B
C#
13 lines
208 B
C#
namespace Ryujinx.Graphics.Gpu.Engine
|
|
{
|
|
/// <summary>
|
|
/// Conditional rendering enable.
|
|
/// </summary>
|
|
enum ConditionalRenderEnabled
|
|
{
|
|
False,
|
|
True,
|
|
Host
|
|
}
|
|
}
|