pub struct StageIo {
pub varyings: HashMap<ShaderLocation, InterfaceVar, BuildHasherDefault<FxHasher>>,
pub task_payload_size: Option<u32>,
pub primitive_index: Option<bool>,
}Fields§
§varyings: HashMap<ShaderLocation, InterfaceVar, BuildHasherDefault<FxHasher>>§task_payload_size: Option<u32>This must match between mesh & task shaders
primitive_index: Option<bool>Fragment shaders cannot input primitive index on mesh shaders that don’t output it on DX12. Therefore, we track between shader stages if primitive index is written (or if vertex shader is used).
This is Some if it was a mesh shader.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for StageIo
impl RefUnwindSafe for StageIo
impl Send for StageIo
impl Sync for StageIo
impl Unpin for StageIo
impl UnwindSafe for StageIo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more