2 * Copyright (c) 2015 Samsung Electronics Co., Ltd.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
19 #include <dali/internal/event/images/native-image-impl.h>
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>
28 using namespace Dali::Integration;
36 NativeImage::NativeImage( NativeImageInterface& resourceData )
39 NativeImageInterface::Extension* extension = resourceData.GetExtension();
40 if( extension != NULL )
42 mCustomFragmentPreFix = extension->GetCustomFragmentPreFix();
43 mCustomSamplerTypename = extension->GetCustomSamplerTypename();
47 NativeImagePtr NativeImage::New( NativeImageInterface& resourceData )
49 NativeImagePtr image = new NativeImage( resourceData );
52 image->mWidth = resourceData.GetWidth();
53 image->mHeight = resourceData.GetHeight();
55 image->mTexture = Texture::New( resourceData );
59 NativeImage::~NativeImage()
63 const char* NativeImage::GetCustomFragmentPreFix()
65 if( mCustomFragmentPreFix.empty() )
70 return mCustomFragmentPreFix.c_str();
73 const char* NativeImage::GetCustomSamplerTypename()
75 if( mCustomSamplerTypename.empty() )
80 return mCustomSamplerTypename.c_str();
83 } // namespace Internal