Skip to content

Instantly share code, notes, and snippets.

@MaikKlein
Created February 19, 2018 00:04
Show Gist options
  • Save MaikKlein/ce6c237d364dc5bf22265a2458f9ddbf to your computer and use it in GitHub Desktop.
Save MaikKlein/ce6c237d364dc5bf22265a2458f9ddbf to your computer and use it in GitHub Desktop.
pub struct Test {
v1: Vec2<f32>,
v: Vec3<f32>,
}
// correct alignment
pub struct Test {
v1: Vec2<f32>,
_padding1: f32,
_padding2: f32,
v: Vec3<f32>,
_padding3: f32,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment