Examples of using LWJGL with JRuby.
As I'm learning LWJGL and OpenGL, I'm uploading examples here and writing blog posts on my blog
The study material is Learning Modern 3D Graphics Programming
This is set up as a gem for convenience, although I can't see why you would want to install it.
Please note: This was developed and tested on Linux. The native extensions for Windows and OSX are in this repository as well, but I've done no testing. So pull requests to make it work on other platforms will be appreciated!
You may want to install JRuby with RVM, as the .rvmrc sets up the appropriate JRUBY_OPTS environment variables to tell JRuby to tell the JVM to load up the native extensions that LWJGL needs.
- Fork it
- Create your feature branch (
git checkout -b feature/my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin feature/my-new-feature
) - Create new Pull Request