| 54 | |
| 55 | |
| 56 | physx::PxCudaContextManager* PxCreateCudaContextManager(physx::PxFoundation& foundation, const physx::PxCudaContextManagerDesc& desc) |
| 57 | { |
| 58 | if (!physx::g_PxCreateCudaContextManager_Func) |
| 59 | physx::PxLoadPhysxGPUModule(desc.appGUID); |
| 60 | |
| 61 | if (physx::g_PxCreateCudaContextManager_Func) |
| 62 | return physx::g_PxCreateCudaContextManager_Func(foundation, desc); |
| 63 | else |
| 64 | return NULL; |
| 65 | } |
| 66 | |
| 67 | int PxGetSuggestedCudaDeviceOrdinal(physx::PxErrorCallback& errc) |
| 68 | { |
no test coverage detected