| 40 | using namespace Ext; |
| 41 | |
| 42 | PxConstraint* physx::resolveConstraintPtr(PxDeserializationContext& v, |
| 43 | PxConstraint* old, |
| 44 | PxConstraintConnector* connector, |
| 45 | PxConstraintShaderTable &shaders) |
| 46 | { |
| 47 | v.translatePxBase(old); |
| 48 | PxConstraint* new_nx = static_cast<PxConstraint*>(old); |
| 49 | new_nx->setConstraintFunctions(*connector, shaders); |
| 50 | return new_nx; |
| 51 | } |
| 52 | //~PX_SERIALIZATION |
| 53 | |
| 54 |
nothing calls this directly
no test coverage detected