diff --git a/src/provider/core/openglinfosource.cpp b/src/provider/core/openglinfosource.cpp index 76efb7a..00f3c64 100644 --- a/src/provider/core/openglinfosource.cpp +++ b/src/provider/core/openglinfosource.cpp @@ -1,107 +1,111 @@ /* Copyright (C) 2017 Volker Krause Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "openglinfosource.h" #include "openglinfosource_p.h" #include +#ifndef QT_NO_OPENGL #include #include #include #include +#endif using namespace KUserFeedback; OpenGLInfoSource::OpenGLInfoSource() : AbstractDataSource(QStringLiteral("opengl"), Provider::DetailedSystemInformation) { } QString OpenGLInfoSource::description() const { return tr("Information about type, version and vendor of the OpenGL stack."); } QVariant OpenGLInfoSource::data() { QVariantMap m; +#ifndef QT_NO_OPENGL QOpenGLContext context; if (context.create()) { QWindow window; window.setSurfaceType(QSurface::OpenGLSurface); window.create(); context.makeCurrent(&window); QOpenGLFunctions functions(&context); m.insert(QStringLiteral("vendor"), OpenGLInfoSourcePrivate::normalizeVendor(reinterpret_cast(functions.glGetString(GL_VENDOR)))); m.insert(QStringLiteral("renderer"), OpenGLInfoSourcePrivate::normalizeRenderer(reinterpret_cast(functions.glGetString(GL_RENDERER)))); switch (context.openGLModuleType()) { case QOpenGLContext::LibGL: { m.insert(QStringLiteral("type"), QStringLiteral("GL")); #if defined(GL_MAJOR_VERSION) && defined(GL_MINOR_VERSION) int major = 0, minor = 0; functions.glGetIntegerv(GL_MAJOR_VERSION, &major); functions.glGetIntegerv(GL_MINOR_VERSION, &minor); // e.g. macOS legacy profiles return 0.0 here... if (major > 0) m.insert(QStringLiteral("version"), QString(QString::number(major) + QLatin1Char('.') + QString::number(minor))); #endif OpenGLInfoSourcePrivate::parseGLVersion(reinterpret_cast(functions.glGetString(GL_VERSION)), m); OpenGLInfoSourcePrivate::parseGLSLVersion(reinterpret_cast(functions.glGetString(GL_SHADING_LANGUAGE_VERSION)), m); break; } case QOpenGLContext::LibGLES: { m.insert(QStringLiteral("type"), QStringLiteral("GLES")); OpenGLInfoSourcePrivate::parseGLESVersion(reinterpret_cast(functions.glGetString(GL_VERSION)), m); OpenGLInfoSourcePrivate::parseESGLSLVersion(reinterpret_cast(functions.glGetString(GL_SHADING_LANGUAGE_VERSION)), m); break; } } switch (context.format().profile()) { case QSurfaceFormat::NoProfile: break; case QSurfaceFormat::CoreProfile: m.insert(QStringLiteral("profile"), QStringLiteral("core")); break; case QSurfaceFormat::CompatibilityProfile: m.insert(QStringLiteral("profile"), QStringLiteral("compat")); break; } return m; } +#endif m.insert(QStringLiteral("type"), QStringLiteral("none")); return m; } QString OpenGLInfoSource::name() const { return tr("OpenGL information"); }