Commit 2e7efcd5 authored by Anatoly Mihalchenko's avatar Anatoly Mihalchenko

erasers performance: pragmas

parent 0fc1a4df
......@@ -767,18 +767,24 @@ void UBGraphicsScene::eraseLineTo(const QPointF &pEndPoint, const qreal &pWidth)
QPainterPath itemPainterPath;
itemPainterPath.addPolygon(pi->sceneTransform().map(pi->polygon()));
if (eraserPath.contains(itemPainterPath))
{
#pragma omp critical
{
// Compele remove item
intersectedItems << pi;
intersectedPolygons << QPolygonF();
}
}
else if (eraserPath.intersects(itemPainterPath))
{
QPainterPath newPath = itemPainterPath.subtracted(eraserPath);
#pragma omp critical
{
intersectedItems << pi;
intersectedPolygons << newPath.simplified().toFillPolygon(pi->sceneTransform().inverted());
}
}
}
for(int i=0; i<intersectedItems.size(); i++)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment