-
Change-Id: I89ad98704eacedd18a0b50fd9d6511fc8e436416
-
Change-Id: Ieee1546e6f20ad0f5fc29c239d7571e463bdcf6f
-
Change-Id: I2be80c43c2f83b2333df48210b53258e4be1acae
-
Change-Id: I2969e88887c684a556c7372ca7f4e07abc3969fa
-
Change-Id: I1152c0c48795f8972f2b4ee2fc50b0c04140a322 Signed-off-by: György Straub <g.straub@partner.samsung.com>
-
Change-Id: I9911157a22a5fc941c7fd2d5aff838131f328dd1
-
Change-Id: I969b6aad154b839410daef4fdbd3962b58b97fd7
-
Change-Id: I01ebd8f862d6564da7fbf3de4d540c496f4f2848
-
Change-Id: I07bf83bc86df116f6144bb7fa6c0c950292a5aa2
-
Change-Id: If168017bda9472f348e4a6d2a44a3f2e83c5261c
-
Change-Id: I9b00f63593d47fd56c0d97f8cb848912ceed726c
-
Change-Id: I863826a7a7c31e7027843dfffbad08e2b7501722
-
Change-Id: I4805f01066b272b7b56935fe59a9e76110177378
-
Change-Id: I2f8676282ff622eba6f3fd67dd6db11c52d3c260
-
* Clean-up some demos to use utility function to create quad with texture coordinates Change-Id: I35d71cabc4140bdda298c2975f1f682d72a94176
-
Change-Id: Ia8cc676eeb95ec2673995026cddca8850693d04e
-
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
-
Scripts, examples and demo code should not use defines from other parts of DALi. DALI_IMAGE_DIR is defined in Dali toolkit to specify where the toolkit images are. This is used in the default toolkit style file to specify the locations of the toolkit images. It must not be overridden by applications. Updated the demo style file to utilize a configured variable to point at the installed demo style's images. Added an example of a demo-specific image (confirmation popup background) Updated dali-builder to load the demo theme (Scripting example within demo already loads it) Change-Id: Ie43a6611a8db3fc0afc6a1cd4d9d6e48afef75e7 Signed-off-by: David Steele <david.steele@samsung.com>
-
ASTC can be wrapped in a KTX file, but also has its own native file format. This patch provides support for the native ASTC file format (.astc). Textures can be generated using tools (Eg. Mali texture compression tool). Note: ASTC is "OpenGL friendly" in that the textures are pre-flipped vertically. In DALi there is currently not a differenciation between different texture compression formats in that the data (once the header is extracted) is given to the hardware as-is. For this reason textures must currently be pre-flipped vertically (before compression) when using the native .astc file format with DALI. An example .astc file is included as part of the unit tests. Change-Id: I8604fba28bfb83b0deff8689fd5d7cfb8ac770bb
-
ASTC is supported by OpenGL ES 3.1 and above. To build this patch with ASTC support, a GLES 31 context must be specified. To build for desktop with configure, the gles version must be set to 31. Here is an example configure line: CXXFLAGS="-g -O0 -Wno-unused-local-typedefs" CXX="ccache g++" ./configure --prefix=$DESKTOP_PREFIX --enable-debug=yes --enable-profile=UBUNTU --enable-gles=31 With GBS, add the following to your gbs build line: --define "%target_gles_version 31" Change-Id: I4f54f894dd4b8998f16aa98d3d0a06606f0eb7a2