Lines Matching refs:allocator
31 PerspectiveProjectionUpdater::Create(os::IAllocator* allocator) in Create() argument
33 NW_NULL_ASSERT(allocator); in Create()
35 void* updaterMemory = allocator->Alloc(sizeof(PerspectiveProjectionUpdater)); in Create()
39 = AllocateAndFill<ResPerspectiveProjectionUpdaterData>(allocator, 0); in Create()
52 return new(updaterMemory) PerspectiveProjectionUpdater(allocator, true, resUpdater); in Create()
58 os::IAllocator* allocator, in Create() argument
61 NW_NULL_ASSERT(allocator); in Create()
63 void* updaterMemory = allocator->Alloc(sizeof(PerspectiveProjectionUpdater)); in Create()
66 return new(updaterMemory) PerspectiveProjectionUpdater(allocator, false, resUpdater); in Create()
71 os::IAllocator* allocator, in PerspectiveProjectionUpdater() argument
75 : CameraProjectionUpdater(allocator, isDynamic), in PerspectiveProjectionUpdater()