add SavePNG method
parent
add8c8ed40
commit
a3daa49228
|
@ -39,6 +39,14 @@ namespace Campari
|
||||||
return texture;
|
return texture;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public unsafe static void SavePNG(string path, int width, int height, byte[] pixels)
|
||||||
|
{
|
||||||
|
fixed (byte* ptr = &pixels[0])
|
||||||
|
{
|
||||||
|
Refresh.Refresh_Image_SavePNG(path, width, height, (IntPtr) ptr);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public static Texture CreateTexture2D(
|
public static Texture CreateTexture2D(
|
||||||
GraphicsDevice device,
|
GraphicsDevice device,
|
||||||
uint width,
|
uint width,
|
||||||
|
|
Loading…
Reference in New Issue