blob: 2f3c3517d6892ac0dae6d2cc4278dd5282826007 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QGRAPHICSFRAMEDECAPTUREMETAL_P_P_H
#define QGRAPHICSFRAMEDECAPTUREMETAL_P_P_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 "qgraphicsframecapture_p_p.h"
#include <QtCore/qmutex.h>
#if defined(Q_OS_MACOS) && QT_CONFIG(process)
#include <QtCore/qprocess.h>
#endif
Q_FORWARD_DECLARE_OBJC_CLASS(MTLCaptureManager);
Q_FORWARD_DECLARE_OBJC_CLASS(MTLCaptureDescriptor);
Q_FORWARD_DECLARE_OBJC_CLASS(NSURL);
QT_BEGIN_NAMESPACE
class QGraphicsFrameCaptureMetal : public QGraphicsFrameCapturePrivate
{
public:
QGraphicsFrameCaptureMetal();
~QGraphicsFrameCaptureMetal();
void setRhi(QRhi *rhi) override;
void startCaptureFrame() override;
void endCaptureFrame() override;
bool initialized() const override;
bool isCapturing() const override;
void openCapture() override;
private:
void updateCaptureFileName();
#if defined(Q_OS_MACOS) && QT_CONFIG(process)
QProcess *m_process = nullptr;
#endif
MTLCaptureManager *m_captureManager = nullptr;
MTLCaptureDescriptor *m_captureDescriptor = nullptr;
NSURL *m_traceURL = nullptr;
bool m_initialized = false;
static uint frameNumber;
};
QT_END_NAMESPACE
#endif // QGRAPHICSFRAMEDECAPTUREMETAL_P_P_H
|