|
|
@ -1126,7 +1126,7 @@ RLAPI Image ImageFromImage(Image image, Rectangle rec); |
|
|
|
RLAPI Image ImageText(const char *text, int fontSize, Color color); // Create an image from text (default font) |
|
|
|
RLAPI Image ImageTextEx(Font font, const char *text, float fontSize, float spacing, Color tint); // Create an image from text (custom sprite font) |
|
|
|
RLAPI void ImageFormat(Image *image, int newFormat); // Convert image data to desired format |
|
|
|
RLAPI void ImageToPOT(Image *image, Color fillColor); // Convert image to POT (power-of-two) |
|
|
|
RLAPI void ImageToPOT(Image *image, Color fill); // Convert image to POT (power-of-two) |
|
|
|
RLAPI void ImageCrop(Image *image, Rectangle crop); // Crop an image to a defined rectangle |
|
|
|
RLAPI void ImageAlphaCrop(Image *image, float threshold); // Crop image depending on alpha value |
|
|
|
RLAPI void ImageAlphaClear(Image *image, Color color, float threshold); // Clear alpha channel to desired color |
|
|
@ -1199,6 +1199,7 @@ RLAPI void DrawTextureNPatch(Texture2D texture, NPatchInfo nPatchInfo, Rectangle |
|
|
|
// Image/Texture misc functions |
|
|
|
RLAPI int GetPixelDataSize(int width, int height, int format); // Get pixel data size in bytes (image or texture) |
|
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------------ |
|
|
|
// Font Loading and Text Drawing Functions (Module: text) |
|
|
|
//------------------------------------------------------------------------------------ |
|
|
|