mirror of
https://github.com/dankamongmen/notcurses
synced 2025-03-12 02:29:03 -04:00
- fix ncdirect_[b|f]g_rgb8 functions. - fix NcDirect.bg_rgb8 method. - new printf![] macro.
23 lines
470 B
Rust
23 lines
470 B
Rust
//! based on the proof of concept at ../../src/poc/kittyzapper.c
|
|
|
|
use libnotcurses_sys::*;
|
|
|
|
fn main() {
|
|
let ncd = NcDirect::new();
|
|
ncd.fg_rgb8(100, 100, 100);
|
|
ncd.bg_rgb8(0xff, 0xff, 0xff);
|
|
printf!("a");
|
|
ncd.bg_rgb8(0, 0, 0);
|
|
printf!("b");
|
|
printf!(" ");
|
|
printf!(" ");
|
|
ncd.bg_rgb8(0, 0, 1);
|
|
printf!("c");
|
|
printf!(" ");
|
|
printf!(" ");
|
|
ncd.bg_rgb8(0xff, 0xff, 0xff);
|
|
printf!("d");
|
|
printf!("\n");
|
|
ncd.stop();
|
|
}
|