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

25 lines
534 B
Rust
Raw Normal View History

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