librashader/librashader-runtime-gl/src/lib.rs

25 lines
534 B
Rust
Raw Normal View History

2023-01-17 15:09:07 +11:00
//! 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)]
#![feature(let_chains)]
2023-07-20 15:13:22 +10:00
#![feature(type_alias_impl_trait)]
2022-11-19 17:55:49 +11:00
2022-11-20 10:48:54 +11:00
mod binding;
mod filter_chain;
2022-11-20 15:16:57 +11:00
mod filter_pass;
mod framebuffer;
mod util;
2022-11-14 16:14:05 +11:00
2022-11-30 17:38:05 +11:00
mod gl;
2022-11-27 08:47:48 +11:00
mod samplers;
2022-11-30 16:39:42 +11:00
mod texture;
2022-11-27 08:47:48 +11:00
2022-11-30 16:39:42 +11:00
pub mod error;
2022-12-01 11:05:24 +11:00
pub mod options;
pub use crate::gl::GLFramebuffer;
pub use filter_chain::FilterChainGL;
pub use framebuffer::GLImage;