Ember

vertices

Jan 3rd, 2015
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.32 KB | None | 0 0
  1. struct Vertex3D { Half3 Position; Short3 Normal; UShort2 Texcoord; };
  2. struct Vertex2D { Half3 Position; UByte2 Texcoord; };
  3. struct VertexFull3D { Float3 Position; Float3 Normal; Float2 Texcoord; };
  4. struct VertexFull2D { Float3 Position; Float2 Texcoord; };
  5. struct VertexSkinned3D : Vertex3D { UByte4 Indices; UByte4 Weights; };
Advertisement
Add Comment
Please, Sign In to add comment