Lines Matching refs:allocator
32 OrthoProjectionUpdater::Create(os::IAllocator* allocator) in Create() argument
34 NW_NULL_ASSERT(allocator); in Create()
36 void* updaterMemory = allocator->Alloc(sizeof(OrthoProjectionUpdater)); in Create()
40 = AllocateAndFill<ResOrthoProjectionUpdaterData>(allocator, 0); in Create()
54 return new(updaterMemory) OrthoProjectionUpdater(allocator, true, resUpdater); in Create()
60 os::IAllocator* allocator, in Create() argument
63 NW_NULL_ASSERT(allocator); in Create()
65 void* updaterMemory = allocator->Alloc(sizeof(OrthoProjectionUpdater)); in Create()
68 return new(updaterMemory) OrthoProjectionUpdater(allocator, false, resUpdater); in Create()
73 os::IAllocator* allocator, in OrthoProjectionUpdater() argument
77 : CameraProjectionUpdater(allocator, isDynamic), in OrthoProjectionUpdater()