X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fextension.h;h=671e4af9aac989afff2a30c9d6cec2a474120c98;hb=e079d5a878e83dc0baffcec66a57659c885cd593;hp=d6eb75f6a396eccec9c17cd7e6a111e3cb7406aa;hpb=5318aa4fd553be4ce0bc428e73592b787842cdea;p=libs%2Fgl.git diff --git a/source/extension.h b/source/extension.h index d6eb75f6..671e4af9 100644 --- a/source/extension.h +++ b/source/extension.h @@ -1,34 +1,82 @@ -/* $Id$ - -This file is part of libmspgl -Copyright © 2007 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - #ifndef MSP_GL_EXTENSION_H_ #define MSP_GL_EXTENSION_H_ -#include +#include namespace Msp { namespace GL { +enum GLApi +{ + OPENGL, + OPENGL_ES2 +}; + + +struct Version +{ + unsigned short major; + unsigned short minor; + + Version(); + Version(unsigned short, unsigned short); + Version(const std::string &); + + bool operator>=(const Version &) const; +}; + + +class Extension +{ +public: + enum SupportLevel + { + UNSUPPORTED, + EXTENSION, + CORE + }; + + typedef SupportLevel (*InitFunc)(); + +private: + const char *name; + InitFunc init_func; + mutable bool init_done; + mutable SupportLevel support; + +public: + Extension(const char *, InitFunc); + + const char *get_name() const { return name; } + operator bool() const; +}; + + +struct Require +{ + Require(const Extension &); +}; + + typedef void ExtFunc(); -/** -Indicates whether an extension is supported. If this returns true, the -functions of that extension are safe to use. -*/ +/** Indicates whether an extension is supported. */ bool is_supported(const std::string &); -/** -Checks that an extension is supported and throws if it isn't. -*/ -void require_extension(const std::string &); +/** Returns the API for which the library was compiled. */ +GLApi get_gl_api(); + +/** 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. -*/ +/** Returns the address of an extension function. Only indended for internal +use. */ ExtFunc *get_proc_address(const std::string &); } // namespace GL