Keiichiro Ui

Results 12 comments of Keiichiro Ui

I have no plans to support MOD content in this project. I will consider it if there is a Pull Request, but I myself have no plans to support additional...

Thank you for your suggestion. The implementation timing is undecided as this is a hobby project, but I will add it to the ToDo list. Of course, Pull Requests are...

Thank you for your suggestion. I will refer to it as I do not have much knowledge about better display methods.

* `createImageBitmap(file);` then `drowImage(bitmap, 0, 0)` for a canvas drows all pixels which are rgba=(0, 0, 0, 0), So it drops rgb values. * Using `getContext("2d", { alpha: false })`...

Or WebAssembly SIMD in Beta Chrome 84?

Splat convert is now fast enough by 026258dab05f61291b4a8cc5dc4c07edf5c4fd70. It takes vast time that `slice` creates new array instance.

This issue should treat about `pngjs.pack()` into `Blob`. It takes about 14 secs in my env yet.

Avoid to use `pngjs.pack()` in bcfcf17c103046944f667a914febcd11772d80b9. * Before: about 14s * After: about 5s

I will try wasm for PNG parsing.

Rust [png][] with wasm parses faster than pngjs. [png]: https://crates.io/crates/png Benchmark: https://github.com/kui/png-parse-benchmark Result: ![image](https://user-images.githubusercontent.com/29692/122670460-27d2f580-d1fd-11eb-869c-3a4b4895e27d.png) Note: It is slower than pngjs when devtool is opened. But I'll not use this rust...