mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 02:31:48 +00:00
Use small checkbox in appropriate places.
This commit is contained in:
parent
e004dc85a9
commit
9fd8a20d7c
@ -32,6 +32,14 @@ namespace tracy
|
||||
draw->AddCircleFilled( wpos + ImVec2( w * 0.5f + ty, h ), ty * ( 0.15f + 0.2f * ( pow( cos( time * 3.5f - 0.3f ), 16.f ) ) ), 0xFFBBBBBB, 12 );
|
||||
}
|
||||
|
||||
static inline bool SmallCheckbox( const char* label, bool* var )
|
||||
{
|
||||
ImGui::PushStyleVar( ImGuiStyleVar_FramePadding, ImVec2( 0, 0 ) );
|
||||
auto ret = ImGui::Checkbox( label, var );
|
||||
ImGui::PopStyleVar();
|
||||
return ret;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
|
@ -4046,7 +4046,7 @@ void DrawZoneTrace( T zone, const std::vector<T>& trace, const Worker& worker, B
|
||||
if( !expand ) return;
|
||||
|
||||
ImGui::SameLine();
|
||||
if( ImGui::SmallButton( showUnknownFrames ? "Hide unknown frames" : "Show unknown frames" ) ) showUnknownFrames = !showUnknownFrames;
|
||||
SmallCheckbox( "Show unknown frames", &showUnknownFrames );
|
||||
|
||||
int fidx = 1;
|
||||
TextDisabledUnformatted( "0." );
|
||||
@ -4514,7 +4514,7 @@ void View::DrawZoneInfoWindow()
|
||||
const auto ty = ImGui::GetTextLineHeight();
|
||||
|
||||
ImGui::SameLine();
|
||||
if( ImGui::SmallButton( m_groupChildrenLocations ? "Display all children separate" : "Group children locations" ) ) m_groupChildrenLocations = !m_groupChildrenLocations;
|
||||
SmallCheckbox( "Group children locations", &m_groupChildrenLocations );
|
||||
|
||||
if( m_groupChildrenLocations )
|
||||
{
|
||||
@ -4916,7 +4916,7 @@ void View::DrawGpuInfoWindow()
|
||||
const auto ty = ImGui::GetTextLineHeight();
|
||||
|
||||
ImGui::SameLine();
|
||||
if( ImGui::SmallButton( m_groupChildrenLocations ? "Display all children separate" : "Group children locations" ) ) m_groupChildrenLocations = !m_groupChildrenLocations;
|
||||
SmallCheckbox( "Group children locations", &m_groupChildrenLocations );
|
||||
|
||||
if( m_groupChildrenLocations )
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user