Merge "DALi Version 1.0.30" into tizen
[platform/core/uifw/dali-core.git] / dali / internal / event / images / bitmap-external.cpp
1 /*
2  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // CLASS HEADER
19 #include <dali/internal/event/images/bitmap-external.h>
20
21 // INTERNAL INCLUDES
22 #include <dali/internal/common/core-impl.h>
23
24 namespace Dali
25 {
26
27 namespace Internal
28 {
29
30 // use power of two bufferWidth and bufferHeight for better performance
31 BitmapExternal::BitmapExternal(Dali::Integration::PixelBuffer* pixBuf,
32                unsigned int width,
33                unsigned int height,
34                Pixel::Format pixelFormat,
35                unsigned int bufferWidth,
36                unsigned int bufferHeight)
37 : BitmapPackedPixel(ResourcePolicy::RETAIN, NULL/*pixBuf is externally owned*/),
38   mExternalData(pixBuf)
39 {
40   mImageWidth   = width;
41   mImageHeight  = height;
42   mBufferWidth  = (bufferWidth  != 0) ? bufferWidth  : width;
43   mBufferHeight = (bufferHeight != 0) ? bufferHeight : height;
44   mPixelFormat  = pixelFormat;
45
46   mBytesPerPixel = Pixel::GetBytesPerPixel(pixelFormat);
47   mHasAlphaChannel = Pixel::HasAlpha(pixelFormat);
48   mAlphaChannelUsed = mHasAlphaChannel;
49
50   DALI_ASSERT_DEBUG(mBufferWidth >= mImageWidth && mBufferHeight >= mImageHeight);
51 }
52
53 BitmapExternal::~BitmapExternal()
54 {
55   DALI_LOG_TRACE_METHOD(Debug::Filter::gImage);
56 }
57
58 } //namespace Internal
59
60 } //namespace Dali