diff --git a/parser/output/raylib_api.json b/parser/output/raylib_api.json
index a75b94ed0..2baa6c3f3 100644
--- a/parser/output/raylib_api.json
+++ b/parser/output/raylib_api.json
@@ -7351,7 +7351,7 @@
},
{
"name": "ImageKernelConvolution",
- "description": "Apply Custom Square image convolution kernel",
+ "description": "Apply custom square convolution kernel to image",
"returnType": "void",
"params": [
{
@@ -7359,7 +7359,7 @@
"name": "image"
},
{
- "type": "float *",
+ "type": "const float *",
"name": "kernel"
},
{
diff --git a/parser/output/raylib_api.lua b/parser/output/raylib_api.lua
index 7dcb1fa41..a6d91cd6d 100644
--- a/parser/output/raylib_api.lua
+++ b/parser/output/raylib_api.lua
@@ -5617,11 +5617,11 @@ return {
},
{
name = "ImageKernelConvolution",
- description = "Apply Custom Square image convolution kernel",
+ description = "Apply custom square convolution kernel to image",
returnType = "void",
params = {
{type = "Image *", name = "image"},
- {type = "float *", name = "kernel"},
+ {type = "const float *", name = "kernel"},
{type = "int", name = "kernelSize"}
}
},
diff --git a/parser/output/raylib_api.txt b/parser/output/raylib_api.txt
index fd082d074..f283ad795 100644
--- a/parser/output/raylib_api.txt
+++ b/parser/output/raylib_api.txt
@@ -2840,9 +2840,9 @@ Function 303: ImageBlurGaussian() (2 input parameters)
Function 304: ImageKernelConvolution() (3 input parameters)
Name: ImageKernelConvolution
Return type: void
- Description: Apply Custom Square image convolution kernel
+ Description: Apply custom square convolution kernel to image
Param[1]: image (type: Image *)
- Param[2]: kernel (type: float *)
+ Param[2]: kernel (type: const float *)
Param[3]: kernelSize (type: int)
Function 305: ImageResize() (3 input parameters)
Name: ImageResize
diff --git a/parser/output/raylib_api.xml b/parser/output/raylib_api.xml
index 22f9b0ec7..fa953b626 100644
--- a/parser/output/raylib_api.xml
+++ b/parser/output/raylib_api.xml
@@ -1842,9 +1842,9 @@
-
+
-
+