mirror of
https://github.com/italicsjenga/rust_minifb.git
synced 2024-12-24 03:41:29 +11:00
d2fe8c0469
* Add transparency field to WindowOptions * Add transparency example * Implement transparency on Wayland * Improvements * [WIP] X11 transparency * Restructure * Redox implement transparency * Update src/lib.rs Co-Authored-By: Cole Helbling <cole.e.helbling@outlook.com> * Rust-2018 changes * Fixed issue * cargo fmt * [WIP] Implement alpha transparency for windows * Staging Windows code * Transparency is currently unimplemented on Windows * Add note * Dont use assertions * Correction Co-authored-by: Antonino Siena <a.siena@gmx.de> Co-authored-by: Cole Helbling <cole.e.helbling@outlook.com>
40 lines
1.3 KiB
Rust
40 lines
1.3 KiB
Rust
use minifb::{Key, ScaleMode, Window, WindowOptions};
|
|
|
|
fn main() {
|
|
use std::fs::File;
|
|
// The decoder is a build for reader and can be used to set various decoding options
|
|
// via `Transformations`. The default output transformation is `Transformations::EXPAND
|
|
// | Transformations::STRIP_ALPHA`.
|
|
let decoder = png::Decoder::new(File::open("resources/uv.png").unwrap());
|
|
let (info, mut reader) = decoder.read_info().unwrap();
|
|
// Allocate the output buffer.
|
|
let mut buf = vec![0; info.buffer_size()];
|
|
// Read the next frame. Currently this function should only called once.
|
|
// The default options
|
|
reader.next_frame(&mut buf).unwrap();
|
|
// convert buffer to u32
|
|
|
|
let u32_buffer: Vec<u32> = buf
|
|
.chunks(3)
|
|
.map(|v| ((v[0] as u32) << 16) | ((v[1] as u32) << 8) | v[2] as u32)
|
|
.collect();
|
|
|
|
let mut window = Window::new(
|
|
"Noise Test - Press ESC to exit",
|
|
info.width as usize,
|
|
info.height as usize,
|
|
WindowOptions {
|
|
resize: true,
|
|
scale_mode: ScaleMode::Center,
|
|
..WindowOptions::default()
|
|
},
|
|
)
|
|
.expect("Unable to open Window");
|
|
|
|
while window.is_open() && !window.is_key_down(Key::Escape) {
|
|
window
|
|
.update_with_buffer(&u32_buffer, info.width as usize, info.height as usize)
|
|
.unwrap();
|
|
}
|
|
}
|