1 unstable release
Uses new Rust 2024
new 0.1.2 | Apr 3, 2025 |
---|
#8 in #opengl-rendering
Used in 3 crates
(2 directly)
3MB
24K
SLoC
aloe-opengl
aloe-opengl
is a sophisticated Rust crate designed to provide advanced OpenGL functionality. It offers a comprehensive suite of OpenGL utilities and extensions to facilitate graphics rendering. The crate is particularly useful for developers working on graphics applications requiring fine control over OpenGL contexts, shaders, textures, and rendering pipelines.
Features
- Advanced OpenGL Context Management: Supports efficient management and manipulation of OpenGL contexts, including attaching and detaching to components seamlessly.
- Shader Program Handling: Simplifies the creation, compilation, and management of OpenGL shader programs with utilities for both vertex and fragment shaders.
- Texture Management: Efficiently handles texture creation, binding, and rendering, supporting non-power-of-two textures and various filters.
- Frame Buffer Operations: Offers robust methods for working with frame buffers, including reading and writing pixel data.
- Cross-Platform Compatibility: Designed to work across major platforms, ensuring consistent behavior and performance.
Usage
To use aloe-opengl
, add the following to your Cargo.toml
:
[dependencies]
aloe-opengl = "0.1.0"
In your Rust files, you can start using it as follows:
use aloe_opengl::{OpenGLContext, OpenGLRenderer};
fn main() {
// Initialize the OpenGL context
let mut context = OpenGLContext::new();
// Set up the renderer
context.set_renderer(Some(Box::new(MyRenderer {})));
// Attach to a component or window
context.attach_to(&mut my_component);
// Run your rendering loop
context.trigger_repaint();
}
struct MyRenderer;
impl OpenGLRenderer for MyRenderer {
fn new_open_gl_context_created(&mut self) {
// Initialize OpenGL resources
}
fn render_opengl(&mut self) {
// Render your scene
}
fn open_gl_context_closing(&mut self) {
// Clean up OpenGL resources
}
}
Contributing
Contributions are welcome! Please read the contributing guidelines before getting started.
License
This project is licensed under the GPL-3.0 License.
Disclaimer
This README file was automatically generated by an AI model. While efforts have been made to ensure accuracy, it may not be entirely accurate and is intended to provide a general overview.
This crate is a translation of the JUCE module.
JUCE is a c++ software framework for developing high performance audio applications.
Usage falls under the GPLv3 as well as the JUCE commercial license.
See github.com/juce-framework/JUCE and the JUCE license page for details.
This crate is in the process of being translated from c++ to rust. For progress updates, please see the workspacer rust project. designed specifically for rust projects.
Dependencies
~30–44MB
~605K SLoC