The version 3.3 of OpenGL is targeted as it's the newest version available on all three of Linux (when using the open drivers), OS X and Windows.
Note that this project is very much work in progress, it doesn't even properly support textures yet. It's also currently mostly a personal project, and there are no guarantees of anything (other than what the license promises).
This project licensed under Apache License 2.0.
- gl-rs, the library that this one essentially wraps.
- glfw-rs, only used in the test application, not by the lib itself. The idea is to move the app away to its own repo or at least make this dependency optional.
Naturally, the Cargo.toml is the definitive source for this kind of information.
- Safety and sensibility: It should not be possible to do insane things. However, the library still won't take responsibility out of your hands.
- Simplicity: The library should be straightforward to use. If you know OpenGL, it shouldn't be too hard to use HTGL. There definitely are new concepts around and the entire landscape of possible ways to use OpenGL is not open, just a narrow trail. That's the price of safety (and this library being a hobby project).
- Performance: This library won't conjure more performance out of thin air, and may not expose the fast paths perfectly, but at least it attempts to avoid redundant state changes.
- Work on Linux, Windows and OS X, but as my chances to test on all of them are limited, this is mostly a thing of principle right now, to not include platform specifics into the code.
- To allow using everything in the underlying API. Especially the deprecated parts are not going to be exposed.
- Extensions and other special casing. Working around driver-specific bugs might happen, though. Things need to be judged in a case by case basis.
- Multi-threading, which, as far as I know, doesn't actually work with OpenGL that well. No performance benefits (or very limited benefits) are not worth the increased complexity.
Before OpenGL 3 was published, there was the code name Longs Peak, and now there is Vulkan. While hiking trails aren't the most mountainy things, the concept seemed like a fitting base for a name. The library also tries to provide a narrow but relatively safe path for OpenGL.