[dali_1.0.1] Merge branch 'tizen'
[platform/core/uifw/dali-core.git] / dali / internal / event / images / bitmap-compressed.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-compressed.h>
20
21 // INTERNAL INCLUDES
22 #include <dali/internal/common/core-impl.h>
23 #include <dali/integration-api/debug.h>
24
25 // INTERNAL INCLUDES
26 #include <dali/internal/common/core-impl.h>
27 #include <dali/integration-api/debug.h>
28
29 namespace Dali
30 {
31
32 namespace Internal
33 {
34 using namespace Dali::Pixel;
35
36 BitmapCompressed::BitmapCompressed( const bool bitmapOwnsBuffer ) : Bitmap(bitmapOwnsBuffer), mBufferSize(0)
37 {}
38
39 BitmapCompressed::~BitmapCompressed()
40 {
41   DALI_LOG_TRACE_METHOD(Debug::Filter::gImage);
42 }
43
44 void BitmapCompressed::Initialize( Pixel::Format pixelFormat,
45                           const unsigned int width,
46                           const unsigned int height,
47                           const size_t bufferSize )
48 {
49   Dali::Integration::Bitmap::Initialize( pixelFormat, width, height );
50   mBufferSize  = bufferSize;
51   mAlphaChannelUsed = false; // Default to not using Alpha as we cannot scan the pixels to look for transparent pixels. A follow-up work-item and patch will add an "assume alpha present" flag to ImageAttributes.
52 }
53
54 Dali::Integration::PixelBuffer* BitmapCompressed::ReserveBufferOfSize( Pixel::Format pixelFormat,
55                                     const unsigned int  width,
56                                     const unsigned int  height,
57                                     const size_t        bufferSize )
58 {
59   // Sanity check that a not-outrageous amount of data is being passed in (indicating a client error):
60   DALI_ASSERT_DEBUG(bufferSize < (1U << 27U) && "That is far too much compressed data."); // 128MB of compressed data == unreasonable.
61   // delete existing buffer
62   DeletePixelBuffer();
63
64   Initialize(pixelFormat, width, height, bufferSize);
65
66   mData = new Dali::Integration::PixelBuffer[bufferSize];
67
68   return mData;
69 }
70
71 } //namespace Integration
72
73 } //namespace Dali