File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed
Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -248,9 +248,10 @@ preprocessing directives:
248248
249249This is still experimental and there are some limitations:
250250
251- * ` #if ` is not supported yet.
252251* Macros declared with ` #define ` will be kept in the file, even if they are no
253252 longer needed.
253+ * ` #define ` and ` #undefine ` that appear inside a ` #if ` region are not well
254+ handled.
254255
255256### Verbatim
256257
@@ -617,10 +618,8 @@ and please report a bug.
617618### Aggressive inlining
618619
619620Shader Minifier can optionally/experimentally inline even more aggressively.
620- Along with the above cases, it will inline * any* variable marked ` const ` , and
621- also when:
622- - the variable is never written to after initalization
623- - and the init value is trivial (doesn't depend on a variable).
621+ Along with the above cases, it will inline more variables, including the
622+ variables used many times in the code.
624623
625624This is enabled with ` --aggressive-inlining ` .
626625
Original file line number Diff line number Diff line change 33open System.IO
44open Argu
55
6- let version = " 1.3.4 " // Shader Minifier version
6+ let version = " 1.3.5 " // Shader Minifier version
77let debugMode = false
88
99type OutputFormat =
You can’t perform that action at this time.
0 commit comments