diff options
author | seungho <sbsh.baek@samsung.com> | 2022-09-15 17:20:36 +0900 |
---|---|---|
committer | seungho <sbsh.baek@samsung.com> | 2022-09-21 11:15:12 +0900 |
commit | 218d29cfaefc91b901233c373650107d7a595635 (patch) | |
tree | 435c07dd58234267a77a6cd8fb79db1959fc5d21 /demo | |
parent | 8e447366593f582e00778dd03b5e3542d0b6b043 (diff) | |
download | dali-demo-218d29cfaefc91b901233c373650107d7a595635.tar.gz dali-demo-218d29cfaefc91b901233c373650107d7a595635.tar.bz2 dali-demo-218d29cfaefc91b901233c373650107d7a595635.zip |
Change ModelView to Model
Change-Id: Ic97da0b98c70fa175f2112213c8d473f7d602ec1
Signed-off-by: seungho <sbsh.baek@samsung.com>
Diffstat (limited to 'demo')
-rw-r--r-- | demo/dali-demo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demo/dali-demo.cpp b/demo/dali-demo.cpp index 9e82e0ea..60f9653a 100644 --- a/demo/dali-demo.cpp +++ b/demo/dali-demo.cpp @@ -59,7 +59,7 @@ int DALI_EXPORT_API main(int argc, char** argv) demo.AddExample(Example("rendering-skybox.example", DALI_DEMO_STR_TITLE_SKYBOX)); demo.AddExample(Example("rendering-basic-pbr.example", DALI_DEMO_STR_TITLE_PBR)); #ifdef DALI_SCENE3D_AVAILABLE - demo.AddExample(Example("scene3d-model-view.example", DALI_DEMO_STR_TITLE_SCENE3D_MODEL_VIEW)); + demo.AddExample(Example("scene3d-model.example", DALI_DEMO_STR_TITLE_SCENE3D_MODEL)); demo.AddExample(Example("scene3d.example", DALI_DEMO_STR_TITLE_SCENE3D)); #endif //DALI_SCENE3D_AVAILABLE demo.AddExample(Example("shadows-and-lights.example", DALI_DEMO_STR_TITLE_LIGHTS_AND_SHADOWS)); |