mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 23:28:38 +00:00
97a2133207
* 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
|
|
}
|
|
}
|