Jay Oster

Results 366 comments of Jay Oster

Yesterday I went through the cumbersome process of learning how to replace ```rust let agent = ureq::agent(); ``` with ```rust let agent = Agent::from( Agent::config_builder() .tls_config( TlsConfig::builder() .provider(TlsProvider::NativeTls) .build(), )...

> I know there are still reasons folks prefer `*ring*` and that's fine (in fact, since this issue was filed one of the Rustls maintainers has stepped up to [continue...

Thanks! There's also #403, which should probably be reopened.

Hi! > pub struct App>,// added lifetime here > world: World, > } `'a` is equivalent to `'static` in this example due to `Pixels

That could be exactly what I'm missing! I saw the other code path in `bindgen!` that imports an existing type by path but had no idea how to trigger it.

Yes. I still don't think the default should be creating an unusable zero-variant enum, though.

Raise an error with an appropriate suggestion. Such as "Did you meant to use `with { ... }`?" and link to relevant documentation. That would be a much better experience...

Hi, I'm sure you've seen the different GUI examples we have. They both operate in the way you describe, where the GUI sits on a "virtual layer" above the pixel...

Can you specify what you are referring to when you say "this method" in your opening statement? Both imgui and egui do use the GPU for rendering the UI. Neither...

Sorry, this conversation is very confused. I will try to clarify. > I am not sure where you're getting immediate mode GUIs from? I'm suggesting you use `wgpu` to render...