Initial copy from dali-adaptor repository
[platform/core/uifw/dali-adaptor-legacy.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) 2019 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/images/native-image-interface-extension.h>
23
24 // INTERNAL INCLUDES
25 #include <dali/internal/imaging/common/native-image-source-queue-impl.h>
26
27 namespace Dali
28 {
29
30 namespace Internal
31 {
32
33 namespace Adaptor
34 {
35
36 class EglGraphics;
37 class EglImageExtensions;
38
39 /**
40  * Dali internal NativeImageSourceQueue.
41  */
42 class NativeImageSourceQueueAndroid: public Internal::Adaptor::NativeImageSourceQueue, public NativeImageInterface::Extension
43 {
44 public:
45
46   /**
47    * Create a new NativeImageSourceQueueAndroid internally.
48    * Depending on hardware the width and height may have to be a power of two.
49    * @param[in] width The width of the image.
50    * @param[in] height The height of the image.
51    * @param[in] depth color depth of the image.
52    * @param[in] nativeImageSourceQueue contains tbm_surface_queue_h or is empty
53    * @return A smart-pointer to a newly allocated image.
54    */
55   static NativeImageSourceQueueAndroid* New( uint32_t width, uint32_t height, Dali::NativeImageSourceQueue::ColorDepth depth, Any nativeImageSourceQueue );
56
57   /**
58    * @copydoc Dali::NativeImageSourceQueue::GetNativeImageSourceQueue()
59    */
60   Any GetNativeImageSourceQueue() const override;
61
62   /**
63    * @copydoc Dali::NativeImageSourceQueue::SetSize
64    */
65   void SetSize( uint32_t width, uint32_t height ) override;
66
67   /**
68    * destructor
69    */
70   ~NativeImageSourceQueueAndroid() override;
71
72   /**
73    * @copydoc Dali::NativeImageInterface::GlExtensionCreate()
74    */
75   bool GlExtensionCreate() override;
76
77   /**
78    * @copydoc Dali::NativeImageInterface::GlExtensionDestroy()
79    */
80   void GlExtensionDestroy() override;
81
82   /**
83    * @copydoc Dali::NativeImageInterface::TargetTexture()
84    */
85   uint32_t TargetTexture() override;
86
87   /**
88    * @copydoc Dali::NativeImageInterface::PrepareTexture()
89    */
90   void PrepareTexture() override;
91
92   /**
93    * @copydoc Dali::NativeImageInterface::GetWidth()
94    */
95   uint32_t GetWidth() const override
96   {
97     return mWidth;
98   }
99
100   /**
101    * @copydoc Dali::NativeImageInterface::GetHeight()
102    */
103   uint32_t GetHeight() const override
104   {
105     return mHeight;
106   }
107
108   /**
109    * @copydoc Dali::NativeImageInterface::RequiresBlending()
110    */
111   bool RequiresBlending() const override
112   {
113     return true;
114   }
115
116   /**
117    * @copydoc Dali::NativeImageInterface::GetExtension()
118    */
119   NativeImageInterface::Extension* GetNativeImageInterfaceExtension() override
120   {
121     return this;
122   }
123
124   /**
125    * @copydoc Dali::NativeImageInterface::Extension::GetCustomFragmentPreFix()
126    */
127   const char* GetCustomFragmentPreFix() override;
128
129   /**
130    * @copydoc Dali::NativeImageInterface::Extension::GetCustomSamplerTypename()
131    */
132   const char* GetCustomSamplerTypename() override;
133
134   /**
135    * @copydoc Dali::NativeImageInterface::Extension::GetEglImageTextureTarget()
136    */
137   int GetEglImageTextureTarget() override;
138
139 private:
140
141   /**
142    * Private constructor; @see NativeImageSourceQueue::New()
143    * @param[in] width The width of the image.
144    * @param[in] height The height of the image.
145    * @param[in] colour depth of the image.
146    * @param[in] nativeImageSourceQueue contains tbm_surface_queue_h or is empty
147    */
148   NativeImageSourceQueueAndroid( uint32_t width, uint32_t height, Dali::NativeImageSourceQueue::ColorDepth depth, Any nativeImageSourceQueue );
149
150 private:
151
152   uint32_t    mWidth;                ///< image width
153   uint32_t    mHeight;               ///< image height
154
155 };
156
157 } // namespace Adaptor
158
159 } // namespace Internal
160
161 } // namespace Dali
162
163 #endif // DALI_INTERNAL_NATIVE_IMAGE_SOURCE_QUEUE_IMPL_ANDROID_H