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
9 lines
134 B
C#
9 lines
134 B
C#
namespace Ryujinx.Graphics.Shader.Translation
|
|
{
|
|
public enum TargetLanguage
|
|
{
|
|
Glsl,
|
|
Spirv,
|
|
Arb
|
|
}
|
|
}
|