blob: 57ed8f6e1dd0e1b5e35ae57ee72ade0d9833a29b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#ifndef QQUICK3DPROFILERADAPTER_H
#define QQUICK3DPROFILERADAPTER_H
//
// W A R N I N G
// -------------
//
// This file is not part of the Qt API. It exists purely as an
// implementation detail. This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
//
#include <QtQml/private/qqmlabstractprofileradapter_p.h>
#include <QtQuick3DUtils/private/qquick3dprofiler_p.h>
QT_BEGIN_NAMESPACE
class QQuick3DProfilerAdapter : public QQmlAbstractProfilerAdapter {
Q_OBJECT
public:
QQuick3DProfilerAdapter(QObject *parent = 0);
~QQuick3DProfilerAdapter();
qint64 sendMessages(qint64 until, QList<QByteArray> &messages) override;
void receiveData(const QVector<QQuick3DProfilerData> &new_data, const QHash<int, QByteArray> &eventData);
private:
int next;
QVector<QQuick3DProfilerData> m_data;
QHash<int, QByteArray> m_eventData;
};
QT_END_NAMESPACE
#endif // QQUICK3DPROFILERADAPTER_H
|