Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ivowingelaar/gypsum

A Rust library for drawing ASCII-style roguelike graphics targetting both native (GL) and wasm (WebGL) platforms
https://github.com/ivowingelaar/gypsum

opengl roguelike rust wasm webgl

Last synced: 22 days ago
JSON representation

A Rust library for drawing ASCII-style roguelike graphics targetting both native (GL) and wasm (WebGL) platforms

Awesome Lists containing this project

README

        

# Gypsum

[![Build Status](https://travis-ci.com/IvoWingelaar/gypsum.svg?branch=master)](https://travis-ci.com/IvoWingelaar/gypsum)

A Rust library for drawing ASCII-style roguelike graphics targetting both native (OpenGL) and wasm (WebGL) platforms.

# Running

## Native

```
rustup default nightly
cargo run --release --example screen_quad
```

## Wasm

```
rustup default nightly
rustup target install wasm32-unknown-unknown
cargo install cargo-web
cargo web start --release --example screen_quad
```

# License

All work in this repo is licensed under the MIT license.
See `LICENSE` for more information.
Partly based on some work of [doryen-rs](https://github.com/jice-nospam/doryen-rs).