MCPcopy Create free account
hub / github.com/axmolengine/axmol / dtAllocNavMeshQuery

Function dtAllocNavMeshQuery

3rdparty/recast/DetourNavMeshQuery.cpp:106–111  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

104
105
106dtNavMeshQuery* dtAllocNavMeshQuery()
107{
108 void* mem = dtAlloc(sizeof(dtNavMeshQuery), DT_ALLOC_PERM);
109 if (!mem) return 0;
110 return new(mem) dtNavMeshQuery;
111}
112
113void dtFreeNavMeshQuery(dtNavMeshQuery* navmesh)
114{

Callers 3

initMethod · 0.85
initMethod · 0.85
loadNavMeshFileMethod · 0.85

Calls 1

dtAllocFunction · 0.85

Tested by

no test coverage detected