summaryrefslogtreecommitdiffstats
path: root/src/render/materialsystem/qopenglfilter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/render/materialsystem/qopenglfilter.cpp')
-rw-r--r--src/render/materialsystem/qopenglfilter.cpp319
1 files changed, 319 insertions, 0 deletions
diff --git a/src/render/materialsystem/qopenglfilter.cpp b/src/render/materialsystem/qopenglfilter.cpp
new file mode 100644
index 000000000..3bc20a84d
--- /dev/null
+++ b/src/render/materialsystem/qopenglfilter.cpp
@@ -0,0 +1,319 @@
+/****************************************************************************
+**
+** Copyright (C) 2014 Klaralvdalens Datakonsult AB (KDAB).
+** Contact: http://www.qt-project.org/legal
+**
+** This file is part of the Qt3D module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL3$
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and The Qt Company. For licensing terms
+** and conditions see http://www.qt.io/terms-conditions. For further
+** information use the contact form at http://www.qt.io/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 3 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPLv3 included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 3 requirements
+** will be met: https://www.gnu.org/licenses/lgpl.html.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 2.0 or later as published by the Free
+** Software Foundation and appearing in the file LICENSE.GPL included in
+** the packaging of this file. Please review the following information to
+** ensure the GNU General Public License version 2.0 requirements will be
+** met: http://www.gnu.org/licenses/gpl-2.0.html.
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#include "qopenglfilter.h"
+#include "private/qobject_p.h"
+#include <QOpenGLContext>
+
+QT_BEGIN_NAMESPACE
+
+namespace Qt3DRender {
+
+class QOpenGLFilterPrivate : public QObjectPrivate
+{
+public:
+ QOpenGLFilterPrivate()
+ : QObjectPrivate()
+ , m_api(QOpenGLContext::openGLModuleType() == QOpenGLContext::LibGL ? QOpenGLFilter::Desktop : QOpenGLFilter::ES)
+ , m_profile(QOpenGLFilter::None) // matches all (no profile, core, compat)
+ , m_minor(0)
+ , m_major(0)
+ {
+ }
+
+ Q_DECLARE_PUBLIC(QOpenGLFilter)
+ QOpenGLFilter::Api m_api;
+ QOpenGLFilter::Profile m_profile;
+ int m_minor;
+ int m_major;
+ QStringList m_extensions;
+ QString m_vendor;
+};
+
+/*!
+ \class Qt3DRender::QOpenGLFilter
+ \inmodule Qt3DRenderer
+ \since 5.5
+ \brief The QOpenGLFilter class provides ...
+*/
+
+/*!
+ \qmltype OpenGLFilter
+ \instantiates Qt3DRender::QOpenGLFilter
+ \inherits QtObject
+ \inqmlmodule Qt3D.Renderer
+ \since 5.5
+ \brief For OpenGL ...
+*/
+
+/*! \fn Qt3DRender::QOpenGLFilter::QOpenGLFilter(QObject *parent)
+ Constructs a new QOpenGLFilter with the specified \a parent.
+ */
+QOpenGLFilter::QOpenGLFilter(QObject *parent)
+ : QObject(*new QOpenGLFilterPrivate, parent)
+{
+}
+
+/*! \fn void Qt3DRender::QOpenGLFilter::copy(const QOpenGLFilter &ref)
+ Copies the \a ref instance into this one.
+ */
+void QOpenGLFilter::copy(const QOpenGLFilter &ref)
+{
+ Q_D(QOpenGLFilter);
+ d->m_api = ref.api();
+ d->m_profile = ref.profile();
+ d->m_major = ref.majorVersion();
+ d->m_minor = ref.minorVersion();
+ d->m_extensions = ref.extensions();
+ d->m_vendor = ref.vendor();
+}
+
+/*!
+ \enum Qt3DRender::QOpenGLFilter::Api
+
+ \value ES QSurfaceFormat::OpenGLES
+ \value Desktop QSurfaceFormat::OpenGL
+
+*/
+
+/*!
+ \enum Qt3DRender::QOpenGLFilter::Profile
+
+ \value None QSurfaceFormat::NoProfile
+ \value Core QSurfaceFormat::CoreProfile
+ \value Compatibility QSurfaceFormat::CompatibilityProfile
+
+*/
+
+/*!
+ \property Qt3DRender::QOpenGLFilter::api
+
+*/
+
+/*!
+ \qmlproperty enumeration Qt3D.Renderer::OpenGLFilter::api
+
+
+ \value ES QSurfaceFormat::OpenGLES
+ \value Desktop QSurfaceFormat::OpenGL
+*/
+
+QOpenGLFilter::Api QOpenGLFilter::api() const
+{
+ Q_D(const QOpenGLFilter);
+ return d->m_api;
+}
+
+/*!
+ \property Qt3DRender::QOpenGLFilter::profile
+
+*/
+
+/*!
+ \qmlproperty enumeration Qt3D.Renderer::OpenGLFilter::profile
+
+ \value None QSurfaceFormat::NoProfile
+ \value Core QSurfaceFormat::CoreProfile
+ \value Compatibility QSurfaceFormat::CompatibilityProfile
+*/
+
+QOpenGLFilter::Profile QOpenGLFilter::profile() const
+{
+ Q_D(const QOpenGLFilter);
+ return d->m_profile;
+}
+
+/*!
+ \property Qt3DRender::QOpenGLFilter::minorVersion
+
+ */
+
+/*!
+ \qmlproperty int Qt3D.Renderer::OpenGLFilter::minorVersion
+
+*/
+
+int QOpenGLFilter::minorVersion() const
+{
+ Q_D(const QOpenGLFilter);
+ return d->m_minor;
+}
+
+/*!
+ \property Qt3DRender::QOpenGLFilter::majorVersion
+
+ */
+
+/*!
+ \qmlproperty int Qt3D.Renderer::OpenGLFilter::majorVersion
+
+*/
+
+int QOpenGLFilter::majorVersion() const
+{
+ Q_D(const QOpenGLFilter);
+ return d->m_major;
+}
+
+/*!
+ \property Qt3DRender::QOpenGLFilter::extensions
+
+ */
+
+/*!
+ \qmlproperty stringlist Qt3D.Renderer::OpenGLFilter::extensions
+
+*/
+
+QStringList QOpenGLFilter::extensions() const
+{
+ Q_D(const QOpenGLFilter);
+ return d->m_extensions;
+}
+
+/*!
+ \property Qt3DRender::QOpenGLFilter::vendor
+
+ */
+
+/*!
+ \qmlproperty string Qt3D.Renderer::OpenGLFilter::vendor
+
+*/
+
+QString QOpenGLFilter::vendor() const
+{
+ Q_D(const QOpenGLFilter);
+ return d->m_vendor;
+}
+
+void QOpenGLFilter::setApi(QOpenGLFilter::Api api)
+{
+ Q_D(QOpenGLFilter);
+ if (d->m_api != api) {
+ d->m_api = api;
+ emit apiChanged();
+ emit openGLFilterChanged();
+ }
+}
+
+void QOpenGLFilter::setProfile(QOpenGLFilter::Profile profile)
+{
+ Q_D(QOpenGLFilter);
+ if (d->m_profile != profile) {
+ d->m_profile = profile;
+ emit profileChanged();
+ emit openGLFilterChanged();
+ }
+}
+
+void QOpenGLFilter::setMinorVersion(int minorVersion)
+{
+ Q_D(QOpenGLFilter);
+ if (minorVersion != d->m_minor) {
+ d->m_minor = minorVersion;
+ emit minorVersionChanged();
+ emit openGLFilterChanged();
+ }
+}
+
+void QOpenGLFilter::setMajorVersion(int majorVersion)
+{
+ Q_D(QOpenGLFilter);
+ if (d->m_major != majorVersion) {
+ d->m_major = majorVersion;
+ emit majorVersionChanged();
+ emit openGLFilterChanged();
+ }
+}
+
+void QOpenGLFilter::setExtensions(const QStringList &extensions)
+{
+ Q_D(QOpenGLFilter);
+ if (d->m_extensions != extensions) {
+ d->m_extensions = extensions;
+ emit extensionsChanged();
+ emit openGLFilterChanged();
+ }
+}
+
+void QOpenGLFilter::setVendor(const QString &vendor)
+{
+ Q_D(QOpenGLFilter);
+ if (d->m_vendor != vendor) {
+ d->m_vendor = vendor;
+ emit vendorChanged();
+ emit openGLFilterChanged();
+ }
+}
+
+/*! \fn bool Qt3D::operator ==(const QOpenGLFilter &reference, const QOpenGLFilter &sample)
+ \relates Qt3DRender::QOpenGLFilter
+ Returns true if \a reference and \a sample are equivalent.
+ */
+bool operator ==(const QOpenGLFilter &reference, const QOpenGLFilter &sample)
+{
+ if (sample.api() == reference.api()
+ && sample.profile() <= reference.profile()
+ && (sample.majorVersion() < reference.majorVersion()
+ || (sample.majorVersion() == reference.majorVersion() && sample.minorVersion() <= reference.minorVersion()))) {
+ Q_FOREACH (const QString &neededExt, sample.extensions())
+ if (!reference.extensions().contains(neededExt))
+ return false;
+ // If a vendor name was specified in sample, we perform comparison,
+ // otherwise we assume the vendor name doesn't matter
+ if (!sample.vendor().isEmpty())
+ return (sample.vendor() == reference.vendor());
+ return true;
+ }
+ return false;
+}
+
+/*! \fn bool Qt3D::operator !=(const QOpenGLFilter &reference, const QOpenGLFilter &sample)
+ \relates Qt3DRender::QOpenGLFilter
+ Returns true if \a reference and \a sample are different.
+ */
+bool operator !=(const QOpenGLFilter &reference, const QOpenGLFilter &sample)
+{
+ return !(reference == sample);
+}
+
+/*! \fn void Qt3DRender::QOpenGLFilter::openGLFilterChanged()
+ This signal is emitted when the value of any property is changed.
+*/
+} // namespace Qt3DRender
+
+QT_END_NAMESPACE