Merge pull request #2601 from FernandoS27/texture_cache

Implement a new Texture Cache
This commit is contained in:
Zach Hilman
2019-07-05 13:39:13 -04:00
committed by GitHub
63 changed files with 4196 additions and 3269 deletions

View File

@ -750,6 +750,9 @@ void GMainWindow::OnDisplayTitleBars(bool show) {
QStringList GMainWindow::GetUnsupportedGLExtensions() {
QStringList unsupported_ext;
if (!GLAD_GL_ARB_buffer_storage) {
unsupported_ext.append(QStringLiteral("ARB_buffer_storage"));
}
if (!GLAD_GL_ARB_direct_state_access) {
unsupported_ext.append(QStringLiteral("ARB_direct_state_access"));
}