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

LoadImageSvg() has been removed

This commit is contained in:
JupiterRider 2024-12-06 18:48:46 +01:00
commit 5e137cef7e
2 changed files with 0 additions and 11 deletions

View file

@ -119,13 +119,6 @@ public static unsafe partial class Raylib
return LoadImageRaw(str1.AsPointer(), width, height, format, headerSize);
}
/// <summary>Load image sequence from file (frames appended to image.data)</summary>
public static Image LoadImageSvg(string fileName, int width, int height)
{
using var str1 = fileName.ToAnsiBuffer();
return LoadImageSvg(str1.AsPointer(), width, height);
}
/// <summary>Load image sequence from file (frames appended to image.data)</summary>
public static Image LoadImageAnim(string fileName, out int frames)
{