mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-23 06:44:35 +00:00
Add time range limit UI to statistics menu.
This commit is contained in:
parent
a23f58cc8f
commit
9449f3ef89
@ -11727,6 +11727,24 @@ void View::DrawStatistics()
|
|||||||
{
|
{
|
||||||
m_statisticsFilter.Clear();
|
m_statisticsFilter.Clear();
|
||||||
}
|
}
|
||||||
|
ImGui::SameLine();
|
||||||
|
ImGui::Spacing();
|
||||||
|
ImGui::SameLine();
|
||||||
|
if( ImGui::Checkbox( "Limit range", &m_statRange.active ) )
|
||||||
|
{
|
||||||
|
if( m_statRange.active && m_statRange.min == 0 && m_statRange.max == 0 )
|
||||||
|
{
|
||||||
|
m_statRange.min = m_vd.zvStart;
|
||||||
|
m_statRange.max = m_vd.zvEnd;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if( m_statRange.active )
|
||||||
|
{
|
||||||
|
ImGui::SameLine();
|
||||||
|
TextColoredUnformatted( 0xFF00FFFF, ICON_FA_EXCLAMATION_TRIANGLE );
|
||||||
|
ImGui::SameLine();
|
||||||
|
ToggleButton( ICON_FA_RULER " Limits", m_showRanges );
|
||||||
|
}
|
||||||
|
|
||||||
ImGui::Separator();
|
ImGui::Separator();
|
||||||
ImGui::PopStyleVar();
|
ImGui::PopStyleVar();
|
||||||
|
@ -353,7 +353,6 @@ private:
|
|||||||
bool m_messagesScrollBottom;
|
bool m_messagesScrollBottom;
|
||||||
ImGuiTextFilter m_messageFilter;
|
ImGuiTextFilter m_messageFilter;
|
||||||
bool m_showMessageImages = false;
|
bool m_showMessageImages = false;
|
||||||
ImGuiTextFilter m_statisticsFilter;
|
|
||||||
int m_visibleMessages = 0;
|
int m_visibleMessages = 0;
|
||||||
size_t m_prevMessages = 0;
|
size_t m_prevMessages = 0;
|
||||||
Vector<uint32_t> m_msgList;
|
Vector<uint32_t> m_msgList;
|
||||||
@ -363,6 +362,10 @@ private:
|
|||||||
Annotation* m_selectedAnnotation = nullptr;
|
Annotation* m_selectedAnnotation = nullptr;
|
||||||
bool m_reactToCrash = false;
|
bool m_reactToCrash = false;
|
||||||
|
|
||||||
|
ImGuiTextFilter m_statisticsFilter;
|
||||||
|
Range m_statRange;
|
||||||
|
RangeSlim m_statRangeSlim;
|
||||||
|
|
||||||
Region m_highlight;
|
Region m_highlight;
|
||||||
Region m_highlightZoom;
|
Region m_highlightZoom;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user