]> git.tdb.fi Git - libs/gl.git/blobdiff - source/glsl/glsl_error.h
Store the index of the member in MemberAccess
[libs/gl.git] / source / glsl / glsl_error.h
index 1fd7169c1b3affad1e6d390b04ef6d8213b6f934..6654770cd90695457de4425374aea968b7f37d2d 100644 (file)
@@ -38,13 +38,6 @@ public:
        virtual ~parse_error() throw() { }
 };
 
-class unsupported_shader: public std::runtime_error
-{
-public:
-       unsupported_shader(const std::string &w): runtime_error(w) { }
-       virtual ~unsupported_shader() throw() { }
-};
-
 struct Diagnostic
 {
        enum Severity
@@ -57,9 +50,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