kryptan

Results 14 comments of kryptan

> Linear color space I suggest to call it **linear sRGB** color space. There are many different linear color spaces which can be converted between each other using matrix multiplication....

The world is slowly moving to color spaces larger than sRGB. There are mainly two things: 1. High dynamic range (HDR) - mainly colors brighter than nominal white. 2. Wide...

How did you change icon for the user defined button? For me it just displays digits 1, 2, etc. and no way to change it. [Issue](45) for custom icons is...

It looks like some methods are consuming their arguments. `wgpuCommandEncoderFinish` and `wgpuRenderBundleEncoderFinish` consume encoder while `wgpuQueueSubmit` consumes buffers. Are these the only such methods or are there others? Is there...

> The latest source is distributed as a tgz, which Windows doesn't have out-of-the-box support for afaik. There are `flate2` and `tar` crates.

I think it should just start a webserver which would serve simple HTML which loads js file generated by cargo. Very similar to how `wargo test` works. > I feel...

> Open the executable in Node? While Wasm should or will work in Node, I think Emscriptem is only targeting browser environments.

Apparently there is an option to disable this but it doesn't work. I have this in my settings.json: ```json // Rust Language Server configuration "rust.rls": { "revealOutputChannelOn": "never", "useRustfmt": false...

What I'm more concerned with is what do we use if we have color space information. One of the usages of luma in this library is converting images to grayscale....

@nwin Yes, I think using linear values when using floating point numbers is the right approach. This is e.g. how it is generally done on GPU - if texture is...