X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fextension.h;h=cf824e24b0a189b65fc88de30adc6dc862fb5e09;hp=e0fe3eff4bdcf4aa4c54428a0c18a356c09d2b73;hb=b38a4cba9d2a9963a0937757eff9e955f18ddf2a;hpb=f92c10f969a02e707a236cb364332bf079cdf4fc diff --git a/source/extension.h b/source/extension.h index e0fe3eff..cf824e24 100644 --- a/source/extension.h +++ b/source/extension.h @@ -6,6 +6,19 @@ namespace Msp { namespace GL { +enum GLApi +{ + OPENGL, + OPENGL_ES2 +}; + +enum GLProfile +{ + CORE_PROFILE, + COMPATIBILITY_PROFILE +}; + + struct Version { unsigned short major; @@ -16,9 +29,15 @@ struct Version Version(const std::string &); bool operator>=(const Version &) const; + bool operator<(const Version &o) const { return !(*this>=o); } + operator bool() const { return major || minor; } }; +/** +Holds metadata about an extension. Evaluates to true if the extension is +supported. +*/ class Extension { public: @@ -53,18 +72,29 @@ struct Require typedef void ExtFunc(); -/** Indicates whether an extension is supported. */ +/** Checks for extension support. Only intended for internal use. */ bool is_supported(const std::string &); +/** Checks for OpenGL version support. Only intended for internal use. */ +bool is_supported(const Version &, const Version & = Version()); + +/** Indicates whether an extension has been disabled, either explicitly through +the MSPGL_DISABLE_EXTENSIONS environment variable or implicitly as a workaround +for a driver bug. Only intended for internal use. */ +bool is_disabled(const std::string &); + +/** Returns the API for which the library was compiled. */ +GLApi get_gl_api(); + +/** Returns the OpenGL profile for the active context. */ +GLProfile get_gl_profile(); + /** Returns the OpenGL version number, as reported by the implementation. */ const Version &get_gl_version(); /** Returns the GLSL version number, as reported by the implementation. */ const Version &get_glsl_version(); -/** Indicates whether the OpenGL version is at least a.b. */ -bool is_version_at_least(unsigned a, unsigned b); - /** Returns the address of an extension function. Only indended for internal use. */ ExtFunc *get_proc_address(const std::string &);