LoadImageSvg() has been removed
This commit is contained in:
parent
aa272a7798
commit
5e137cef7e
2 changed files with 0 additions and 11 deletions
|
|
@ -1420,10 +1420,6 @@ public static unsafe partial class Raylib
|
||||||
int headerSize
|
int headerSize
|
||||||
);
|
);
|
||||||
|
|
||||||
/// <summary>Load image from SVG file data or string with specified size</summary>
|
|
||||||
[DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
|
||||||
public static extern Image LoadImageSvg(sbyte* fileName, int width, int height);
|
|
||||||
|
|
||||||
/// <summary>Load image sequence from file (frames appended to image.data)</summary>
|
/// <summary>Load image sequence from file (frames appended to image.data)</summary>
|
||||||
[DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
[DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||||
public static extern Image LoadImageAnim(sbyte* fileName, int* frames);
|
public static extern Image LoadImageAnim(sbyte* fileName, int* frames);
|
||||||
|
|
|
||||||
|
|
@ -119,13 +119,6 @@ public static unsafe partial class Raylib
|
||||||
return LoadImageRaw(str1.AsPointer(), width, height, format, headerSize);
|
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>
|
/// <summary>Load image sequence from file (frames appended to image.data)</summary>
|
||||||
public static Image LoadImageAnim(string fileName, out int frames)
|
public static Image LoadImageAnim(string fileName, out int frames)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue