esnosy / minimal_window

A very small C library for putting pixels on the screen, perfect for software raytracing projects.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Update every frame or provide an update API

esnosy opened this issue · comments

Currently the window only updated when needed by operating system, so it is only good for static results, but not animation, we could either:
1- Update the window every frame (damaging Win32 window or Wayland surface etc.)
2- Provide the update as a function for user for example minimal_window_update)