Added some functions and renamed some others

Added:
- LoadImageRaw()
- ImageCopy()
Renamed:
- GetPixelData() -> GetImageData()
This commit is contained in:
raysan5 2015-07-13 18:19:29 +02:00
parent 3434255ce6
commit 66556b8b47
3 changed files with 161 additions and 161 deletions

View file

@ -238,7 +238,7 @@ SpriteFont LoadSpriteFont(const char *fileName)
// At this point we have a data array...
Color *imagePixels = GetPixelData(image);
Color *imagePixels = GetImageData(image);
#if defined(PLATFORM_RPI) || defined(PLATFORM_WEB)
ImageConvertToPOT(&image, MAGENTA);