[Tizen] Revert "Remove TypeRegistration from deprecated Image classes"
[platform/core/uifw/dali-core.git] / dali / internal / event / images / native-image-impl.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/internal/event/images/native-image-impl.h>
20
21 // INTERNAL INCLUDES
22 #include <dali/public-api/common/dali-common.h>
23 #include <dali/public-api/object/type-registry.h>
24 #include <dali/integration-api/debug.h>
25 #include <dali/internal/event/common/stage-impl.h>
26 #include <dali/devel-api/images/native-image-interface-extension.h>
27
28 using namespace Dali::Integration;
29
30 namespace Dali
31 {
32
33 namespace Internal
34 {
35
36 namespace
37 {
38 TypeRegistration mType( typeid(Dali::NativeImage), typeid(Dali::Image), NULL );
39 }
40
41 NativeImage::NativeImage( NativeImageInterface& resourceData )
42 : Image()
43 {
44   NativeImageInterface::Extension* extension = resourceData.GetExtension();
45   if( extension != NULL )
46   {
47     mCustomFragmentPreFix = extension->GetCustomFragmentPreFix();
48     mCustomSamplerTypename = extension->GetCustomSamplerTypename();
49   }
50 }
51
52 NativeImagePtr NativeImage::New( NativeImageInterface& resourceData )
53 {
54   NativeImagePtr image = new NativeImage( resourceData );
55   image->Initialize();
56
57   image->mWidth  = resourceData.GetWidth();
58   image->mHeight = resourceData.GetHeight();
59
60   image->mTexture = Texture::New( resourceData );
61   return image;
62 }
63
64 NativeImage::~NativeImage()
65 {
66 }
67
68 const char* NativeImage::GetCustomFragmentPreFix()
69 {
70   if( mCustomFragmentPreFix.empty() )
71   {
72     return NULL;
73   }
74
75   return mCustomFragmentPreFix.c_str();
76 }
77
78 const char* NativeImage::GetCustomSamplerTypename()
79 {
80   if( mCustomSamplerTypename.empty() )
81   {
82     return NULL;
83   }
84
85   return mCustomSamplerTypename.c_str();
86 }
87
88 } // namespace Internal
89
90 } // namespace Dali