mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-03 11:09:40 -04:00
16 lines
340 B
C#
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);
|
|
}
|
|
}
|
|
}
|