ripytide

Results 31 issues of ripytide

From #64: > Add `prelude::*`? There's a bunch of traits. A question here might be what goes into the prelude? Just the traits, or traits and pixels, or everything? If...

From #64 > Convenience methods for bytemuck? `slice.as_rgba()` vs `bytemuck::cast_slice::(slice)` Personally, I don't think using `bytemuck` is that bad as it is more explicit and ideally you would only be...

This is a tracking issue for work on `v0.9`.

I really like the value-based color space information you've got here with the `Color` enum and all the types it is made up of. I'd like to use/contribute to that...

I thought it was worth discussing the specifics of when to deprecate legacy items, several options I can think of: - Deprecate everything legacy immediately - Deprecate everything legacy in...

Hello, any chance you could write out a tool comparison section on the readme with a brief description of different formatter options like dotnet-format, resharper, codemaid, csharpier and any others...

I think now that return type notation (RTN), which allows using async functions in public traits, is making decent progress (see https://github.com/rust-lang/rust/pull/138424 and https://github.com/rust-lang/rust/issues/109417) we should wait for that to...

I've rebased and simplified the example given in #589. I've also re-organized the examples slightly for simplicity.

The type alias is inconsistent being `GRAYA4` instead of `GRAYA44` and the doc-comment is inconsistent: ```rust /// [`Gray`] pub type GRAY8 = formats::gray::Gray_v09; /// 4 bit for gray and 4...