1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Print frame image compression ration.

This commit is contained in:
Bartosz Taudul 2020-02-29 00:49:42 +01:00
parent 71a11554cb
commit 7947087694

View File

@ -12919,7 +12919,16 @@ void View::DrawPlayback()
ImGui::EndTooltip();
}
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();
TextFocused( "Frame:", RealToString( GetFrameNumber( *frameSet, fi->frameRef, m_worker.GetFrameOffset() ) ) );
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();
char buf[64];
auto ptr = PrintFloat( buf, buf+62, 100.f * fi->csz / ( size_t( fi->w ) * size_t( fi->h ) / 2 ), 2 );
memcpy( ptr, "%", 2 );
TextFocused( "Ratio:", buf );
ImGui::End();
}