NVIDIAGameWorks / PhysX

NVIDIA PhysX SDK

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Cannot find procdeure entry point in VS2022 when call PxCreatePvd

ChrisOyj opened this issue · comments

I used vc to build PhysX for vc17 by #599 (comment)
then I can build my own projects and include all headers and libraries.
But I can't call PxCreatePvd() Fuction.

Here're my codes

PxDefaultAllocator		m_Allocator;
PxDefaultErrorCallback	m_ErrorCallback;
PxFoundation* m_pFoundation;
m_pFoundation = PxCreateFoundation(PX_PHYSICS_VERSION, m_Allocator, m_ErrorCallback);
m_pPVD =  PxCreatePvd(*m_pFoundation);

*it works well in release mode.