Skip to content

aviks/MiniFB.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MiniFB.jl

Documentation Status
Build Status version

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.