]> git.sesse.net Git - nageru/commitdiff
Do not compile the non-HQ fade chains, since we do not need them; speeds up startup...
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Thu, 24 Dec 2015 22:29:58 +0000 (23:29 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Thu, 24 Dec 2015 22:29:58 +0000 (23:29 +0100)
theme.lua

index 24e8d0f06bdc1d53ea65809bb4932305e7c115f0..ee7283882fbfc3e5ca237d519510897c2334aa96 100644 (file)
--- a/theme.lua
+++ b/theme.lua
@@ -157,7 +157,7 @@ local fade_chains = make_cartesian_product({
        {true, false},                    -- input0_scale
        {"static", "live", "livedeint"},  -- input1_type
        {true, false},                    -- input1_scale
-       {true, false}                     -- hq
+       {true}                            -- hq
 }, function(input0_type, input0_scale, input1_type, input1_scale, hq)
        local input0_live = (input0_type ~= "static")
        local input1_live = (input1_type ~= "static")