Move Some Devel Properties & APIs to the Public API
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / image-loader / texture-manager.h
1 #ifndef DALI_TOOLKIT_TEXTURE_MANAGER_H
2 #define DALI_TOOLKIT_TEXTURE_MANAGER_H
3
4 /*
5  * Copyright (c) 2017 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19
20 // EXTERNAL INCLUDES
21 #include <dali/public-api/rendering/texture-set.h>
22
23 namespace Dali
24 {
25
26 namespace Toolkit
27 {
28
29 /**
30  * API to interface with the toolkit texture manager
31  * Allows developers to add Textures through TextureSets to toolkit so that visuals can use them to render
32  * @SINCE_1_3_5
33  */
34 namespace TextureManager
35 {
36
37 /**
38  * @brief Add a Texture to texture manager
39  * Toolkit keeps the Texture handle until RemoveTexture is called.
40  * @SINCE_1_3_5
41  * @note this method does not check for duplicates,
42  *       if same Texture is added multiple times, a different URL is returned each time
43  * @param[in] texture the Texture to add
44  * @return the Url string representing this texture
45  */
46 DALI_IMPORT_API std::string AddTexture( Texture& texture );
47
48 /**
49  * @brief Add a TextureSet to texture manager
50  * Toolkit keeps the TextureSet handle until RemoveTexture is called.
51  * @SINCE_1_3_5
52  * @note this method does not check for duplicates,
53  *       if same TextureSet is added multiple times, a different URL is returned each time
54  * @param[in] textureSet the TextureSet to add
55  * @return the Url string representing this texture
56  */
57 DALI_IMPORT_API std::string AddTexture( TextureSet& textureSet );
58
59 /**
60  * @brief Removes a TextureSet from toolkit
61  * @SINCE_1_3_5
62  * @note TextureSet may still be used by visuals and kept alive by them
63  * @param[in] textureUrl to remove
64  * @return the handle to the TextureSet or empty handle in case TextureSet is not found
65  */
66 DALI_IMPORT_API TextureSet RemoveTexture( const std::string& textureUrl );
67
68 } // namespace TextureManager
69
70 } // namespace Toolkit
71
72 } // namespace Dali
73
74 #endif // DALI_TOOLKIT_TEXTURE_MANAGER_H