MiniFB.jl
June 29, 2022 ยท View on GitHub
| Documentation | Status |
|---|---|
A Julia wrapper around MiniFB, a small cross platform library that makes it easy to render 32 bit pixels in a window.
Quick Start
using MiniFB
WIDTH=800
HEIGHT=600
window = mfb_open_ex("My Window", WIDTH, HEIGHT, MiniFB.WF_RESIZABLE)
buffer = zeros(UInt32, WIDTH*HEIGHT)
while true
# TODO add some rendering into the buffer
...
state = mfb_update(window,buffer)
if state != MiniFB.STATE_OK
break
end
end
Examples
See the example directory for usage examples.