• How to use :
    (Tizen)
    gbs build -A i586 --include-all --define "build_example_name color-visual"
    (Ubuntu)
    cmake -DCMAKE_INSTALL_PREFIX=$DESKTOP_PREFIX -DBUILD_EXAMPLE_NAME=color-visual .
    
    Change-Id: I919af4adadcee6475672a2cd4bf92bebdc9b71c8
    Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
    Eunki, Hong authored
     
    Browse File »






  • Generates DALi examples shared objects and Android DALi launcher application.
    Android DALi application apk then can be installed on supported Android device.
    
    Change-Id: I2f87030feab33aa5c4c944323eb0ca0c042db6bd
    Anton Obzhirov authored
     
    Browse File »




  • To improve app launching speed on Tizen (using launchpad), Use -fPIE option instead -fPIC and attach DALI_EXPORT_API in front of each example's main function.
    
    This is the compare result between before and after patch.
    (On hawkP 2.4 / using hello-dalidemo that has one pushbutton on stage)
    
    |    before Patch     |     After Patch     |
    ---------------------------------------------
    |   hello-dalidemo    |   hello-dalidemo    |
    ---------------------------------------------
    |   AVG   MIN   MAX   |   AVG   MIN   MAX   |
    |  1134  1060  1188   |   291   250   337   |
    
    After patch, launching speed drops to 30% of before.
    
    Change-Id:I51a4f673d016f9278f867167dc2ff9f407ea6e7e
    minho.sun authored
     
    Browse File »

  • New Structure:
    
      build
        |  tizen
      builder
        |  dali-builder.cpp
      demo
        |  [demo source & header files]
      examples
        |  [example-name]
        |    |  [example source files]
      packaging
        |  com.samsung.dali-demo.spec
      resources
        |  images
        |    |  [all images]
        |  models
        |    |  [all models]
        |  scripts
        |    |  [all scripts]
      shared
        |  view.h
    
    Now, each example should be in its own subdirectory within the "examples" directory. This will get
    automatically built.
    
    README also updated.
    
    Change-Id: Idae4cedf220698a4a2d928535cff88e8bf25f82a
    Adeel Kazmi authored
     
    Browse File »