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.
|
2023-02-16 17:33:47 -05:00
|
|
|
#![deny(unsafe_op_in_unsafe_fn)]
|
2022-11-30 17:21:32 -05:00
|
|
|
#![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;
|
2022-11-19 22:09:01 -05:00
|
|
|
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;
|
|
|
|
|
2023-02-11 00:20:35 -05:00
|
|
|
pub use crate::gl::GLFramebuffer;
|
2023-01-13 16:55:50 -05:00
|
|
|
pub use filter_chain::FilterChainGL;
|
2022-11-30 17:21:32 -05:00
|
|
|
pub use framebuffer::GLImage;
|