rust_minifb icon indicating copy to clipboard operation
rust_minifb copied to clipboard

Cross platfrom window and framebuffer crate for Rust

Results 47 rust_minifb issues
Sort by recently updated
recently updated
newest added

```rust use std::cmp::{max, min}; use minifb::{Key, MouseButton, MouseMode, ScaleMode, Window, WindowOptions}; use rand::Rng; const WIDTH: usize = 640 / 2; const HEIGHT: usize = 360 / 2; fn main() {...

Are there any plans to support android and or ios in the near future?

Would it fit the project to add a WebAssembly target? - Creating a simple HTML5 canvas object and then copying the buffer of pixels every frame to JavaScript and sending...

Love the crate, busy using it for some visualization work for strange attractors. Just want to see if @emoon is open to me adding to the documentation / examples or...

Currently, icon file is loaded from the path. If the icon file is renamed or moved, it is gone. The option to embed icon (like that of Linux) should be...

help wanted
windows

Similar to this issue #224, I am experiencing the same thing. Now in that issue it says it is Gnome's fault and upon reading up on that, that does seem...

wayland

It seems as if you guys use an older version of wayland-rs that itself uses an older version of nix I have looked into it and have tried to upgrade...

wayland

Hello, I am wondering if supporting pixel formats other than 0RGB would be out of the scope of this library. I am currently using this library to prototype something that...

gif ![minifbResize](https://user-images.githubusercontent.com/4723091/86811170-74e0aa80-c032-11ea-915b-1fb59a9e7930.gif) code ```rust use minifb::{Window, WindowOptions}; fn main() { let mut window = Window::new( "rust-raytracer", 10, 10, WindowOptions { resize: true, ..WindowOptions::default() } ).expect("Couldn't create window"); while window.is_open() {...

## Libs - rust_minifb "master". - wayland 1.18.0 (with libwayland-cursor.so.0.0.0, if relevant) - Gnome-shell 3.36.2 on gtk+ 3.24.14 - Rust 1.45.2. ## The problem Tried to run the noise example....

wayland