Lines Matching refs:allocator
32 FrustumProjectionUpdater::Create(os::IAllocator* allocator) in Create() argument
34 NW_NULL_ASSERT(allocator); in Create()
36 void* updaterMemory = allocator->Alloc(sizeof(FrustumProjectionUpdater)); in Create()
40 = AllocateAndFill<ResFrustumProjectionUpdaterData>(allocator, 0); in Create()
54 return new(updaterMemory) FrustumProjectionUpdater(allocator, true, resUpdater); in Create()
59 FrustumProjectionUpdater::Create(os::IAllocator* allocator, ResFrustumProjectionUpdater resUpdater) in Create() argument
61 NW_NULL_ASSERT(allocator); in Create()
63 void* updaterMemory = allocator->Alloc(sizeof(FrustumProjectionUpdater)); in Create()
66 return new(updaterMemory) FrustumProjectionUpdater(allocator, false, resUpdater); in Create()
71 os::IAllocator* allocator, in FrustumProjectionUpdater() argument
75 : CameraProjectionUpdater(allocator, isDynamic), in FrustumProjectionUpdater()