pub unsafe trait AllocatorCallback: Sized {
    unsafe extern "C" fn allocate(
        size: u64,
        name: *const c_void,
        file: *const c_void,
        line: u32,
        user_data: *const c_void
    ) -> *mut c_void; unsafe extern "C" fn deallocate(
        ptr: *const c_void,
        user_data: *const c_void
    ); unsafe fn into_px(self) -> *mut PxAllocatorCallback { ... } }
Expand description

A trait for creating allocator callbacks for PhysX.

Reporting the name, file and line is not enabled by default. Use Foundation::set_report_allocation_names to toggle this on or off.

Required Methods

Safety

Allocations must be aligned 16. This should not panic, since it is called in an FFI context and unwinding across the FFI barrier is UB.

Safety

Must not panic.

Provided Methods

Safety

Do not override this method.

Implementors