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/resources/resource-ticket.h>
26 #include <dali/internal/event/common/thread-local-storage.h>
27 #include <dali/internal/event/resources/resource-client.h>
28 #include <dali/internal/event/common/stage-impl.h>
30 using namespace Dali::Integration;
40 TypeRegistration mType( typeid(Dali::NativeImage), typeid(Dali::Image), NULL );
43 NativeImage::NativeImage()
48 NativeImagePtr NativeImage::New( NativeImageInterface& resourceData )
50 NativeImagePtr image = new NativeImage;
53 ResourceClient &resourceClient = ThreadLocalStorage::Get().GetResourceClient();
55 image->mWidth = resourceData.GetWidth();
56 image->mHeight = resourceData.GetHeight();
58 const ResourceTicketPtr& ticket = resourceClient.AddNativeImage( resourceData );
59 DALI_ASSERT_DEBUG( dynamic_cast<ImageTicket*>( ticket.Get() ) && "Resource ticket not ImageTicket subclass for image resource.\n" );
60 image->mTicket = static_cast<ImageTicket*>(ticket.Get());
61 image->mTicket->AddObserver( *image );
66 NativeImage::~NativeImage()
70 } // namespace Internal