build 180918. imgui implementation upgraded to opengl3, opengl version requirement raised to 3.0

This commit is contained in:
tmj-fstate
2018-09-18 05:04:15 +02:00
parent 40afc461fa
commit 496a680e44
5 changed files with 20 additions and 19 deletions

View File

@@ -3722,8 +3722,8 @@ opengl_renderer::Init_caps() {
+ " Vendor: " + std::string( (char *)glGetString( GL_VENDOR ) )
+ " OpenGL Version: " + oglversion );
if( !GLEW_VERSION_1_5 ) {
ErrorLog( "Requires openGL >= 1.5" );
if( !GLEW_VERSION_3_0 ) {
ErrorLog( "Requires openGL >= 3.0" ); // technically 1.5 for now, but imgui wants more
return false;
}