mirror of
https://github.com/aseprite/aseprite.git
synced 2025-04-03 07:20:46 +00:00
Avoid std::find() for each pixel on HueSaturation for RGB images
This commit is contained in:
parent
59c7f7dcec
commit
690d3f5a5e
@ -63,10 +63,10 @@ void HueSaturationFilter::applyToRgba(FilterManager* filterMgr)
|
|||||||
|
|
||||||
if (filterMgr->isFirstRow()) {
|
if (filterMgr->isFirstRow()) {
|
||||||
m_picks = fid->getPalettePicks();
|
m_picks = fid->getPalettePicks();
|
||||||
if (m_picks.picks() > 0) {
|
m_usePalette = (m_picks.picks() > 0);
|
||||||
|
if (m_usePalette)
|
||||||
applyToPalette(filterMgr);
|
applyToPalette(filterMgr);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
const Palette* pal = fid->getPalette();
|
const Palette* pal = fid->getPalette();
|
||||||
const uint32_t* src_address = (uint32_t*)filterMgr->getSourceAddress();
|
const uint32_t* src_address = (uint32_t*)filterMgr->getSourceAddress();
|
||||||
@ -83,7 +83,7 @@ void HueSaturationFilter::applyToRgba(FilterManager* filterMgr)
|
|||||||
|
|
||||||
color_t c = *(src_address++);
|
color_t c = *(src_address++);
|
||||||
|
|
||||||
if (m_picks.picks() > 0) {
|
if (m_usePalette) {
|
||||||
int i =
|
int i =
|
||||||
pal->findExactMatch(rgba_getr(c),
|
pal->findExactMatch(rgba_getr(c),
|
||||||
rgba_getg(c),
|
rgba_getg(c),
|
||||||
|
@ -37,6 +37,7 @@ namespace filters {
|
|||||||
double m_h, m_s, m_l;
|
double m_h, m_s, m_l;
|
||||||
int m_a;
|
int m_a;
|
||||||
doc::PalettePicks m_picks;
|
doc::PalettePicks m_picks;
|
||||||
|
bool m_usePalette;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace filters
|
} // namespace filters
|
||||||
|
Loading…
x
Reference in New Issue
Block a user