FastLED 3.9.15
Loading...
Searching...
No Matches

◆ UpscalePalette() [5/6]

void fl::UpscalePalette ( const class CRGBPalette16 & srcpal16,
class CRGBPalette32 & destpal32 )

Definition at line 976 of file colorutils.cpp.

977 {
978 for (uint8_t i = 0; i < 16; ++i) {
979 uint8_t j = i * 2;
980 destpal32[j + 0] = srcpal16[i];
981 destpal32[j + 1] = srcpal16[i];
982 }
983}