Fedor Logachev
Fedor Logachev
It looks like `set_window_size` function is still unimplemented on linux and max
I am still thinking about this PR. The other option for your use case: add `#[repr(C, packed(1))]` to the PawnVertex struct. Unfortunately, it looks like it is impossible to check...
> unaligned float loads crash on ARM. Good point! I would really, really like to avoid obligatory proc macros :(
https://github.com/not-fl3/miniquad/assets/910977/0581d14f-6399-42e3-8773-e41a8dd074cd ``` use macroquad::prelude::*; async fn test1() { while !is_key_pressed(KeyCode::Space) { clear_background(RED); draw_text("Press space for next test", 20.0, 20.0, 16., BLACK); next_frame().await; } next_frame().await; } async fn test2() { set_fullscreen(true);...
Hi, thanks for PR, great work! Just opened an issue to discuss how we can make it possible: https://github.com/not-fl3/miniquad/issues/176
My opinion on the topic(https://github.com/not-fl3/miniquad/issues/357#issuecomment-1490728182) stands the same, in other words, I would consider merging a PR with windows-rs if - there are some benchmarks on compilation time after/before the...
Hmm, I've tried it. Miniquad do not have `&mut Context` argument for quite a while, I fixed your example to make it run with a latest miniquad: ``` use macroquad::miniquad::EventHandler;...
To be honest I can't give a good explanation right away (it should be in the comment above this code!), but I am not sure if not having any active...
While we are here - maybe move stuff from wiki to /docs as well?
This might brake a lot of things - on all the other platforms, date::now return Unix epoch :(