Struct rafx_framework::VertexDataLayout[][src]

pub struct VertexDataLayout { /* fields omitted */ }

Implementations

impl VertexDataLayout[src]

pub fn new(vertex_stride: usize, members: &[VertexMember]) -> Self[src]

pub fn build_vertex_layout<VertexT, F: FnOnce(&mut VertexMemberAccumulator<'_, VertexT>, &VertexT)>(
    vertex: &VertexT,
    f: F
) -> VertexDataLayout
[src]

Example usage to define a vertex data layout and convert it into a VertexDataSetLayout (VertexDataLayout::build_vertex_layout creates a VertexDataLayout and the .into_set() call makes it a single-buffer set

use rafx_framework::VertexDataLayout;
use rafx_api::{RafxFormat, RafxPrimitiveTopology};

#[derive(Default, Copy, Clone)]
#[repr(C)]
pub struct ExampleVertex {
    pub position: [f32; 3],
    pub normal: [f32; 3],
    pub tex_coord: [f32; 2],
}

VertexDataLayout::build_vertex_layout(&ExampleVertex::default(), |builder, vertex| {
    builder.add_member(&vertex.position, "POSITION", RafxFormat::R32G32B32_SFLOAT);
    builder.add_member(&vertex.normal, "NORMAL", RafxFormat::R32G32B32_SFLOAT);
    builder.add_member(&vertex.tex_coord, "TEXCOORD", RafxFormat::R32G32_SFLOAT);
}).into_set(RafxPrimitiveTopology::TriangleList);

pub fn member(&self, name: &str) -> Option<&VertexDataMemberMeta>[src]

pub fn members(&self) -> &FnvHashMap<String, VertexDataMemberMeta>[src]

pub fn hash(&self) -> VertexDataLayoutHash[src]

pub fn vertex_stride(&self) -> usize[src]

pub fn into_set(
    self,
    primitive_topology: RafxPrimitiveTopology
) -> VertexDataSetLayout
[src]

pub fn intersects_with(&self, other: &Self) -> bool[src]

pub fn is_subset_of(&self, other: &Self) -> bool[src]

pub fn is_subset_of_multi(subsets: &[Self], others: &[Self]) -> bool[src]

Trait Implementations

impl Clone for VertexDataLayout[src]

impl Debug for VertexDataLayout[src]

impl PartialEq<VertexDataLayout> for VertexDataLayout[src]

impl StructuralPartialEq for VertexDataLayout[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Send + Sync + Any

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Resource for T where
    T: Downcast + Send + Sync
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.