1 2 3 4 5 6 7 8 9 10 11 12
use crate::foundation::colorspace::Color; #[repr(C)] #[derive(Clone, Debug, PartialEq)] pub struct TextureVertex { pub x: f32, pub y: f32, pub z: f32, pub tx: f32, pub ty: f32, pub color: Color, }