Lines Matching refs:allocator
30 os::IAllocator* allocator in Create() argument
33 NW_NULL_ASSERT(allocator); in Create()
35 VEC3Array emissionPositions(allocator); in Create()
36 U16Array emissionParents(allocator); in Create()
37 F32Array particleWorkF32(allocator); in Create()
38 VEC3Array prevTranslate(allocator); in Create()
42 emissionPositions = VEC3Array(this->m_MaxEmission, allocator); in Create()
43 emissionParents = U16Array(this->m_MaxEmission, allocator); in Create()
44 particleWorkF32 = F32Array(this->m_MaxStreamLength, allocator); in Create()
47 prevTranslate = VEC3Array(this->m_MaxStreamLength, allocator); in Create()
57 void* memory = allocator->Alloc(sizeof(ParticleContext)); in Create()
61 allocator, emissionPositions, emissionParents, particleWorkF32, prevTranslate); in Create()