mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-22 14:44:34 +00:00
21 lines
569 B
C++
21 lines
569 B
C++
#include <imgui.h>
|
|
#include "profiler/TracyStorage.hpp"
|
|
#include "ImGuiContext.hpp"
|
|
|
|
ImGuiTracyContext::ImGuiTracyContext()
|
|
: m_iniFilename( tracy::GetSavePath( "imgui.ini" ) )
|
|
{
|
|
IMGUI_CHECKVERSION();
|
|
ImGui::CreateContext();
|
|
ImGuiIO& io = ImGui::GetIO();
|
|
io.IniFilename = m_iniFilename.c_str();
|
|
io.ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard | ImGuiConfigFlags_DockingEnable;
|
|
io.ConfigInputTextCursorBlink = false;
|
|
io.ConfigScrollbarScrollByPage = false;
|
|
}
|
|
|
|
ImGuiTracyContext::~ImGuiTracyContext()
|
|
{
|
|
ImGui::DestroyContext();
|
|
}
|