[][src]Trait nova_math::traits::IntoSTD140

pub trait IntoSTD140 {
    type Output: Pack;
    fn into_std140(self) -> Self::Output;
}

Trait that marks a type as able to be packable into a std140 compatible form

Associated Types

type Output: Pack

Loading content...

Required methods

fn into_std140(self) -> Self::Output

Loading content...

Implementations on Foreign Types

impl IntoSTD140 for f32[src]

type Output = F32Pack

impl IntoSTD140 for f64[src]

type Output = F64Pack

Loading content...

Implementors

impl<T: Real> IntoSTD140 for TMat4x4<T>[src]

type Output = TMat4x4P<T>

impl<T: Real> IntoSTD140 for TVec2<T>[src]

type Output = TVec2P<T>

impl<T: Real> IntoSTD140 for TVec3<T>[src]

type Output = TVec3P<T>

impl<T: Real> IntoSTD140 for TVec4<T>[src]

type Output = TVec4P<T>

Loading content...