X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fglsl%2Fsyntax.cpp;h=d74291bc2840edd89391f6ce04e4fc04275bf5b2;hp=45765f27d88dbf0599e9de494a5ceea90dc64dd4;hb=4ecc965177df174ed2d26cfedf24665c8879acda;hpb=fea5f2abec9b8e971d8467804f379cfcd81e9ff7 diff --git a/source/glsl/syntax.cpp b/source/glsl/syntax.cpp index 45765f27..d74291bc 100644 --- a/source/glsl/syntax.cpp +++ b/source/glsl/syntax.cpp @@ -224,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 { } @@ -247,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 { }