From: Adeel Kazmi Date: Thu, 28 Sep 2017 15:54:51 +0000 (+0100) Subject: Changes required after some pixel formats were moved to the Public API in Core X-Git-Tag: dali_1.2.60~4^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F30%2F153530%2F1;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git Changes required after some pixel formats were moved to the Public API in Core Change-Id: I47df90dfc8ab19577510e3a764c45fa592fc2a53 --- diff --git a/platform-abstractions/portable/pixel-manipulation.cpp b/platform-abstractions/portable/pixel-manipulation.cpp index ef2defc..58e482e 100644 --- a/platform-abstractions/portable/pixel-manipulation.cpp +++ b/platform-abstractions/portable/pixel-manipulation.cpp @@ -66,6 +66,8 @@ bool HasChannel( Dali::Pixel::Format pixelFormat, Channel channel ) case Dali::Pixel::RGB888: case Dali::Pixel::RGB8888: case Dali::Pixel::BGR8888: + case Dali::Pixel::RGB16F: + case Dali::Pixel::RGB32F: { return ( channel == RED || channel == GREEN || channel == BLUE ); }