mitchmindtree
mitchmindtree
The Guide should probably be structured to look something like this: - [x] **1. What is Conrod** - [x] A brief summary of 2D GUI, Conrod use-cases. - [x] some...
The method would return `None` if the input is not captured, otherwise returning `Some(widget::Index)` with the index of the widget currently capturing the input. I.e. ``` rust if ui.is_mouse_captured().is_none() {...
@est31 ping! These are humble beginnings, still lots to go. I thought it could be good to upload it sooner rather than later to get your thoughts and feedback on...
Currently, the `read::Description` provides: - The number of channels via `channel_count()`. - The rate at which the audio is sampled per channel via `sample_rate()`. - The audio `Format` via `format()`...
As mentioned in #8, perhaps the `read::Description` could indicate whether the channels are interleaved or non-interleaved and this could be used by users desiring the most efficient method of reading...
Despite specifying the macos target for documentation to build in our Cargo.toml, the build will still fail when building for docs.rs. This is because docs.rs attempts to build for macOS...
Currently, features are used to gate compilation of support for different frameworks. So far, only the default feature set is tested in CI. We should ensure that compilation succeeds under...
Each audio unit actually has **4** formats: - Input and output scope formats for the input element. - Input and output scope formats for the output element. #47 is related...
Although convenient for us, the biggest problem with using the same `Error` type everywhere is that rather than only representing the possible errors that may occur for each particular part...