Lines Matching refs:allocator
30 FrustumProjectionUpdater::Create(os::IAllocator* allocator) in Create() argument
32 NW_NULL_ASSERT(allocator); in Create()
34 void* updaterMemory = allocator->Alloc(sizeof(FrustumProjectionUpdater)); in Create()
38 = AllocateAndFill<ResFrustumProjectionUpdaterData>(allocator, 0); in Create()
52 return new(updaterMemory) FrustumProjectionUpdater(allocator, true, resUpdater); in Create()
57 FrustumProjectionUpdater::Create(os::IAllocator* allocator, ResFrustumProjectionUpdater resUpdater) in Create() argument
59 NW_NULL_ASSERT(allocator); in Create()
61 void* updaterMemory = allocator->Alloc(sizeof(FrustumProjectionUpdater)); in Create()
64 return new(updaterMemory) FrustumProjectionUpdater(allocator, false, resUpdater); in Create()
69 os::IAllocator* allocator, in FrustumProjectionUpdater() argument
73 : CameraProjectionUpdater(allocator, isDynamic), in FrustumProjectionUpdater()