| 2576 | }; |
| 2577 | |
| 2578 | const VkAllocationCallbacks* DefaultAllocator() { |
| 2579 | static const VkAllocationCallbacks alloc = {nullptr, |
| 2580 | DummyAlloc::allocFunction, |
| 2581 | DummyAlloc::realloc, |
| 2582 | DummyAlloc::freeFunction, |
| 2583 | DummyAlloc::internalAlloc, |
| 2584 | DummyAlloc::internalFree}; |
| 2585 | |
| 2586 | return &alloc; |
| 2587 | } |
| 2588 | |
| 2589 | } // namespace vkt |