X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fglsl%2Fglsl_error.h;h=1fd7169c1b3affad1e6d390b04ef6d8213b6f934;hb=5f6ee612cb83029de9559bae644c9a3b4e579259;hp=1b005e0fc9db96c4230a9268fc8cc54e7eedf1f5;hpb=7b73b63df12b3ace4231842aa291d6e1d7b3f948;p=libs%2Fgl.git diff --git a/source/glsl/glsl_error.h b/source/glsl/glsl_error.h index 1b005e0f..1fd7169c 100644 --- a/source/glsl/glsl_error.h +++ b/source/glsl/glsl_error.h @@ -45,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