mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 20:58:44 +00:00
17 lines
482 B
C#
17 lines
482 B
C#
namespace Ryujinx.Graphics.Shader.Translation
|
|
{
|
|
public struct TranslationOptions
|
|
{
|
|
public TargetLanguage TargetLanguage { get; }
|
|
public TargetApi TargetApi { get; }
|
|
public TranslationFlags Flags { get; }
|
|
|
|
public TranslationOptions(TargetLanguage targetLanguage, TargetApi targetApi, TranslationFlags flags)
|
|
{
|
|
TargetLanguage = targetLanguage;
|
|
TargetApi = targetApi;
|
|
Flags = flags;
|
|
}
|
|
}
|
|
}
|