X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fglsl%2Fglsl_error.h;h=84aa2f52a60a45c42f6bdbe30a5fbc676e418d25;hb=d18df036b247f7f0978b547bb8ea1d624af2c4b2;hp=1b005e0fc9db96c4230a9268fc8cc54e7eedf1f5;hpb=7b73b63df12b3ace4231842aa291d6e1d7b3f948;p=libs%2Fgl.git diff --git a/source/glsl/glsl_error.h b/source/glsl/glsl_error.h index 1b005e0f..84aa2f52 100644 --- a/source/glsl/glsl_error.h +++ b/source/glsl/glsl_error.h @@ -38,11 +38,23 @@ public: virtual ~parse_error() throw() { } }; -class unsupported_shader: public std::runtime_error +struct Diagnostic { -public: - unsupported_shader(const std::string &w): runtime_error(w) { } - virtual ~unsupported_shader() throw() { } + enum Severity + { + INFO, + WARN, + ERR + }; + + Severity severity; + int source; + unsigned line; + int provoking_source; + unsigned provoking_line; + std::string message; + + Diagnostic(): severity(INFO), source(-2), line(0) { } }; } // namespace SL