Seperate the API macros
[platform/core/uifw/dali-core.git] / dali / public-api / images / native-image.cpp
1 /*
2  * Copyright (c) 2015 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/public-api/images/native-image.h>
20
21 // INTERNAL INCLUDES
22 #include <dali/internal/event/images/native-image-impl.h>
23
24 namespace Dali
25 {
26
27 NativeImage::NativeImage()
28 {
29 }
30
31 NativeImage::NativeImage(Internal::NativeImage* internal)
32 : Image(internal)
33 {
34 }
35
36 NativeImage::~NativeImage()
37 {
38 }
39
40 NativeImage::NativeImage( const NativeImage& handle )
41 : Image(handle)
42 {
43 }
44
45 NativeImage& NativeImage::operator=( const NativeImage& rhs )
46 {
47   BaseHandle::operator=(rhs);
48   return *this;
49 }
50
51 void NativeImage::CreateGlTexture()
52 {
53   //Nothing to do here. The texture is created immediately.
54 }
55
56 NativeImage NativeImage::New( NativeImageInterface& resourceData )
57 {
58   Internal::NativeImagePtr internal = Internal::NativeImage::New( resourceData );
59   return NativeImage(internal.Get());
60 }
61
62 NativeImage NativeImage::DownCast( BaseHandle handle )
63 {
64   return NativeImage( dynamic_cast<Internal::NativeImage*>( handle.GetObjectPtr()) );
65 }
66
67 const char* NativeImage::GetCustomSamplerTypename()
68 {
69   return GetImplementation(*this).GetCustomSamplerTypename();
70 }
71
72 const char* NativeImage::GetCustomFragmentPreFix()
73 {
74   return GetImplementation(*this).GetCustomFragmentPreFix();
75 }
76
77 } // namespace Dali