X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fglsl%2Fsyntax.h;h=7a372dc59e2402d5f1872da7aa24415c66c1e783;hp=a1c62d4b11aa2a97f5ff2b17af1bed66e51a028c;hb=0585e361d8714ac4efc3ae3e1d5c8c9aa8841c34;hpb=92ad161ed948637c235e198510136f0dace2ca3e diff --git a/source/glsl/syntax.h b/source/glsl/syntax.h index a1c62d4b..7a372dc5 100644 --- a/source/glsl/syntax.h +++ b/source/glsl/syntax.h @@ -354,6 +354,7 @@ struct BasicTypeDeclaration: TypeDeclaration Kind kind = ALIAS; unsigned size = 0; bool sign = true; + bool extended_alignment = false; std::string base; TypeDeclaration *base_type = 0; @@ -390,6 +391,7 @@ struct ImageTypeDeclaration: TypeDeclaration struct StructDeclaration: TypeDeclaration { Block members; + bool extended_alignment = false; InterfaceBlock *interface_block = 0;