[Tizen] Add FreeReleasedBuffers method to NativeImageSourceQueue
[platform/core/uifw/dali-adaptor.git] / dali / internal / imaging / android / native-image-source-queue-impl-android.h
1 #ifndef DALI_INTERNAL_NATIVE_IMAGE_SOURCE_QUEUE_IMPL_ANDROID_H
2 #define DALI_INTERNAL_NATIVE_IMAGE_SOURCE_QUEUE_IMPL_ANDROID_H
3
4 /*
5  * Copyright (c) 2022 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 <dali/internal/imaging/common/native-image-source-queue-impl.h>
25
26 namespace Dali
27 {
28 namespace Internal
29 {
30 namespace Adaptor
31 {
32 class EglGraphics;
33 class EglImageExtensions;
34
35 /**
36  * Dali internal NativeImageSourceQueue.
37  */
38 class NativeImageSourceQueueAndroid : public Internal::Adaptor::NativeImageSourceQueue
39 {
40 public:
41   /**
42    * Create a new NativeImageSourceQueueAndroid internally.
43    * Depending on hardware the width and height may have to be a power of two.
44    * @param[in] width The width of the image.
45    * @param[in] height The height of the image.
46    * @param[in] colorFormat The color format of the image.
47    * @param[in] nativeImageSourceQueue contains tbm_surface_queue_h or is empty
48    * @return A smart-pointer to a newly allocated image.
49    */
50   static NativeImageSourceQueueAndroid* New(uint32_t width, uint32_t height, Dali::NativeImageSourceQueue::ColorFormat colorFormat, Any nativeImageSourceQueue);
51
52   /**
53    * @copydoc Dali::NativeImageSourceQueue::GetNativeImageSourceQueue()
54    */
55   Any GetNativeImageSourceQueue() const override;
56
57   /**
58    * @copydoc Dali::NativeImageSourceQueue::SetSize
59    */
60   void SetSize(uint32_t width, uint32_t height) override;
61
62   /**
63    * @copydoc Dali::NativeImageSourceQueue::IgnoreSourceImage
64    */
65   void IgnoreSourceImage() override;
66
67   /**
68    * @copydoc Dali::NativeImageSourceQueue::CanDequeueBuffer
69    */
70   bool CanDequeueBuffer() override;
71
72   /**
73    * @copydoc Dali::NativeImageSourceQueue::DequeueBuffer
74    */
75   uint8_t* DequeueBuffer(uint32_t& width, uint32_t& height, uint32_t& stride) override;
76
77   /**
78    * @copydoc Dali::NativeImageSourceQueue::EnqueueBuffer
79    */
80   bool EnqueueBuffer(uint8_t* buffer) override;
81
82   /**
83    * @copydoc Dali::NativeImageSourceQueue::EnqueueBuffer
84    */
85   void FreeReleasedBuffers() override;
86
87   /**
88    * destructor
89    */
90   ~NativeImageSourceQueueAndroid() override;
91
92   /**
93    * @copydoc Dali::NativeImageInterface::CreateResource()
94    */
95   bool CreateResource() override;
96
97   /**
98    * @copydoc Dali::NativeImageInterface::DestroyResource()
99    */
100   void DestroyResource() override;
101
102   /**
103    * @copydoc Dali::NativeImageInterface::TargetTexture()
104    */
105   uint32_t TargetTexture() override;
106
107   /**
108    * @copydoc Dali::NativeImageInterface::PrepareTexture()
109    */
110   void PrepareTexture() override;
111
112   /**
113    * @copydoc Dali::NativeImageInterface::GetWidth()
114    */
115   uint32_t GetWidth() const override
116   {
117     return mWidth;
118   }
119
120   /**
121    * @copydoc Dali::NativeImageInterface::GetHeight()
122    */
123   uint32_t GetHeight() const override
124   {
125     return mHeight;
126   }
127
128   /**
129    * @copydoc Dali::NativeImageInterface::RequiresBlending()
130    */
131   bool RequiresBlending() const override
132   {
133     return true;
134   }
135
136   /**
137    * @copydoc Dali::NativeImageInterface::GetExtension()
138    */
139   NativeImageInterface::Extension* GetNativeImageInterfaceExtension() override
140   {
141     return nullptr;
142   }
143
144   /**
145    * @copydoc Dali::NativeImageInterface::ApplyNativeFragmentShader()
146    */
147   bool ApplyNativeFragmentShader(std::string& shader) override;
148
149   /**
150    * @copydoc Dali::NativeImageInterface::GetCustomSamplerTypename()
151    */
152   const char* GetCustomSamplerTypename() const override;
153
154   /**
155    * @copydoc Dali::NativeImageInterface::GetTextureTarget()
156    */
157   int GetTextureTarget() const override;
158
159   /**
160    * @copydoc Dali::NativeImageInterface::GetNativeImageHandle()
161    */
162   Any GetNativeImageHandle() const override;
163
164   /**
165    * @copydoc Dali::NativeImageInterface::SourceChanged()
166    */
167   bool SourceChanged() const override;
168
169 private:
170   /**
171    * Private constructor; @see NativeImageSourceQueue::New()
172    * @param[in] width The width of the image.
173    * @param[in] height The height of the image.
174    * @param[in] colorFormat The color format of the image.
175    * @param[in] nativeImageSourceQueue contains tbm_surface_queue_h or is empty
176    */
177   NativeImageSourceQueueAndroid(uint32_t width, uint32_t height, Dali::NativeImageSourceQueue::ColorFormat colorFormat, Any nativeImageSourceQueue);
178
179 private:
180   uint32_t mWidth;  ///< image width
181   uint32_t mHeight; ///< image height
182 };
183
184 } // namespace Adaptor
185
186 } // namespace Internal
187
188 } // namespace Dali
189
190 #endif // DALI_INTERNAL_NATIVE_IMAGE_SOURCE_QUEUE_IMPL_ANDROID_H