pub type StencilValues = State<Sided<StencilValue>>;
Pair of stencil values that could be either baked into a graphics pipeline or provided dynamically.
enum StencilValues { Static(Sided<u32>), Dynamic, }
Static state that cannot be altered.
Dynamic state set through a command buffer.