Roman
Roman
`font-rs` is not a binary crate, it's a library. Use `cargo build --release --examples` to build all examples or `--example draw_shape` or `--example render` to build only specific examples.
You don't need to build with `--release`. Please provide the output of: ``` $ RUST_BACKTRACE=1 cargo run --example render ```
Error: ``` 10: render::main at examples/render.rs:33 ``` Code: ``` 30: fn main() { 31: let mut args = std::env::args(); 32: let _ = args.next(); 33: let filename = args.next().unwrap(); 34:...
Cannot detect `#![cfg_attr(not(any(test, feature = "std")), no_std)]`
Why did you set workers to 256?
There is a hack in imageBuilder.c: ``` /* create Char with extra slot for instance var */ CharClass = gcalloc(MetaCharSize); addGlobalName("Char", CharClass); CharClass->data[nameInClass] = newSymbol("Char"); ``` The imageBuilder does not...
The problem is: there is a huge difference in performance between 'x+1' and '1+x'. Take a look at the bytecode below: ``` METHOD Undefined main " initialize classes " Char...
> This makes it impossible to make OpenCL support optional in an application. @hlavaatch You can using cargo features and adding something like this in your application: ``` # Cargo.toml:...
Still it is a very specific issue, not a general one. You may compile your binary two times: with gpu and without gpu, then create a third binary which will...
For Intel CPUs this bug was fixed in https://github.com/intel/compute-runtime (replacement for Beignet)