X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fextension.h;h=69308241d96e3bd16867ff9d0f2c68d2defcaa12;hp=aec516e2766a3bce033f3bbd0e7942e04417c587;hb=f14435e58bfa0fa697a06ba9a454bb30cd37d9d8;hpb=a4ec5410595ddf37bfbc0e85ad87d31a9cbf94f1 diff --git a/source/extension.h b/source/extension.h index aec516e2..69308241 100644 --- a/source/extension.h +++ b/source/extension.h @@ -1,10 +1,3 @@ -/* $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_ @@ -27,6 +20,19 @@ functions of that extension are safe to use. */ bool is_supported(const std::string &); +/** +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 +{ + 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. @@ -34,9 +40,9 @@ Functions up to the returned version are safe to use. const Version &get_gl_version(); /** -Checks that an extension is supported and throws if it isn't. +Indicates whether the OpenGL version is at least a.b. */ -void require_extension(const std::string &); +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. @@ -44,7 +50,15 @@ Checks that the OpenGL version is at least a.b and throws if it isn't. void require_version(unsigned a, unsigned b); /** -Returns the address of an extension function. +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 &);