X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fglsl%2Fsyntax.h;h=a1c62d4b11aa2a97f5ff2b17af1bed66e51a028c;hb=cb4158902a680c58c5834da8577cd95ff753fd7c;hp=d3797ac415ecb73c222220c1596a82c7fb2b9fed;hpb=f82ef715f0d7e1e7d0b93be4b7b89c8ce6bba40b;p=libs%2Fgl.git diff --git a/source/glsl/syntax.h b/source/glsl/syntax.h index d3797ac4..a1c62d4b 100644 --- a/source/glsl/syntax.h +++ b/source/glsl/syntax.h @@ -525,7 +525,7 @@ struct Stage }; Type type; - Stage *previous; + Stage *previous = 0; Block content; std::map types; std::map interface_blocks; @@ -552,9 +552,12 @@ struct Module }; std::string get_unused_variable_name(const Block &, const std::string &); - -int get_layout_value(const Layout &, const std::string &, int = -1); +const TypeDeclaration *get_ultimate_base_type(const TypeDeclaration *); +bool has_layout_qualifier(const Layout *, const std::string &); +int get_layout_value(const Layout *, const std::string &, int = -1); +void add_layout_qualifier(RefPtr &, const Layout::Qualifier &); void add_to_chain(Assignment::Target &, Assignment::Target::ChainType, unsigned); +bool targets_overlap(const Assignment::Target &, const Assignment::Target &); } // namespace SL } // namespace GL