X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Fpublic-api%2Fvisuals%2Fmesh-visual-properties.h;h=c54145610f9ba4023770c2f572202ca15de70c14;hb=d63464d6e06651d0d5053499f9bbcbb6a6088f32;hp=0e1ce5cb0bf3c19e9d3933b15a19f5111eb68898;hpb=146486a8c7410a2f2a20a6d670145fe855672b96;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/public-api/visuals/mesh-visual-properties.h b/dali-toolkit/public-api/visuals/mesh-visual-properties.h index 0e1ce5c..c541456 100644 --- a/dali-toolkit/public-api/visuals/mesh-visual-properties.h +++ b/dali-toolkit/public-api/visuals/mesh-visual-properties.h @@ -2,7 +2,7 @@ #define DALI_TOOLKIT_MESH_VISUAL_PROPERTIES_H /* - * Copyright (c) 2016 Samsung Electronics Co., Ltd. + * Copyright (c) 2020 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. @@ -19,20 +19,33 @@ */ // INTERNAL INCLUDES -#include +#include namespace Dali { - namespace Toolkit { +/** + * @addtogroup dali_toolkit_visuals + * @{ + */ +/** + * @brief MeshVisual is to render a mesh using a .obj file, optionally with textures provided by a mtl file. + * @SINCE_1_1.45 + */ namespace MeshVisual { - +/** + * @brief MeshVisual Property. + * @SINCE_1_1.45 + */ namespace Property { - +/** + * @brief Enumeration for the instance of properties belonging to the MeshVisual. + * @SINCE_1_1.45 + */ enum { /** @@ -98,13 +111,20 @@ enum } // namespace Property +/** + * @brief The shading mode used by MeshVisual. + * @SINCE_1_1.45 + */ namespace ShadingMode { - +/** + * @brief The shading mode used by MeshVisual. + * @SINCE_1_1.45 + */ enum Value { - TEXTURELESS_WITH_DIFFUSE_LIGHTING, ///< *Simplest*. One color that is lit by ambient and diffuse lighting. @SINCE_1_1.45 - TEXTURED_WITH_SPECULAR_LIGHTING, ///< Uses only the visual image textures provided with specular lighting in addition to ambient and diffuse lighting. @SINCE_1_1.45 + TEXTURELESS_WITH_DIFFUSE_LIGHTING, ///< *Simplest*. One color that is lit by ambient and diffuse lighting. @SINCE_1_1.45 + TEXTURED_WITH_SPECULAR_LIGHTING, ///< Uses only the visual image textures provided with specular lighting in addition to ambient and diffuse lighting. @SINCE_1_1.45 TEXTURED_WITH_DETAILED_SPECULAR_LIGHTING ///< Uses all textures provided including a gloss, normal and texture map along with specular, ambient and diffuse lighting. @SINCE_1_1.45 }; @@ -112,6 +132,10 @@ enum Value } // namespace MeshVisual +/** + * @} + */ + } // namespace Toolkit } // namespace Dali