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