alvinhochun
alvinhochun
Does it happen with other backends?
Your window has an initial size of 400x200. The glyph cache used by the `conrod_glium` backend uses a texture size equal to the initial framebuffer size, which is probably too...
Hi, there was [some breaking changes in the `vk-sys` crate](https://github.com/vulkano-rs/vulkano/issues/1464#issuecomment-757881281) which `vulkano` had been using, which is causing the build error you got. Anyway, you don't *need* to have the...
The built-in backends of Conrod does support high DPI scaling and it does work for me. All coordinates in Conrod are in "logical pixels", as in it already takes into...
Hi, thanks for contributing! However, 0.61 is still quite dated. It would make sense to go straight to `conrod_core` 0.71.
I don't think Conrod was ever designed with partial redraw in mind. Conrod simply gives you a collection of primitives and a renderer backend produce lists of triangles to be...
A fix landed in `winit`: https://github.com/rust-windowing/winit/pull/1607 but it hasn't been released yet.
Thanks a lot @mitchmindtree for your hard work making `conrod` such a viable GUI library. I feel bad for not having done much after being invited as collaborator, but unfortunately...
Would you mind explaining a bit? Currently there are 23 examples in Conrod, a lot of which showcase different widgets, while others show the usage of different backends. What other...
The majority of the examples are in the `conrod_glium` backend, inside [`backends/conrod_glium/examples`](https://github.com/PistonDevelopers/conrod/tree/master/backends/conrod_glium/examples). There are also examples for other backends. All examples can be run using `cargo run --example ` from...