2022-11-28 15:27:21 +11:00
|
|
|
#[repr(C)]
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct FrameOptions {
|
2022-11-30 17:38:05 +11:00
|
|
|
pub clear_history: bool,
|
2022-11-28 15:27:21 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
#[repr(C)]
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct FilterChainOptions {
|
2022-11-30 17:38:05 +11:00
|
|
|
pub gl_version: u16,
|
2022-12-01 11:05:24 +11:00
|
|
|
pub use_dsa: bool,
|
2022-11-28 15:27:21 +11:00
|
|
|
}
|