mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-22 22:44:34 +00:00
Make collpsed zones gray in source location dynamic color mode.
The reasoning is that you want to use the color to see where a zone of a particular type is placed. When collapsed zones go back to displaying thread color, you may mistake such region of collapsed zones for something they aren't.
This commit is contained in:
parent
2434514a42
commit
107afd78a4
@ -271,7 +271,7 @@ int View::DrawGhostLevel( const Vector<GhostZone>& vec, bool hover, double pxns,
|
|||||||
if( zsz < MinVisSize )
|
if( zsz < MinVisSize )
|
||||||
{
|
{
|
||||||
const auto MinVisNs = MinVisSize * nspx;
|
const auto MinVisNs = MinVisSize * nspx;
|
||||||
const auto color = MixGhostColor( GetThreadColor( tid, depth ), 0x665555 );
|
const auto color = m_vd.dynamicColors == 2 ? 0xFF666666 : MixGhostColor( GetThreadColor( tid, depth ), 0x665555 );
|
||||||
const auto px0 = ( ev.start.Val() - m_vd.zvStart ) * pxns;
|
const auto px0 = ( ev.start.Val() - m_vd.zvStart ) * pxns;
|
||||||
auto px1ns = ev.end.Val() - m_vd.zvStart;
|
auto px1ns = ev.end.Val() - m_vd.zvStart;
|
||||||
auto rend = end;
|
auto rend = end;
|
||||||
@ -640,7 +640,7 @@ int View::DrawZoneLevel( const V& vec, bool hover, double pxns, int64_t nspx, co
|
|||||||
if( zsz < MinVisSize )
|
if( zsz < MinVisSize )
|
||||||
{
|
{
|
||||||
const auto MinVisNs = MinVisSize * nspx;
|
const auto MinVisNs = MinVisSize * nspx;
|
||||||
const auto color = GetThreadColor( tid, depth );
|
const auto color = m_vd.dynamicColors == 2 ? 0xFF666666 : GetThreadColor( tid, depth );
|
||||||
int num = 0;
|
int num = 0;
|
||||||
const auto px0 = ( ev.Start() - m_vd.zvStart ) * pxns;
|
const auto px0 = ( ev.Start() - m_vd.zvStart ) * pxns;
|
||||||
auto px1ns = end - m_vd.zvStart;
|
auto px1ns = end - m_vd.zvStart;
|
||||||
|
Loading…
Reference in New Issue
Block a user