mirror of
https://github.com/wolfpld/tracy
synced 2025-05-02 13:43:52 +00:00
Adapt zone children to magic vectors.
This commit is contained in:
parent
50efa8f672
commit
06ad948abc
@ -6082,216 +6082,13 @@ void View::DrawZoneInfoWindow()
|
|||||||
ImGui::TextDisabled( "(%s)", RealToString( children.size(), true ) );
|
ImGui::TextDisabled( "(%s)", RealToString( children.size(), true ) );
|
||||||
if( expand )
|
if( expand )
|
||||||
{
|
{
|
||||||
const auto rztime = 1.0 / ztime;
|
if( children.is_magic() )
|
||||||
const auto ty = ImGui::GetTextLineHeight();
|
|
||||||
|
|
||||||
ImGui::SameLine();
|
|
||||||
SmallCheckbox( "Group children locations", &m_groupChildrenLocations );
|
|
||||||
|
|
||||||
if( m_groupChildrenLocations )
|
|
||||||
{
|
{
|
||||||
struct ChildGroup
|
DrawZoneInfoChildren<VectorAdapterDirect<ZoneEvent>>( *(Vector<ZoneEvent>*)( &children ), ztime );
|
||||||
{
|
|
||||||
int16_t srcloc;
|
|
||||||
uint64_t t;
|
|
||||||
Vector<uint32_t> v;
|
|
||||||
};
|
|
||||||
uint64_t ctime = 0;
|
|
||||||
flat_hash_map<int16_t, ChildGroup, nohash<int16_t>> cmap;
|
|
||||||
cmap.reserve( 128 );
|
|
||||||
for( size_t i=0; i<children.size(); i++ )
|
|
||||||
{
|
|
||||||
const auto& child = *children[i];
|
|
||||||
const auto cend = m_worker.GetZoneEnd( child );
|
|
||||||
const auto ct = cend - child.Start();
|
|
||||||
const auto srcloc = child.SrcLoc();
|
|
||||||
ctime += ct;
|
|
||||||
|
|
||||||
auto it = cmap.find( srcloc );
|
|
||||||
if( it == cmap.end() ) it = cmap.emplace( srcloc, ChildGroup { srcloc } ).first;
|
|
||||||
|
|
||||||
it->second.t += ct;
|
|
||||||
it->second.v.push_back( i );
|
|
||||||
}
|
|
||||||
|
|
||||||
auto msz = cmap.size();
|
|
||||||
Vector<ChildGroup*> cgvec;
|
|
||||||
cgvec.reserve_and_use( msz );
|
|
||||||
size_t idx = 0;
|
|
||||||
for( auto& it : cmap )
|
|
||||||
{
|
|
||||||
cgvec[idx++] = &it.second;
|
|
||||||
}
|
|
||||||
|
|
||||||
pdqsort_branchless( cgvec.begin(), cgvec.end(), []( const auto& lhs, const auto& rhs ) { return lhs->t > rhs->t; } );
|
|
||||||
|
|
||||||
ImGui::Columns( 2 );
|
|
||||||
TextColoredUnformatted( ImVec4( 1.0f, 1.0f, 0.4f, 1.0f ), "Self time" );
|
|
||||||
ImGui::NextColumn();
|
|
||||||
char buf[128];
|
|
||||||
sprintf( buf, "%s (%.2f%%)", TimeToString( ztime - ctime ), double( ztime - ctime ) / ztime * 100 );
|
|
||||||
ImGui::ProgressBar( double( ztime - ctime ) * rztime, ImVec2( -1, ty ), buf );
|
|
||||||
ImGui::NextColumn();
|
|
||||||
for( size_t i=0; i<msz; i++ )
|
|
||||||
{
|
|
||||||
bool expandGroup = false;
|
|
||||||
const auto& cgr = *cgvec[i];
|
|
||||||
const auto& srcloc = m_worker.GetSourceLocation( cgr.srcloc );
|
|
||||||
const auto txt = m_worker.GetZoneName( srcloc );
|
|
||||||
if( cgr.v.size() == 1 )
|
|
||||||
{
|
|
||||||
auto& cev = *children[cgr.v.front()];
|
|
||||||
const auto txt = m_worker.GetZoneName( cev );
|
|
||||||
bool b = false;
|
|
||||||
SmallColorBox( GetSrcLocColor( srcloc, 0 ) );
|
|
||||||
ImGui::SameLine();
|
|
||||||
ImGui::PushID( (int)cgr.v.front() );
|
|
||||||
if( ImGui::Selectable( txt, &b, ImGuiSelectableFlags_SpanAllColumns ) )
|
|
||||||
{
|
|
||||||
ShowZoneInfo( cev );
|
|
||||||
}
|
|
||||||
if( ImGui::IsItemHovered() )
|
|
||||||
{
|
|
||||||
m_zoneHighlight = &cev;
|
|
||||||
if( ImGui::IsMouseClicked( 2 ) )
|
|
||||||
{
|
|
||||||
ZoomToZone( cev );
|
|
||||||
}
|
|
||||||
ZoneTooltip( cev );
|
|
||||||
}
|
|
||||||
ImGui::PopID();
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
SmallColorBox( GetSrcLocColor( srcloc, 0 ) );
|
|
||||||
ImGui::SameLine();
|
|
||||||
ImGui::PushID( cgr.srcloc );
|
|
||||||
expandGroup = ImGui::TreeNode( txt );
|
|
||||||
ImGui::PopID();
|
|
||||||
if( ImGui::IsItemHovered() )
|
|
||||||
{
|
|
||||||
ImGui::BeginTooltip();
|
|
||||||
if( srcloc.name.active )
|
|
||||||
{
|
|
||||||
ImGui::TextUnformatted( m_worker.GetString( srcloc.name ) );
|
|
||||||
}
|
|
||||||
ImGui::TextUnformatted( m_worker.GetString( srcloc.function ) );
|
|
||||||
ImGui::Separator();
|
|
||||||
ImGui::Text( "%s:%i", m_worker.GetString( srcloc.file ), srcloc.line );
|
|
||||||
ImGui::EndTooltip();
|
|
||||||
}
|
|
||||||
ImGui::SameLine();
|
|
||||||
ImGui::TextDisabled( "(\xc3\x97%s)", RealToString( cgr.v.size(), true ) );
|
|
||||||
}
|
|
||||||
ImGui::NextColumn();
|
|
||||||
const auto part = double( cgr.t ) * rztime;
|
|
||||||
char buf[128];
|
|
||||||
sprintf( buf, "%s (%.2f%%)", TimeToString( cgr.t ), part * 100 );
|
|
||||||
ImGui::ProgressBar( part, ImVec2( -1, ty ), buf );
|
|
||||||
ImGui::NextColumn();
|
|
||||||
if( expandGroup )
|
|
||||||
{
|
|
||||||
auto ctt = std::make_unique<uint64_t[]>( cgr.v.size() );
|
|
||||||
auto cti = std::make_unique<uint32_t[]>( cgr.v.size() );
|
|
||||||
for( size_t i=0; i<cgr.v.size(); i++ )
|
|
||||||
{
|
|
||||||
const auto& child = *children[cgr.v[i]];
|
|
||||||
const auto cend = m_worker.GetZoneEnd( child );
|
|
||||||
const auto ct = cend - child.Start();
|
|
||||||
ctt[i] = ct;
|
|
||||||
cti[i] = uint32_t( i );
|
|
||||||
}
|
|
||||||
|
|
||||||
pdqsort_branchless( cti.get(), cti.get() + cgr.v.size(), [&ctt] ( const auto& lhs, const auto& rhs ) { return ctt[lhs] > ctt[rhs]; } );
|
|
||||||
|
|
||||||
for( size_t i=0; i<cgr.v.size(); i++ )
|
|
||||||
{
|
|
||||||
auto& cev = *children[cgr.v[cti[i]]];
|
|
||||||
const auto txt = m_worker.GetZoneName( cev );
|
|
||||||
bool b = false;
|
|
||||||
ImGui::Indent();
|
|
||||||
ImGui::PushID( (int)cgr.v[cti[i]] );
|
|
||||||
if( ImGui::Selectable( txt, &b, ImGuiSelectableFlags_SpanAllColumns ) )
|
|
||||||
{
|
|
||||||
ShowZoneInfo( cev );
|
|
||||||
}
|
|
||||||
if( ImGui::IsItemHovered() )
|
|
||||||
{
|
|
||||||
m_zoneHighlight = &cev;
|
|
||||||
if( ImGui::IsMouseClicked( 2 ) )
|
|
||||||
{
|
|
||||||
ZoomToZone( cev );
|
|
||||||
}
|
|
||||||
ZoneTooltip( cev );
|
|
||||||
}
|
|
||||||
ImGui::PopID();
|
|
||||||
ImGui::Unindent();
|
|
||||||
ImGui::NextColumn();
|
|
||||||
const auto part = double( ctt[cti[i]] ) * rztime;
|
|
||||||
char buf[128];
|
|
||||||
sprintf( buf, "%s (%.2f%%)", TimeToString( ctt[cti[i]] ), part * 100 );
|
|
||||||
ImGui::ProgressBar( part, ImVec2( -1, ty ), buf );
|
|
||||||
ImGui::NextColumn();
|
|
||||||
}
|
|
||||||
ImGui::TreePop();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
ImGui::EndColumns();
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
auto ctt = std::make_unique<uint64_t[]>( children.size() );
|
DrawZoneInfoChildren<VectorAdapterPointer<ZoneEvent>>( children, ztime );
|
||||||
auto cti = std::make_unique<uint32_t[]>( children.size() );
|
|
||||||
uint64_t ctime = 0;
|
|
||||||
for( size_t i=0; i<children.size(); i++ )
|
|
||||||
{
|
|
||||||
const auto& child = *children[i];
|
|
||||||
const auto cend = m_worker.GetZoneEnd( child );
|
|
||||||
const auto ct = cend - child.Start();
|
|
||||||
ctime += ct;
|
|
||||||
ctt[i] = ct;
|
|
||||||
cti[i] = uint32_t( i );
|
|
||||||
}
|
|
||||||
|
|
||||||
pdqsort_branchless( cti.get(), cti.get() + children.size(), [&ctt] ( const auto& lhs, const auto& rhs ) { return ctt[lhs] > ctt[rhs]; } );
|
|
||||||
|
|
||||||
ImGui::Columns( 2 );
|
|
||||||
TextColoredUnformatted( ImVec4( 1.0f, 1.0f, 0.4f, 1.0f ), "Self time" );
|
|
||||||
ImGui::NextColumn();
|
|
||||||
char buf[128];
|
|
||||||
sprintf( buf, "%s (%.2f%%)", TimeToString( ztime - ctime ), double( ztime - ctime ) / ztime * 100 );
|
|
||||||
ImGui::ProgressBar( double( ztime - ctime ) * rztime, ImVec2( -1, ty ), buf );
|
|
||||||
ImGui::NextColumn();
|
|
||||||
for( size_t i=0; i<children.size(); i++ )
|
|
||||||
{
|
|
||||||
auto& cev = *children[cti[i]];
|
|
||||||
const auto txt = m_worker.GetZoneName( cev );
|
|
||||||
bool b = false;
|
|
||||||
SmallColorBox( GetSrcLocColor( m_worker.GetSourceLocation( cev.SrcLoc() ), 0 ) );
|
|
||||||
ImGui::SameLine();
|
|
||||||
ImGui::PushID( (int)i );
|
|
||||||
if( ImGui::Selectable( txt, &b, ImGuiSelectableFlags_SpanAllColumns ) )
|
|
||||||
{
|
|
||||||
ShowZoneInfo( cev );
|
|
||||||
}
|
|
||||||
if( ImGui::IsItemHovered() )
|
|
||||||
{
|
|
||||||
m_zoneHighlight = &cev;
|
|
||||||
if( ImGui::IsMouseClicked( 2 ) )
|
|
||||||
{
|
|
||||||
ZoomToZone( cev );
|
|
||||||
}
|
|
||||||
ZoneTooltip( cev );
|
|
||||||
}
|
|
||||||
ImGui::PopID();
|
|
||||||
ImGui::NextColumn();
|
|
||||||
const auto part = double( ctt[cti[i]] ) * rztime;
|
|
||||||
char buf[128];
|
|
||||||
sprintf( buf, "%s (%.2f%%)", TimeToString( ctt[cti[i]] ), part * 100 );
|
|
||||||
ImGui::ProgressBar( part, ImVec2( -1, ty ), buf );
|
|
||||||
ImGui::NextColumn();
|
|
||||||
}
|
|
||||||
ImGui::EndColumns();
|
|
||||||
}
|
}
|
||||||
ImGui::TreePop();
|
ImGui::TreePop();
|
||||||
}
|
}
|
||||||
@ -6409,6 +6206,223 @@ void View::DrawZoneInfoWindow()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template<typename Adapter, typename V>
|
||||||
|
void View::DrawZoneInfoChildren( const V& children, int64_t ztime )
|
||||||
|
{
|
||||||
|
Adapter a;
|
||||||
|
const auto rztime = 1.0 / ztime;
|
||||||
|
const auto ty = ImGui::GetTextLineHeight();
|
||||||
|
|
||||||
|
ImGui::SameLine();
|
||||||
|
SmallCheckbox( "Group children locations", &m_groupChildrenLocations );
|
||||||
|
|
||||||
|
if( m_groupChildrenLocations )
|
||||||
|
{
|
||||||
|
struct ChildGroup
|
||||||
|
{
|
||||||
|
int16_t srcloc;
|
||||||
|
uint64_t t;
|
||||||
|
Vector<uint32_t> v;
|
||||||
|
};
|
||||||
|
uint64_t ctime = 0;
|
||||||
|
flat_hash_map<int16_t, ChildGroup, nohash<int16_t>> cmap;
|
||||||
|
cmap.reserve( 128 );
|
||||||
|
for( size_t i=0; i<children.size(); i++ )
|
||||||
|
{
|
||||||
|
const auto& child = a(children[i]);
|
||||||
|
const auto cend = m_worker.GetZoneEnd( child );
|
||||||
|
const auto ct = cend - child.Start();
|
||||||
|
const auto srcloc = child.SrcLoc();
|
||||||
|
ctime += ct;
|
||||||
|
|
||||||
|
auto it = cmap.find( srcloc );
|
||||||
|
if( it == cmap.end() ) it = cmap.emplace( srcloc, ChildGroup { srcloc } ).first;
|
||||||
|
|
||||||
|
it->second.t += ct;
|
||||||
|
it->second.v.push_back( i );
|
||||||
|
}
|
||||||
|
|
||||||
|
auto msz = cmap.size();
|
||||||
|
Vector<ChildGroup*> cgvec;
|
||||||
|
cgvec.reserve_and_use( msz );
|
||||||
|
size_t idx = 0;
|
||||||
|
for( auto& it : cmap )
|
||||||
|
{
|
||||||
|
cgvec[idx++] = &it.second;
|
||||||
|
}
|
||||||
|
|
||||||
|
pdqsort_branchless( cgvec.begin(), cgvec.end(), []( const auto& lhs, const auto& rhs ) { return lhs->t > rhs->t; } );
|
||||||
|
|
||||||
|
ImGui::Columns( 2 );
|
||||||
|
TextColoredUnformatted( ImVec4( 1.0f, 1.0f, 0.4f, 1.0f ), "Self time" );
|
||||||
|
ImGui::NextColumn();
|
||||||
|
char buf[128];
|
||||||
|
sprintf( buf, "%s (%.2f%%)", TimeToString( ztime - ctime ), double( ztime - ctime ) / ztime * 100 );
|
||||||
|
ImGui::ProgressBar( double( ztime - ctime ) * rztime, ImVec2( -1, ty ), buf );
|
||||||
|
ImGui::NextColumn();
|
||||||
|
for( size_t i=0; i<msz; i++ )
|
||||||
|
{
|
||||||
|
bool expandGroup = false;
|
||||||
|
const auto& cgr = *cgvec[i];
|
||||||
|
const auto& srcloc = m_worker.GetSourceLocation( cgr.srcloc );
|
||||||
|
const auto txt = m_worker.GetZoneName( srcloc );
|
||||||
|
if( cgr.v.size() == 1 )
|
||||||
|
{
|
||||||
|
auto& cev = a(children[cgr.v.front()]);
|
||||||
|
const auto txt = m_worker.GetZoneName( cev );
|
||||||
|
bool b = false;
|
||||||
|
SmallColorBox( GetSrcLocColor( srcloc, 0 ) );
|
||||||
|
ImGui::SameLine();
|
||||||
|
ImGui::PushID( (int)cgr.v.front() );
|
||||||
|
if( ImGui::Selectable( txt, &b, ImGuiSelectableFlags_SpanAllColumns ) )
|
||||||
|
{
|
||||||
|
ShowZoneInfo( cev );
|
||||||
|
}
|
||||||
|
if( ImGui::IsItemHovered() )
|
||||||
|
{
|
||||||
|
m_zoneHighlight = &cev;
|
||||||
|
if( ImGui::IsMouseClicked( 2 ) )
|
||||||
|
{
|
||||||
|
ZoomToZone( cev );
|
||||||
|
}
|
||||||
|
ZoneTooltip( cev );
|
||||||
|
}
|
||||||
|
ImGui::PopID();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
SmallColorBox( GetSrcLocColor( srcloc, 0 ) );
|
||||||
|
ImGui::SameLine();
|
||||||
|
ImGui::PushID( cgr.srcloc );
|
||||||
|
expandGroup = ImGui::TreeNode( txt );
|
||||||
|
ImGui::PopID();
|
||||||
|
if( ImGui::IsItemHovered() )
|
||||||
|
{
|
||||||
|
ImGui::BeginTooltip();
|
||||||
|
if( srcloc.name.active )
|
||||||
|
{
|
||||||
|
ImGui::TextUnformatted( m_worker.GetString( srcloc.name ) );
|
||||||
|
}
|
||||||
|
ImGui::TextUnformatted( m_worker.GetString( srcloc.function ) );
|
||||||
|
ImGui::Separator();
|
||||||
|
ImGui::Text( "%s:%i", m_worker.GetString( srcloc.file ), srcloc.line );
|
||||||
|
ImGui::EndTooltip();
|
||||||
|
}
|
||||||
|
ImGui::SameLine();
|
||||||
|
ImGui::TextDisabled( "(\xc3\x97%s)", RealToString( cgr.v.size(), true ) );
|
||||||
|
}
|
||||||
|
ImGui::NextColumn();
|
||||||
|
const auto part = double( cgr.t ) * rztime;
|
||||||
|
char buf[128];
|
||||||
|
sprintf( buf, "%s (%.2f%%)", TimeToString( cgr.t ), part * 100 );
|
||||||
|
ImGui::ProgressBar( part, ImVec2( -1, ty ), buf );
|
||||||
|
ImGui::NextColumn();
|
||||||
|
if( expandGroup )
|
||||||
|
{
|
||||||
|
auto ctt = std::make_unique<uint64_t[]>( cgr.v.size() );
|
||||||
|
auto cti = std::make_unique<uint32_t[]>( cgr.v.size() );
|
||||||
|
for( size_t i=0; i<cgr.v.size(); i++ )
|
||||||
|
{
|
||||||
|
const auto& child = a(children[cgr.v[i]]);
|
||||||
|
const auto cend = m_worker.GetZoneEnd( child );
|
||||||
|
const auto ct = cend - child.Start();
|
||||||
|
ctt[i] = ct;
|
||||||
|
cti[i] = uint32_t( i );
|
||||||
|
}
|
||||||
|
|
||||||
|
pdqsort_branchless( cti.get(), cti.get() + cgr.v.size(), [&ctt] ( const auto& lhs, const auto& rhs ) { return ctt[lhs] > ctt[rhs]; } );
|
||||||
|
|
||||||
|
for( size_t i=0; i<cgr.v.size(); i++ )
|
||||||
|
{
|
||||||
|
auto& cev = a(children[cgr.v[cti[i]]]);
|
||||||
|
const auto txt = m_worker.GetZoneName( cev );
|
||||||
|
bool b = false;
|
||||||
|
ImGui::Indent();
|
||||||
|
ImGui::PushID( (int)cgr.v[cti[i]] );
|
||||||
|
if( ImGui::Selectable( txt, &b, ImGuiSelectableFlags_SpanAllColumns ) )
|
||||||
|
{
|
||||||
|
ShowZoneInfo( cev );
|
||||||
|
}
|
||||||
|
if( ImGui::IsItemHovered() )
|
||||||
|
{
|
||||||
|
m_zoneHighlight = &cev;
|
||||||
|
if( ImGui::IsMouseClicked( 2 ) )
|
||||||
|
{
|
||||||
|
ZoomToZone( cev );
|
||||||
|
}
|
||||||
|
ZoneTooltip( cev );
|
||||||
|
}
|
||||||
|
ImGui::PopID();
|
||||||
|
ImGui::Unindent();
|
||||||
|
ImGui::NextColumn();
|
||||||
|
const auto part = double( ctt[cti[i]] ) * rztime;
|
||||||
|
char buf[128];
|
||||||
|
sprintf( buf, "%s (%.2f%%)", TimeToString( ctt[cti[i]] ), part * 100 );
|
||||||
|
ImGui::ProgressBar( part, ImVec2( -1, ty ), buf );
|
||||||
|
ImGui::NextColumn();
|
||||||
|
}
|
||||||
|
ImGui::TreePop();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
ImGui::EndColumns();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
auto ctt = std::make_unique<uint64_t[]>( children.size() );
|
||||||
|
auto cti = std::make_unique<uint32_t[]>( children.size() );
|
||||||
|
uint64_t ctime = 0;
|
||||||
|
for( size_t i=0; i<children.size(); i++ )
|
||||||
|
{
|
||||||
|
const auto& child = a(children[i]);
|
||||||
|
const auto cend = m_worker.GetZoneEnd( child );
|
||||||
|
const auto ct = cend - child.Start();
|
||||||
|
ctime += ct;
|
||||||
|
ctt[i] = ct;
|
||||||
|
cti[i] = uint32_t( i );
|
||||||
|
}
|
||||||
|
|
||||||
|
pdqsort_branchless( cti.get(), cti.get() + children.size(), [&ctt] ( const auto& lhs, const auto& rhs ) { return ctt[lhs] > ctt[rhs]; } );
|
||||||
|
|
||||||
|
ImGui::Columns( 2 );
|
||||||
|
TextColoredUnformatted( ImVec4( 1.0f, 1.0f, 0.4f, 1.0f ), "Self time" );
|
||||||
|
ImGui::NextColumn();
|
||||||
|
char buf[128];
|
||||||
|
sprintf( buf, "%s (%.2f%%)", TimeToString( ztime - ctime ), double( ztime - ctime ) / ztime * 100 );
|
||||||
|
ImGui::ProgressBar( double( ztime - ctime ) * rztime, ImVec2( -1, ty ), buf );
|
||||||
|
ImGui::NextColumn();
|
||||||
|
for( size_t i=0; i<children.size(); i++ )
|
||||||
|
{
|
||||||
|
auto& cev = a(children[cti[i]]);
|
||||||
|
const auto txt = m_worker.GetZoneName( cev );
|
||||||
|
bool b = false;
|
||||||
|
SmallColorBox( GetSrcLocColor( m_worker.GetSourceLocation( cev.SrcLoc() ), 0 ) );
|
||||||
|
ImGui::SameLine();
|
||||||
|
ImGui::PushID( (int)i );
|
||||||
|
if( ImGui::Selectable( txt, &b, ImGuiSelectableFlags_SpanAllColumns ) )
|
||||||
|
{
|
||||||
|
ShowZoneInfo( cev );
|
||||||
|
}
|
||||||
|
if( ImGui::IsItemHovered() )
|
||||||
|
{
|
||||||
|
m_zoneHighlight = &cev;
|
||||||
|
if( ImGui::IsMouseClicked( 2 ) )
|
||||||
|
{
|
||||||
|
ZoomToZone( cev );
|
||||||
|
}
|
||||||
|
ZoneTooltip( cev );
|
||||||
|
}
|
||||||
|
ImGui::PopID();
|
||||||
|
ImGui::NextColumn();
|
||||||
|
const auto part = double( ctt[cti[i]] ) * rztime;
|
||||||
|
char buf[128];
|
||||||
|
sprintf( buf, "%s (%.2f%%)", TimeToString( ctt[cti[i]] ), part * 100 );
|
||||||
|
ImGui::ProgressBar( part, ImVec2( -1, ty ), buf );
|
||||||
|
ImGui::NextColumn();
|
||||||
|
}
|
||||||
|
ImGui::EndColumns();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void View::DrawGpuInfoWindow()
|
void View::DrawGpuInfoWindow()
|
||||||
{
|
{
|
||||||
auto& ev = *m_gpuInfoWindow;
|
auto& ev = *m_gpuInfoWindow;
|
||||||
|
@ -164,6 +164,9 @@ private:
|
|||||||
void DrawZoneInfoWindow();
|
void DrawZoneInfoWindow();
|
||||||
void DrawGpuInfoWindow();
|
void DrawGpuInfoWindow();
|
||||||
|
|
||||||
|
template<typename Adapter, typename V>
|
||||||
|
void DrawZoneInfoChildren( const V& children, int64_t ztime );
|
||||||
|
|
||||||
void HandleZoneViewMouse( int64_t timespan, const ImVec2& wpos, float w, double& pxns );
|
void HandleZoneViewMouse( int64_t timespan, const ImVec2& wpos, float w, double& pxns );
|
||||||
|
|
||||||
uint32_t GetThreadColor( uint64_t thread, int depth );
|
uint32_t GetThreadColor( uint64_t thread, int depth );
|
||||||
|
Loading…
x
Reference in New Issue
Block a user