Shader: Add support for pow intrinsic

This commit is contained in:
Jérôme Leclercq
2021-06-05 01:29:36 +02:00
parent 2d502775a6
commit 50bf26d92f
5 changed files with 48 additions and 1 deletions

View File

@@ -1020,6 +1020,10 @@ namespace Nz
Append("min");
break;
case ShaderAst::IntrinsicType::Pow:
Append("pow");
break;
case ShaderAst::IntrinsicType::SampleTexture:
Append("texture");
break;