X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Fpublic-api%2Ftext%2Frendering-backend.h;h=6c266f876920f2b6bf7d3e509c03f1df1762ab86;hp=522a307c8b323cb683ce6d816eaccc24265be69b;hb=185db7fdcfdd0e78434d56d9e4c046451932372f;hpb=3b1fb566901d21b8303d9be3308e3920f5182e6d diff --git a/dali-toolkit/public-api/text/rendering-backend.h b/dali-toolkit/public-api/text/rendering-backend.h old mode 100644 new mode 100755 index 522a307..6c266f8 --- a/dali-toolkit/public-api/text/rendering-backend.h +++ b/dali-toolkit/public-api/text/rendering-backend.h @@ -1,8 +1,8 @@ -#ifndef __DALI_TOOLKIT_RENDERING_BACKEND_H__ -#define __DALI_TOOLKIT_RENDERING_BACKEND_H__ +#ifndef DALI_TOOLKIT_RENDERING_BACKEND_H +#define DALI_TOOLKIT_RENDERING_BACKEND_H /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2019 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -23,23 +23,33 @@ namespace Dali namespace Toolkit { +/** + * @addtogroup dali_toolkit_controls_text_controls + * @{ + */ namespace Text { -// The type of text renderer required +/** + * @brief Enumeration for the type of text renderer required. + * @SINCE_1_0.0 + */ enum RenderingType { - RENDERING_BASIC, ///< A bitmap-based reference implementation - RENDERING_SHARED_ATLAS ///< A bitmap-based solution where renderers can share a texture atlas + RENDERING_SHARED_ATLAS, ///< A bitmap-based solution where renderers can share a texture atlas @SINCE_1_0.0 + RENDERING_VECTOR_BASED ///< A solution where glyphs are stored as vectors (scalable). Requires highp shader support. @SINCE_1_1.31 }; const unsigned int DEFAULT_RENDERING_BACKEND = RENDERING_SHARED_ATLAS; } // namespace Text +/** + * @} + */ } // namespace Toolkit } // namespace Dali -#endif // __DALI_TOOLKIT_RENDERING_BACKEND_H__ +#endif // DALI_TOOLKIT_RENDERING_BACKEND_H