mirror of
https://github.com/wled/WLED.git
synced 2025-07-27 12:46:38 +00:00
removed unnecessary changes
This commit is contained in:
parent
b363b6151c
commit
e088f4654a
@ -86,11 +86,9 @@ uint32_t color_fade(uint32_t c1, uint8_t amount, bool video)
|
|||||||
// 1:1 replacement of fastled function optimized for ESP, slightly faster, more accurate and uses less flash (~ -200bytes)
|
// 1:1 replacement of fastled function optimized for ESP, slightly faster, more accurate and uses less flash (~ -200bytes)
|
||||||
uint32_t ColorFromPaletteWLED(const CRGBPalette16& pal, unsigned index, uint8_t brightness, TBlendType blendType)
|
uint32_t ColorFromPaletteWLED(const CRGBPalette16& pal, unsigned index, uint8_t brightness, TBlendType blendType)
|
||||||
{
|
{
|
||||||
|
|
||||||
if (blendType == LINEARBLEND_NOWRAP) {
|
if (blendType == LINEARBLEND_NOWRAP) {
|
||||||
index = (index * 0xF0) >> 8; // Blend range is affected by lo4 blend of values, remap to avoid wrapping
|
index = (index * 0xF0) >> 8; // Blend range is affected by lo4 blend of values, remap to avoid wrapping
|
||||||
}
|
}
|
||||||
uint32_t clr32;
|
|
||||||
unsigned hi4 = byte(index) >> 4;
|
unsigned hi4 = byte(index) >> 4;
|
||||||
unsigned lo4 = (index & 0x0F);
|
unsigned lo4 = (index & 0x0F);
|
||||||
const CRGB* entry = (CRGB*)&(pal[0]) + hi4;
|
const CRGB* entry = (CRGB*)&(pal[0]) + hi4;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user