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

14 lines
244 B
Rust
Raw Normal View History

#[repr(C)]
#[derive(Debug, Clone)]
2022-12-04 10:32:10 +11:00
pub struct FrameOptionsGL {
2022-11-30 17:38:05 +11:00
pub clear_history: bool,
2022-12-05 14:36:14 +11:00
pub frame_direction: i32,
}
#[repr(C)]
#[derive(Debug, Clone)]
2022-12-04 10:32:10 +11:00
pub struct FilterChainOptionsGL {
2022-11-30 17:38:05 +11:00
pub gl_version: u16,
2022-12-01 11:05:24 +11:00
pub use_dsa: bool,
}