2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-05 11:19:39 -04:00
raylib-cs/Raylib-cs/types/Rlgl.Utils.cs
2024-12-21 15:00:13 +00:00

16 lines
340 B
C#

using System.Numerics;
namespace Raylib_cs;
public static unsafe partial class Rlgl
{
/// <summary>Set shader value matrices</summary>
public static void SetUniformMatrices(int locIndex, Matrix4x4[] mat)
{
fixed (Matrix4x4* p = mat)
{
SetUniformMatrices(locIndex, p, mat.Length);
}
}
}