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.
|
2023-02-17 09:33:47 +11:00
|
|
|
#![deny(unsafe_op_in_unsafe_fn)]
|
2022-11-19 17:55:49 +11:00
|
|
|
#![feature(strict_provenance)]
|
2022-11-20 17:09:05 +11:00
|
|
|
#![feature(type_alias_impl_trait)]
|
2022-12-01 09:21:32 +11:00
|
|
|
#![feature(let_chains)]
|
2022-11-19 17:55:49 +11:00
|
|
|
|
2022-11-20 10:48:54 +11:00
|
|
|
mod binding;
|
2022-11-20 14:09:01 +11:00
|
|
|
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;
|
|
|
|
|
2023-02-11 16:20:35 +11:00
|
|
|
pub use crate::gl::GLFramebuffer;
|
2023-01-14 08:55:50 +11:00
|
|
|
pub use filter_chain::FilterChainGL;
|
2022-12-01 09:21:32 +11:00
|
|
|
pub use framebuffer::GLImage;
|