mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-07-02 19:13:43 -04:00
Update to raylib 5.5 (#279)
This commit is contained in:
15
Raylib-cs/types/Rlgl.Utils.cs
Normal file
15
Raylib-cs/types/Rlgl.Utils.cs
Normal file
@ -0,0 +1,15 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user