Implement WebView APIs
[platform/core/uifw/dali-toolkit.git] / automated-tests / src / dali-toolkit / dali-toolkit-test-utils / test-actor-utils.h
1 #ifndef DALI_TEST_ACTOR_UTILS_H
2 #define DALI_TEST_ACTOR_UTILS_H
3
4 /*
5  * Copyright (c) 2016 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
21 // EXTERNAL INCLUDES
22 #include <string>
23
24 namespace Dali
25 {
26
27 class Actor;
28 class Image;
29
30 /**
31  * @brief Creates a simple renderable-actor with solid colored quad.
32  * @return An actor with a renderer.
33  */
34 Actor CreateRenderableActor();
35
36 /**
37  * @brief Creates a renderable-actor with a texture.
38  * @param[in] texture Texture to set.
39  * @return An actor with a renderer.
40  */
41 Actor CreateRenderableActor( Image texture );
42
43 /**
44  * @brief Creates a renderable-actor with a texture and custom shaders.
45  * @param[in] texture Texture to set.
46  * @param[in] vertexShader The vertex-shader.
47  * @param[in] fragmentShader The fragment-shader.
48  * @return An actor with a renderer.
49  */
50 Actor CreateRenderableActor( Image texture, const std::string& vertexShader, const std::string& fragmentShader );
51
52 } // namespace Dali
53
54 #endif // DALI_TEST_ACTOR_UTILS_H