Optimizer - Fixed input handling

This commit is contained in:
Emmanuel BENOîT 2017-12-23 17:29:52 +01:00
parent d3b1883693
commit 965496b231
3 changed files with 21 additions and 11 deletions

View file

@ -1,4 +1,4 @@
(cfg "Optimized"
(cfg "OptimizedFixed"
(resolutions
(1280 720)
(1920 1080)
@ -6,6 +6,20 @@
(optimizer on
(constant-folding on
(fixed-resolution on)
(inputs on)
)
(constant-propagation on)
(dead-code-elimination on)
(function-inlining on)
)
)
(cfg "OptimizedDynamic"
(resolutions chooser)
(optimizer on
(constant-folding on
(fixed-resolution off)
(inputs on)
)
(constant-propagation on)
(dead-code-elimination on)
@ -14,9 +28,6 @@
)
(cfg "Basic"
(resolutions
(1280 720)
(1920 1080)
)
(resolutions chooser)
(optimizer off)
)