Michael Schmidt

Results 309 comments of Michael Schmidt

> In which case wouldn't we be looking at something like auto_jsify doing it all in one go instead of having multiple ones? Not really. My point was the JS...

> Is there no standard? No. In JS, the best we have are [common](https://www.robinwieruch.de/javascript-naming-conventions/) [naming](https://developer.mozilla.org/en-US/docs/MDN/Writing_guidelines/Writing_style_guide/Code_style_guide/JavaScript#function_names) [conventions](https://google.github.io/styleguide/jsguide.html#naming). JS itself uses SCREAMING_SNAKE_CASE for constants (e.g. `Math.PI` and `Number.MAX_SAFE_INTEGER`), but camelCase for constants...

> > No. In JS, the best we have are [common](https://www.robinwieruch.de/javascript-naming-conventions/) [naming](https://developer.mozilla.org/en-US/docs/MDN/Writing_guidelines/Writing_style_guide/Code_style_guide/JavaScript#function_names) [conventions](https://google.github.io/styleguide/jsguide.html#naming). > > Hm, that's bad. Yep. But if we take SCREAMING_SNAKE_CASE for static constants, naming isn't too...

> we might want to consider not converting anything that matches naming conventions. E.g. Struct and enum types should be pascal case in both languages, so if the user doesn't...

What's left to do: - [ ] Docs: Document the feature. I started by adding import/export docs for the `auto_rename` attribute, but I want another page explaining the whole thing....

@mmgeorge No, I'm not working on WBG anymore. Feel free to fork/copy my PR and pick up where I left off though!

There isn't, so I'm going to close this now. Feel free to use a copy of the branch and finish it if need be.

Hi! I'm the author of #2461 and [`dds`](https://github.com/image-rs/image-dds). Should I move everything in #2461 over to `image-extras` or is the more complete DDS support I implemented in `dds` more fitting...

I think this issue can be closed now since it's no longer relevant. DDS support will be moved to `image-extras` (https://github.com/image-rs/image/issues/2565) soon™, and buffers of raw DXTn data can be...

Thanks for the quick response! > Also, for bc decoding there's already a crate which looks interesting and doesn't even have dependencies: [`bcdec_rs`](https://docs.rs/bcdec_rs/0.1.1/bcdec_rs/). As far as is possible, I'd see...