aviks / MiniFB.jl

Render pixels on screen

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

Render pixels on screen

License:MIT License


Languages

Language:Julia 100.0%