| 5121 | } |
| 5122 | |
| 5123 | void ImGui::DemoMarker(const char* file, int line, const char* section) |
| 5124 | { |
| 5125 | ImGuiContext& g = *GImGui; |
| 5126 | if (g.DemoMarkerCallback != NULL) |
| 5127 | g.DemoMarkerCallback(file, line, section); |
| 5128 | } |
| 5129 | |
| 5130 | // We record the number of allocation in recent frames, as a way to audit/sanitize our guiding principles of "no allocations on idle/repeating frames" |
| 5131 | void ImGui::DebugAllocHook(ImGuiDebugAllocInfo* info, int frame_count, void* ptr, size_t size) |
nothing calls this directly
no outgoing calls
no test coverage detected