[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

[ANN] ffi-opengl 0.1.0

Andrea Fazzi

3/8/2009 4:06:00 PM

ffi-opengl version 0.1.0
by Andrea Fazzi
http://github.com/remogatto/...

== DESCRIPTION

ffi-opengl is an autogenerated[1] ruby FFI interface towards OpenGL
libraries (GL, GLU, GLUT).

ffi-opengl API aims to be a 1:1 translation of the OpenGL C API: don't
expect idiomatic ruby inside!

== CHANGES

* 1 major enhancement
* Birthday!

== FEATURES/PROBLEMS

* Full [auto-generated] wrap of the OpenGL libraries.
* No compilation needed.
* Not yet tested on windows/macosx platforms

== SYNOPSIS

See the example in 'examples/' folder. For the API documentation
please refer to OpenGL reference pages.

== REQUIREMENTS

* ffi >= 0.3.0 (development version)
* OpenGL libraries >= 1.2

== DOWNLOAD/INSTALL

git clone http://github.com/remogatto/.../tree/master
--
Posted via http://www.ruby-....

2 Answers

Andrea Fazzi

3/8/2009 4:07:00 PM

0

> ffi-opengl is an autogenerated[1]

[1] - http://kenai.com/projects/ruby-ffi/sources/swig-gene...
--
Posted via http://www.ruby-....

Charles Oliver Nutter

3/8/2009 5:55:00 PM

0

Andrea Fazzi wrote:
> ffi-opengl version 0.1.0
> by Andrea Fazzi
> http://github.com/remogatto/...
>
> == DESCRIPTION
>
> ffi-opengl is an autogenerated[1] ruby FFI interface towards OpenGL
> libraries (GL, GLU, GLUT).
>
> ffi-opengl API aims to be a 1:1 translation of the OpenGL C API: don't
> expect idiomatic ruby inside!

Cool! This is exactly the sort of library I hoped to start seeing. And
your swig-based generator will make a lot more of these possible.
Excellent work!

- Charlie