]> git.tdb.fi Git - libs/gl.git/blobdiff - source/glsl/glsl_error.h
Add missing Diagnostic constructor
[libs/gl.git] / source / glsl / glsl_error.h
index 1b005e0fc9db96c4230a9268fc8cc54e7eedf1f5..6654770cd90695457de4425374aea968b7f37d2d 100644 (file)
@@ -38,11 +38,24 @@ 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();
+       Diagnostic(Severity, int, unsigned, const std::string &);
 };
 
 } // namespace SL