diff --git a/Raylib-cs/types/Raylib.Utils.cs b/Raylib-cs/types/Raylib.Utils.cs index 93e41c8..aef9212 100644 --- a/Raylib-cs/types/Raylib.Utils.cs +++ b/Raylib-cs/types/Raylib.Utils.cs @@ -329,6 +329,15 @@ namespace Raylib_cs } } + /// Apply Gaussian blur using a box blur approximation + public static void ImageBlurGaussian(ref Image image, int blurSize) + { + fixed (Image* p = &image) + { + ImageBlurGaussian(p, blurSize); + } + } + /// Crop an image to a defined rectangle public static void ImageCrop(ref Image image, Rectangle crop) {