Lines Matching refs:allocator
29 PerspectiveProjectionUpdater::Create(os::IAllocator* allocator) in Create() argument
31 NW_NULL_ASSERT(allocator); in Create()
33 void* updaterMemory = allocator->Alloc(sizeof(PerspectiveProjectionUpdater)); in Create()
37 = AllocateAndFill<ResPerspectiveProjectionUpdaterData>(allocator, 0); in Create()
50 return new(updaterMemory) PerspectiveProjectionUpdater(allocator, true, resUpdater); in Create()
56 os::IAllocator* allocator, in Create() argument
59 NW_NULL_ASSERT(allocator); in Create()
61 void* updaterMemory = allocator->Alloc(sizeof(PerspectiveProjectionUpdater)); in Create()
64 return new(updaterMemory) PerspectiveProjectionUpdater(allocator, false, resUpdater); in Create()
69 os::IAllocator* allocator, in PerspectiveProjectionUpdater() argument
73 : CameraProjectionUpdater(allocator, isDynamic), in PerspectiveProjectionUpdater()