File tree Expand file tree Collapse file tree 4 files changed +5
-6
lines changed
Expand file tree Collapse file tree 4 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 77#ifndef NZSL_AST_TRANSFORMATIONS_LOOPUNROLLTRANSFORMER_HPP
88#define NZSL_AST_TRANSFORMATIONS_LOOPUNROLLTRANSFORMER_HPP
99
10- #include < NZSL/Ast/Transformations/Transformer.hpp>
1110#include < NazaraUtils/FixedVector.hpp>
11+ #include < NZSL/Ast/Transformations/Transformer.hpp>
1212
1313namespace nzsl ::Ast
1414{
Original file line number Diff line number Diff line change @@ -435,7 +435,7 @@ namespace nzsl::ShaderBuilder
435435 identifierValue->identifierType = type;
436436 identifierValue->identifierIndex = id;
437437 identifierValue->sourceLocation = sourceLocation;
438-
438+
439439 switch (type)
440440 {
441441 case Ast::IdentifierType::ExternalBlock: identifierValue->cachedExpressionType = Ast::NamedExternalBlockType{ id }; break ;
@@ -476,7 +476,7 @@ namespace nzsl::ShaderBuilder
476476 auto identifierValue = std::make_unique<Ast::IdentifierValueExpression>();
477477 identifierValue->identifierType = Type;
478478 identifierValue->identifierIndex = id;
479-
479+
480480 switch (Type)
481481 {
482482 case Ast::IdentifierType::ExternalBlock: identifierValue->cachedExpressionType = Ast::NamedExternalBlockType{ id }; break ;
@@ -497,7 +497,7 @@ namespace nzsl::ShaderBuilder
497497 identifierValue->identifierType = Type;
498498 identifierValue->identifierIndex = id;
499499 identifierValue->sourceLocation = sourceLocation;
500-
500+
501501 switch (Type)
502502 {
503503 case Ast::IdentifierType::ExternalBlock: identifierValue->cachedExpressionType = Ast::NamedExternalBlockType{ id }; break ;
Original file line number Diff line number Diff line change 44
55#include < NZSL/Ast/Transformations/LoopUnrollTransformer.hpp>
66#include < NZSL/Ast/Cloner.hpp>
7+ #include < NZSL/Ast/IndexRemapperVisitor.hpp>
78#include < NZSL/Ast/Utils.hpp>
89#include < NZSL/Lang/Errors.hpp>
910#include < NZSL/Ast/Transformations/TransformerContext.hpp>
10- #include < NZSL/Ast/IndexRemapperVisitor.hpp>
1111
1212namespace nzsl ::Ast
1313{
Original file line number Diff line number Diff line change @@ -932,7 +932,6 @@ namespace nzsl
932932
933933 PopResultId ();
934934 }
935-
936935
937936 void SpirvAstVisitor::Visit (Ast::IdentifierValueExpression& node)
938937 {
You can’t perform that action at this time.
0 commit comments