Added renamed Display::getPixelDensity() to Display::getPixelDensitySize() and now Display::getPixelDensity() returns the float value of the pixel density.

Moved the global test to tests/test_all.
Added a ui_perf_test used to test specific performance issues in the UI.
Fixed the element/widget inline style (now respects the specificity).
Some optimizations in UIListBox.
This commit is contained in:
Martín Lucas Golini
2020-05-03 03:39:31 -03:00
parent 16db174e48
commit 87e3d64b63
21 changed files with 263 additions and 75 deletions

View File

@@ -732,12 +732,6 @@ workspace "eepp"
build_eepp( "eepp" )
-- Examples
project "eepp-test"
set_kind()
language "C++"
files { "src/test/*.cpp" }
build_link_configuration( "eepp-test", true )
project "eepp-external-shader"
set_kind()
language "C++"
@@ -826,6 +820,20 @@ workspace "eepp"
files { "src/tools/texturepacker/*.cpp" }
build_link_configuration( "eepp-TexturePacker", true )
-- Tests
project "eepp-test"
set_kind()
language "C++"
files { "src/tests/test_all/*.cpp" }
build_link_configuration( "eepp-test", true )
project "eepp-ui-perf-test"
set_kind()
language "C++"
files { "src/tests/ui_perf_test/*.cpp" }
includedirs { "src/thirdparty" }
build_link_configuration( "eepp-ui-perf-test", true )
if os.isfile("external_projects.lua") then
dofile("external_projects.lua")
end