Revert partial struct change
This commit is contained in:
parent
f3047a06a0
commit
a01b1be228
15 changed files with 32 additions and 32 deletions
|
|
@ -6,7 +6,7 @@ namespace Raylib_cs
|
|||
/// RenderBatch type
|
||||
/// </summary>
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
public unsafe partial struct RenderBatch
|
||||
public unsafe struct RenderBatch
|
||||
{
|
||||
/// <summary>
|
||||
/// Number of vertex buffers (multi-buffering support)
|
||||
|
|
@ -43,7 +43,7 @@ namespace Raylib_cs
|
|||
/// Dynamic vertex buffers (position + texcoords + colors + indices arrays)
|
||||
/// </summary>
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
public unsafe partial struct VertexBuffer
|
||||
public unsafe struct VertexBuffer
|
||||
{
|
||||
/// <summary>
|
||||
/// Number of elements in the buffer (QUADS)
|
||||
|
|
@ -87,7 +87,7 @@ namespace Raylib_cs
|
|||
/// Dynamic vertex buffers (position + texcoords + colors + indices arrays)
|
||||
/// </summary>
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
public partial struct DrawCall
|
||||
public struct DrawCall
|
||||
{
|
||||
/// <summary>
|
||||
/// Drawing mode: LINES, TRIANGLES, QUADS
|
||||
|
|
|
|||
Loading…
Reference in a new issue