mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-20 17:51:13 +02:00
* shadertools: Prepare for new target Langugaes and APIs This improves shader tools command line by adding support for target language and api. * Address gdkchan's comments
10 lines
134 B
C#
10 lines
134 B
C#
namespace Ryujinx.Graphics.Shader.Translation
|
|
{
|
|
public enum TargetLanguage
|
|
{
|
|
Glsl,
|
|
Spirv,
|
|
Arb
|
|
}
|
|
}
|