2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-03 11:09:40 -04:00

Update FromMemory utils to use fixed instead

This commit is contained in:
ChrisDill 2023-06-09 20:12:30 +01:00
parent 074ba78d09
commit ccf31c38e1

View File

@ -116,19 +116,17 @@ namespace Raylib_cs
}
/// <summary>
/// Load image from a native copy of managed memory, fileType refers to extension: i.e. "png"
/// Load image from managed memory, fileType refers to extension: i.e. "png"
/// </summary>
public static Image LoadImageFromMemory(string fileType, byte[] fileData)
{
using var fileTypeNative = fileType.ToUTF8Buffer();
byte* fileDataNative = (byte*)MemAlloc(fileData.Length);
Marshal.Copy(fileData, 0, (IntPtr)fileDataNative, fileData.Length);
fixed (byte* fileDataNative = fileData)
{
Image image = LoadImageFromMemory(fileTypeNative.AsPointer(), fileDataNative, fileData.Length);
return image;
}
}
/// <summary>Export image data to file</summary>
public static CBool ExportImage(Image image, string fileName)
@ -681,7 +679,7 @@ namespace Raylib_cs
}
/// <summary>
/// Load font from a native copy of managed memory, fileType refers to extension: i.e. "ttf"
/// Load font from managed memory, fileType refers to extension: i.e. "ttf"
/// </summary>
public static Font LoadFontFromMemory(
string fileType,
@ -692,10 +690,8 @@ namespace Raylib_cs
)
{
using var fileTypeNative = fileType.ToUTF8Buffer();
byte* fileDataNative = (byte*)MemAlloc(fileData.Length);
Marshal.Copy(fileData, 0, (IntPtr)fileDataNative, fileData.Length);
fixed (byte* fileDataNative = fileData)
{
fixed (int* fontCharsNative = fontChars)
{
Font font = LoadFontFromMemory(
@ -710,6 +706,7 @@ namespace Raylib_cs
return font;
}
}
}
/// <summary>Upload vertex data into GPU and provided VAO/VBO ids</summary>
public static void UploadMesh(ref Mesh mesh, CBool dynamic)
@ -961,7 +958,7 @@ namespace Raylib_cs
}
/// <summary>
/// Load wave from a native copy of managed memory, fileType refers to extension: i.e. "wav"
/// Load wave from managed memory, fileType refers to extension: i.e. "wav"
/// </summary>
public static Wave LoadWaveFromMemory(
string fileType,
@ -970,9 +967,8 @@ namespace Raylib_cs
{
using var fileTypeNative = fileType.ToUTF8Buffer();
byte* fileDataNative = (byte*)MemAlloc(fileData.Length);
Marshal.Copy(fileData, 0, (IntPtr)fileDataNative, fileData.Length);
fixed (byte* fileDataNative = fileData)
{
Wave wave = LoadWaveFromMemory(
fileTypeNative.AsPointer(),
fileDataNative,
@ -981,6 +977,7 @@ namespace Raylib_cs
return wave;
}
}
/// <summary>Load sound from file</summary>
public static Sound LoadSound(string fileName)
@ -1011,7 +1008,7 @@ namespace Raylib_cs
}
/// <summary>
/// Load music stream from a native copy of managed memory, fileType refers to extension: i.e. ".wav"
/// Load music stream from managed memory, fileType refers to extension: i.e. ".wav"
/// </summary>
public static Music LoadMusicStreamFromMemory(
string fileType,
@ -1020,9 +1017,8 @@ namespace Raylib_cs
{
using var fileTypeNative = fileType.ToUTF8Buffer();
byte* fileDataNative = (byte*)MemAlloc(fileData.Length);
Marshal.Copy(fileData, 0, (IntPtr)fileDataNative, fileData.Length);
fixed (byte* fileDataNative = fileData)
{
Music music = LoadMusicStreamFromMemory(
fileTypeNative.AsPointer(),
fileDataNative,
@ -1031,6 +1027,7 @@ namespace Raylib_cs
return music;
}
}
public static string SubText(this string input, int position, int length)
{