mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-11-02 09:40:15 +00:00
dcfb368b21
- delete file issue-1573.rs (wrongly named) - fix warning in example issue-1559
38 lines
936 B
Rust
38 lines
936 B
Rust
//! https://github.com/dankamongmen/notcurses/issues/1559
|
|
|
|
use libnotcurses_sys::*;
|
|
|
|
const WIDTH: u32 = 10;
|
|
const HEIGHT: u32 = 10;
|
|
|
|
fn main() -> NcResult<()> {
|
|
let mut nc = Nc::new()?;
|
|
|
|
if !nc.check_pixel_support()? {
|
|
return Err(NcError::new_msg("Current terminal doesn't support pixels."));
|
|
}
|
|
|
|
let mut buffer = Vec::<u8>::with_capacity((HEIGHT * WIDTH * 4) as usize);
|
|
#[allow(unused_parens)]
|
|
for _byte in (0..={ HEIGHT * WIDTH }) {
|
|
buffer.push(230);
|
|
buffer.push(30);
|
|
buffer.push(40);
|
|
buffer.push(255);
|
|
}
|
|
|
|
let vframe = NcVisual::from_rgba(buffer.as_slice(), HEIGHT, WIDTH * 4, WIDTH)?;
|
|
let voptions =
|
|
NcVisualOptions::without_plane(0, 0, 0, 0, HEIGHT, WIDTH, NCBLIT_PIXEL, 0, 0);
|
|
|
|
// vframe.inflate(1)?; // this works
|
|
|
|
vframe.resize(6, 1)?;
|
|
|
|
vframe.render(&mut nc, &voptions)?;
|
|
|
|
rsleep![&mut nc, 2];
|
|
vframe.destroy();
|
|
Ok(())
|
|
}
|