From af1c85ab0467f523512504579f04f06f0b8dc1ea Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Sun, 21 May 2023 07:32:40 +0100 Subject: [PATCH] Add ref util for ImageBlurGaussian --- Raylib-cs/types/Raylib.Utils.cs | 9 +++++++++ 1 file changed, 9 insertions(+) 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) {