1 | /* |
---|---|
2 | * Copyright (c) 2008-2015, NVIDIA CORPORATION. All rights reserved. |
3 | * |
4 | * NVIDIA CORPORATION and its licensors retain all intellectual property |
5 | * and proprietary rights in and to this software, related documentation |
6 | * and any modifications thereto. Any use, reproduction, disclosure or |
7 | * distribution of this software and related documentation without an express |
8 | * license agreement from NVIDIA CORPORATION is strictly prohibited. |
9 | */ |
10 | |
11 | |
12 | |
13 | #define THERE_IS_NO_INCLUDE_GUARD_HERE_FOR_A_REASON |
14 | |
15 | #ifndef DECLARE_BASE_PVD_TYPE |
16 | #define DECLARE_BASE_PVD_TYPE(x) |
17 | #endif |
18 | |
19 | DECLARE_BASE_PVD_TYPE( PxI8 ) |
20 | DECLARE_BASE_PVD_TYPE( PxU8 ) |
21 | DECLARE_BASE_PVD_TYPE( PxI16 ) |
22 | DECLARE_BASE_PVD_TYPE( PxU16 ) |
23 | DECLARE_BASE_PVD_TYPE( PxI32 ) |
24 | DECLARE_BASE_PVD_TYPE( PxU32 ) |
25 | DECLARE_BASE_PVD_TYPE( PxI64 ) |
26 | DECLARE_BASE_PVD_TYPE( PxU64 ) |
27 | DECLARE_BASE_PVD_TYPE( PxF32 ) |
28 | DECLARE_BASE_PVD_TYPE( PxF64 ) |
29 | DECLARE_BASE_PVD_TYPE( PvdBool ) |
30 | DECLARE_BASE_PVD_TYPE( PvdColor ) |
31 | DECLARE_BASE_PVD_TYPE( String ) //Not allowed inside the object model itself |
32 | DECLARE_BASE_PVD_TYPE( StringHandle ) //StringTable::strToHandle |
33 | DECLARE_BASE_PVD_TYPE( ObjectRef ) //Reference to another object. |
34 | DECLARE_BASE_PVD_TYPE( VoidPtr ) //void*, so varies size by platform |
35 | DECLARE_BASE_PVD_TYPE( PxVec2 ) |
36 | DECLARE_BASE_PVD_TYPE( PxVec3 ) |
37 | DECLARE_BASE_PVD_TYPE( PxVec4 ) |
38 | DECLARE_BASE_PVD_TYPE( PxBounds3 ) |
39 | DECLARE_BASE_PVD_TYPE( PxQuat ) |
40 | DECLARE_BASE_PVD_TYPE( PxTransform ) |
41 | DECLARE_BASE_PVD_TYPE( PxMat33 ) |
42 | DECLARE_BASE_PVD_TYPE( PxMat44 ) |
43 | DECLARE_BASE_PVD_TYPE( PxMat34Legacy ) |
44 | DECLARE_BASE_PVD_TYPE( U32Array4 ) |
45 | |
46 | #undef THERE_IS_NO_INCLUDE_GUARD_HERE_FOR_A_REASON |
47 |