Christian Vallentin
Christian Vallentin
@calebcartwright Thanks for the response. I'm in no hurry, so review whenever you or anybody else has time! 😄 > leave the original source file I'll move the extended version...
I have rebased and restored [source/issue-3532.rs] and only fixed the affected part of [target/issue-3532.rs]. [source/issue-3532.rs]: https://github.com/rust-lang/rustfmt/blob/79c36960af85fa52ae4dc60ec1f83ec7f9b2733f/tests/source/issue-3532.rs [target/issue-3532.rs]: https://github.com/rust-lang/rustfmt/blob/79c36960af85fa52ae4dc60ec1f83ec7f9b2733f/tests/target/issue-3532.rs I added the "extended `match` version" to the new test case I...
@UnidayStudio Thanks! But just a question, you say OpenGL ES but the screenshot shows a web browser and you mention Emscripten. Is it OpenGL ES, or is your code converted...
_I just noticed that `glam` uses the "imprecise" linear interpolation formula, and then found this issue._ > Another thing to consider with changing the current implementation is currently `t` is...
No problem, feel free to ask here. Here's a quick example I made, so there might be a typo or two. But this is how you'd load an image, create...
Assuming that `name` is `Option` (where `T` is e.g. `String`) and `fallback_name` then is `String`. Then you can utilize `Option`'s methods, such as [`or()`](https://doc.rust-lang.org/std/option/enum.Option.html#method.or) and [`unwrap_or()`](https://doc.rust-lang.org/std/option/enum.Option.html#method.unwrap_or_default). So say we have...
I have an idea what might be the cause. Would it be possible for you to share an image, that I can use testing?
Yeah, you're correct, this implementation doesn't support alpha channels. It's a long time since I've used it myself, so I don't recall the exact reason. What I do recall is...
I even reviewed #503, but somehow completely forgot about it. Personally, I would still say that this: ```jinja {{ id|display_some }} {{ id|display_some_or("default") }} ``` Is less verbose than this:...
I do understand, as I completely acknowledge my bias in this case, since I've grown accustomed to using them and having short and concise logic-less templates