We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc72990 commit 07598b3Copy full SHA for 07598b3
es-app/src/main.cpp
@@ -166,6 +166,10 @@ int main(int argc, char* argv[])
166
return 1;
167
}
168
169
+ std::string glExts = (const char*)glGetString(GL_EXTENSIONS);
170
+ LOG(LogInfo) << "Checking available OpenGL extensions...";
171
+ LOG(LogInfo) << " ARB_texture_non_power_of_two: " << (glExts.find("ARB_texture_non_power_of_two") != std::string::npos ? "ok" : "MISSING");
172
+
173
window.renderLoadingScreen();
174
175
0 commit comments