fdeca56bb428a190442a0f3ef3668ece8dc1278b
[platform/core/uifw/dali-adaptor.git] / dali / internal / imaging / tizen / native-image-source-impl-tizen.h
1 #ifndef DALI_INTERNAL_NATIVE_IMAGE_SOURCE_IMPL_TIZEN_H
2 #define DALI_INTERNAL_NATIVE_IMAGE_SOURCE_IMPL_TIZEN_H
3
4 /*
5  * Copyright (c) 2017 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 #include <tbm_surface.h>
23 #include <dali/devel-api/images/native-image-interface-extension.h>
24 #include <dali/devel-api/threading/mutex.h>
25 #include <dali/public-api/common/dali-vector.h>
26
27 // INTERNAL INCLUDES
28 #include <dali/public-api/adaptor-framework/native-image-source.h>
29 #include <dali/internal/imaging/common/native-image-source-impl.h>
30
31 namespace Dali
32 {
33
34 namespace Internal
35 {
36
37 namespace Adaptor
38 {
39
40 class EglGraphics;
41 class EglImageExtensions;
42
43 /**
44  * Dali internal NativeImageSource.
45  */
46 class NativeImageSourceTizen: public Internal::Adaptor::NativeImageSource, public NativeImageInterface::Extension
47 {
48 public:
49
50   /**
51    * Create a new NativeImageSource internally.
52    * Depending on hardware the width and height may have to be a power of two.
53    * @param[in] width The width of the image.
54    * @param[in] height The height of the image.
55    * @param[in] depth color depth of the image.
56    * @param[in] nativeImageSource contains tbm_surface_h or is empty
57    * @return A smart-pointer to a newly allocated image.
58    */
59   static NativeImageSourceTizen* New(uint32_t width,
60                           uint32_t height,
61                           Dali::NativeImageSource::ColorDepth depth,
62                           Any nativeImageSource);
63
64   /**
65    * @copydoc Dali::NativeImageSource::GetNativeImageSource()
66    */
67   Any GetNativeImageSource() const override;
68
69   /**
70    * @copydoc Dali::NativeImageSource::GetPixels()
71    */
72   bool GetPixels(std::vector<unsigned char> &pixbuf, uint32_t &width, uint32_t &height, Pixel::Format& pixelFormat ) const  override;
73
74   /**
75    * @copydoc Dali::NativeImageSource::EncodeToFile(const std::string& )
76    */
77   bool EncodeToFile(const std::string& filename) const override;
78
79   /**
80    * @copydoc Dali::NativeImageSource::SetSource( Any source )
81    */
82   void SetSource( Any source ) override;
83
84   /**
85    * @copydoc Dali::NativeImageSource::IsColorDepthSupported( ColorDepth colorDepth )
86    */
87   bool IsColorDepthSupported( Dali::NativeImageSource::ColorDepth colorDepth ) override;
88
89   /**
90    * destructor
91    */
92   ~NativeImageSourceTizen() override;
93
94   /**
95    * @copydoc Dali::NativeImageSource::GlExtensionCreate()
96    */
97   bool GlExtensionCreate() override;
98
99   /**
100    * @copydoc Dali::NativeImageSource::GlExtensionDestroy()
101    */
102   void GlExtensionDestroy() override;
103
104   /**
105    * @copydoc Dali::NativeImageSource::TargetTexture()
106    */
107   uint32_t TargetTexture() override;
108
109   /**
110    * @copydoc Dali::NativeImageSource::PrepareTexture()
111    */
112   void PrepareTexture() override;
113
114   /**
115    * @copydoc Dali::NativeImageSource::GetWidth()
116    */
117   uint32_t GetWidth() const override
118   {
119     return mWidth;
120   }
121
122   /**
123    * @copydoc Dali::NativeImageSource::GetHeight()
124    */
125   uint32_t GetHeight() const override
126   {
127     return mHeight;
128   }
129
130   /**
131    * @copydoc Dali::NativeImageSource::RequiresBlending()
132    */
133   bool RequiresBlending() const override
134   {
135     return mBlendingRequired;
136   }
137
138   /**
139    * @copydoc Dali::NativeImageInterface::GetExtension()
140    */
141   NativeImageInterface::Extension* GetNativeImageInterfaceExtension() override
142   {
143     return this;
144   }
145
146   /**
147    * @copydoc Dali::NativeImageInterface::Extension::GetCustomFragmentPreFix()
148    */
149   const char* GetCustomFragmentPreFix() override;
150
151   /**
152    * @copydoc Dali::NativeImageInterface::Extension::GetCustomSamplerTypename()
153    */
154   const char* GetCustomSamplerTypename() override;
155
156   /**
157    * @copydoc Dali::NativeImageInterface::Extension::GetEglImageTextureTarget()
158    */
159   int GetEglImageTextureTarget() override;
160
161 private:
162
163   /**
164    * Private constructor; @see NativeImageSource::New()
165    * @param[in] width The width of the image.
166    * @param[in] height The height of the image.
167    * @param[in] colour depth of the image.
168    * @param[in] nativeImageSource contains either: pixmap of type X11 Pixmap , a Ecore_X_Pixmap or is empty
169    */
170   NativeImageSourceTizen(uint32_t width,
171               unsigned  int height,
172               Dali::NativeImageSource::ColorDepth depth,
173               Any nativeImageSource);
174
175   void Initialize();
176
177   tbm_surface_h GetSurfaceFromAny( Any source ) const;
178
179   bool CheckBlending( tbm_format format );
180
181 private:
182
183   uint32_t mWidth;                        ///< image width
184   uint32_t mHeight;                       ///< image height
185   bool mOwnTbmSurface;                        ///< Whether we created pixmap or not
186   tbm_surface_h mTbmSurface;
187   tbm_format mTbmFormat;
188   bool mBlendingRequired;                      ///< Whether blending is required
189   Dali::NativeImageSource::ColorDepth mColorDepth;  ///< color depth of image
190   void* mEglImageKHR;                         ///< From EGL extension
191   EglGraphics* mEglGraphics;                  ///< EGL Graphics
192   EglImageExtensions* mEglImageExtensions;    ///< The EGL Image Extensions
193   bool mSetSource;
194   mutable Dali::Mutex mMutex;
195 };
196
197 } // namespace Adaptor
198
199 } // namespace Internal
200
201 } // namespace Dali
202
203 #endif // DALI_INTERNAL_NATIVE_IMAGE_SOURCE_IMPL_TIZEN_H