Lucas Jansen

Results 8 comments of Lucas Jansen

Sorry about the silence, but I've only now had another chance to look at this. I've added the logic required to generate `typedef`s for C, while still using `using` by...

@qwtel @benbalter Any movement on this? From what I can tell the only difference between `posts` and any other collection is that by default `posts` has `output: true` to generate...

Sorry, got distracted with other projects and completely forgot about this. I can create some PRs for what I've already implemented in the coming days. I had not made any...

I think what he means is something like: ```rust struct DropAbortGuard; impl DropAbortGuard { fn new() -> Self { Self } fn end(self) { core::mem::forget(self); // Ensures drop doesn't run...

As an alternative, for the specific case of creating `namedtuple`-like classes, you could look at using `PyStructSequence` under the hood. This is what CPython uses internally to create `sys.version_info`, for...

Sure, here are the two logs: [vulkan.log](https://github.com/iced-rs/iced/files/14320347/vulkan.log) [dx12.log](https://github.com/iced-rs/iced/files/14320348/dx12.log)

I get the same result with `antialiasing = true`. Here are logs of a modified `tour` example with `antialiasing = true`. I can confirm it does use my discrete GPU...

Testing further, if I enable the `"web-colors"` feature I also don't see this issue. Could this be related to gfx-rs/wgpu#4842?