X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fextension.h;h=4072869cc25662d8c76fe2d4ab94c5700515f2a3;hb=ab83db6f1e31d44ced585119a57fd10896e469cb;hp=d6eb75f6a396eccec9c17cd7e6a111e3cb7406aa;hpb=5318aa4fd553be4ce0bc428e73592b787842cdea;p=libs%2Fgl.git diff --git a/source/extension.h b/source/extension.h index d6eb75f6..4072869c 100644 --- a/source/extension.h +++ b/source/extension.h @@ -1,18 +1,17 @@ -/* $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 { +struct Version +{ + unsigned short major; + unsigned short minor; +}; + typedef void ExtFunc(); /** @@ -27,7 +26,39 @@ Checks that an extension is supported and throws if it isn't. void require_extension(const std::string &); /** -Returns the address of an extension function. +RAII version of require_extension. Useful as a static local variable. +*/ +struct RequireExtension +{ + RequireExtension(const std::string &e) { require_extension(e); } +}; + +/** +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); + +/** +Checks that the OpenGL version is at least a.b and throws if it isn't. +*/ +void require_version(unsigned a, unsigned b); + +/** +RAII version of require_version. Useful as a static local variable. +*/ +struct RequireVersion +{ + RequireVersion(unsigned a, unsigned b) { require_version(a, b); } +}; + +/** +Returns the address of an extension function. Only indended for internal use. */ ExtFunc *get_proc_address(const std::string &);