Update to raylib 5.5 (#279)
This commit is contained in:
parent
7b5b322a5b
commit
a3dfd57b5a
23 changed files with 504 additions and 124 deletions
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue