]> git.tdb.fi Git - libs/gl.git/blobdiff - source/glsl/syntax.cpp
Fixes for handling extended alignment in GLSL
[libs/gl.git] / source / glsl / syntax.cpp
index 40f6d4f660b24c84dff02a910951c71c87ad6c4e..d74291bc2840edd89391f6ce04e4fc04275bf5b2 100644 (file)
@@ -78,8 +78,7 @@ NodeContainer<C>::NodeContainer(const NodeContainer &c):
 Block::Block(const Block &other):
        Node(other),
        body(other.body),
-       use_braces(other.use_braces),
-       parent(0)
+       use_braces(other.use_braces)
 { }
 
 void Block::visit(NodeVisitor &visitor)
@@ -225,6 +224,7 @@ BasicTypeDeclaration::BasicTypeDeclaration(const BasicTypeDeclaration &other):
        kind(other.kind),
        size(other.size),
        sign(other.sign),
+       extended_alignment(other.extended_alignment),
        base(other.base)
        // Do not copy base type
 { }
@@ -248,7 +248,8 @@ StructDeclaration::StructDeclaration()
 
 StructDeclaration::StructDeclaration(const StructDeclaration &other):
        TypeDeclaration(other),
-       members(other.members)
+       members(other.members),
+       extended_alignment(other.extended_alignment)
        // Do not copy interface block
 { }
 
@@ -415,10 +416,27 @@ const TypeDeclaration *get_ultimate_base_type(const TypeDeclaration *type)
        return type;
 }
 
-int get_layout_value(const Layout &layout, const string &name, int def_value)
+bool has_layout_qualifier(const Layout *layout, const string &name)
+{
+       if(!layout)
+               return false;
+       auto i = find_member(layout->qualifiers, name, &Layout::Qualifier::name);
+       return i!=layout->qualifiers.end();
+}
+
+int get_layout_value(const Layout *layout, const string &name, int def_value)
+{
+       if(!layout)
+               return def_value;
+       auto i = find_member(layout->qualifiers, name, &Layout::Qualifier::name);
+       return (i!=layout->qualifiers.end() ? i->value : def_value);
+}
+
+void add_layout_qualifier(RefPtr<Layout> &layout, const Layout::Qualifier &q)
 {
-       auto i = find_member(layout.qualifiers, name, &Layout::Qualifier::name);
-       return (i!=layout.qualifiers.end() ? i->value : def_value);
+       if(!layout)
+               layout = new Layout;
+       layout->qualifiers.push_back(q);
 }
 
 void add_to_chain(Assignment::Target &target, Assignment::Target::ChainType type, unsigned index)