mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-25 12:47:11 +02:00
12 lines
206 B
C#
12 lines
206 B
C#
namespace Ryujinx.Graphics.Gpu.Engine
|
|
{
|
|
/// <summary>
|
|
/// Conditional rendering enable.
|
|
/// </summary>
|
|
enum ConditionalRenderEnabled
|
|
{
|
|
False,
|
|
True,
|
|
Host,
|
|
}
|
|
}
|