Kai Schmidt

Results 10 issues of Kai Schmidt

If my site has two pages and I want each of them to serve different wasm modules, is there a way to do that? `cargo web build` creates a `.js`...

While working on a syntax theme, I noticed that the try operator ('?') was not highlighted with the same color as other operators. To remedy this, I simply added it...

Would it be possible to add the ability to render to a texture that can then be saved to disk? It would be nice to have some buffer type that...

One simple thing I would like from Piston is the ability to disable automatic window closing when the window's "X" button in the top corner is pressed. For example, if...

discussion

Title. From what I can tell from the source code, there are a couple checks where if the `DynamicMixer` has no sources, `Iterator::next` returns `None`, which terminates the mixer `Source`....

This moves the generate/interrupt button and the progress bar to be above the output preview in txt2img and img2img. The experience should be largely the same on desktop. However, on...

Basically every implementation of `ToLua` is not actually going to consume the value, yet `ToLua::to_lua` (or 0.9 `IntoLua::into_lua`) takes `self` by value. The only time I can think when you...

With version 0.115.0, this following code panics: ```rust use piston_window::*; fn main() { let mut window: PistonWindow = WindowSettings::new("test", [800; 2]).build().unwrap(); let mut glyphs = window.load_font("firacode.ttf").unwrap(); while let Some(event) =...

I have noticed an error that only seems to be present in newer versions of `piston_window`. This error is not present in version `0.89.0`, the version I was on before...

I am currently working on an application that uses [rust-sfml](https://github.com/jeremyletang/rust-sfml) for graphics. I want to switch to piston and use piston_window, but my application needs to be able to be...