2012-08-08 15:43:48 +00:00
|
|
|
/***************************************************************************
|
|
|
|
**
|
|
|
|
** Copyright (C) 2013 Klaralvdalens Datakonsult AB (KDAB)
|
2016-01-15 12:36:27 +00:00
|
|
|
** Contact: https://www.qt.io/licensing/
|
2012-08-08 15:43:48 +00:00
|
|
|
**
|
|
|
|
** This file is part of the utilities of the Qt Toolkit.
|
|
|
|
**
|
2016-01-15 12:36:27 +00:00
|
|
|
** $QT_BEGIN_LICENSE:GPL-EXCEPT$
|
2012-08-08 15:43:48 +00:00
|
|
|
** 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
|
2015-01-28 08:44:43 +00:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
2016-01-15 12:36:27 +00:00
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2012-08-08 15:43:48 +00:00
|
|
|
**
|
2016-01-15 12:36:27 +00:00
|
|
|
** GNU General Public License Usage
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2012-08-08 15:43:48 +00:00
|
|
|
**
|
|
|
|
** $QT_END_LICENSE$
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
2014-07-02 16:43:16 +00:00
|
|
|
#include "legacyspecparser.h"
|
2012-08-08 15:43:48 +00:00
|
|
|
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QFile>
|
|
|
|
#include <QRegExp>
|
|
|
|
#include <QStringList>
|
|
|
|
#include <QTextStream>
|
|
|
|
|
|
|
|
#ifdef SPECPARSER_DEBUG
|
2014-07-02 16:43:16 +00:00
|
|
|
#define qLegacySpecParserDebug qDebug
|
2012-08-08 15:43:48 +00:00
|
|
|
#else
|
2014-07-02 16:43:16 +00:00
|
|
|
#define qLegacySpecParserDebug QT_NO_QDEBUG_MACRO
|
2012-08-08 15:43:48 +00:00
|
|
|
#endif
|
|
|
|
|
2014-07-02 16:43:16 +00:00
|
|
|
bool LegacySpecParser::parse()
|
2012-08-08 15:43:48 +00:00
|
|
|
{
|
|
|
|
// Get the mapping form generic types to specific types suitable for use in C-headers
|
|
|
|
if (!parseTypeMap())
|
2014-07-02 16:43:16 +00:00
|
|
|
return false;
|
2012-08-08 15:43:48 +00:00
|
|
|
|
|
|
|
// Open up a stream on the actual OpenGL function spec file
|
2014-07-02 16:43:16 +00:00
|
|
|
QFile file(specFileName());
|
2012-08-08 15:43:48 +00:00
|
|
|
if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) {
|
2014-07-02 16:43:16 +00:00
|
|
|
qWarning() << "Failed to open spec file:" << specFileName() << "Aborting";
|
|
|
|
return false;
|
2012-08-08 15:43:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QTextStream stream(&file);
|
|
|
|
|
|
|
|
// Extract the info that we need
|
|
|
|
parseFunctions(stream);
|
2014-07-02 16:43:16 +00:00
|
|
|
return true;
|
2012-08-08 15:43:48 +00:00
|
|
|
}
|
|
|
|
|
2014-07-02 16:43:16 +00:00
|
|
|
bool LegacySpecParser::parseTypeMap()
|
2012-08-08 15:43:48 +00:00
|
|
|
{
|
2014-07-02 16:43:16 +00:00
|
|
|
QFile file(typeMapFileName());
|
2012-08-08 15:43:48 +00:00
|
|
|
if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) {
|
2014-07-02 16:43:16 +00:00
|
|
|
qWarning() << "Failed to open type file:" << typeMapFileName() << "Aborting";
|
2012-08-08 15:43:48 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
QTextStream stream(&file);
|
|
|
|
|
|
|
|
static QRegExp typeMapRegExp("([^,]+)\\W+([^,]+)");
|
|
|
|
|
|
|
|
while (!stream.atEnd()) {
|
|
|
|
QString line = stream.readLine();
|
|
|
|
|
Don't use QStringLiteral in comparisons
For QLatin1String, operator== is overloaded, so comparing to a latin-1
(C) string literal is efficient, since strlen() is comparatively fast.
OTOH, QStringLiteral, when not using RVO, litters the code with
QString dtor calls, which are not inline. Worse, absent lambdas,
it even allocates memory.
So, just compare using QLatin1String instead.
Change-Id: I761b2b26ab5b416bc695f524a9ee607dacf0a7b2
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Reviewed-by: Marc Mutz <marc.mutz@kdab.com>
2016-01-19 08:49:37 +00:00
|
|
|
if (line.startsWith(QLatin1Char('#')))
|
2012-08-08 15:43:48 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
if (typeMapRegExp.indexIn(line) != -1) {
|
|
|
|
QString key = typeMapRegExp.cap(1).simplified();
|
|
|
|
QString value = typeMapRegExp.cap(2).simplified();
|
|
|
|
|
|
|
|
// Special case for void
|
Don't use QStringLiteral in comparisons
For QLatin1String, operator== is overloaded, so comparing to a latin-1
(C) string literal is efficient, since strlen() is comparatively fast.
OTOH, QStringLiteral, when not using RVO, litters the code with
QString dtor calls, which are not inline. Worse, absent lambdas,
it even allocates memory.
So, just compare using QLatin1String instead.
Change-Id: I761b2b26ab5b416bc695f524a9ee607dacf0a7b2
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Reviewed-by: Marc Mutz <marc.mutz@kdab.com>
2016-01-19 08:49:37 +00:00
|
|
|
if (value == QLatin1String("*"))
|
2012-08-08 15:43:48 +00:00
|
|
|
value = QStringLiteral("void");
|
|
|
|
|
|
|
|
m_typeMap.insert(key, value);
|
2014-07-02 16:43:16 +00:00
|
|
|
qLegacySpecParserDebug() << "Found type mapping from" << key << "=>" << value;
|
2012-08-08 15:43:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-07-02 16:43:16 +00:00
|
|
|
void LegacySpecParser::parseEnums()
|
2012-08-08 15:43:48 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-07-02 16:43:16 +00:00
|
|
|
void LegacySpecParser::parseFunctions(QTextStream &stream)
|
2012-08-08 15:43:48 +00:00
|
|
|
{
|
|
|
|
static QRegExp functionRegExp("^(\\w+)\\(.*\\)");
|
|
|
|
static QRegExp returnRegExp("^\\treturn\\s+(\\S+)");
|
|
|
|
static QRegExp argumentRegExp("param\\s+(\\S+)\\s+(\\S+) (\\S+) (\\S+)");
|
|
|
|
static QRegExp versionRegExp("^\\tversion\\s+(\\S+)");
|
|
|
|
static QRegExp deprecatedRegExp("^\\tdeprecated\\s+(\\S+)");
|
|
|
|
static QRegExp categoryRegExp("^\\tcategory\\s+(\\S+)");
|
|
|
|
static QRegExp categoryVersionRegExp("VERSION_(\\d)_(\\d)");
|
|
|
|
static QRegExp extToCoreVersionRegExp("passthru:\\s/\\*\\sOpenGL\\s(\\d)\\.(\\d)\\s.*\\sextensions:");
|
|
|
|
static QRegExp extToCoreRegExp("passthru:\\s/\\*\\s(ARB_\\S*)\\s.*\\*/");
|
|
|
|
|
|
|
|
Function currentFunction;
|
|
|
|
VersionProfile currentVersionProfile;
|
|
|
|
QString currentCategory;
|
|
|
|
bool haveVersionInfo = false;
|
|
|
|
bool acceptCurrentFunctionInCore = false;
|
|
|
|
bool acceptCurrentFunctionInExtension = false;
|
|
|
|
|
|
|
|
QHash<QString, Version> extensionsNowInCore;
|
|
|
|
Version extToCoreCurrentVersion;
|
|
|
|
int functionCount = 0;
|
|
|
|
|
|
|
|
QSet<Version> versions;
|
|
|
|
|
|
|
|
while (!stream.atEnd()) {
|
|
|
|
QString line = stream.readLine();
|
|
|
|
if (line.startsWith("#"))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (functionRegExp.indexIn(line) != -1) {
|
|
|
|
|
|
|
|
if (!currentFunction.name.isEmpty()) {
|
|
|
|
|
|
|
|
// NB - Special handling!
|
|
|
|
// Versions 4.2 and 4.3 (and probably newer) add functionality by
|
|
|
|
// subsuming extensions such as ARB_texture_storage. However, some extensions
|
|
|
|
// also include functions to interact with the EXT_direct_state_access
|
|
|
|
// extension. These functions should be added to the DSA extension rather
|
|
|
|
// than the core functionality. The core will already contain non-DSA
|
|
|
|
// versions of these functions.
|
Don't use QStringLiteral in comparisons
For QLatin1String, operator== is overloaded, so comparing to a latin-1
(C) string literal is efficient, since strlen() is comparatively fast.
OTOH, QStringLiteral, when not using RVO, litters the code with
QString dtor calls, which are not inline. Worse, absent lambdas,
it even allocates memory.
So, just compare using QLatin1String instead.
Change-Id: I761b2b26ab5b416bc695f524a9ee607dacf0a7b2
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Reviewed-by: Marc Mutz <marc.mutz@kdab.com>
2016-01-19 08:49:37 +00:00
|
|
|
if (acceptCurrentFunctionInCore && currentFunction.name.endsWith(QLatin1String("EXT"))) {
|
2012-08-08 15:43:48 +00:00
|
|
|
acceptCurrentFunctionInCore = false;
|
|
|
|
acceptCurrentFunctionInExtension = true;
|
|
|
|
currentCategory = QStringLiteral("EXT_direct_state_access");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Finish off previous function (if any) by inserting it into the core
|
|
|
|
// functionality or extension functionality (or both)
|
|
|
|
if (acceptCurrentFunctionInCore) {
|
|
|
|
m_functions.insert(currentVersionProfile, currentFunction);
|
|
|
|
versions.insert(currentVersionProfile.version);
|
|
|
|
}
|
|
|
|
|
2014-07-02 16:43:16 +00:00
|
|
|
if (acceptCurrentFunctionInExtension) {
|
|
|
|
FunctionProfile fp;
|
|
|
|
fp.profile = currentVersionProfile.profile;
|
|
|
|
fp.function = currentFunction;
|
|
|
|
m_extensionFunctions.insert(currentCategory, fp);
|
|
|
|
}
|
2012-08-08 15:43:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Start a new function
|
|
|
|
++functionCount;
|
|
|
|
haveVersionInfo = false;
|
|
|
|
acceptCurrentFunctionInCore = true;
|
|
|
|
acceptCurrentFunctionInExtension = false;
|
|
|
|
currentCategory = QString();
|
|
|
|
currentFunction = Function();
|
|
|
|
|
|
|
|
// We assume a core function unless we find a deprecated flag (see below)
|
|
|
|
currentVersionProfile = VersionProfile();
|
|
|
|
currentVersionProfile.profile = VersionProfile::CoreProfile;
|
|
|
|
|
|
|
|
// Extract the function name
|
|
|
|
QString functionName = functionRegExp.cap(1);
|
|
|
|
currentFunction.name = functionName;
|
2014-07-02 16:43:16 +00:00
|
|
|
qLegacySpecParserDebug() << "Found function:" << functionName;
|
2012-08-08 15:43:48 +00:00
|
|
|
|
|
|
|
} else if (argumentRegExp.indexIn(line) != -1) {
|
|
|
|
// Extract info about this function argument
|
|
|
|
Argument arg;
|
|
|
|
arg.name = argumentRegExp.cap(1);
|
|
|
|
|
|
|
|
QString type = argumentRegExp.cap(2); // Lookup in type map
|
|
|
|
arg.type = m_typeMap.value(type);
|
|
|
|
|
|
|
|
QString direction = argumentRegExp.cap(3);
|
Don't use QStringLiteral in comparisons
For QLatin1String, operator== is overloaded, so comparing to a latin-1
(C) string literal is efficient, since strlen() is comparatively fast.
OTOH, QStringLiteral, when not using RVO, litters the code with
QString dtor calls, which are not inline. Worse, absent lambdas,
it even allocates memory.
So, just compare using QLatin1String instead.
Change-Id: I761b2b26ab5b416bc695f524a9ee607dacf0a7b2
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Reviewed-by: Marc Mutz <marc.mutz@kdab.com>
2016-01-19 08:49:37 +00:00
|
|
|
if (direction == QLatin1String("in")) {
|
2012-08-08 15:43:48 +00:00
|
|
|
arg.direction = Argument::In;
|
Don't use QStringLiteral in comparisons
For QLatin1String, operator== is overloaded, so comparing to a latin-1
(C) string literal is efficient, since strlen() is comparatively fast.
OTOH, QStringLiteral, when not using RVO, litters the code with
QString dtor calls, which are not inline. Worse, absent lambdas,
it even allocates memory.
So, just compare using QLatin1String instead.
Change-Id: I761b2b26ab5b416bc695f524a9ee607dacf0a7b2
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Reviewed-by: Marc Mutz <marc.mutz@kdab.com>
2016-01-19 08:49:37 +00:00
|
|
|
} else if (direction == QLatin1String("out")) {
|
2012-08-08 15:43:48 +00:00
|
|
|
arg.direction = Argument::Out;
|
|
|
|
} else {
|
|
|
|
qWarning() << "Invalid argument direction found:" << direction;
|
|
|
|
acceptCurrentFunctionInCore = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString mode = argumentRegExp.cap(4);
|
Don't use QStringLiteral in comparisons
For QLatin1String, operator== is overloaded, so comparing to a latin-1
(C) string literal is efficient, since strlen() is comparatively fast.
OTOH, QStringLiteral, when not using RVO, litters the code with
QString dtor calls, which are not inline. Worse, absent lambdas,
it even allocates memory.
So, just compare using QLatin1String instead.
Change-Id: I761b2b26ab5b416bc695f524a9ee607dacf0a7b2
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Reviewed-by: Marc Mutz <marc.mutz@kdab.com>
2016-01-19 08:49:37 +00:00
|
|
|
if (mode == QLatin1String("value")) {
|
2012-08-08 15:43:48 +00:00
|
|
|
arg.mode = Argument::Value;
|
Don't use QStringLiteral in comparisons
For QLatin1String, operator== is overloaded, so comparing to a latin-1
(C) string literal is efficient, since strlen() is comparatively fast.
OTOH, QStringLiteral, when not using RVO, litters the code with
QString dtor calls, which are not inline. Worse, absent lambdas,
it even allocates memory.
So, just compare using QLatin1String instead.
Change-Id: I761b2b26ab5b416bc695f524a9ee607dacf0a7b2
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Reviewed-by: Marc Mutz <marc.mutz@kdab.com>
2016-01-19 08:49:37 +00:00
|
|
|
} else if (mode == QLatin1String("array")) {
|
2012-08-08 15:43:48 +00:00
|
|
|
arg.mode = Argument::Array;
|
Don't use QStringLiteral in comparisons
For QLatin1String, operator== is overloaded, so comparing to a latin-1
(C) string literal is efficient, since strlen() is comparatively fast.
OTOH, QStringLiteral, when not using RVO, litters the code with
QString dtor calls, which are not inline. Worse, absent lambdas,
it even allocates memory.
So, just compare using QLatin1String instead.
Change-Id: I761b2b26ab5b416bc695f524a9ee607dacf0a7b2
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Reviewed-by: Marc Mutz <marc.mutz@kdab.com>
2016-01-19 08:49:37 +00:00
|
|
|
} else if (mode == QLatin1String("reference")) {
|
2012-08-08 15:43:48 +00:00
|
|
|
arg.mode = Argument::Reference;
|
|
|
|
} else {
|
|
|
|
qWarning() << "Invalid argument mode found:" << mode;
|
|
|
|
acceptCurrentFunctionInCore = false;
|
|
|
|
}
|
|
|
|
|
2014-07-02 16:43:16 +00:00
|
|
|
qLegacySpecParserDebug() << " argument:" << arg.type << arg.name;
|
2012-08-08 15:43:48 +00:00
|
|
|
currentFunction.arguments.append(arg);
|
|
|
|
|
|
|
|
} else if (returnRegExp.indexIn(line) != -1) {
|
|
|
|
// Lookup the return type from the typemap
|
|
|
|
QString returnTypeKey = returnRegExp.cap(1).simplified();
|
|
|
|
if (!m_typeMap.contains(returnTypeKey)) {
|
|
|
|
qWarning() << "Unknown return type found:" << returnTypeKey;
|
|
|
|
acceptCurrentFunctionInCore = false;
|
|
|
|
}
|
|
|
|
QString returnType = m_typeMap.value(returnTypeKey);
|
2014-07-02 16:43:16 +00:00
|
|
|
qLegacySpecParserDebug() << " return type:" << returnType;
|
2012-08-08 15:43:48 +00:00
|
|
|
currentFunction.returnType = returnType;
|
|
|
|
|
|
|
|
} else if (versionRegExp.indexIn(line) != -1 && !haveVersionInfo) { // Only use version line if no other source
|
|
|
|
// Extract the OpenGL version in which this function was introduced
|
|
|
|
QString version = versionRegExp.cap(1);
|
2014-07-02 16:43:16 +00:00
|
|
|
qLegacySpecParserDebug() << " version:" << version;
|
2012-08-08 15:43:48 +00:00
|
|
|
QStringList parts = version.split(QLatin1Char('.'));
|
|
|
|
if (parts.size() != 2) {
|
|
|
|
qWarning() << "Found invalid version number";
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
int majorVersion = parts.first().toInt();
|
|
|
|
int minorVersion = parts.last().toInt();
|
|
|
|
Version v;
|
|
|
|
v.major = majorVersion;
|
|
|
|
v.minor = minorVersion;
|
|
|
|
currentVersionProfile.version = v;
|
|
|
|
|
|
|
|
} else if (deprecatedRegExp.indexIn(line) != -1) {
|
|
|
|
// Extract the OpenGL version in which this function was deprecated.
|
|
|
|
// If it is OpenGL 3.1 then it must be a compatibility profile function
|
|
|
|
QString deprecatedVersion = deprecatedRegExp.cap(1).simplified();
|
Don't use QStringLiteral in comparisons
For QLatin1String, operator== is overloaded, so comparing to a latin-1
(C) string literal is efficient, since strlen() is comparatively fast.
OTOH, QStringLiteral, when not using RVO, litters the code with
QString dtor calls, which are not inline. Worse, absent lambdas,
it even allocates memory.
So, just compare using QLatin1String instead.
Change-Id: I761b2b26ab5b416bc695f524a9ee607dacf0a7b2
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Reviewed-by: Marc Mutz <marc.mutz@kdab.com>
2016-01-19 08:49:37 +00:00
|
|
|
if (deprecatedVersion == QLatin1String("3.1") && !inDeprecationException(currentFunction.name))
|
2012-08-08 15:43:48 +00:00
|
|
|
currentVersionProfile.profile = VersionProfile::CompatibilityProfile;
|
|
|
|
|
|
|
|
} else if (categoryRegExp.indexIn(line) != -1) {
|
|
|
|
// Extract the category for this function
|
|
|
|
QString category = categoryRegExp.cap(1).simplified();
|
2014-07-02 16:43:16 +00:00
|
|
|
qLegacySpecParserDebug() << " category:" << category;
|
2012-08-08 15:43:48 +00:00
|
|
|
|
|
|
|
if (categoryVersionRegExp.indexIn(category) != -1) {
|
|
|
|
// Use the version info in the category in preference to the version
|
|
|
|
// entry as this is more applicable and consistent
|
|
|
|
int majorVersion = categoryVersionRegExp.cap(1).toInt();
|
|
|
|
int minorVersion = categoryVersionRegExp.cap(2).toInt();
|
|
|
|
|
|
|
|
Version v;
|
|
|
|
v.major = majorVersion;
|
|
|
|
v.minor = minorVersion;
|
|
|
|
currentVersionProfile.version = v;
|
|
|
|
haveVersionInfo = true;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
// Make a note of the extension name and tag this function as being part of an extension
|
2014-07-02 16:43:16 +00:00
|
|
|
qLegacySpecParserDebug() << "Found category =" << category;
|
2012-08-08 15:43:48 +00:00
|
|
|
currentCategory = category;
|
|
|
|
acceptCurrentFunctionInExtension = true;
|
|
|
|
|
|
|
|
// See if this category (extension) is in our set of extensions that
|
|
|
|
// have now been folded into the core feature set
|
|
|
|
if (extensionsNowInCore.contains(category)) {
|
|
|
|
currentVersionProfile.version = extensionsNowInCore.value(category);
|
|
|
|
haveVersionInfo = true;
|
|
|
|
} else {
|
|
|
|
acceptCurrentFunctionInCore = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if (extToCoreVersionRegExp.indexIn(line) != -1) {
|
2014-07-02 16:43:16 +00:00
|
|
|
qLegacySpecParserDebug() << line;
|
2012-08-08 15:43:48 +00:00
|
|
|
int majorVersion = extToCoreVersionRegExp.cap(1).toInt();
|
|
|
|
int minorVersion = extToCoreVersionRegExp.cap(2).toInt();
|
|
|
|
extToCoreCurrentVersion.major = majorVersion;
|
|
|
|
extToCoreCurrentVersion.minor = minorVersion;
|
|
|
|
|
|
|
|
} else if (extToCoreRegExp.indexIn(line) != -1) {
|
|
|
|
QString extension = extToCoreRegExp.cap(1);
|
|
|
|
extensionsNowInCore.insert(extension, extToCoreCurrentVersion);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
m_versions = versions.toList();
|
|
|
|
qSort(m_versions);
|
|
|
|
}
|
2013-04-04 09:36:42 +00:00
|
|
|
|
2014-07-02 16:43:16 +00:00
|
|
|
bool LegacySpecParser::inDeprecationException(const QString &functionName) const
|
2013-04-04 09:36:42 +00:00
|
|
|
{
|
Don't use QStringLiteral in comparisons
For QLatin1String, operator== is overloaded, so comparing to a latin-1
(C) string literal is efficient, since strlen() is comparatively fast.
OTOH, QStringLiteral, when not using RVO, litters the code with
QString dtor calls, which are not inline. Worse, absent lambdas,
it even allocates memory.
So, just compare using QLatin1String instead.
Change-Id: I761b2b26ab5b416bc695f524a9ee607dacf0a7b2
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Reviewed-by: Marc Mutz <marc.mutz@kdab.com>
2016-01-19 08:49:37 +00:00
|
|
|
return functionName == QLatin1String("TexImage3D");
|
2013-04-04 09:36:42 +00:00
|
|
|
}
|