Skip to content

Commit

Permalink
fixup! feat(3d/renderview): extract forward render view
Browse files Browse the repository at this point in the history
  • Loading branch information
benoitdm-oslandia committed Jan 16, 2025
1 parent c34e3f0 commit e86f599
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/3d/framegraph/qgsframegraph.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -759,8 +759,9 @@ void QgsFrameGraph::setupDepthMapDebugging( bool enabled, Qt::Corner corner, dou
void QgsFrameGraph::setSize( QSize s )
{
mSize = s;
for ( QgsAbstractRenderView *rv : qAsConst( mRenderViewMap.values() ) )
for ( QMap<QString, QgsAbstractRenderView *>::iterator it = mRenderViewMap.begin(); it != mRenderViewMap.end(); ++it )
{
QgsAbstractRenderView *rv = it.value();
rv->updateWindowResize( mSize.width(), mSize.height() );
}

Expand Down

0 comments on commit e86f599

Please sign in to comment.