mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-25 23:44:35 +00:00
Cleanup
This commit is contained in:
parent
717e545158
commit
ec7fc9ffb6
@ -187,16 +187,16 @@ static void PrintDiff( const std::string& diff )
|
|||||||
|
|
||||||
static void PrintSpeedupOrSlowdown( double time_this, double time_external, const char *metric )
|
static void PrintSpeedupOrSlowdown( double time_this, double time_external, const char *metric )
|
||||||
{
|
{
|
||||||
const char *label, *label2;
|
const char *label;
|
||||||
const char *time_diff = TimeToString( abs( time_external - time_this ) );
|
const char *time_diff = TimeToString( abs( time_external - time_this ) );
|
||||||
ImVec4 color;
|
ImVec4 color;
|
||||||
double factor = time_this / time_external;
|
double factor = time_this / time_external;
|
||||||
if( time_external >= time_this )
|
if( time_external >= time_this )
|
||||||
{
|
{
|
||||||
label = "less than external", label2 = "faster";
|
label = "less than external";
|
||||||
color = ImVec4( 0.1f, 0.6f, 0.1f, 1.0f );
|
color = ImVec4( 0.1f, 0.6f, 0.1f, 1.0f );
|
||||||
} else {
|
} else {
|
||||||
label = "more than external", label2 = "slower";
|
label = "more than external";
|
||||||
color = ImVec4( 0.8f, 0.1f, 0.1f, 1.0f );
|
color = ImVec4( 0.8f, 0.1f, 0.1f, 1.0f );
|
||||||
}
|
}
|
||||||
TextColoredUnformatted( color, metric );
|
TextColoredUnformatted( color, metric );
|
||||||
|
Loading…
Reference in New Issue
Block a user