diff options
| author | Ray <[email protected]> | 2018-07-03 00:57:58 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2018-07-03 00:57:58 +0200 |
| commit | 74fd0e7ca4faaa428c248a9ae714e2e7371e6ed4 (patch) | |
| tree | d961bc6eeba4a7682574e71831592c8170d7d7f8 /src/raylib.h | |
| parent | 7b971e06236c581087a851c8ecda11bb7be12839 (diff) | |
| download | raylib-74fd0e7ca4faaa428c248a9ae714e2e7371e6ed4.tar.gz raylib-74fd0e7ca4faaa428c248a9ae714e2e7371e6ed4.zip | |
Added function: ImageColorReplace()
Diffstat (limited to 'src/raylib.h')
| -rw-r--r-- | src/raylib.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/raylib.h b/src/raylib.h index 96bf2443..43000318 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -937,6 +937,7 @@ RLAPI void ImageColorInvert(Image *image); RLAPI void ImageColorGrayscale(Image *image); // Modify image color: grayscale RLAPI void ImageColorContrast(Image *image, float contrast); // Modify image color: contrast (-100 to 100) RLAPI void ImageColorBrightness(Image *image, int brightness); // Modify image color: brightness (-255 to 255) +RLAPI void ImageColorReplace(Image *image, Color color, Color replace); // Modify image color: replace color // Image generation functions RLAPI Image GenImageColor(int width, int height, Color color); // Generate image: plain color |
