X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=examples%2Frendering-basic-pbr%2Fmodel-skybox.h;h=2c52f37990b697779963f8081d565a3b771cb2bd;hb=1b19fd140ff139b5854a1a62447faf31b175d8f6;hp=befddff656c57b9ed44940ed3eebeb98600be519;hpb=862779fe8fd700d454630f87b367c87f3efa2ba4;p=platform%2Fcore%2Fuifw%2Fdali-demo.git diff --git a/examples/rendering-basic-pbr/model-skybox.h b/examples/rendering-basic-pbr/model-skybox.h index befddff..2c52f37 100644 --- a/examples/rendering-basic-pbr/model-skybox.h +++ b/examples/rendering-basic-pbr/model-skybox.h @@ -2,7 +2,7 @@ #define DALI_DEMO_MODELSKYBOX_H /* - * Copyright (c) 2017 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. @@ -57,7 +57,7 @@ public: * @param[in] position The position of the actor. * @param[in] size The size of the actor. */ - void Init( const Vector3& size ); + void Init(const Vector3& size); /** * @brief Initializes the @p mTextureSet member with the needed textures for Physically Based Rendering. @@ -67,17 +67,16 @@ public: * @param[in] diffuseTexture The diffuse texture. * @param[in] specularTexture The specular texture. */ - void InitTexture( Texture texSkybox ); + void InitTexture(Texture texSkybox); /** * @brief Retrieves the actor created by calling the Init() method. * * @return The Actor for the Physically Based Rendering. */ - Actor &GetActor(); + Actor& GetActor(); private: - /** * @brief Creates a geometry from a @e obj model. * @@ -87,9 +86,8 @@ private: */ Geometry CreateGeometry(); - Actor mActor; + Actor mActor; TextureSet mTextureSet; }; #endif // DALI_DEMO_MODELSKYBOX_H -