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
23QT_BEGIN_NAMESPACE
24
26{
27inline constexpr quint32 nextMultipleOf4(quint32 value) {
28 return (value + 3) & ~3;
29}
30}
31
33{
34public:
35 QSSGRenderPath() = default;
36 explicit inline QSSGRenderPath(const QString &p, const QString &lightmapKey = {}) noexcept
38 {
39 }
40
41 inline bool isNull() const { return m_path.isNull(); }
42 inline bool isEmpty() const { return m_path.isEmpty(); }
43 QString path() const { return m_path; }
44private:
45 friend bool operator==(const QSSGRenderPath &, const QSSGRenderPath &);
47 QString m_path;
48 QString m_lightmapKey;
49 size_t m_key = 0;
50};
51
52inline bool operator==(const QSSGRenderPath &p1, const QSSGRenderPath &p2)
53{
54 return (p1.m_key == p2.m_key) && (p1.m_path == p2.m_path) && (p1.m_lightmapKey == p2.m_lightmapKey);
55}
56
57inline size_t qHash(const QSSGRenderPath &path, size_t seed) Q_DECL_NOTHROW
58{
59 return (path.m_key) ? path.m_key : qHash(path.m_path + path.m_lightmapKey, seed);
60}
61
62QT_END_NAMESPACE
63
64#endif
QSSGRenderPath()=default
friend size_t qHash(const QSSGRenderPath &, size_t) Q_DECL_NOTHROW
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)