mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 02:31:48 +00:00
25 lines
643 B
C++
25 lines
643 B
C++
#ifndef __TRACYIMGUI_HPP__
|
|
#define __TRACYIMGUI_HPP__
|
|
|
|
#include "../imgui/imgui.h"
|
|
#include "../imgui/imgui_internal.h"
|
|
|
|
#if !IMGUI_DEFINE_MATH_OPERATORS
|
|
static inline ImVec2 operator+( const ImVec2& l, const ImVec2& r ) { return ImVec2( l.x + r.x, l.y + r.y ); }
|
|
static inline ImVec2 operator-( const ImVec2& l, const ImVec2& r ) { return ImVec2( l.x - r.x, l.y - r.y ); }
|
|
#endif
|
|
|
|
namespace tracy
|
|
{
|
|
|
|
static inline void TextCentered( const char* text )
|
|
{
|
|
const auto tw = ImGui::CalcTextSize( text ).x;
|
|
ImGui::SetCursorPosX( ( ImGui::GetWindowWidth() - tw ) * 0.5f );
|
|
ImGui::Text( "%s", text );
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|