X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fglsl%2Fsyntax.cpp;h=40f6d4f660b24c84dff02a910951c71c87ad6c4e;hb=ea844415db7fb7705ecbfea9cf27df2a8f00b802;hp=dff52639b0e2c835d43a4f622f4d4b590d8b13cf;hpb=38712d8ecc57d043a2419ffbaeeb57f7a6586f14;p=libs%2Fgl.git diff --git a/source/glsl/syntax.cpp b/source/glsl/syntax.cpp index dff52639..40f6d4f6 100644 --- a/source/glsl/syntax.cpp +++ b/source/glsl/syntax.cpp @@ -294,6 +294,7 @@ void VariableDeclaration::visit(NodeVisitor &visitor) InterfaceBlock::InterfaceBlock(const InterfaceBlock &other): Statement(other), + layout(other.layout), interface(other.interface), block_name(other.block_name), members(other.members), @@ -366,8 +367,7 @@ void Jump::visit(NodeVisitor &visitor) Stage::Stage(Stage::Type t): - type(t), - previous(0) + type(t) { } const char *Stage::get_stage_name(Type type) @@ -402,6 +402,19 @@ string get_unused_variable_name(const Block &block, const string &base) } } +const TypeDeclaration *get_ultimate_base_type(const TypeDeclaration *type) +{ + if(!type) + return 0; + while(const BasicTypeDeclaration *basic = dynamic_cast(type)) + { + if(!basic->base_type) + break; + type = basic->base_type; + } + return type; +} + int get_layout_value(const Layout &layout, const string &name, int def_value) { auto i = find_member(layout.qualifiers, name, &Layout::Qualifier::name); @@ -415,6 +428,32 @@ void add_to_chain(Assignment::Target &target, Assignment::Target::ChainType type ++target.chain_len; } +bool targets_overlap(const Assignment::Target &target1, const Assignment::Target &target2) +{ + bool overlap = (target1.declaration==target2.declaration); + for(unsigned i=0; (overlap && i(target1.chain[i]&0xC0); + Assignment::Target::ChainType type2 = static_cast(target2.chain[i]&0xC0); + unsigned index1 = target1.chain[i]&0x3F; + unsigned index2 = target2.chain[i]&0x3F; + if(type1==Assignment::Target::SWIZZLE || type2==Assignment::Target::SWIZZLE) + { + if(type1==Assignment::Target::SWIZZLE && type2==Assignment::Target::SWIZZLE) + overlap = index1&index2; + else if(type1==Assignment::Target::ARRAY && index1<4) + overlap = index2&(1<