mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Cough.. But I will fix linux BrokenGL builds first
This commit is contained in:
parent
bb9605fd9b
commit
8e6968fb6d
@ -9,7 +9,9 @@
|
||||
#include <QDateTime>
|
||||
#include <QDir>
|
||||
#include <QThread>
|
||||
#ifndef BROKEN_OPENGL_BUILD
|
||||
#include <QGLWidget>
|
||||
#endif
|
||||
#include <QOpenGLFunctions>
|
||||
#include <QDebug>
|
||||
#include <QDir>
|
||||
@ -96,25 +98,30 @@ void setCurrentGFXEngine(GFXEngine e)
|
||||
QString getOpenGLVersionString()
|
||||
{
|
||||
static QString glversion;
|
||||
if (glversion.isEmpty()) {
|
||||
|
||||
#ifdef BROKEN_OPENGL_BUILD
|
||||
glversion="LegacyGFX";
|
||||
qDebug() << "This LegacyGFX build has been created without the need for OpenGL";
|
||||
#else
|
||||
|
||||
if (glversion.isEmpty()) {
|
||||
QGLWidget w;
|
||||
w.makeCurrent();
|
||||
|
||||
#if QT_VERSION < QT_VERSION_CHECK(5,4,0)
|
||||
glversion = QString(QLatin1String(reinterpret_cast<const char*>(glGetString(GL_VERSION))));
|
||||
#else
|
||||
QOpenGLFunctions f;
|
||||
f.initializeOpenGLFunctions();
|
||||
glversion = QString(QLatin1String(reinterpret_cast<const char*>(f.glGetString(GL_VERSION))));
|
||||
#endif
|
||||
qDebug() << "OpenGL Version:" << glversion;
|
||||
}
|
||||
return glversion;
|
||||
#endif
|
||||
}
|
||||
return glversion;
|
||||
}
|
||||
|
||||
float getOpenGLVersion()
|
||||
{
|
||||
#ifdef BROKEN_OPENGL_BUILD
|
||||
return 0;
|
||||
#else
|
||||
QString glversion = getOpenGLVersionString();
|
||||
glversion = glversion.section(" ",0,0);
|
||||
bool ok;
|
||||
@ -130,6 +137,7 @@ float getOpenGLVersion()
|
||||
}
|
||||
}
|
||||
return v;
|
||||
#endif
|
||||
}
|
||||
|
||||
QString getGraphicsEngine()
|
||||
|
@ -133,10 +133,6 @@ int main(int argc, char *argv[])
|
||||
|
||||
mainwin = new MainWindow;
|
||||
|
||||
#ifdef BROKEN_OPENGL_BUILD
|
||||
qDebug() << "This build has been created especially for computers with older graphics hardware.\n";
|
||||
#endif
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////
|
||||
// OpenGL Detection
|
||||
////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -10,7 +10,9 @@
|
||||
#define MAINWINDOW_H
|
||||
|
||||
#include <QMainWindow>
|
||||
#ifndef BROKEN_OPENGL_BUILD
|
||||
#include <QGLContext>
|
||||
#endif
|
||||
#include <QSystemTrayIcon>
|
||||
#include <QTimer>
|
||||
|
||||
|
@ -10,7 +10,9 @@
|
||||
#define OVERVIEW_H
|
||||
|
||||
#include <QWidget>
|
||||
#ifndef BROKEN_OPENGL_BUILD
|
||||
#include <QGLContext>
|
||||
#endif
|
||||
#include <QHBoxLayout>
|
||||
#include <QDateEdit>
|
||||
#include "SleepLib/profiles.h"
|
||||
|
Loading…
Reference in New Issue
Block a user