Lines Matching refs:allocator
30 OrthoProjectionUpdater::Create(os::IAllocator* allocator) in Create() argument
32 NW_NULL_ASSERT(allocator); in Create()
34 void* updaterMemory = allocator->Alloc(sizeof(OrthoProjectionUpdater)); in Create()
38 = AllocateAndFill<ResOrthoProjectionUpdaterData>(allocator, 0); in Create()
52 return new(updaterMemory) OrthoProjectionUpdater(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(OrthoProjectionUpdater)); in Create()
66 return new(updaterMemory) OrthoProjectionUpdater(allocator, false, resUpdater); in Create()
71 os::IAllocator* allocator, in OrthoProjectionUpdater() argument
75 : CameraProjectionUpdater(allocator, isDynamic), in OrthoProjectionUpdater()