2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-03 11:09:40 -04:00

Add Span utils to RenderBatch/fix DrawCounter

This commit is contained in:
ChrisDill 2023-09-28 18:10:59 +01:00
parent ee1557aca5
commit 4597f6600f

View File

@ -28,6 +28,11 @@ public unsafe partial struct RenderBatch
/// </summary>
public DrawCall* Draws;
/// <summary>
/// Draw calls counter
/// </summary>
public int DrawCounter;
/// <summary>
/// Current depth value for next draw
/// </summary>
@ -76,6 +81,30 @@ public unsafe partial struct VertexBuffer
/// OpenGL Vertex Buffer Objects id (4 types of vertex data)
/// </summary>
public fixed uint VboId[4];
/// <summary>
/// Access <see cref="Vertices"/>
/// </summary>
public readonly Span<T> VerticesAs<T>() where T : unmanaged
{
return new(Vertices, ElementCount * sizeof(float) / sizeof(T));
}
/// <summary>
/// Access <see cref="TexCoords"/>
/// </summary>
public readonly Span<T> TexCoordsAs<T>() where T : unmanaged
{
return new(TexCoords, ElementCount * sizeof(float) / sizeof(T));
}
/// <summary>
/// Access <see cref="Colors"/>
/// </summary>
public readonly Span<T> ColorsAs<T>() where T : unmanaged
{
return new(Colors, ElementCount * sizeof(byte) / sizeof(T));
}
}
/// <summary>