2021-07-06 21:20:06 +02:00
|
|
|
namespace Ryujinx.Graphics.Shader.Translation
|
|
|
|
{
|
2022-12-05 14:47:39 +01:00
|
|
|
public readonly struct TranslationOptions
|
2021-07-06 21:20:06 +02:00
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|