From 6970b3f01a6603642b6e9cb9fc2fa2c19d7759da Mon Sep 17 00:00:00 2001 From: kud1ing Date: Sun, 12 Oct 2014 12:49:36 +0200 Subject: [PATCH] OpengGL --- README.md | 1 + generate_markdown_files.py | 14 +++++++++++--- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index dd7065e..567785e 100644 --- a/README.md +++ b/README.md @@ -109,6 +109,7 @@ Only projects that are stable and useful to users are added. Projects that do no * [JeremyLetang/rgtk](https://github.com/JeremyLetang/rgtk) — [Gtk+](http://www.gtk.org) bindings [](https://travis-ci.org/jeremyletang/rgtk) * ncurses * [jeaye/ncurses-rs](https://github.com/jeaye/ncurses-rs) — [](https://travis-ci.org/jeaye/ncurses-rs) +* OpenGL * SDL * [AngryLawyer/rust-sdl2](https://github.com/AngryLawyer/rust-sdl2) — [SDL2](http://www.libsdl.org/) bindings [](https://travis-ci.org/AngryLawyer/rust-sdl2) * [brson/rust-sdl](https://github.com/brson/rust-sdl) — [SDL1](http://www.libsdl.org/) bindings [](https://travis-ci.org/brson/rust-sdl) diff --git a/generate_markdown_files.py b/generate_markdown_files.py index 85a7c35..474e759 100644 --- a/generate_markdown_files.py +++ b/generate_markdown_files.py @@ -348,6 +348,14 @@ DATA = \ "url": "https://github.com/zokier/pong-rs", "unstable": True }, + "bjz/gl-rs": { + "url": "https://github.com/bjz/gl-rs", + "unstable": True + }, + "servo/rust-opengles": { + "url": "https://github.com/servo/rust-opengles", + "unstable": True + }, } @@ -363,9 +371,6 @@ DATA = \ ## Game development -* OpenGL - * [bjz/gl-rs](https://github.com/bjz/gl-rs) An OpenGL function pointer loader for Rust [](https://travis-ci.org/bjz/gl-rs) - * [servo/rust-opengles](https://github.com/mozilla-servo/rust-opengles) OpenGL ES 2.0 bindings for Rust * Windowing * [bjz/glfw-rs](https://github.com/bjz/glfw-rs) GLFW3 bindings and idiomatic wrapper for Rust. [](https://travis-ci.org/bjz/glfw-rs) * [jeremyletang/rust-sfml](https://github.com/JeremyLetang/rust-sfml) SFML bindings for Rust [](https://travis-ci.org/JeremyLetang/rust-sfml) @@ -557,6 +562,9 @@ add( '* Gtk+', rows_stable, rows_unstable ) entry( ' * ', 'JeremyLetang/rgtk', rows_stable, rows_unstable ) add( '* ncurses', rows_stable, rows_unstable ) entry( ' * ', 'jeaye/ncurses-rs', rows_stable, rows_unstable ) +add( '* OpenGL', rows_stable, rows_unstable ) +entry( ' * ', 'bjz/gl-rs', rows_stable, rows_unstable ) +entry( ' * ', 'servo/rust-opengles', rows_stable, rows_unstable ) add( '* SDL', rows_stable, rows_unstable ) entry( ' * ', 'AngryLawyer/rust-sdl2', rows_stable, rows_unstable ) entry( ' * ', 'brson/rust-sdl', rows_stable, rows_unstable )