HandleTimelineMouse() doesn't need pxns parameter.

This commit is contained in:
Bartosz Taudul 2023-04-16 17:36:04 +02:00
parent dec4713854
commit 8d565e46d6
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3
2 changed files with 3 additions and 3 deletions

View File

@ -285,7 +285,7 @@ private:
void DrawGpuInfoChildren( const V& children, int64_t ztime );
void HandleRange( Range& range, int64_t timespan, const ImVec2& wpos, float w );
void HandleTimelineMouse( int64_t timespan, const ImVec2& wpos, float w, double& pxns );
void HandleTimelineMouse( int64_t timespan, const ImVec2& wpos, float w );
void HandleTimelineKeyboard( int64_t timespan, const ImVec2& wpos, float w );
void AddAnnotation( int64_t start, int64_t end );

View File

@ -15,7 +15,7 @@ namespace tracy
extern double s_time;
void View::HandleTimelineMouse( int64_t timespan, const ImVec2& wpos, float w, double& pxns )
void View::HandleTimelineMouse( int64_t timespan, const ImVec2& wpos, float w )
{
assert( timespan > 0 );
auto& io = ImGui::GetIO();
@ -283,7 +283,7 @@ void View::DrawTimeline()
v->range.StartFrame();
HandleRange( v->range, timespan, ImGui::GetCursorScreenPos(), w );
}
HandleTimelineMouse( timespan, ImGui::GetCursorScreenPos(), w, pxns );
HandleTimelineMouse( timespan, ImGui::GetCursorScreenPos(), w );
}
if( ImGui::IsWindowFocused( ImGuiHoveredFlags_ChildWindows | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem ) )
{