violet
violet
The `imageproc` API doesn't add any way to anti-alias the image during the warp transformation, I'll look into other ways of implementing this.
Once this is done, #4 should be fairly straightforward which is nice, just gotta implement anti-aliasing first. I have an idea of how to do that but it would probably...
Tfw I'm trying to comment and click the wrong button.
Anyway, I don't really know a good way of antialiasing cube renders while keeping the speed that `imageproc` provides. I think I might be able to skew it based on...
Doing bugfixes, currently, it's throwing `CompileError: WebAssembly.instantiate(): Wasm code generation disallowed by embedder`. I believe this may be because of the hashing library I'm using which is WASM-based for speed...
Hmm that may make more sense. I am currently using xxHash but through JS bindings, moving it into the WASM module might fix this.
That fixed it! This implementation increases the KV read amounts by a *lot* so it will probably still require a little bit of optimization, but KV writes only go once...
Also, "requests" currently are separate for username lookups and profile lookups just because of how the KV integration was initially written, I'll probably change this to reduce KV writes by...
I don't know how much more optimized this can get. I think the only thing left to determine is how we are going to allocate rows and hashes for the...
I don't really know what else can be added to improve the performance of this, it seems fairly efficient and gets the job done. I don't know how many more...