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 NativeImage::NativeImage( NativeImageInterface& resourceData )
37 : Image()
38 {
39   NativeImageInterface::Extension* extension = resourceData.GetExtension();
40   if( extension != NULL )
41   {
42     mCustomFragmentPreFix = extension->GetCustomFragmentPreFix();
43     mCustomSamplerTypename = extension->GetCustomSamplerTypename();
44   }
45 }
46
47 NativeImagePtr NativeImage::New( NativeImageInterface& resourceData )
48 {
49   NativeImagePtr image = new NativeImage( resourceData );
50   image->Initialize();
51
52   image->mWidth  = resourceData.GetWidth();
53   image->mHeight = resourceData.GetHeight();
54
55   image->mTexture = Texture::New( resourceData );
56   return image;
57 }
58
59 NativeImage::~NativeImage()
60 {
61 }
62
63 const char* NativeImage::GetCustomFragmentPreFix()
64 {
65   if( mCustomFragmentPreFix.empty() )
66   {
67     return NULL;
68   }
69
70   return mCustomFragmentPreFix.c_str();
71 }
72
73 const char* NativeImage::GetCustomSamplerTypename()
74 {
75   if( mCustomSamplerTypename.empty() )
76   {
77     return NULL;
78   }
79
80   return mCustomSamplerTypename.c_str();
81 }
82
83 } // namespace Internal
84
85 } // namespace Dali