How to start OpenGL programming with Ruby?


Joined
Jul 1, 2019
Messages
1
Reaction score
0
Hi,

I’m new to OpenGL and I was wondering where I should start learning to program OpenGL.
I wanted to use Ruby to do so and I’ve gotten OpenGL to work with Ruby by installing the gems (there are still some errors trying to execute some of the examples which came with the gem).
But now I’m stuck with OpenGL. Where should I start learning? Are there any good books I should read?

All help is appreciated!
 
Ad

Advertisements

Joined
Jul 3, 2021
Messages
37
Reaction score
2
You start by understanding the following:

* Platform Environment (which is what GLUT is for)
* Software vs Hardware Rendering
* Vertices and Vertex Format
* Polygons and Geometry Pipeline
* Matrix Manipulation
* Perspective Projection
* Vertex Shading & Shading
* Graphics Device State
* Texture and Bit Mapping

Everything else is a lot of buffer and map manipulation.
A book I recommend is OpenGL SuperBible - * Double Buffering
* Depth Buffering
* Tessellation
* Mipmapping
* Antialiasing
* Occlusion
* Shadow Mapping
* .... [this list can go up to over 80+ terms.]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top