summaryrefslogtreecommitdiffhomepage
path: root/projects/Notepad++
diff options
context:
space:
mode:
authorKarim <[email protected]>2023-11-18 14:05:45 -0500
committerGitHub <[email protected]>2023-11-18 20:05:45 +0100
commit21469e92b0a886de8b384b7ffadc5c1c73cff913 (patch)
tree711cb5f9f103a53cb712ce3460a4698d159d1824 /projects/Notepad++
parente41a0c9721a38c81a1499ae499b746bd05f9de2e (diff)
downloadraylib-21469e92b0a886de8b384b7ffadc5c1c73cff913.tar.gz
raylib-21469e92b0a886de8b384b7ffadc5c1c73cff913.zip
Image convolution function ImageKernelConvolution (#3528)
* Added image convultion ImageKernelConvolution * comment changes * spelling changes and change to kernel size * removed kernel normalization inside function * fix to formating
Diffstat (limited to 'projects/Notepad++')
-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