Watch
2
0
Fork
You've already forked raylib-cs
0

Remove ref from raylib bindings

This commit is contained in:
Rgebee 2021-12-16 20:13:50 +00:00
commit ed9cead672
2 changed files with 54 additions and 54 deletions

View file

@ -101,7 +101,7 @@ namespace Raylib_cs
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern void rlMultMatrixf(float* matf);
/// <inheritdoc cref="rlMultMatrixf"/>
/// <inheritdoc cref="rlMultMatrixf(float*)"/>
public static void rlMultMatrixf(Matrix4x4 matf)
{
float16 f = Raymath.MatrixToFloatV(matf);