KO
|
EN
gitlite — search
Search
#javascript
#nodejs
#python
#ios
#library
#android
#dotnet
#java
#string
#windows
#game
#react
MiniFB.jl
★ 47
Open GitHub ↗
Render pixels on screen
Download README (.md)
Explore Similar Repositories
causal-recsys-public
:
No description available.
ng-google-sheets-db-library
:
Use Google Sheets as your (read-only) backend for your Angular app!
OffLicenseDemo
:
基于RSA+AES算法实现软件授权License
SIFT
:
基于C++的基本库实现了SIFT特征提取与匹配, 无需调用如OpenCV的库函数. 从实现细节的角度介绍了SIFT算法流程. 代码很大程度地基于ezSIFT代码, 用于自学和理解SIFT算法.
repository.bingie.mod
:
No description available.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
MiniFB.jl
?
Download (.md)
# MiniFB.jl | **Documentation** | **Status** | |:---------------------------:|:---------------------:| | [![][docs-stable-img]][docs-stable-url] | [![Build Status][ci-img]][ci-url] [![version][version-img]][version-url] | A Julia wrapper around [MiniFB](https://github.com/emoon/minifb), a small cross platform library that makes it easy to render 32 bit pixels in a window. ## Quick Start ```julia 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`](./example) directory for usage examples. [docs-stable-img]: https://img.shields.io/badge/docs-stable-blue.svg [docs-stable-url]: https://juliahub.com/docs/MiniFB/ [ci-img]: https://github.com/aviks/MiniFB.jl/workflows/CI/badge.svg [ci-url]: https://travis-ci.org/JuliaDocs/Documenter.jl [version-img]: https://juliahub.com/docs/MiniFB/version.svg [version-url]: https://juliahub.com/ui/Packages/MiniFB/NwZ6j