X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fextension.h;h=e6c2aca045491e4a23005b87ac35d60c5cab3e64;hb=6afbace895a7bbcf216ab8e48280ea0303ab5892;hp=ed2530a922fdf5c7ae3de64a29d4de3e693d0d62;hpb=6a4907898281b738111e0c6527cc46f8810dc123;p=libs%2Fgl.git diff --git a/source/extension.h b/source/extension.h index ed2530a9..e6c2aca0 100644 --- a/source/extension.h +++ b/source/extension.h @@ -1,14 +1,7 @@ -/* $Id$ - -This file is part of libmspgl -Copyright © 2007-2008, 2010 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - #ifndef MSP_GL_EXTENSION_H_ #define MSP_GL_EXTENSION_H_ -#include +#include namespace Msp { namespace GL { @@ -19,54 +12,52 @@ struct Version unsigned short minor; }; -typedef void ExtFunc(); -/** -Indicates whether an extension is supported. If this returns true, the -functions of that extension are safe to use. -*/ -bool is_supported(const std::string &); +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; +}; -/** -Checks that an extension is supported and throws if it isn't. -*/ -void require_extension(const std::string &); -/** -RAII version of require_extension. Useful as a static local variable. -*/ -struct RequireExtension +struct Require { - RequireExtension(const std::string &e) { require_extension(e); } + Require(const Extension &); }; -/** -Returns the OpenGL version number, as reported by the implementation. -Functions up to the returned version are safe to use. -*/ -const Version &get_gl_version(); -/** -Indicates whether the OpenGL version is at least a.b. -*/ -bool is_version_at_least(unsigned a, unsigned b); +typedef void ExtFunc(); -/** -Checks that the OpenGL version is at least a.b and throws if it isn't. -*/ -void require_version(unsigned a, unsigned b); +/** Indicates whether an extension is supported. */ +bool is_supported(const std::string &); -/** -RAII version of require_version. Useful as a static local variable. -*/ -struct RequireVersion -{ - RequireVersion(unsigned a, unsigned b) { require_version(a, b); } -}; +/** Returns the OpenGL version number, as reported by the implementation. */ +const Version &get_gl_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. -*/ +/** Returns the address of an extension function. Only indended for internal +use. */ ExtFunc *get_proc_address(const std::string &); } // namespace GL