[3.0] Fix common profile build error
[platform/core/uifw/dali-adaptor.git] / adaptors / ecore / wayland / native-image-source-impl.h
1 #ifndef __DALI_INTERNAL_NATIVE_IMAGE_SOURCE_H__
2 #define __DALI_INTERNAL_NATIVE_IMAGE_SOURCE_H__
3
4 /*
5  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // EXTERNAL INCLUDES
22
23 // INTERNAL INCLUDES
24 #include <native-image-source.h>
25
26 namespace Dali
27 {
28
29 namespace Internal
30 {
31
32 namespace Adaptor
33 {
34 class EglImageExtensions;
35
36 /**
37  * Dali internal NativeImageSource.
38  */
39 class NativeImageSource
40 {
41 public:
42
43   /**
44    * Create a new NativeImageSource internally.
45    * Depending on hardware the width and height may have to be a power of two.
46    * @param[in] width The width of the image.
47    * @param[in] height The height of the image.
48    * @param[in] depth color depth of the image.
49    * @param[in] nativeImageSource contains either: pixmap of type X11 Pixmap , a Ecore_X_Pixmap or is empty
50    * @return A smart-pointer to a newly allocated image.
51    */
52   static NativeImageSource* New(unsigned int width,
53                           unsigned int height,
54                           Dali::NativeImageSource::ColorDepth depth,
55                           Any nativeImageSource);
56
57   /**
58    * @copydoc Dali::NativeImageSource::GetNativeImageSource()
59    */
60   Any GetNativeImageSource() const;
61
62   /**
63    * @copydoc Dali::NativeImageSource::GetPixels()
64    */
65   bool GetPixels(std::vector<unsigned char> &pixbuf, unsigned int &width, unsigned int &height, Pixel::Format& pixelFormat ) const;
66
67   /**
68    * @copydoc Dali::NativeImageSource::EncodeToFile(const std::string& )
69    */
70   bool EncodeToFile(const std::string& filename) const;
71
72   /**
73    * destructor
74    */
75   ~NativeImageSource();
76
77   /**
78    * @copydoc Dali::NativeImageSource::GlExtensionCreate()
79    */
80   bool GlExtensionCreate();
81
82   /**
83    * @copydoc Dali::NativeImageSource::GlExtensionDestroy()
84    */
85   void GlExtensionDestroy();
86
87   /**
88    * @copydoc Dali::NativeImageSource::TargetTexture()
89    */
90   unsigned int TargetTexture();
91
92   /**
93    * @copydoc Dali::NativeImageSource::GetWidth()
94    */
95   unsigned int GetWidth() const
96   {
97     return mWidth;
98   }
99
100   /**
101    * @copydoc Dali::NativeImageSource::GetHeight()
102    */
103   unsigned int GetHeight() const
104   {
105     return mHeight;
106   }
107
108   /**
109    * @copydoc Dali::NativeImageSource::RequiresBlending()
110    */
111   bool RequiresBlending() const
112   {
113     return mBlendingRequired;
114   }
115
116 private:
117
118   /**
119    * Private constructor; @see NativeImageSource::New()
120    * @param[in] width The width of the image.
121    * @param[in] height The height of the image.
122    * @param[in] colour depth of the image.
123    * @param[in] nativeImageSource contains either: pixmap of type X11 Pixmap , a Ecore_X_Pixmap or is empty
124    */
125   NativeImageSource(unsigned int width,
126               unsigned  int height,
127               Dali::NativeImageSource::ColorDepth depth,
128               Any nativeImageSource);
129
130   /**
131    * 2nd phase construction.
132    */
133   void Initialize();
134
135   /**
136    * Decide whether blending is required based on the color depth.
137    * @param depth the PixelImage depth enum
138    */
139   void SetBlending(Dali::NativeImageSource::ColorDepth depth);
140
141 private:
142
143   unsigned int mWidth;                        ///< image width
144   unsigned int mHeight;                       ///< image heights
145   bool mOwnPixmap;                            ///< Whether we created pixmap or not
146   bool mBlendingRequired;                      ///< Whether blending is required
147   Dali::NativeImageSource::ColorDepth mColorDepth;  ///< color depth of image
148   void* mEglImageKHR;                         ///< From EGL extension
149   EglImageExtensions* mEglImageExtensions;    ///< The EGL Image Extensions
150 };
151
152 } // namespace Adaptor
153
154 } // namespace Internal
155
156 } // namespace Dali
157
158 #endif // __DALI_INTERNAL_NATIVE_IMAGE_SOURCE_H__