Documentation | Status |
---|---|
A Julia wrapper around MiniFB, a small cross platform library that makes it easy to render 32 bit pixels in a window.
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
See the example
directory for usage examples.