X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fglsl%2Fgenerate.h;h=a728e99ced3a8bccd24aaa89de94cbbddee09664;hb=c1d3a1d;hp=9365c6c3490fec2fb6290769d2083d1bec22bf8f;hpb=cb8ee1f5ea24a5f7b561fc88d4ff5af3ae364038;p=libs%2Fgl.git diff --git a/source/glsl/generate.h b/source/glsl/generate.h index 9365c6c3..a728e99c 100644 --- a/source/glsl/generate.h +++ b/source/glsl/generate.h @@ -48,8 +48,13 @@ private: /** Forms links between nested blocks in the syntax tree. */ class BlockHierarchyResolver: private TraversingVisitor { +private: + bool r_any_resolved; + public: - void apply(Stage &s) { s.content.visit(*this); } + BlockHierarchyResolver(): r_any_resolved(false) { } + + bool apply(Stage &s) { r_any_resolved = false; s.content.visit(*this); return r_any_resolved; } private: virtual void enter(Block &); @@ -63,14 +68,16 @@ private: std::map alias_map; std::map array_types; NodeList::iterator type_insert_point; + bool r_any_resolved; public: TypeResolver(); - void apply(Stage &); + bool apply(Stage &); private: - TypeDeclaration *resolve_type(const std::string &); + TypeDeclaration *get_or_create_array_type(TypeDeclaration &); + void resolve_type(TypeDeclaration *&, const std::string &, bool); virtual void visit(Block &); virtual void visit(BasicTypeDeclaration &); virtual void visit(ImageTypeDeclaration &); @@ -150,6 +157,7 @@ private: virtual void visit(InterfaceBlockReference &); virtual void visit(MemberAccess &); virtual void visit(UnaryExpression &); + void visit(BinaryExpression &, bool); virtual void visit(BinaryExpression &); virtual void visit(Assignment &); virtual void visit(FunctionCall &); @@ -163,9 +171,10 @@ class FunctionResolver: private TraversingVisitor private: Stage *stage; std::map > declarations; + bool r_any_resolved; public: - void apply(Stage &); + bool apply(Stage &); private: virtual void visit(FunctionCall &);