1
0
mirror of https://github.com/aseprite/aseprite.git synced 2025-04-03 16:20:20 +00:00

Intersect selection too slow (fix )

Before this fix, the Intersect selection context option were much slower than Add or Subtract.
To reproduce the old 'bug':
- Create a 1000x1000 sprite
- Make a small rectangular selection on some place
- Click on the empty area with the Magic Wand in Intersect context option.
The same action in Add or Substract is much faster.
This commit is contained in:
Gaspar Capello 2020-06-10 16:35:13 -03:00 committed by David Capello
parent 73ff0dc28c
commit f9a9e1a0bc

@ -460,6 +460,7 @@ public:
void setFinalStep(ToolLoop* loop, bool state) override { void setFinalStep(ToolLoop* loop, bool state) override {
m_modify_selection = state; m_modify_selection = state;
int modifiers = int(loop->getModifiers());
if (state) { if (state) {
m_maxBounds = loop->getMask()->bounds(); m_maxBounds = loop->getMask()->bounds();
@ -467,11 +468,16 @@ public:
m_mask.copyFrom(loop->getMask()); m_mask.copyFrom(loop->getMask());
m_mask.freeze(); m_mask.freeze();
m_mask.reserve(loop->sprite()->bounds()); m_mask.reserve(loop->sprite()->bounds());
if ((modifiers & int(ToolLoopModifiers::kIntersectSelection)) != 0) {
m_intersectMask.clear();
m_intersectMask.reserve(loop->sprite()->bounds());
}
} }
else { else {
int modifiers = int(loop->getModifiers());
if ((modifiers & int(ToolLoopModifiers::kIntersectSelection)) != 0) { if ((modifiers & int(ToolLoopModifiers::kIntersectSelection)) != 0) {
m_mask.intersect(m_intersectMask); m_mask.intersect(m_intersectMask);
m_intersectMask.clear();
} }
// We can intersect the used bounds in inkHline() calls to // We can intersect the used bounds in inkHline() calls to