librashader/librashader-runtime-gl/src/lib.rs
chyyran 41353ac9c4 rt(gl): remove need for explicit external FBO object
Replaced with an internal FBO that is state tracked so as to not recreate it every frame, but will update if necessary
2024-09-22 02:06:47 -04:00

23 lines
511 B
Rust

//! librashader OpenGL runtime
//!
//! This crate should not be used directly.
//! See [`librashader::runtime::gl`](https://docs.rs/librashader/latest/librashader/runtime/gl/index.html) instead.
#![deny(unsafe_op_in_unsafe_fn)]
#![cfg_attr(not(feature = "stable"), feature(type_alias_impl_trait))]
mod binding;
mod filter_chain;
mod filter_pass;
mod framebuffer;
mod util;
mod gl;
mod samplers;
mod texture;
pub mod error;
pub mod options;
pub use filter_chain::FilterChainGL;
pub use framebuffer::GLImage;