summaryrefslogtreecommitdiffhomepage
path: root/projects/Notepad++/raylib_npp_parser/raylib_to_parse.h
diff options
context:
space:
mode:
authorRay <[email protected]>2023-11-21 00:15:06 +0100
committerRay <[email protected]>2023-11-21 00:15:06 +0100
commit4dae94821bc5c74af1887933ccbb719b11044879 (patch)
tree66b30fe1a9ff58d84421576eba545965278ab1cb /projects/Notepad++/raylib_npp_parser/raylib_to_parse.h
parent299cd9b8305a2043c1d4934b1b1c574a204608d0 (diff)
parent994c4f4bdf1f47f706447724b813c9304a66fb16 (diff)
downloadraylib-4dae94821bc5c74af1887933ccbb719b11044879.tar.gz
raylib-4dae94821bc5c74af1887933ccbb719b11044879.zip
Merge branch 'master' of https://github.com/raysan5/raylib
Diffstat (limited to 'projects/Notepad++/raylib_npp_parser/raylib_to_parse.h')
-rw-r--r--projects/Notepad++/raylib_npp_parser/raylib_to_parse.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/projects/Notepad++/raylib_npp_parser/raylib_to_parse.h b/projects/Notepad++/raylib_npp_parser/raylib_to_parse.h
index 2c033c91..8776d434 100644
--- a/projects/Notepad++/raylib_npp_parser/raylib_to_parse.h
+++ b/projects/Notepad++/raylib_npp_parser/raylib_to_parse.h
@@ -375,6 +375,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 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