Shader: Many fixes

This commit is contained in:
Jérôme Leclercq
2022-03-04 18:23:01 +01:00
parent 1919bd3302
commit a2f4f3c802
13 changed files with 161 additions and 84 deletions

View File

@@ -20,8 +20,13 @@ namespace Nz::ShaderAst
struct Module
{
struct Metadata
{
UInt32 shaderLangVersion;
};
std::shared_ptr<const Metadata> metadata;
MultiStatementPtr rootNode;
UInt32 shaderLangVersion;
};
}