Implement debug view and load system fonts
This commit is contained in:
parent
ef056d8489
commit
2c6bfdbc8c
17 changed files with 418 additions and 241 deletions
|
|
@ -6,3 +6,14 @@ pub mod conversion;
|
|||
mod application;
|
||||
|
||||
pub use application::Application;
|
||||
|
||||
// We disable debug capabilities on release builds unless the `debug` feature
|
||||
// is explicitly enabled.
|
||||
#[cfg_attr(any(debug_assertions, feature = "debug"), path = "debug/basic.rs")]
|
||||
#[cfg_attr(
|
||||
not(any(debug_assertions, feature = "debug")),
|
||||
path = "debug/null.rs"
|
||||
)]
|
||||
mod debug;
|
||||
|
||||
use debug::Debug;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue