X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fprogramparser.h;h=707815405684252f1fc06c33341ea19b5ba5199c;hp=fa37118de262efe46c02ad0c6c13dcdf43b4517c;hb=99d25b5ef615a23ef63645fea87596b3384b5ede;hpb=4bee7581168e0803dd24568b61e590d2a4830f96 diff --git a/source/programparser.h b/source/programparser.h index fa37118d..70781540 100644 --- a/source/programparser.h +++ b/source/programparser.h @@ -78,6 +78,7 @@ private: static bool is_interface_qualifier(const std::string &); static bool is_sampling_qualifier(const std::string &); + static bool is_interpolation_qualifier(const std::string &); static bool is_precision_qualifier(const std::string &); static bool is_qualifier(const std::string &); static bool is_builtin_type(const std::string &); @@ -103,7 +104,8 @@ private: RefPtr parse_function_declaration(); RefPtr parse_interface_block(); RefPtr parse_conditional(); - RefPtr parse_iteration(); + RefPtr parse_for(); + RefPtr parse_while(); RefPtr parse_passthrough(); RefPtr parse_return(); };