5702eafb70d84db638185f1db4191ddaf0be32a9
[platform/core/uifw/dali-adaptor.git] / dali / internal / imaging / tizen / native-image-source-queue-impl-tizen.h
1 #ifndef DALI_INTERNAL_NATIVE_IMAGE_SOURCE_QUEUE_IMPL_TIZEN_H
2 #define DALI_INTERNAL_NATIVE_IMAGE_SOURCE_QUEUE_IMPL_TIZEN_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/devel-api/threading/mutex.h>
23 #include <dali/public-api/common/vector-wrapper.h>
24 #include <tbm_surface.h>
25 #include <tbm_surface_queue.h>
26
27 // INTERNAL INCLUDES
28 #include <dali/internal/imaging/common/native-image-source-queue-impl.h>
29
30 namespace Dali
31 {
32 namespace Internal
33 {
34 namespace Adaptor
35 {
36 class EglGraphics;
37 class EglImageExtensions;
38
39 /**
40  * Dali internal NativeImageSource.
41  */
42 class NativeImageSourceQueueTizen : public Internal::Adaptor::NativeImageSourceQueue
43 {
44 public:
45   /**
46    * Create a new NativeImageSourceQueueTizen 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] nativeImageSourceQueue contains tbm_surface_queue_h or is empty
52    * @return A smart-pointer to a newly allocated image.
53    */
54   static NativeImageSourceQueueTizen* New(uint32_t width, uint32_t height, Dali::NativeImageSourceQueue::ColorDepth depth, Any nativeImageSourceQueue);
55
56   /**
57    * @copydoc Dali::NativeImageSourceQueue::GetNativeImageSourceQueue()
58    */
59   Any GetNativeImageSourceQueue() const override;
60
61   /**
62    * @copydoc Dali::NativeImageSourceQueue::SetSize
63    */
64   void SetSize(uint32_t width, uint32_t height) override;
65
66   /**
67    * @copydoc Dali::NativeImageSourceQueue::IgnoreSourceImage
68    */
69   void IgnoreSourceImage() override;
70
71   /**
72    * destructor
73    */
74   ~NativeImageSourceQueueTizen() override;
75
76   /**
77    * @copydoc Dali::NativeImageInterface::CreateResource
78    */
79   bool CreateResource() override;
80
81   /**
82    * @copydoc Dali::NativeImageInterface::DestroyResource()
83    */
84   void DestroyResource() override;
85
86   /**
87    * @copydoc Dali::NativeImageInterface::TargetTexture()
88    */
89   uint32_t TargetTexture() override;
90
91   /**
92    * @copydoc Dali::NativeImageInterface::PrepareTexture()
93    */
94   void PrepareTexture() override;
95
96   /**
97    * @copydoc Dali::NativeImageInterface::GetWidth()
98    */
99   uint32_t GetWidth() const override
100   {
101     return mWidth;
102   }
103
104   /**
105    * @copydoc Dali::NativeImageInterface::GetHeight()
106    */
107   uint32_t GetHeight() const override
108   {
109     return mHeight;
110   }
111
112   /**
113    * @copydoc Dali::NativeImageInterface::RequiresBlending()
114    */
115   bool RequiresBlending() const override
116   {
117     return mBlendingRequired;
118   }
119
120   /**
121    * @copydoc Dali::NativeImageInterface::GetCustomFragmentPrefix()
122    */
123   const char* GetCustomFragmentPrefix() const override;
124
125   /**
126    * @copydoc Dali::NativeImageInterface::GetCustomSamplerTypename()
127    */
128   const char* GetCustomSamplerTypename() const override;
129
130   /**
131    * @copydoc Dali::NativeImageInterface::GetTextureTarget()
132    */
133   int GetTextureTarget() const override;
134
135   /**
136    * @copydoc Dali::NativeImageInterface::GetNativeImageHandle()
137    */
138   Any GetNativeImageHandle() const override;
139
140   /**
141    * @copydoc Dali::NativeImageInterface::SourceChanged()
142    */
143   bool SourceChanged() const override;
144
145   /**
146    * @copydoc Dali::NativeImageInterface::GetExtension()
147    */
148   NativeImageInterface::Extension* GetNativeImageInterfaceExtension() override
149   {
150     return nullptr;
151   }
152
153 private:
154   /**
155    * Private constructor; @see NativeImageSourceQueue::New()
156    * @param[in] width The width of the image.
157    * @param[in] height The height of the image.
158    * @param[in] colour depth of the image.
159    * @param[in] nativeImageSourceQueue contains tbm_surface_queue_h or is empty
160    */
161   NativeImageSourceQueueTizen(uint32_t width, uint32_t height, Dali::NativeImageSourceQueue::ColorDepth depth, Any nativeImageSourceQueue);
162
163   void Initialize(Dali::NativeImageSourceQueue::ColorDepth depth);
164
165   void ResetEglImageList();
166
167   tbm_surface_queue_h GetSurfaceFromAny(Any source) const;
168
169   bool CheckBlending(int format);
170
171 private:
172   typedef std::pair<tbm_surface_h, void*> EglImagePair;
173
174   const char*               mCustomFragmentPrefix; ///< Prefix for CustomFragment
175   Dali::Mutex               mMutex;                ///< Mutex
176   uint32_t                  mWidth;                ///< image width
177   uint32_t                  mHeight;               ///< image height
178   tbm_surface_queue_h       mTbmQueue;             ///< Tbm surface queue handle
179   tbm_surface_h             mConsumeSurface;       ///< The current tbm surface
180   std::vector<EglImagePair> mEglImages;            ///< EGL Image vector
181   EglGraphics*              mEglGraphics;          ///< EGL Graphics
182   EglImageExtensions*       mEglImageExtensions;   ///< The EGL Image Extensions
183   bool                      mOwnTbmQueue;          ///< Whether we created tbm queue
184   bool                      mBlendingRequired;     ///< Whether blending is required
185 };
186
187 } // namespace Adaptor
188
189 } // namespace Internal
190
191 } // namespace Dali
192
193 #endif // DALI_INTERNAL_NATIVE_IMAGE_SOURCE_QUEUE_IMPL_TIZEN_H