project(bootstrap): Add back AA flags

This commit is contained in:
Owain van Brakel
2022-05-01 02:50:21 +02:00
parent de7aae5315
commit 5d86065d25

View File

@@ -86,7 +86,9 @@ open class BootstrapTask @Inject constructor(@Input val type: String) : DefaultT
"-XX:CompileThreshold=1500",
"-Xincgc",
"-XX:+UseConcMarkSweepGC",
"-XX:+UseParNewGC"
"-XX:+UseParNewGC",
"-Dawt.useSystemAAFontSettings=on",
"-Dswing.aatext=true"
)
@Input
@@ -94,7 +96,9 @@ open class BootstrapTask @Inject constructor(@Input val type: String) : DefaultT
"-XX:+DisableAttachMechanism",
"-Xmx512m",
"-Xss2m",
"-XX:CompileThreshold=1500"
"-XX:CompileThreshold=1500",
"-Dawt.useSystemAAFontSettings=on",
"-Dswing.aatext=true"
)
@Input
@@ -104,7 +108,9 @@ open class BootstrapTask @Inject constructor(@Input val type: String) : DefaultT
"-Xss2m",
"-XX:CompileThreshold=1500",
"--add-opens=java.desktop/sun.awt=ALL-UNNAMED",
"--add-opens=java.desktop/com.apple.eawt=ALL-UNNAMED"
"--add-opens=java.desktop/com.apple.eawt=ALL-UNNAMED",
"-Dawt.useSystemAAFontSettings=on",
"-Dswing.aatext=true"
)
@Input
@@ -113,7 +119,9 @@ open class BootstrapTask @Inject constructor(@Input val type: String) : DefaultT
"-Xmx512m",
"-Xss2m",
"-XX:CompileThreshold=1500",
"--add-opens=java.desktop/sun.awt=ALL-UNNAMED"
"--add-opens=java.desktop/sun.awt=ALL-UNNAMED",
"-Dawt.useSystemAAFontSettings=on",
"-Dswing.aatext=true"
)
@Input