1
2
3
4
5
6
7
8
9
10
11
12
use crate::*;

pub struct SecondaryViewState {
    pub ty: ViewConfigurationType,
    pub active: bool,
}

pub struct SecondaryEndInfo<'a, 'b, 'c, G: Graphics> {
    pub ty: ViewConfigurationType,
    pub environment_blend_mode: EnvironmentBlendMode,
    pub layers: &'a [&'b CompositionLayerBase<'c, G>],
}