| 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 | #ifndef PX_PROFILE_BASE_H |
| 12 | #define PX_PROFILE_BASE_H |
| 13 | |
| 14 | #include "foundation/PxSimpleTypes.h" |
| 15 | #include "foundation/PxAssert.h" |
| 16 | #include "foundation/PxMath.h" |
| 17 | |
| 18 | namespace physx { |
| 19 | namespace shdfnd {} |
| 20 | namespace profile {} |
| 21 | } |
| 22 | |
| 23 | #define PX_PROFILE_POINTER_TO_U64( pointer ) static_cast<PxU64>(reinterpret_cast<size_t>(pointer)) |
| 24 | |
| 25 | #endif // PX_PROFILE_BASE_H |
| 26 | |