X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fglsl%2Fglsl_error.h;h=0b4b4b02d2ddff4641f41b5c59ce2df6c1d110f7;hb=55e3f2d494d939280a4ea48676fd17ca2342b457;hp=1fd7169c1b3affad1e6d390b04ef6d8213b6f934;hpb=1f09306906fbf57c05dccb27189264706cc64cfa;p=libs%2Fgl.git diff --git a/source/glsl/glsl_error.h b/source/glsl/glsl_error.h index 1fd7169c..0b4b4b02 100644 --- a/source/glsl/glsl_error.h +++ b/source/glsl/glsl_error.h @@ -38,11 +38,11 @@ public: virtual ~parse_error() throw() { } }; -class unsupported_shader: public std::runtime_error +class internal_error: public std::logic_error { public: - unsupported_shader(const std::string &w): runtime_error(w) { } - virtual ~unsupported_shader() throw() { } + internal_error(const std::string &w): logic_error(w) { } + virtual ~internal_error() throw() { } }; struct Diagnostic @@ -57,9 +57,12 @@ struct Diagnostic Severity severity; int source; unsigned line; + int provoking_source; + unsigned provoking_line; std::string message; - Diagnostic(): severity(INFO), source(-2), line(0) { } + Diagnostic(); + Diagnostic(Severity, int, unsigned, const std::string &); }; } // namespace SL