| 41 | // djs: temporary cruft |
| 42 | |
| 43 | static PxConvexMeshGeometryLL extendForLL(const PxConvexMeshGeometry& hlGeom) |
| 44 | { |
| 45 | PxConvexMeshGeometryLL llGeom; |
| 46 | static_cast<PxConvexMeshGeometry&>(llGeom) = hlGeom; |
| 47 | |
| 48 | Gu::ConvexMesh* cm = static_cast<Gu::ConvexMesh*>(hlGeom.convexMesh); |
| 49 | |
| 50 | llGeom.hullData = &(cm->getHull()); |
| 51 | llGeom.gpuCompatible = hlGeom.convexMesh->isGpuCompatible(); |
| 52 | |
| 53 | return llGeom; |
| 54 | } |
| 55 | |
| 56 | static PxTriangleMeshGeometryLL extendForLL(const PxTriangleMeshGeometry& hlGeom) |
| 57 | { |
no test coverage detected