e6b672c7d51f3dab559f41b0e52ca43904f6c038
[platform/core/uifw/dali-adaptor.git] / dali / internal / imaging / ubuntu-x11 / native-image-source-impl-x.h
1 #ifndef DALI_INTERNAL_NATIVE_IMAGE_SOURCE_H
2 #define DALI_INTERNAL_NATIVE_IMAGE_SOURCE_H
3
4 /*
5  * Copyright (c) 2021 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 <dali/internal/system/linux/dali-ecore-x.h>
23
24 // INTERNAL INCLUDES
25 #include <dali/internal/graphics/common/graphics-interface.h>
26
27 #include <dali/public-api/adaptor-framework/native-image-source.h>
28
29 #include <dali/internal/imaging/common/native-image-source-impl.h>
30
31 namespace Dali
32 {
33 namespace Internal
34 {
35 namespace Adaptor
36 {
37 class EglImageExtensions;
38
39 /**
40  * Dali internal NativeImageSource.
41  */
42 class NativeImageSourceX : public Internal::Adaptor::NativeImageSource
43 {
44 public:
45   /**
46    * Create a new NativeImageSource internally.
47    * Depending on hardware the width and height may have to be a power of two.
48    * @param[in] width The width of the image.
49    * @param[in] height The height of the image.
50    * @param[in] depth color depth of the image.
51    * @param[in] nativeImageSource contains either: pixmap of type X11 Pixmap , a Ecore_X_Pixmap or is empty
52    * @return A smart-pointer to a newly allocated image.
53    */
54   static NativeImageSourceX* New(uint32_t                            width,
55                                  uint32_t                            height,
56                                  Dali::NativeImageSource::ColorDepth depth,
57                                  Any                                 nativeImageSource);
58   /**
59    * @copydoc Dali::NativeImageSource::GetNativeImageSource()
60    */
61   Any GetNativeImageSource() const override;
62
63   /**
64    * @copydoc Dali::NativeImageSource::GetPixels()
65    */
66   bool GetPixels(std::vector<unsigned char>& pixbuf, uint32_t& width, uint32_t& height, Pixel::Format& pixelFormat) const override;
67
68   /**
69    * @copydoc Dali::NativeImageSource::SetSource( Any source )
70    */
71   void SetSource(Any source) override;
72
73   /**
74    * @copydoc Dali::NativeImageSource::IsColorDepthSupported( ColorDepth colorDepth )
75    */
76   bool IsColorDepthSupported(Dali::NativeImageSource::ColorDepth colorDepth) override;
77
78   /**
79    * destructor
80    */
81   ~NativeImageSourceX() override;
82
83   /**
84    * @copydoc Dali::NativeImageSource::CreateResource()
85    */
86   bool CreateResource() override;
87
88   /**
89    * @copydoc Dali::NativeImageSource::DestroyResource()
90    */
91   void DestroyResource() override;
92
93   /**
94    * @copydoc Dali::NativeImageSource::TargetTexture()
95    */
96   uint32_t TargetTexture() override;
97
98   /**
99    * @copydoc Dali::NativeImageSource::PrepareTexture()
100    */
101   void PrepareTexture() override;
102
103   /**
104    * @copydoc Dali::NativeImageSource::GetWidth()
105    */
106   uint32_t GetWidth() const override
107   {
108     return mWidth;
109   }
110
111   /**
112    * @copydoc Dali::NativeImageSource::GetHeight()
113    */
114   uint32_t GetHeight() const override
115   {
116     return mHeight;
117   }
118
119   /**
120    * @copydoc Dali::NativeImageSource::RequiresBlending()
121    */
122   bool RequiresBlending() const override
123   {
124     return mBlendingRequired;
125   }
126
127   /**
128    * @copydoc Dali::NativeImageSource::GetTextureTarget()
129    */
130   int GetTextureTarget() const override;
131
132   /**
133    * @copydoc Dali::NativeImageSource::ApplyNativeFragmentShader()
134    */
135   bool ApplyNativeFragmentShader(std::string& shader) override;
136
137   /**
138    * @copydoc Dali::NativeImageSource::GetCustomSamplerTypename()
139    */
140   const char* GetCustomSamplerTypename() const override;
141
142   /**
143    * @copydoc Dali::NativeImageSource::GetNativeImageHandle()
144    */
145   Any GetNativeImageHandle() const override;
146
147   /**
148    * @copydoc Dali::NativeImageSource::SourceChanged()
149    */
150   bool SourceChanged() const override;
151
152   /**
153    * @copydoc Dali::NativeImageInterface::GetExtension()
154    */
155   NativeImageInterface::Extension* GetNativeImageInterfaceExtension() override
156   {
157     return nullptr;
158   }
159
160   /**
161    * @copydoc Dali::Internal::Adaptor::NativeImageSource::AcquireBuffer()
162    */
163   uint8_t* AcquireBuffer(uint16_t& width, uint16_t& height, uint16_t& stride) override;
164
165   /**
166    * @copydoc Dali::Internal::Adaptor::NativeImageSource::ReleaseBuffer()
167    */
168   bool ReleaseBuffer() override;
169
170 private:
171   /**
172    * Private constructor; @see NativeImageSource::New()
173    * @param[in] width The width of the image.
174    * @param[in] height The height of the image.
175    * @param[in] colour depth of the image.
176    * @param[in] nativeImageSource contains either: pixmap of type X11 Pixmap , a Ecore_X_Pixmap or is empty
177    */
178   NativeImageSourceX(uint32_t                            width,
179                      uint32_t                            height,
180                      Dali::NativeImageSource::ColorDepth depth,
181                      Any                                 nativeImageSource);
182
183   /**
184    * 2nd phase construction.
185    */
186   void Initialize();
187
188   /**
189    * Uses X11 to get the default depth.
190    * @param depth the PixelImage depth enum
191    * @return default x11 pixel depth
192    */
193   int GetPixelDepth(Dali::NativeImageSource::ColorDepth depth) const;
194
195   /**
196    * Gets the pixmap from the Any parameter
197    * @param pixmap contains either: pixmap of type X11 Pixmap , a Ecore_X_Pixmap or is empty
198    * @return pixmap x11 pixmap
199    */
200   Ecore_X_Pixmap GetPixmapFromAny(Any pixmap) const;
201
202   /**
203    * Given an existing pixmap, the function uses X to find out
204    * the width, heigth and depth of that pixmap.
205    */
206   void GetPixmapDetails();
207
208 private:
209   uint32_t                            mWidth;              ///< image width
210   uint32_t                            mHeight;             ///< image heights
211   bool                                mOwnPixmap;          ///< Whether we created pixmap or not
212   Ecore_X_Pixmap                      mPixmap;             ///< From Xlib
213   bool                                mBlendingRequired;   ///< Whether blending is required
214   Dali::NativeImageSource::ColorDepth mColorDepth;         ///< color depth of image
215   void*                               mEglImageKHR;        ///< From EGL extension
216   EglImageExtensions*                 mEglImageExtensions; ///< The EGL Image Extensions
217 };
218
219 } // namespace Adaptor
220
221 } // namespace Internal
222
223 } // namespace Dali
224
225 #endif // DALI_INTERNAL_NATIVE_IMAGE_SOURCE_H