b3bbcf745bb52c9254f435062293899e46ff9708
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / rendering / vector-based / glyphy-shader / glyphy-shader.h
1 #ifndef __DALI_TOOLKIT_TEXT_GLYPHY_SHADER_H__
2 #define __DALI_TOOLKIT_TEXT_GLYPHY_SHADER_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 // INTERNEL INCLUDES
22 #include <dali/public-api/math/vector4.h>
23 #include <dali/devel-api/rendering/shader.h>
24
25 namespace Dali
26 {
27
28 namespace Toolkit
29 {
30
31 namespace Text
32 {
33
34 /**
35  * @brief A Shader based on GLyphy authored by Behdad Esfahbod & Maysum Panju.
36  *
37  * See https://github.com/behdad/glyphy for more details of GLyphy.
38  */
39 class GlyphyShader : public Shader
40 {
41 public:
42
43   /**
44    * @brief Create the blob atlas.
45    *
46    * @param[in] atlasInfo The metrics of the texture atlas storing vector data.
47    */
48   static GlyphyShader New( const Vector4& atlasInfo );
49
50   /**
51    * @brief Create an uninitialized GlyphyShader handle.
52    */
53   GlyphyShader();
54
55   /**
56    * @brief Destructor
57    *
58    * This is non-virtual since derived Handle types must not contain data or virtual methods.
59    */
60   ~GlyphyShader();
61
62 private: // Not intended for application developer
63
64   GlyphyShader( Shader handle );
65
66 };
67
68 } // namespace Text
69
70 } // namespace Toolkit
71
72 } // namespace Dali
73
74 #endif // __DALI_TOOLKIT_TEXT_GLYPHY_SHADER_H__