Updates for NativeImageInterface
[platform/core/uifw/dali-adaptor.git] / dali / internal / imaging / android / native-image-source-queue-impl-android.cpp
1 /*
2  * Copyright (c) 2019 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // CLASS HEADER
19 #include <dali/internal/imaging/android/native-image-source-queue-impl-android.h>
20
21 // EXTERNAL INCLUDES
22 #include <dali/integration-api/debug.h>
23 #include <dali/integration-api/gl-defines.h>
24
25 // INTERNAL INCLUDES
26 #include <dali/internal/graphics/common/egl-image-extensions.h>
27 #include <dali/internal/graphics/gles/egl-graphics.h>
28 #include <dali/internal/adaptor/common/adaptor-impl.h>
29
30 namespace Dali
31 {
32
33 namespace Internal
34 {
35
36 namespace Adaptor
37 {
38
39 namespace
40 {
41
42 const char* FRAGMENT_PREFIX = "\n";
43 const char* SAMPLER_TYPE = "sampler2D";
44
45 }
46
47 NativeImageSourceQueueAndroid* NativeImageSourceQueueAndroid::New( uint32_t width, uint32_t height, Dali::NativeImageSourceQueue::ColorDepth depth, Any nativeImageSourceQueue )
48 {
49   NativeImageSourceQueueAndroid* image = new NativeImageSourceQueueAndroid( width, height, depth, nativeImageSourceQueue );
50   return image;
51 }
52
53 NativeImageSourceQueueAndroid::NativeImageSourceQueueAndroid( uint32_t width, uint32_t height, Dali::NativeImageSourceQueue::ColorDepth depth, Any nativeImageSourceQueue )
54 : mWidth( width ),
55   mHeight( height )
56 {
57   DALI_LOG_ERROR( "NativeImageSourceQueueAndroid::NativeImageSourceQueueAndroid: Not supported\n" );
58 }
59
60 NativeImageSourceQueueAndroid::~NativeImageSourceQueueAndroid()
61 {
62 }
63
64 Any NativeImageSourceQueueAndroid::GetNativeImageSourceQueue() const
65 {
66   return Any();
67 }
68
69 void NativeImageSourceQueueAndroid::SetSize( uint32_t width, uint32_t height )
70 {
71   mWidth = width;
72   mHeight = height;
73 }
74
75 void NativeImageSourceQueueAndroid::IgnoreSourceImage()
76 {
77 }
78
79 bool NativeImageSourceQueueAndroid::CreateResource()
80 {
81   return true;
82 }
83
84 void NativeImageSourceQueueAndroid::DestroyResource()
85 {
86 }
87
88 uint32_t NativeImageSourceQueueAndroid::TargetTexture()
89 {
90   return 0;
91 }
92
93 void NativeImageSourceQueueAndroid::PrepareTexture()
94 {
95 }
96
97 const char* NativeImageSourceQueueAndroid::GetCustomFragmentPrefix() const
98 {
99   return FRAGMENT_PREFIX;
100 }
101
102 const char* NativeImageSourceQueueAndroid::GetCustomSamplerTypename() const
103 {
104   return SAMPLER_TYPE;
105 }
106
107 int NativeImageSourceQueueAndroid::GetTextureTarget() const
108 {
109   return GL_TEXTURE_2D;
110 }
111
112 Any NativeImageSourceQueueAndroid::GetNativeImageHandle() const
113 {
114   return nullptr;
115 }
116
117 bool NativeImageSourceQueueAndroid::SourceChanged() const
118 {
119   return false;
120 }
121
122 } // namespace Adaptor
123
124 } // namespace internal
125
126 } // namespace Dali