forked from Mirrorlandia_minetest/irrlicht
OpenGL3: Refuse 3.0 and 3.1
This commit is contained in:
parent
8cf02ea27f
commit
523590e16c
@ -29,6 +29,8 @@ namespace video {
|
||||
void COpenGL3Driver::initFeatures() {
|
||||
assert (Version.Spec == OpenGLSpec::Compat);
|
||||
assert (Version.Major >= 3);
|
||||
if (Version.Major == 3)
|
||||
assert (Version.Minor >= 2);
|
||||
initExtensionsNew();
|
||||
|
||||
// COGLESCoreExtensionHandler::Feature
|
||||
|
Loading…
Reference in New Issue
Block a user