[dali_2.3.20] Merge branch 'devel/master'
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / bubble-effect / bubble-effect.h
1 #ifndef DALI_TOOLKIT_INTERNAL_BUBBLE_EFFECT_H
2 #define DALI_TOOLKIT_INTERNAL_BUBBLE_EFFECT_H
3
4 /*
5  * Copyright (c) 2021 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 <dali-toolkit/internal/graphics/builtin-shader-extern-gen.h>
23 #include <dali/public-api/rendering/shader.h>
24 #include <sstream>
25
26 namespace Dali
27 {
28 namespace Toolkit
29 {
30 namespace Internal
31 {
32 /**
33  * Create the shader to be used by the renderer
34  * @param[in] numberOfBubble How many groups of uniforms are used to control the bubble movement.
35  * @return A handle to the newly created shader.
36  */
37 inline Shader CreateBubbleShader(unsigned int numBubble)
38 {
39   std::ostringstream vertexShaderStringStream;
40   vertexShaderStringStream << "#define NUMBER_OF_BUBBLE " << numBubble << "\n"
41                            << SHADER_BUBBLE_EFFECT_VERT;
42   Shader shader = Shader::New(vertexShaderStringStream.str(), SHADER_BUBBLE_EFFECT_FRAG);
43
44   return shader;
45 }
46
47 } // namespace Internal
48
49 } // namespace Toolkit
50
51 } // namespace Dali
52 #endif // DALI_TOOLKIT_INTERNAL_BUBBLE_EFFECT_H