#[macro_export]
macro_rules! gfx_vertex_struct {
($root:ident {
$( $field:ident: $ty:ty = $name:expr, )*
}) => {
#[derive(Clone, Copy, Debug)]
pub struct $root {
$( pub $field: $ty, )*
}
impl $crate::pso::buffer::Structure<$crate::format::Format> for $root {
fn query(name: &str) -> Option<$crate::pso::buffer::Element<$crate::format::Format>> {
use std::mem::size_of;
use $crate::pso::buffer::{Element, ElemOffset, ElemStride};
let stride = size_of::<$root>() as ElemStride;
let tmp: &$root = unsafe{ ::std::mem::uninitialized() };
let base = tmp as *const _ as usize;
match name {
$(
$name => Some(Element {
format: <$ty as $crate::format::Formatted>::get_format(),
offset: ((&tmp.$field as *const _ as usize) - base) as ElemOffset,
stride: stride,
}),
)*
_ => None,
}
}
}
}
}
#[macro_export]
macro_rules! gfx_constant_struct {
($root:ident {
$( $field:ident: $ty:ty, )*
}) => {
#[derive(Clone, Copy, Debug)]
pub struct $root {
$( pub $field: $ty, )*
}
impl $crate::pso::buffer::Structure<$crate::shade::ConstFormat> for $root {
fn query(name: &str) -> Option<$crate::pso::buffer::Element<$crate::shade::ConstFormat>> {
use std::mem::size_of;
use $crate::pso::buffer::{Element, ElemOffset, ElemStride};
let stride = size_of::<$root>() as ElemStride;
let tmp: &$root = unsafe{ ::std::mem::uninitialized() };
let base = tmp as *const _ as usize;
match name {
$(
stringify!($field) => Some(Element {
format: <$ty as $crate::shade::Formatted>::get_format(),
offset: ((&tmp.$field as *const _ as usize) - base) as ElemOffset,
stride: stride,
}),
)*
_ => None,
}
}
}
}
}