Add ImageUrl Class and reference count for external texture
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / image-loader / image.cpp
1 /*
2  * Copyright (c) 2020 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 // CLASS HEADER
18 #include "image.h"
19
20 // INTERNAL INCLUDES
21 #include <dali-toolkit/devel-api/image-loader/texture-manager.h>
22 #include <dali-toolkit/public-api/image-loader/image-url.h>
23
24 // EXTERNAL INCLUDES
25 #include <dali/devel-api/rendering/frame-buffer-devel.h>
26
27 namespace Dali
28 {
29 namespace Toolkit
30 {
31 namespace Image
32 {
33 Dali::Toolkit::ImageUrl GenerateUrl(Dali::FrameBuffer frameBuffer, Pixel::Format pixelFormat, uint32_t width, uint32_t height)
34 {
35   Texture texture = Texture::New(Dali::TextureType::TEXTURE_2D, pixelFormat, width, height);
36   frameBuffer.AttachColorTexture(texture, 0u, 0u);
37   Dali::Toolkit::ImageUrl imageUrl = Dali::Toolkit::ImageUrl::New(texture);
38   return imageUrl;
39 }
40
41 Dali::Toolkit::ImageUrl GenerateUrl(const Dali::FrameBuffer frameBuffer, uint8_t index)
42 {
43   Texture texture = Dali::DevelFrameBuffer::GetColorTexture(frameBuffer, index);
44   Dali::Toolkit::ImageUrl imageUrl = Dali::Toolkit::ImageUrl::New(texture);
45   return imageUrl;
46 }
47
48 Dali::Toolkit::ImageUrl GenerateUrl(const Dali::PixelData pixelData)
49 {
50   Texture texture = Texture::New(TextureType::TEXTURE_2D, pixelData.GetPixelFormat(), pixelData.GetWidth(), pixelData.GetHeight());
51   texture.Upload(pixelData);
52   Dali::Toolkit::ImageUrl imageUrl = Dali::Toolkit::ImageUrl::New(texture);
53   return imageUrl;
54 }
55
56 Dali::Toolkit::ImageUrl GenerateUrl(const Dali::NativeImageSourcePtr nativeImageSource)
57 {
58   Texture texture = Dali::Texture::New(*nativeImageSource);
59   Dali::Toolkit::ImageUrl imageUrl = Dali::Toolkit::ImageUrl::New(texture);
60   return imageUrl;
61 }
62
63 } // namespace Image
64
65 } // namespace Toolkit
66
67 } // namespace Dali