Shader: Add support for exp intrinsic

This commit is contained in:
Jérôme Leclercq
2021-12-05 17:02:46 +01:00
parent 7e4a058d41
commit 0aec863300
6 changed files with 39 additions and 13 deletions

View File

@@ -812,6 +812,10 @@ namespace Nz
Append("dot");
break;
case ShaderAst::IntrinsicType::Exp:
Append("exp");
break;
case ShaderAst::IntrinsicType::Length:
Append("length");
break;