Exemple #1
0
inline AllocatorSPtr PGInterface::allocator(
    AbstractAllocator::Context inMemContext) {
    
    return AllocatorSPtr(new PGAllocator(this, inMemContext));
}
Exemple #2
0
inline AllocatorSPtr PGInterface::allocator(
    AbstractAllocator::Context inMemContext,
    AbstractAllocator::ZeroMemory inZeroMemory) {
    
    return AllocatorSPtr(new PGAllocator(this, inMemContext, inZeroMemory));
}