summaryrefslogtreecommitdiffhomepage
path: root/src/raylib.h
diff options
context:
space:
mode:
authorRay <[email protected]>2024-06-24 18:41:33 +0200
committerRay <[email protected]>2024-06-24 18:41:33 +0200
commit385e60dd41d49d56ac1bf44b68549070d108e941 (patch)
tree64c5f29349bfd50dbd5e3fba3457f954897590ad /src/raylib.h
parente96bab7ce63568d86fae4fd664fa06625f76f1ee (diff)
downloadraylib-385e60dd41d49d56ac1bf44b68549070d108e941.tar.gz
raylib-385e60dd41d49d56ac1bf44b68549070d108e941.zip
Minor tweaks
Diffstat (limited to 'src/raylib.h')
-rw-r--r--src/raylib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/raylib.h b/src/raylib.h
index 8cd1d1ec..c3c546c3 100644
--- a/src/raylib.h
+++ b/src/raylib.h
@@ -1342,7 +1342,7 @@ RLAPI void ImageAlphaClear(Image *image, Color color, float threshold);
RLAPI void ImageAlphaMask(Image *image, Image alphaMask); // Apply alpha mask to image
RLAPI void ImageAlphaPremultiply(Image *image); // Premultiply alpha channel
RLAPI void ImageBlurGaussian(Image *image, int blurSize); // Apply Gaussian blur using a box blur approximation
-RLAPI void ImageKernelConvolution(Image *image, float *kernel, int kernelSize); // Apply Custom Square image convolution kernel
+RLAPI void ImageKernelConvolution(Image *image, const float *kernel, int kernelSize); // Apply custom square convolution kernel to image
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 fill); // Resize canvas and fill with color