Merge branch 'master' into vulkan

This commit is contained in:
Triang3l 2020-11-19 21:31:44 +03:00
commit e99e8c7a7d
1 changed files with 6 additions and 1 deletions

View File

@ -81,10 +81,15 @@ filter("configurations:Release")
})
optimize("Speed")
inlining("Auto")
floatingpoint("Fast")
flags({
"LinkTimeOptimization",
})
-- Not using floatingpoint("Fast") - NaN checks are used in some places
-- (though rarely), overall preferable to avoid any functional differences
-- between debug and release builds, and to have calculations involved in GPU
-- (especially anything that may affect vertex position invariance) and CPU
-- (such as constant propagation) emulation as predictable as possible,
-- including handling of specials since games make assumptions about them.
filter("platforms:Linux")
system("linux")
toolset("clang")