16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-18 05:29:18 +02:00

build 170513. fix for switch animation for vbo render path. opengl requirement experimentally increased to 1.5+

This commit is contained in:
tmj-fstate
2017-05-13 17:11:35 +02:00
parent 5544ed33e9
commit 98d99baa82
4 changed files with 100 additions and 218 deletions

View File

@@ -1290,8 +1290,8 @@ opengl_renderer::Init_caps() {
+ " Vendor: " + std::string( (char *)glGetString( GL_VENDOR ) )
+ " OpenGL Version: " + oglversion );
if( !GLEW_VERSION_1_4 ) {
ErrorLog( "Requires openGL >= 1.4" );
if( !GLEW_VERSION_1_5 ) {
ErrorLog( "Requires openGL >= 1.5" );
return false;
}