X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fglsl%2Fcompiler.cpp;h=00efbd94393c4399d0dbc206551575f5bf93fc22;hb=ac4218f733b4c8f09b64e72164bd4321a4c1abd2;hp=3f25935064beafe5c0fbecd86bcf4dae40eaa16c;hpb=4b05add0a40cc7503b9dc7ff3b15844b02f51e16;p=libs%2Fgl.git diff --git a/source/glsl/compiler.cpp b/source/glsl/compiler.cpp index 3f259350..00efbd94 100644 --- a/source/glsl/compiler.cpp +++ b/source/glsl/compiler.cpp @@ -101,6 +101,11 @@ void Compiler::compile(Mode mode) ++i; } + for(Stage &s: module->stages) + { + StructuralFeatureConverter().apply(s, features); + resolve(s, RESOLVE_VARIABLES|RESOLVE_FUNCTIONS); + } LocationAllocator().apply(*module, features); for(Stage &s: module->stages) finalize(s, mode); @@ -389,14 +394,9 @@ Compiler::OptimizeResult Compiler::optimize(Stage &stage) void Compiler::finalize(Stage &stage, Mode mode) { - if(mode==PROGRAM) - { - StructuralFeatureConverter().apply(stage, features); - QualifierConverter().apply(stage, features); - resolve(stage, RESOLVE_VARIABLES|RESOLVE_FUNCTIONS); - PrecisionConverter().apply(stage); - } - else if(mode==SPIRV) + QualifierConverter().apply(stage, features); + PrecisionConverter().apply(stage); + if(mode==SPIRV) StructOrganizer().apply(stage); // Collect bindings from all stages into the shared stage's maps