Added function: GetPixelDataSize()

Just found I need that function...
This commit is contained in:
raysan5
2018-01-06 02:50:20 +01:00
parent 0e48396369
commit 7fa2861160
2 changed files with 38 additions and 0 deletions

View File

@ -869,6 +869,7 @@ RLAPI void UnloadImage(Image image);
RLAPI void UnloadTexture(Texture2D texture); // Unload texture from GPU memory (VRAM)
RLAPI void UnloadRenderTexture(RenderTexture2D target); // Unload render texture from GPU memory (VRAM)
RLAPI Color *GetImageData(Image image); // Get pixel data from image as a Color struct array
RLAPI int GetImageDataSize(Image image); // Get image data size in bytes
RLAPI Image GetTextureData(Texture2D texture); // Get pixel data from GPU texture and return an Image
RLAPI void UpdateTexture(Texture2D texture, const void *pixels); // Update GPU texture with new data
RLAPI void SaveImageAs(const char *fileName, Image image); // Save image to a PNG file