From: Heeyong Song Date: Thu, 19 Nov 2020 03:18:49 +0000 (+0900) Subject: Revert "[Tizen] Fix pixel format bug in pixel manipulation" X-Git-Tag: accepted/tizen/unified/20201120.125450~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;ds=sidebyside;h=35559b0ebceaf1bfee69e7432fc2ad6b6cbad523;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git Revert "[Tizen] Fix pixel format bug in pixel manipulation" This reverts commit a63a198ce3428cf8f66da17fd3be22c07db3ed5c. Change-Id: I9245506bc209c76f4b529a51c5d7ab36c68d9ef7 --- diff --git a/dali/internal/imaging/common/pixel-manipulation.cpp b/dali/internal/imaging/common/pixel-manipulation.cpp index fff8604..fa5094a 100644 --- a/dali/internal/imaging/common/pixel-manipulation.cpp +++ b/dali/internal/imaging/common/pixel-manipulation.cpp @@ -33,7 +33,7 @@ namespace constexpr Channel ALPHA_CHANNEL_ONLY[] = {ALPHA}; constexpr Channel LUMINANCE_CHANNEL_ONLY[] = {LUMINANCE}; -constexpr Channel LUMINANCE_ALPHA_CHANNELS[] = {LUMINANCE, ALPHA}; +constexpr Channel LUMINANCE_ALPHA_CHANNELS[] = {ALPHA, LUMINANCE}; constexpr Channel RGB_CHANNELS[] = {RED, GREEN, BLUE}; constexpr Channel BGR_CHANNELS[] = {BLUE, GREEN, RED}; constexpr Channel RGBA_CHANNELS[] = {RED, GREEN, BLUE, ALPHA};