diff options
| author | Ray <[email protected]> | 2024-06-30 11:37:58 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2024-06-30 11:37:58 +0200 |
| commit | 1e1061d5c7582090df0851c08359d7c7847f9559 (patch) | |
| tree | 8e5d77c6507a893314d6383e0041450dccc79e22 /src/raylib.h | |
| parent | 13e309251184343b67773d16e6e264c7cac7c280 (diff) | |
| download | raylib-1e1061d5c7582090df0851c08359d7c7847f9559.tar.gz raylib-1e1061d5c7582090df0851c08359d7c7847f9559.zip | |
REVIEWED: Formatting, follow raylib coding conventions
Diffstat (limited to 'src/raylib.h')
| -rw-r--r-- | src/raylib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/raylib.h b/src/raylib.h index 3f6b61f8..2c7a6a57 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -1332,7 +1332,7 @@ RLAPI Image GenImageText(int width, int height, const char *text); // Image manipulation functions RLAPI Image ImageCopy(Image image); // Create an image duplicate (useful for transformations) RLAPI Image ImageFromImage(Image image, Rectangle rec); // Create an image from another image piece -RLAPI Image ImageFromChannel(Image image, int selectedChannel); // Create an image from a selected channel of another image (GRAYSCALE/R16/R32) +RLAPI Image ImageFromChannel(Image image, int selectedChannel); // Create an image from a selected channel of another image (GRAYSCALE) 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 |
