diff options
| author | raysan5 <[email protected]> | 2020-06-07 18:33:30 +0200 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2020-06-07 18:33:30 +0200 |
| commit | d0e92286600d2447d86d2d9c021d5a30f8c6ece7 (patch) | |
| tree | 00ecabc9a7443365e5c08e502b0a652b92a46460 /src/raylib.h | |
| parent | a9fb0aa20781ed576ab939846bcefe2ea62f4951 (diff) | |
| download | raylib-d0e92286600d2447d86d2d9c021d5a30f8c6ece7.tar.gz raylib-d0e92286600d2447d86d2d9c021d5a30f8c6ece7.zip | |
REDESIGNED: ImageResizeCanvas(), optimized #1218
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 f29c07e8..5e70d801 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -1134,7 +1134,7 @@ RLAPI void ImageAlphaMask(Image *image, Image alphaMask); RLAPI void ImageAlphaPremultiply(Image *image); // Premultiply alpha channel RLAPI void ImageResize(Image *image, int newWidth, int newHeight); // Resize image (Bicubic scaling algorithm) RLAPI void ImageResizeNN(Image *image, int newWidth,int newHeight); // Resize image (Nearest-Neighbor scaling algorithm) -RLAPI void ImageResizeCanvas(Image *image, int newWidth, int newHeight, int offsetX, int offsetY, Color color); // Resize canvas and fill with color +RLAPI void ImageResizeCanvas(Image *image, int newWidth, int newHeight, int offsetX, int offsetY, Color fill); // Resize canvas and fill with color RLAPI void ImageMipmaps(Image *image); // Generate all mipmap levels for a provided image RLAPI void ImageDither(Image *image, int rBpp, int gBpp, int bBpp, int aBpp); // Dither image data to 16bpp or lower (Floyd-Steinberg dithering) RLAPI void ImageFlipVertical(Image *image); // Flip image vertically |
