conrod
conrod copied to clipboard
An easy-to-use, 2D GUI library written entirely in Rust.
Hi folks! As alluded to in #1453, I've been progressively less and less active on conrod over the past year or so. This has been due in part to being...
Cloned the repository with "git clone https://github.com/PistonDevelopers/conrod.git". Current HEAD commit ID is 0c61e49afba22964a9479c371c7aaca3ab96ca67. I switched to conrod directory and ran "cargo build --release". The build failed with the following error:...
``` use conrod_core::{color, widget, Colorable, Labelable, Positionable, Sizeable, Widget}; widget::Slider::new(100,1, 2) ``` I'm creating a new slider like this but I can't position it as I like, like in the...
The widgets is not shown unless we call `.set(_, _)` for the widget. Therefore, it might be a good idea to set `#[must_use]` to `Widget`-related classes. (I'm new to `conrod`...
This is the Take 3 of providing SDL2 backend for cornod. ### I didn't use OpenGL When it comes to using SDL2, there are a big choice: to use OpenGL...
Hi @mitchmindtree , I'm looking for a GUI framework written in Rust for my DAW-like project and really interested in the option of choosing `cornod`. Especially I found a very...
When I tried compiling an example after cloning the repo, I got this error: ``` error: linking with `cc` failed: exit status: 1 | = note: "cc" "-m64" "/home/alumin112/Desktop/Rust/conrod/target/release/examples/all_winit_glium-37b904762c16b611.all_winit_glium.9f02684a-cgu.0.rcgu.o" "/home/alumin112/Desktop/Rust/conrod/target/release/examples/all_winit_glium-37b904762c16b611.all_winit_glium.9f02684a-cgu.1.rcgu.o"...
Conrod's description states that it's an immediate-mode wrapper over a retained-mode UI. Is it possible to use it in retained mode? That is, create the UI once, then query it...
Hi, I have some questions regarding this project: 1. Can I make regular GUI applications (such as menus, buttons and stuff) or is this more aimed at computer graphics design...
I was following this example, but I always encounter an error about invalid scissor. I just found out the problem was the rect was overflowing the surface bound. I guess...