Merge "Fix build errors with GCC4.8." into tizen
[platform/core/uifw/dali-adaptor.git] / adaptors / common / indicator-buffer.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 #include "indicator-buffer.h"
19
20 namespace Dali
21 {
22 namespace Internal
23 {
24 namespace Adaptor
25 {
26
27 IndicatorBuffer::IndicatorBuffer( Adaptor* adaptor, unsigned int width, unsigned int height, Pixel::Format pixelFormat )
28 : mAdaptor(adaptor),
29   mImageWidth(width),
30   mImageHeight(height),
31   mPixelFormat(pixelFormat)
32 {
33   DALI_ASSERT_ALWAYS( adaptor );
34
35   // Use BitmapImage when SharedGlBuffer extension is unavailable
36   mBitmapBuffer = new NativeBitmapBuffer( adaptor, mImageWidth, mImageHeight, mPixelFormat );
37   mNativeImage = mBitmapBuffer;
38 }
39
40 bool IndicatorBuffer::UpdatePixels( const unsigned char *src, size_t size )
41 {
42   // Use double buffered bitmap when SharedGlBuffer extension is unavailable
43   mBitmapBuffer->Write( src, size );
44   return true;
45 }
46
47 NativeImage& IndicatorBuffer::GetNativeImage() const
48 {
49   DALI_ASSERT_DEBUG(mNativeImage.Get());
50   return *mNativeImage;
51 }
52
53 void IndicatorBuffer::SetAdaptor( Adaptor* adaptor )
54 {
55   mAdaptor = adaptor;
56 }
57
58 } // Adaptor
59 } // Internal
60 } // Dali