mirror of
https://github.com/minetest/irrlicht.git
synced 2024-12-26 16:07:31 +01:00
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() {
|
void COpenGL3Driver::initFeatures() {
|
||||||
assert (Version.Spec == OpenGLSpec::Compat);
|
assert (Version.Spec == OpenGLSpec::Compat);
|
||||||
assert (Version.Major >= 3);
|
assert (Version.Major >= 3);
|
||||||
|
if (Version.Major == 3)
|
||||||
|
assert (Version.Minor >= 2);
|
||||||
initExtensionsNew();
|
initExtensionsNew();
|
||||||
|
|
||||||
// COGLESCoreExtensionHandler::Feature
|
// COGLESCoreExtensionHandler::Feature
|
||||||
|
Loading…
Reference in New Issue
Block a user