This commit is contained in:
luboslenco
2025-09-16 15:03:51 +02:00
parent fc3b394330
commit 7a265e2292
27 changed files with 1747 additions and 1757 deletions
+1 -1
View File
@@ -465,7 +465,7 @@ function export_texture_write_texture(file: string, pixels: buffer_t, type: i32
iron_write_jpg(file, pixels, res_x, res_y, format, math_floor(context_raw.format_quality));
}
else { // Exr
let b: buffer_t = parser_exr_run(res_x, res_y, pixels, bits, type, off);
let b: buffer_t = export_exr_run(res_x, res_y, pixels, bits, type, off);
iron_file_save_bytes(file, b, b.length);
}
}