using System.Runtime.InteropServices;
namespace Raylib_cs
{
///
/// Vertex data definning a mesh
/// NOTE: Data stored in CPU memory (and GPU)
///
[StructLayout(LayoutKind.Sequential)]
public unsafe partial struct Mesh
{
///
/// Number of vertices stored in arrays
///
public int VertexCount;
///
/// Number of triangles stored (indexed or not)
///
public int TriangleCount;
#region Default vertex data
///
/// Vertex position (XYZ - 3 components per vertex) (shader-location = 0)
///
public float* Vertices;
///
/// Vertex texture coordinates (UV - 2 components per vertex) (shader-location = 1)
///
public float* TexCoords;
///
/// Vertex second texture coordinates (useful for lightmaps) (shader-location = 5)
///
public float* TexCoords2;
///
/// Vertex normals (XYZ - 3 components per vertex) (shader-location = 2)
///
public float* Normals;
///
/// Vertex tangents (XYZW - 4 components per vertex) (shader-location = 4)
///
public float* Tangents;
///
/// Vertex colors (RGBA - 4 components per vertex) (shader-location = 3)
///
public byte* Colors;
///
/// Vertex indices (in case vertex data comes indexed)
///
public ushort* Indices;
#endregion
#region Animation vertex data
///
/// Animated vertex positions (after bones transformations)
///
public float* AnimVertices;
///
/// Animated normals (after bones transformations)
///
public float* AnimNormals;
///
/// Vertex bone ids, up to 4 bones influence by vertex (skinning)
///
public byte* BoneIds;
///
/// Vertex bone weight, up to 4 bones influence by vertex (skinning)
///
public float* BoneWeights;
#endregion
#region OpenGL identifiers
///
/// OpenGL Vertex Array Object id
///
public uint VaoId;
///
/// OpenGL Vertex Buffer Objects id (default vertex data, uint[])
///
public uint* VboId;
#endregion
}
}