X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fglsl%2Fglsl_error.h;h=1fd7169c1b3affad1e6d390b04ef6d8213b6f934;hb=de87bb70ae10de39a39b2415407a234ab28099cf;hp=46ca49be35daf98062a9cff156426fde9882eb6b;hpb=836eeb313874d4f0c406f154ecb0dff366f362c4;p=libs%2Fgl.git diff --git a/source/glsl/glsl_error.h b/source/glsl/glsl_error.h index 46ca49be..1fd7169c 100644 --- a/source/glsl/glsl_error.h +++ b/source/glsl/glsl_error.h @@ -13,6 +13,7 @@ struct Location; class invalid_shader_source: public std::runtime_error { public: + invalid_shader_source(const std::string &w): runtime_error(w) { } invalid_shader_source(const Location &, const std::string &); #if __cplusplus>=201103L template @@ -44,6 +45,23 @@ public: virtual ~unsupported_shader() throw() { } }; +struct Diagnostic +{ + enum Severity + { + INFO, + WARN, + ERR + }; + + Severity severity; + int source; + unsigned line; + std::string message; + + Diagnostic(): severity(INFO), source(-2), line(0) { } +}; + } // namespace SL } // namespace GL } // namespace Msp