Update #50 - Bug fixes and shader improvements

This commit is contained in:
lax1dude
2025-02-22 16:52:35 -08:00
parent b0a2739fe1
commit 7e772e2502
133 changed files with 3064 additions and 2299 deletions

View File

@ -38,6 +38,7 @@ def folder = "javascript"
def name = "classes.wasm"
teavm.wasmGC {
compileJava.options.encoding = "UTF-8"
targetFileName = "../" + name
optimization = OptimizationLevel.AGGRESSIVE
outOfProcess = false
@ -51,6 +52,6 @@ teavm.wasmGC {
debugInfoLevel = WasmDebugInfoLevel.DEOBFUSCATION;
directMallocSupport = true
minHeapSize = 32
maxHeapSize = 384
maxHeapSize = 512
disassembly = true
}