return extensions.count(ext);
}
+void require_extension(const string &ext)
+{
+ if(!is_supported(ext))
+ throw UnsupportedExtension(ext);
+}
+
const Version &get_gl_version()
{
static Version version;
return version;
}
-void require_extension(const string &ext)
+bool is_version_at_least(unsigned a, unsigned b)
{
- if(!is_supported(ext))
- throw UnsupportedExtension(ext);
+ const Version &ver = get_gl_version();
+ return (ver.major>a || (ver.major==a && ver.minor>=b));
}
void require_version(unsigned a, unsigned b)
{
- const Version &ver = get_gl_version();
- if(ver.major<a || (ver.major==a && ver.minor<b))
+ if(!is_version_at_least(a, b))
throw UnsupportedExtension(format("OpenGL %d.%d", a, b));
}
/* $Id$
This file is part of libmspgl
-Copyright © 2007 Mikko Rasa, Mikkosoft Productions
+Copyright © 2007-2008, 2010 Mikko Rasa, Mikkosoft Productions
Distributed under the LGPL
*/
*/
bool is_supported(const std::string &);
-/**
-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();
-
/**
Checks that an extension is supported and throws if it isn't.
*/
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.
*/
};
/**
-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 &);