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

Review and fix RenderBatch

This commit is contained in:
ChrisDill 2023-09-28 17:52:09 +01:00
parent be0fcded59
commit ee1557aca5

View File

@ -11,32 +11,27 @@ public unsafe partial struct RenderBatch
/// <summary> /// <summary>
/// Number of vertex buffers (multi-buffering support) /// Number of vertex buffers (multi-buffering support)
/// </summary> /// </summary>
int _buffersCount; public int BufferCount;
/// <summary> /// <summary>
/// Current buffer tracking in case of multi-buffering /// Current buffer tracking in case of multi-buffering
/// </summary> /// </summary>
int _currentBuffer; public int CurrentBuffer;
/// <summary> /// <summary>
/// Dynamic buffer(s) for vertex data /// Dynamic buffer(s) for vertex data
/// </summary> /// </summary>
VertexBuffer* _vertexBuffer; public VertexBuffer* VertexBuffer;
/// <summary> /// <summary>
/// Draw calls array, depends on textureId /// Draw calls array, depends on textureId
/// </summary> /// </summary>
DrawCall* _draws; public DrawCall* Draws;
/// <summary>
/// Draw calls counter
/// </summary>
int _drawsCounter;
/// <summary> /// <summary>
/// Current depth value for next draw /// Current depth value for next draw
/// </summary> /// </summary>
float _currentDepth; public float CurrentDepth;
} }
/// <summary> /// <summary>
@ -84,7 +79,10 @@ public unsafe partial struct VertexBuffer
} }
/// <summary> /// <summary>
/// Dynamic vertex buffers (position + texcoords + colors + indices arrays) /// Draw call type<br/>
/// NOTE: Only texture changes register a new draw, other state-change-related elements are not
/// used at this moment (vaoId, shaderId, matrices), raylib just forces a batch draw call if any
/// of those state-change happens (this is done in core module)
/// </summary> /// </summary>
[StructLayout(LayoutKind.Sequential)] [StructLayout(LayoutKind.Sequential)]
public partial struct DrawCall public partial struct DrawCall
@ -92,22 +90,22 @@ public partial struct DrawCall
/// <summary> /// <summary>
/// Drawing mode: LINES, TRIANGLES, QUADS /// Drawing mode: LINES, TRIANGLES, QUADS
/// </summary> /// </summary>
int _mode; public DrawMode Mode;
/// <summary> /// <summary>
/// Number of vertices for the draw call /// Number of vertices for the draw call
/// </summary> /// </summary>
int _vertexCount; public int VertexCount;
/// <summary> /// <summary>
/// Number of vertices required for index alignment (LINES, TRIANGLES) /// Number of vertices required for index alignment (LINES, TRIANGLES)
/// </summary> /// </summary>
int _vertexAlignment; public int VertexAlignment;
/// <summary> /// <summary>
/// Texture id to be used on the draw -> Use to create new draw call if changes /// Texture id to be used on the draw -> Use to create new draw call if changes
/// </summary> /// </summary>
uint _textureId; public uint TextureId;
} }
public enum GlVersion public enum GlVersion