Capycore Engine  0.1.0
A simple and lightweight game engine written in C++ based on the Unity API architecture.
Loading...
Searching...
No Matches
memory.h
Go to the documentation of this file.
1// NOLINTFILE
2#pragma once
3
4#include <cstddef>
5#include <functional>
6
24void run_without_tracy(std::function<void()> func);
25
26void* operator new(std::size_t size);
27void operator delete(void* ptr) noexcept;
28void* operator new[](std::size_t size);
29void operator delete[](void* ptr) noexcept;
void tracy_dump_leaks()
Memory management utilities and custom new/delete operators. This header provides functions for initi...
void tracy_memory_shutdown()
void run_without_tracy(std::function< void()> func)
void tracy_memory_init()