Backout change unrelated to 19d0aceda3

This commit is contained in:
Seth Hillbrand 2023-03-24 12:28:03 -07:00
parent 0984599624
commit 0b54eb6edb
1 changed files with 0 additions and 9 deletions

View File

@ -1485,13 +1485,6 @@ void VIEW::UpdateItems()
if( anyUpdated )
{
GAL_UPDATE_CONTEXT ctx( m_gal );
std::vector<VIEW_ITEM*> items_to_update( m_allItems->size() );
std::copy_if( m_allItems->begin(), m_allItems->end(),
std::back_inserter( items_to_update ),
[]( VIEW_ITEM *aItem )
{ return aItem->viewPrivData() && aItem->viewPrivData()->m_requiredUpdate != NONE; }
);
for( VIEW_ITEM* item : *m_allItems.get() )
{
@ -1501,8 +1494,6 @@ void VIEW::UpdateItems()
item->viewPrivData()->m_requiredUpdate = NONE;
}
}
}
KI_TRACE( traceGalProfile, wxS( "View update: total items %u, geom %u anyUpdated %u\n" ), cntTotal,