Add ref util for ImageBlurGaussian
This commit is contained in:
parent
c4aa6196ea
commit
af1c85ab04
1 changed files with 9 additions and 0 deletions
|
|
@ -329,6 +329,15 @@ namespace Raylib_cs
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>Apply Gaussian blur using a box blur approximation</summary>
|
||||||
|
public static void ImageBlurGaussian(ref Image image, int blurSize)
|
||||||
|
{
|
||||||
|
fixed (Image* p = &image)
|
||||||
|
{
|
||||||
|
ImageBlurGaussian(p, blurSize);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>Crop an image to a defined rectangle</summary>
|
/// <summary>Crop an image to a defined rectangle</summary>
|
||||||
public static void ImageCrop(ref Image image, Rectangle crop)
|
public static void ImageCrop(ref Image image, Rectangle crop)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue