blob: 4493d74786bd7da5695d41fd3f7a5f3b4cfac3e0 (
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
|
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#ifndef STATICPHYSXOBJECTS_H
#define STATICPHYSXOBJECTS_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 "qtconfigmacros.h"
#include "extensions/PxDefaultAllocator.h"
#include "extensions/PxDefaultErrorCallback.h"
namespace physx {
class PxPvdTransport;
class PxPvd;
class PxFoundation;
class PxDefaultCpuDispatcher;
class PxCooking;
}
QT_BEGIN_NAMESPACE
struct StaticPhysXObjects
{
physx::PxDefaultErrorCallback defaultErrorCallback;
physx::PxDefaultAllocator defaultAllocatorCallback;
physx::PxFoundation *foundation = nullptr;
physx::PxPvd *pvd = nullptr;
physx::PxPvdTransport *transport = nullptr;
physx::PxPhysics *physics = nullptr;
physx::PxDefaultCpuDispatcher *dispatcher = nullptr;
physx::PxCooking *cooking = nullptr;
unsigned int foundationRefCount = 0;
bool foundationCreated = false;
bool physicsCreated = false;
static StaticPhysXObjects &getReference();
};
QT_END_NAMESPACE
#endif
|