Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qssgrendererutil_p.h
Go to the documentation of this file.
1// Copyright (C) 2008-2012 NVIDIA Corporation.
2// Copyright (C) 2019 The Qt Company Ltd.
3// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
4// Qt-Security score:significant reason:default
5
6
7#ifndef QSSG_RENDERER_UTIL_H
8#define QSSG_RENDERER_UTIL_H
9
10//
11// W A R N I N G
12// -------------
13//
14// This file is not part of the Qt API. It exists purely as an
15// implementation detail. This header file may change from version to
16// version without notice, or even be removed.
17//
18// We mean it.
19//
20
21#include <QtQuick3DUtils/private/qssgrenderbasetypes_p.h>
22
23#include <QtCore/qhashfunctions.h>
24#include <QtCore/qstring.h>
25
26QT_BEGIN_NAMESPACE
27
29{
30inline constexpr quint32 nextMultipleOf4(quint32 value) {
31 return (value + 3) & ~3;
32}
33}
34
36{
37public:
38 QSSGRenderPath() = default;
39 explicit inline QSSGRenderPath(const QString &p, const QString &lightmapKey = {}) noexcept
42 {
43 }
44
45 inline bool isNull() const { return m_path.isNull(); }
46 inline bool isEmpty() const { return m_path.isEmpty(); }
47 QString path() const { return m_path; }
48private:
49 friend bool operator==(const QSSGRenderPath &, const QSSGRenderPath &);
50 friend size_t qHash(const QSSGRenderPath &key, size_t seed = 0) noexcept
51 {
52 return key.m_key ? key.m_key : qHashMulti(seed, key.m_path, key.m_lightmapKey);
53 }
54 QString m_path;
55 QString m_lightmapKey;
56 size_t m_key = 0;
57};
58
59inline bool operator==(const QSSGRenderPath &p1, const QSSGRenderPath &p2)
60{
61 return (p1.m_key == p2.m_key) && (p1.m_path == p2.m_path) && (p1.m_lightmapKey == p2.m_lightmapKey);
62}
63
64QT_END_NAMESPACE
65
66#endif
QSSGRenderPath()=default
friend size_t qHash(const QSSGRenderPath &key, size_t seed=0) noexcept
QString path() const
QSSGRenderPath(const QString &p, const QString &lightmapKey={}) noexcept
friend bool operator==(const QSSGRenderPath &, const QSSGRenderPath &)
bool isEmpty() const
bool isNull() const
constexpr quint32 nextMultipleOf4(quint32 value)